diff -Nru mate-utils-1.26.0/ABOUT-NLS mate-utils-1.26.1/ABOUT-NLS --- mate-utils-1.26.0/ABOUT-NLS 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/ABOUT-NLS 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - diff -Nru mate-utils-1.26.0/aclocal.m4 mate-utils-1.26.1/aclocal.m4 --- mate-utils-1.26.0/aclocal.m4 2021-08-05 19:45:26.000000000 +0000 +++ mate-utils-1.26.1/aclocal.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,2273 +0,0 @@ -# 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 -# Copyright (c) 2011 Maarten Bosmans -# -# 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 -# Copyright (c) 2011 Maarten Bosmans -# -# 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 -# Copyright (c) 2014, 2015 Philip Withnall -# -# 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 '\'''\'' --fhead "" --vhead " <@type@ id='\''$(gsettings_ENUM_NAMESPACE).@EnumName@'\''>" --vprod " " --vtail " " --ftail "" [$]^ > [$]@.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 -# -# 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 . - -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 -# -# 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 . - - -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 . -dnl Copyright © 2012-2015 Dan Nicholson -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 .])[]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: -# -# -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: - -Please tell bug-automake@gnu.org about your system, including the value -of your $PATH and any error possibly output before this message. This -can help us improve future automake versions. - -END - if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then - echo 'Configuration will proceed anyway, since you have set the' >&2 - echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 - echo >&2 - else - cat >&2 <<'END' -Aborting the configuration process, to ensure you take notice of the issue. - -You can download and install GNU coreutils to get an 'rm' implementation -that behaves properly: . - -If you want to complete the configuration process using your problematic -'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM -to "yes", and re-run configure. - -END - AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) - fi -fi -dnl The trailing newline in this macro's definition is deliberate, for -dnl backward compatibility and to allow trailing 'dnl'-style comments -dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. -]) - -dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not -dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further -dnl mangled by Autoconf and run in a shell conditional statement. -m4_define([_AC_COMPILER_EXEEXT], -m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) - -# When config.status generates a header, we must update the stamp-h file. -# This file resides in the same directory as the config header -# that is generated. The stamp files are numbered to have different names. - -# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the -# loop where config.status creates the headers, so we can generate -# our stamp files there. -AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], -[# Compute $1's index in $config_headers. -_am_arg=$1 -_am_stamp_count=1 -for _am_header in $config_headers :; do - case $_am_header in - $_am_arg | $_am_arg:* ) - break ;; - * ) - _am_stamp_count=`expr $_am_stamp_count + 1` ;; - esac -done -echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) - -# Copyright (C) 2001-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 /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 -Nru mate-utils-1.26.0/baobab/data/Makefile.in mate-utils-1.26.1/baobab/data/Makefile.in --- mate-utils-1.26.0/baobab/data/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/baobab/data/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,711 +0,0 @@ -# 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 . - -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 -Nru mate-utils-1.26.0/baobab/help/af/af.po mate-utils-1.26.1/baobab/help/af/af.po --- mate-utils-1.26.0/baobab/help/af/af.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/af/af.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Afrikaans (https://www.transifex.com/mate/teams/13566/af/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Afrikaans (https://app.transifex.com/mate/teams/13566/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -117,8 +117,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -479,8 +480,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/af/index.docbook mate-utils-1.26.1/baobab/help/af/index.docbook --- mate-utils-1.26.0/baobab/help/af/index.docbook 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/af/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Inleiding - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Gebruik - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Voorkeure - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/af/legal.xml mate-utils-1.26.1/baobab/help/af/legal.xml --- mate-utils-1.26.0/baobab/help/af/legal.xml 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/af/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/am/am.po mate-utils-1.26.1/baobab/help/am/am.po --- mate-utils-1.26.0/baobab/help/am/am.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/am/am.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# samson , 2018 +# samson , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: samson , 2018\n" -"Language-Team: Amharic (https://www.transifex.com/mate/teams/13566/am/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: samson , 2021\n" +"Language-Team: Amharic (https://app.transifex.com/mate/teams/13566/am/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/am/index.docbook mate-utils-1.26.1/baobab/help/am/index.docbook --- mate-utils-1.26.0/baobab/help/am/index.docbook 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/am/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - መግቢያ - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - አጠቃቀም - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - ምርጫዎች - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/am/legal.xml mate-utils-1.26.1/baobab/help/am/legal.xml --- mate-utils-1.26.0/baobab/help/am/legal.xml 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/am/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/an/an.po mate-utils-1.26.1/baobab/help/an/an.po --- mate-utils-1.26.0/baobab/help/an/an.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/an/an.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Aragonese (https://www.transifex.com/mate/teams/13566/an/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Aragonese (https://app.transifex.com/mate/teams/13566/an/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -117,8 +117,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -479,8 +480,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/an/index.docbook mate-utils-1.26.1/baobab/help/an/index.docbook --- mate-utils-1.26.0/baobab/help/an/index.docbook 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/an/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferencias - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/an/legal.xml mate-utils-1.26.1/baobab/help/an/legal.xml --- mate-utils-1.26.0/baobab/help/an/legal.xml 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/an/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ar/ar.po mate-utils-1.26.1/baobab/help/ar/ar.po --- mate-utils-1.26.0/baobab/help/ar/ar.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ar/ar.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,18 +1,18 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Mosaab Alzoubi , 2018 -# Wolfgang Ulbrich , 2018 -# مهدي السطيفي , 2018 -# Ahmad Dakhlallah , 2019 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 +# Ahmad Dakhlallah , 2021 +# مهدي السطيفي , 2021 +# Oukiki Saleh , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2019\n" -"Language-Team: Arabic (https://www.transifex.com/mate/teams/13566/ar/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Oukiki Saleh , 2021\n" +"Language-Team: Arabic (https://app.transifex.com/mate/teams/13566/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,7 +24,8 @@ msgid "translator-credits" msgstr "" "فريق عيون العرب للترجمة http://www.arabeyes.org :\n" -"مصعب الزعبي\t" +"مصعب الزعبي\t\n" +"لينيكس العرب linuxarabia.co" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -52,7 +53,7 @@ #. (itstool) path: revdescription/para #: C/index.docbook:47 C/index.docbook:103 msgid "MATE Documentation Project" -msgstr "مشروع دليل MATE" +msgstr "مشروع توثيق ماتي" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -120,8 +121,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -482,8 +484,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ar/index.docbook mate-utils-1.26.1/baobab/help/ar/index.docbook --- mate-utils-1.26.0/baobab/help/ar/index.docbook 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ar/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - مشروع دليل MATE - - - مشروع دليل GNOME - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - آراء وانطباعات - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - مقدمة - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - الاستخدام - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - تفضيلات - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ar/legal.xml mate-utils-1.26.1/baobab/help/ar/legal.xml --- mate-utils-1.26.0/baobab/help/ar/legal.xml 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ar/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/as/as.po mate-utils-1.26.1/baobab/help/as/as.po --- mate-utils-1.26.0/baobab/help/as/as.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/as/as.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Assamese (https://www.transifex.com/mate/teams/13566/as/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Assamese (https://app.transifex.com/mate/teams/13566/as/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/as/index.docbook mate-utils-1.26.1/baobab/help/as/index.docbook --- mate-utils-1.26.0/baobab/help/as/index.docbook 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/as/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - ভূমিকা - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - পছন্দসমূহ - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/as/legal.xml mate-utils-1.26.1/baobab/help/as/legal.xml --- mate-utils-1.26.0/baobab/help/as/legal.xml 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/as/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ast/ast.po mate-utils-1.26.1/baobab/help/ast/ast.po --- mate-utils-1.26.0/baobab/help/ast/ast.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ast/ast.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Ḷḷumex03, 2018 +# Stefano Karapetsas , 2021 +# Ḷḷumex03, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Ḷḷumex03, 2018\n" -"Language-Team: Asturian (https://www.transifex.com/mate/teams/13566/ast/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Ḷḷumex03, 2021\n" +"Language-Team: Asturian (https://app.transifex.com/mate/teams/13566/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -115,8 +115,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -477,8 +478,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ast/index.docbook mate-utils-1.26.1/baobab/help/ast/index.docbook --- mate-utils-1.26.0/baobab/help/ast/index.docbook 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ast/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introducción - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usu - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferencies - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ast/legal.xml mate-utils-1.26.1/baobab/help/ast/legal.xml --- mate-utils-1.26.0/baobab/help/ast/legal.xml 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ast/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/az/az.po mate-utils-1.26.1/baobab/help/az/az.po --- mate-utils-1.26.0/baobab/help/az/az.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/az/az.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Azerbaijani (https://www.transifex.com/mate/teams/13566/az/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Azerbaijani (https://app.transifex.com/mate/teams/13566/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -118,8 +118,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -480,8 +481,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/az/index.docbook mate-utils-1.26.1/baobab/help/az/index.docbook --- mate-utils-1.26.0/baobab/help/az/index.docbook 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/az/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Qurğular - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/az/legal.xml mate-utils-1.26.1/baobab/help/az/legal.xml --- mate-utils-1.26.0/baobab/help/az/legal.xml 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/az/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/be/be.po mate-utils-1.26.1/baobab/help/be/be.po --- mate-utils-1.26.0/baobab/help/be/be.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/be/be.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Mihail Varantsou , 2018 +# Stefano Karapetsas , 2021 +# Mihail Varantsou , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Belarusian (https://www.transifex.com/mate/teams/13566/be/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Mihail Varantsou , 2021\n" +"Language-Team: Belarusian (https://app.transifex.com/mate/teams/13566/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -117,8 +117,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -479,8 +480,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/be/index.docbook mate-utils-1.26.1/baobab/help/be/index.docbook --- mate-utils-1.26.0/baobab/help/be/index.docbook 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/be/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Уводзіны - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - доля - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Настáўленні - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/be/legal.xml mate-utils-1.26.1/baobab/help/be/legal.xml --- mate-utils-1.26.0/baobab/help/be/legal.xml 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/be/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/bg/bg.po mate-utils-1.26.1/baobab/help/bg/bg.po --- mate-utils-1.26.0/baobab/help/bg/bg.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/bg/bg.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Любомир Василев, 2018 -# Wolfgang Ulbrich , 2018 -# Замфир Йончев , 2018 +# Stefano Karapetsas , 2021 +# Любомир Василев, 2021 +# Wolfgang Ulbrich , 2021 +# Замфир Йончев , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Замфир Йончев , 2018\n" -"Language-Team: Bulgarian (https://www.transifex.com/mate/teams/13566/bg/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Замфир Йончев , 2021\n" +"Language-Team: Bulgarian (https://app.transifex.com/mate/teams/13566/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -125,8 +125,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -487,8 +488,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/bg/index.docbook mate-utils-1.26.1/baobab/help/bg/index.docbook --- mate-utils-1.26.0/baobab/help/bg/index.docbook 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/bg/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - Проектът за документация на MATE - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Обратна връзка - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Въведение - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Употреба - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Настройки - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/bg/legal.xml mate-utils-1.26.1/baobab/help/bg/legal.xml --- mate-utils-1.26.0/baobab/help/bg/legal.xml 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/bg/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/bn/bn.po mate-utils-1.26.1/baobab/help/bn/bn.po --- mate-utils-1.26.0/baobab/help/bn/bn.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/bn/bn.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Bengali (https://www.transifex.com/mate/teams/13566/bn/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Bengali (https://app.transifex.com/mate/teams/13566/bn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -119,8 +119,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -481,8 +482,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/bn/index.docbook mate-utils-1.26.1/baobab/help/bn/index.docbook --- mate-utils-1.26.0/baobab/help/bn/index.docbook 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/bn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - ভূমিকা - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - ব্যবহার প্রণালী - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - পছন্দতালিকা - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/bn/legal.xml mate-utils-1.26.1/baobab/help/bn/legal.xml --- mate-utils-1.26.0/baobab/help/bn/legal.xml 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/bn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/bn_IN/bn_IN.po mate-utils-1.26.1/baobab/help/bn_IN/bn_IN.po --- mate-utils-1.26.0/baobab/help/bn_IN/bn_IN.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/bn_IN/bn_IN.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# umesh agarwal , 2018 +# Stefano Karapetsas , 2021 +# umesh agarwal , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Bengali (India) (https://www.transifex.com/mate/teams/13566/bn_IN/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: umesh agarwal , 2021\n" +"Language-Team: Bengali (India) (https://app.transifex.com/mate/teams/13566/bn_IN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -118,8 +118,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -480,8 +481,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/bn_IN/index.docbook mate-utils-1.26.1/baobab/help/bn_IN/index.docbook --- mate-utils-1.26.0/baobab/help/bn_IN/index.docbook 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/bn_IN/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - ভূমিকা - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - ব্যবহার প্রণালী - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - प्राथमिकताएं - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/bn_IN/legal.xml mate-utils-1.26.1/baobab/help/bn_IN/legal.xml --- mate-utils-1.26.0/baobab/help/bn_IN/legal.xml 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/bn_IN/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/br/br.po mate-utils-1.26.1/baobab/help/br/br.po --- mate-utils-1.26.0/baobab/help/br/br.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/br/br.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Alan Monfort , 2018 +# Stefano Karapetsas , 2021 +# Alan Monfort , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Breton (https://www.transifex.com/mate/teams/13566/br/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Alan Monfort , 2021\n" +"Language-Team: Breton (https://app.transifex.com/mate/teams/13566/br/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -115,8 +115,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -477,8 +478,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/br/index.docbook mate-utils-1.26.1/baobab/help/br/index.docbook --- mate-utils-1.26.0/baobab/help/br/index.docbook 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/br/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Arver - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Gwellvezioù - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/br/legal.xml mate-utils-1.26.1/baobab/help/br/legal.xml --- mate-utils-1.26.0/baobab/help/br/legal.xml 2021-08-05 19:46:17.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/br/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/bs/bs.po mate-utils-1.26.1/baobab/help/bs/bs.po --- mate-utils-1.26.0/baobab/help/bs/bs.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/bs/bs.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Sky Lion , 2018 +# Stefano Karapetsas , 2021 +# Sky Lion , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Bosnian (https://www.transifex.com/mate/teams/13566/bs/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Sky Lion , 2021\n" +"Language-Team: Bosnian (https://app.transifex.com/mate/teams/13566/bs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -115,8 +115,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -477,8 +478,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/bs/index.docbook mate-utils-1.26.1/baobab/help/bs/index.docbook --- mate-utils-1.26.0/baobab/help/bs/index.docbook 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/bs/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Postavke - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/bs/legal.xml mate-utils-1.26.1/baobab/help/bs/legal.xml --- mate-utils-1.26.0/baobab/help/bs/legal.xml 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/bs/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ca/ca.po mate-utils-1.26.1/baobab/help/ca/ca.po --- mate-utils-1.26.0/baobab/help/ca/ca.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ca/ca.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Francesc Famadas, 2018 # Robert Antoni Buj i Gelonch , 2021 +# Stefano Karapetsas , 2021 +# Francesc Famadas, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 i Gelonch , 2021\n" -"Language-Team: Catalan (https://www.transifex.com/mate/teams/13566/ca/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Francesc Famadas, 2021\n" +"Language-Team: Catalan (https://app.transifex.com/mate/teams/13566/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,7 +20,9 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Robert Antoni Buj Gelonch " +msgstr "" +"Aniol Gervasi , 2009\n" +"Robert Antoni Buj Gelonch , 2018, 2019, 2020, 2021" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -132,8 +134,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "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 " @@ -594,8 +597,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" "Els conceptes dels arbres d'assignació han estat " "desenvolupats per Ben Shneiderman en la dècada dels 90. Llegiu la seva " @@ -962,10 +966,10 @@ "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." +" ELS DANYS PER PÈRDUA DE CLIENTS, INTERRUPCIONS DE LA FEINA, FALLADA O " +"MALFUNCIONAMENT 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 diff -Nru mate-utils-1.26.0/baobab/help/ca/index.docbook mate-utils-1.26.1/baobab/help/ca/index.docbook --- mate-utils-1.26.0/baobab/help/ca/index.docbook 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ca/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,287 +0,0 @@ - - - - - - -]> - - -
- - - - Manual de l'analitzador de l'ús dels discs - - - 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. - - - 2015-2021 Projecte de documentació de MATE - 2006 Fabio Marzocca - - - Projecte de documentació de MATE - - - Projecte de documentació de GNOME - - - - - - Equip de documentació de MATE Escriptori MATE - Fabio Marzocca Projecte de documentació de GNOME
thesaltydog@gmail.com
- - Fabio Marzocca
thesaltydog@gmail.com
- - -
- - - - - - Versió 1.10 del manual de l'analitzador de l'ús dels discs Juliol de 2015 - Wolfgang Ulbrich - Projecte de documentació de MATE - - Versió 1.0 del manual de l'analitzador de l'ús dels discs Abril de 2006 - Emmanuele Bassi ebassi@gmail.com - Projecte de documentació de GNOME - - - - Aquest manual descriu la versió 1.10 de l'analitzador de l'ús dels discs. - - - Retroacció - 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 pàgina de retroacció de MATE. - - -
- - Analitzador de l'ús dels discs - - - - - - Introducció - - L'analitzador de l'ús dels discs és una aplicació gràfica, basada en menús, per analitzar l'ús dels discs en qualsevol entorn MATE. L'analitzador de l'ús dels discs 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). - També detecta automàticament en temps real els canvis realitzats al vostre directori d'usuari, així com en qualsevol dispositiu muntat o desmuntat. L'analitzador de l'ús dels discs també proporciona una finestra gràfica de l'arbre d'assignació per a cada carpeta seleccionada. - - - - - - Primers passos - - L'analitzador de l'ús dels discs es pot iniciar de tres maneres: - - des del menú de MATE AplicacionsAccessoris; - - des de la finestra d'un terminal; - - des d'«Obre amb...» de Caja; - - - - -Si voleu iniciar l'analitzador de l'ús dels discs des d'un terminal, només cal que teclegeu: - -mate-disk-usage-analyzer <tot_el_camí_fins_al_directori> i després premeu Retorn. - - Si es llança des del menú de MATE, l'nalitzador de l'ús dels discs s'inicia i es manté en un estat de repòs, a l'espera d'una acció de l'usuari. - Quan inicieu l'analitzador de l'ús dels discs des del menú de MATE, es mostra la finestra següent. - - -
- Finestra de l'analitzador de l'ús dels discs - - 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. - -
- - -Aleshores l'usuari pot: - - iniciar una exploració de tot el sistema de fitxers; - - seleccionar una branca de directori local específica per explorar-la - - seleccionar un servidor remot i una carpeta per explorar-la - - establir les preferències - - - - -
- - - - - Utilització - - - Exploració de tot el sistema de fitxers - Per iniciar una exploració de tot el sistema de fitxers, seleccioneu des del menú AnalitzadorExplora el sistema de fitxers, o premeu damunt del botó Explora el sistema de fitxers de la barra d'eines. - - Quan acabi el procés d'exploració, obtindreu l'arbre complet del vostre sistema de fitxers, similar al de la figura següent. - - -
- Exploració de tot el sistema de fitxers de l'analitzador de l'ús dels discs - - 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. - -
- - - Quan executeu una exploració de tot el sistema de fitxers, la finestra de l'analitzador de l'ús dels discs 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. - - L'analitzador de l'ús dels discs 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 VistaEspai assignat . - - L'analitzador de l'ús dels discs 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. - - 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. -
- - - Exploració d'una sola carpeta - - Per iniciar una exploració d'una sola carpeta, seleccioneu des del menú AnalitzadorExplora la carpeta..., o premeu damunt del botó Explora una carpeta de la barra d'eines. - - - - - Exploració remota - - Si necessiteu explorar la carpeta remota d'un servidor, només feu clic a la icona de la barra d'eines Explora una carpeta remota o seleccioneu des del menú AnalitzadorExplora una carpeta remota, i obtindreu el quadre de diàleg següent. L'analitzador de l'ús dels discs pot connectar-se a un servidor a través de ssh, ftp, smb, http i https. - - -
- Exploració d'una carpeta remota de l'analitzador de l'ús dels discs - - Mostra el diàleg de carpeta remota de l'analitzador de l'ús dels discs. - -
- - -
- -
- - - - - Preferències - - Per canviar les preferències de l'aplicació de l'analitzador de l'ús dels discs, seleccioneu EditaPreferències. - - -
- Finestra de preferències de l'analitzador de l'ús dels discs - - Finestra de preferències - -
- - - - Seleccionar els dispositius a explorar - 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. - El dispositiu muntat a «/» no es pot excloure de l'exploració. - - - - Habilitar el monitoratge de la carpeta d'usuari - Si aquesta opció està marcada, l'analitzador de l'ús dels discs monitorarà constantment qualsevol canvi extern al directori d'usuari i avisarà a l'usuari si s'afegeix o es treu un fitxer. - -
- - - - Arbres d'assignació - - Els conceptes dels arbres d'assignació han estat desenvolupats per Ben Shneiderman en la dècada dels 90. Llegiu la seva visió sobre els arbres d'assignació. - - -
- Finestra de l'arbre d'assignació de l'analitzador de l'ús dels discs - - Teoria dels arbres d'assignació. Mostra 2 diagrames d'arbres d'assignació - -
- - - - 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. - - 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. - - Els arbres d'assignació són molt eficaços quan la mida és la característica més important a mostrar. -
- - - - Diagrama d'anells - - El diagrama d'anells é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: - - -
- L'analitzador de l'ús dels discs mostrant un diagrama d'anells amb l'ús del sistema de fitxers - - Després de llançar l'aplicació, es mostra l'ús del sistema de fitxers. La representació gràfica està a la dreta. - -
- - - 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 diagrama d'anells 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. - - - -
- L'analitzador de l'ús dels discs mostrant un diagrama d'anells amb l'ús d'una carpeta - - Després d'explorar una carpeta. - -
- - - El diagrama d'anells 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. - - 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 diagrama d'anells. 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 diagrama d'anells) obtindreu el comportament contrari, fent un pas enrere a la jerarquia. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ca/legal.xml mate-utils-1.26.1/baobab/help/ca/legal.xml --- mate-utils-1.26.0/baobab/help/ca/legal.xml 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ca/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 enllaç o bé al fitxer COPYING-DOCS que es distribueix amb aquest manual. - 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. - - 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. - - 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: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/baobab/help/ca@valencia/ca@valencia.po mate-utils-1.26.1/baobab/help/ca@valencia/ca@valencia.po --- mate-utils-1.26.0/baobab/help/ca@valencia/ca@valencia.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ca@valencia/ca@valencia.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Jose Alfredo Murcia Andrés , 2018 -# Pilar Embid , 2018 -# Empar Montoro , 2018 +# Stefano Karapetsas , 2021 +# Jose Alfredo Murcia Andrés , 2021 +# Pilar Embid , 2021 +# Empar Montoro , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Catalan (Valencian) (https://www.transifex.com/mate/teams/13566/ca@valencia/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Empar Montoro , 2021\n" +"Language-Team: Catalan (Valencian) (https://app.transifex.com/mate/teams/13566/ca@valencia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -123,8 +123,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -485,8 +486,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ca@valencia/index.docbook mate-utils-1.26.1/baobab/help/ca@valencia/index.docbook --- mate-utils-1.26.0/baobab/help/ca@valencia/index.docbook 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ca@valencia/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - Projecte de documentació del MATE - - - Projecte de documentació de GNOME - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Comentaris - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introducció - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Com començar - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Ús - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferències - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ca@valencia/legal.xml mate-utils-1.26.1/baobab/help/ca@valencia/legal.xml --- mate-utils-1.26.0/baobab/help/ca@valencia/legal.xml 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ca@valencia/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 enllaç o bé al fitxer COPYING-DOCS que es distribueix amb aquest manual. - 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. - - 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. - - 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: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/baobab/help/cmn/cmn.po mate-utils-1.26.1/baobab/help/cmn/cmn.po --- mate-utils-1.26.0/baobab/help/cmn/cmn.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/cmn/cmn.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# 趙惟倫 , 2018 +# 趙惟倫 , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: 趙惟倫 , 2018\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mate/teams/13566/cmn/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: 趙惟倫 , 2021\n" +"Language-Team: Chinese (Mandarin) (https://app.transifex.com/mate/teams/13566/cmn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -117,8 +117,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -479,8 +480,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/cmn/index.docbook mate-utils-1.26.1/baobab/help/cmn/index.docbook --- mate-utils-1.26.0/baobab/help/cmn/index.docbook 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/cmn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,503 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Woodman Tuen - - wmtuen@gmail.com - - - - 2005-06 - - Woodman Tuen - - - - - Abel Cheung - - abel@oaka.org - - - - 2003-04 - - Abel Cheung - - - - - 趙惟倫 - - bluebat@member.fsf.org - - - - 2013 - - 趙惟倫 - -
- - - Disk Usage Analyzer - - - - - - - 導覽 - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - 用量 - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - 偏好設定 - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/cmn/legal.xml mate-utils-1.26.1/baobab/help/cmn/legal.xml --- mate-utils-1.26.0/baobab/help/cmn/legal.xml 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/cmn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/crh/crh.po mate-utils-1.26.1/baobab/help/crh/crh.po --- mate-utils-1.26.0/baobab/help/crh/crh.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/crh/crh.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Crimean Turkish (https://www.transifex.com/mate/teams/13566/crh/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Crimean Turkish (https://app.transifex.com/mate/teams/13566/crh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -116,8 +116,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -478,8 +479,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/crh/index.docbook mate-utils-1.26.1/baobab/help/crh/index.docbook --- mate-utils-1.26.0/baobab/help/crh/index.docbook 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/crh/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Kullanım - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Tercihler - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/crh/legal.xml mate-utils-1.26.1/baobab/help/crh/legal.xml --- mate-utils-1.26.0/baobab/help/crh/legal.xml 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/crh/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/cs/cs.po mate-utils-1.26.1/baobab/help/cs/cs.po --- mate-utils-1.26.0/baobab/help/cs/cs.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/cs/cs.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,20 @@ # # Translators: -# Stefano Karapetsas , 2018 -# ToMáš Marný, 2018 -# Wolfgang Ulbrich , 2018 -# LiberteCzech , 2018 -# phebix , 2018 -# Roman Horník , 2021 +# Stefano Karapetsas , 2021 +# ToMáš Marný, 2021 # Lukáš Lommer , 2021 +# Wolfgang Ulbrich , 2021 +# LiberteCzech , 2021 +# phebix , 2021 +# Roman Horník , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Lukáš Lommer , 2021\n" -"Language-Team: Czech (https://www.transifex.com/mate/teams/13566/cs/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Roman Horník , 2021\n" +"Language-Team: Czech (https://app.transifex.com/mate/teams/13566/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -31,9 +31,7 @@ "Petr Tomeš \n" "Jakub Friedl \n" "Lucas Lommer \n" -"Kamil Páral \n" "Petr Kovář \n" -"Adrian Guniš \n" "Roman Horník " #. (itstool) path: articleinfo/title @@ -130,8 +128,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -492,8 +491,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/cs/index.docbook mate-utils-1.26.1/baobab/help/cs/index.docbook --- mate-utils-1.26.0/baobab/help/cs/index.docbook 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/cs/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,461 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - 2015-2021 Projekt dokumentace MATE - - 2006 - Fabio Marzocca - - - - Dokumentační projekt MATE - - - Dokumentační projekt GNOME - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Ohlasy - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Úvod - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Začínáme - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Využití - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Předvolby - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Povolit sledování domovské složky - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Kruhový diagram - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/cs/legal.xml mate-utils-1.26.1/baobab/help/cs/legal.xml --- mate-utils-1.26.0/baobab/help/cs/legal.xml 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/cs/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - 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. - - 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: - - 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 - - - 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. - - - - diff -Nru mate-utils-1.26.0/baobab/help/cy/cy.po mate-utils-1.26.1/baobab/help/cy/cy.po --- mate-utils-1.26.0/baobab/help/cy/cy.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/cy/cy.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# ciaran, 2018 +# Stefano Karapetsas , 2021 +# ciaran, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: ciaran, 2021\n" +"Language-Team: Welsh (https://app.transifex.com/mate/teams/13566/cy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -117,8 +117,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -479,8 +480,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/cy/index.docbook mate-utils-1.26.1/baobab/help/cy/index.docbook --- mate-utils-1.26.0/baobab/help/cy/index.docbook 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/cy/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Hoffterau - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/cy/legal.xml mate-utils-1.26.1/baobab/help/cy/legal.xml --- mate-utils-1.26.0/baobab/help/cy/legal.xml 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/cy/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/da/da.po mate-utils-1.26.1/baobab/help/da/da.po --- mate-utils-1.26.0/baobab/help/da/da.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/da/da.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # Joe Hansen , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" "Last-Translator: Joe Hansen , 2021\n" -"Language-Team: Danish (https://www.transifex.com/mate/teams/13566/da/)\n" +"Language-Team: Danish (https://app.transifex.com/mate/teams/13566/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,10 +20,10 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"\"Joe Hansen, 2012, 2013, 2014, 2015, 2016, 2017, 2018.\\n\"\n" -"\"\\n\"\n" -"\"Dansk-gruppen \\n\"\n" -"\"Mere info: http://www.dansk-gruppen.dk\"" +"Joe Hansen 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021.\n" +"\n" +"Dansk-gruppen \n" +"Mere info: http://www.dansk-gruppen.dk" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -53,13 +53,13 @@ #. (itstool) path: revdescription/para #: C/index.docbook:47 C/index.docbook:103 msgid "MATE Documentation Project" -msgstr "MATE-dokumentationsprojektet" +msgstr "MATE-dokumentationsprojekt" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:50 C/index.docbook:113 msgid "GNOME Documentation Project" -msgstr "GNOME-dokumentationsprojektet" +msgstr "GNOME-dokumentationsprojekt" #. (itstool) path: authorgroup/author #: C/index.docbook:56 @@ -126,14 +126,15 @@ #. (itstool) path: legalnotice/title #: C/index.docbook:121 msgid "Feedback" -msgstr "Tilbagemeldinger" +msgstr "Tilbagemelding" #. (itstool) path: legalnotice/para #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "For at rapportere en fejl eller komme med et forslag jævnfør programmet " "Diskforbrugsanalyse denne manual, så følg retningslinjerne i Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" "Konceptet Trækort blev udviklet af Ben Shneiderman i " -"90'erne. Læs hans vision om trækort." +"90'erne. Læs hans vision om " +"trækort." #. (itstool) path: figure/title #: C/index.docbook:339 @@ -620,8 +623,8 @@ " 2 treemap diagrams " msgstr "" " Treemaps teori. Viser 2" -" trækortsdiagrammer " +"format=\"PNG\"/> Trækortsteori. Viser 2 " +"trækortsdiagrammer " #. (itstool) path: sect1/para #: C/index.docbook:354 @@ -859,12 +862,12 @@ " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" -"Tilladelse er givet til at kopiere, distribuere og/eller ændre dette " +"Der gives tilladelse 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-1/> eller i filen COPYING-DOCS som distribueres " -"sammen med denne manual." +"version 1.1 eller enhver nyere version, udgivet af Free Software Foundation " +"uden invariante afsnit, uden forsidetekster, og uden bagsidetekster. Du kan " +"finde en kopi af GFDL'en her <_:ulink-1/> eller i filen COPYING-DOCS, der " +"distribueres med denne manual." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -874,10 +877,10 @@ "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." +"Denne manual er en del af MATE-manualsamlingen distribueret under GFDL. Hvis" +" du vil distribuere denne manual separat fra denne samling, kan du gøre det " +"ved at tilføje en kopi af licensen til manualen, som beskrevet i sektion 6 " +"af licensen." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -888,11 +891,11 @@ "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." +"Mange af navnene brugt af firmaer til at skelne deres produkter og tjenester" +" er registrerede varemærker. Der hvor disse navne optræder i MATE-" +"dokumentationen, og medlemmerne af MATE-dokumentationsprojektet er blevet " +"gjort opmærksomme på disse varemærker, er navnene skrevet med store " +"bogstaver eller store forbogstaver." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -914,14 +917,14 @@ "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 " +"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" +"FORBEHOLDSERKLÆRING; OG" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -940,10 +943,10 @@ "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 " +"ELLER FORSYNER 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, " +"SKADE SOM FØLGE AF TAB AF RYGTE, ARBEJDSSTOP, COMPUTER-FEJL 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." @@ -955,5 +958,6 @@ "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/>" +"DETTE DOKUMENT OG MODIFICEREDE VERSIONER GØRES TILGÆNGELIGT UNDER " +"BETINGELSERNE I GNU FREE DOCUMENTATION LICENSE UNDER DEN FORUDSÆTNING AT: " +"<_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/baobab/help/da/index.docbook mate-utils-1.26.1/baobab/help/da/index.docbook --- mate-utils-1.26.0/baobab/help/da/index.docbook 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/da/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,287 +0,0 @@ - - - - - - -]> - - -
- - - - Manual for diskforbrugsanalyse - - - Diskforbrugsanalyse er en grafisk, menudrevet fremviser, som du kan bruge til at se og overvåge dit diskforbrug og mappestruktur. - - - 2015-2021 MATE-dokumentationsprojektet - 2006 Fabio Marzocca - - - MATE-dokumentationsprojektet - - - GNOME-dokumentationsprojektet - - - - - - MATE-dokumentationsholdet MATE-skrivebordet - Fabio Marzocca GNOME-dokumentationsprojektet
thesaltydog@gmail.com
- - Fabio Marzocca
thesaltydog@gmail.com
- - -
- - - - - - Manual for Diskforbrugsanalyse version 1.10 Juli 2015 - Wolfgang Ulbrich - MATE-dokumentationsprojektet - - Manual for Diskforbrugsanalyse version 1.0 April 2006 - Emmanuele Bassi ebassi@gmail.com - GNOME-dokumentationsprojektet - - - - Denne manual beskriver version 1.10 af Diskforbrugsanalyse. - - - Tilbagemeldinger - For at rapportere en fejl eller komme med et forslag jævnfør programmet Diskforbrugsanalyse denne manual, så følg retningslinjerne i MATE's side for tilbagemeldinger. - - -
- - Diskforbrugsanalyse - - - - - - Introduktion - - Diskforbrugsanalyse er et grafisk, af menuen styret program til at analyse diskforbrug i MATE. Diskforbrugsanalyse kan nemt skanne enten hele filsystemtræet eller en specifik mappegren valgt af brugeren (lokal eller ekstern). - Programmet registrerer også automatisk i realtid enhver ændring lavet til din hjemmemappe samt alle monterede/afmonterede enheder. Diskforbrugsanalyse tilbyder også et fuldt grafisk trækortsvindue for hver valgt mappe. - - - - - - Kom i gang - - Diskforbrugsanalyse kan startes på en af tre måder: - - fra Matemenuen ProgrammerTilbehør; - - fra et terminalvindue; - - fraCaja »Åbn med ...« ; - - - - -Hvis du ønsker at starte Diskforbrugsanalyse fra et terminalvindue, så tast: - -mate-disk-usage-analyzer <fuld_sti_til_en_mappe>, tryk så på Retur. - - Hvis startet fra Matemenuen, starter og bliver Diskanalyseforbrug i en standby tilstand, ventende på en brugerhandling. - Når du starter Diskanalyseforbrug fra MATE-menuen vises det følgende vindue. - - -
- Vindue for Diskanalyseforbrug - - Viser Diskanalyseforbrugs hovedvindue. Indeholder menulinje, visningsområde, rullebjælker og statuslinje. - -
- - -Brugeren kan så: - - starte en fuld skanning af filsystemet; - - vælge en specifik lokal mappegren at skanne - - vælge en ekstern server og mappe at skanne - - angive præferencer - - - - -
- - - - - Forbrug - - - Fuld skanning af filsystem - For at starte en fuld filsystemskanning vælg AnalyseprogramSkan filsystem fra menuen, eller tryk på værktøjslinjeknappen Skan filsystemfilsystem. - - Når skanningsprocessen slutter, så vil du få det fulde træ over dit filsystem, som det vist i den næste figur. - - -
- Diskanalyseforbrug - fuld filsystemskanning - - Viser Diskanalyseforbrugs vindue for fuld filsystemskanning. Indeholder menulinje, visningsområde, rullebjælker og statuslinje. - -
- - - Når du afvikler en fuld filsystemskanning vil Diskanalyseforbrugs 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. - - Diskforbrugsanalyse 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 VisAllokeret plads . - - Diskanalyseforbrug 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. - - 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. -
- - - Skanning af en enkelt mappe - - For at starte skanning af en enkelt mappe vælg AnalyseprogramSkan mappe ... fra menuen, eller tryk på værktøjslinjeknappen Skan mappe. - - - - - Ekstern skanning - - Hvis du har brug for at skanne en ekstern servermappe, så klik bare på værktøjslinjens ikon Skan ekstern mappe eller vælg AnalyseprogramSkan ekstern mappe fra menuen og du får den følgende dialogboks. Diskforbrugsanalyse kan forbinde til en server via ssh, ftp, smb, http og https. - - -
- Diskforbrugsanalyse - ekstern mappeskanning - - Viser det eksterne mappedialogvinduet for Diskforbrugsanalyse. - -
- - -
- -
- - - - - Præferencer - - For at ændre programpræferencerne for Diskforbrugsanalyse, vælg RedigerPræferencer. - - -
- Præferencevindue for Diskforbrugsanalyse - - Præferencevindue - -
- - - - Vælg enheder at skanne - 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. - Enheden monteret på »/« kan ikke ekskluderes fra skanningen. - - - - Aktiver overvågning af hjem - Hvis denne indstilling er krydset af vil Diskforbrugsanalyse konstant overvåge alle eksterne ændringer til hjemmemappen og advare brugeren hvis en fil tilføjes/fjernes. - -
- - - - Trækort - - Konceptet Trækort blev udviklet af Ben Shneiderman i 90'erne. Læs hans vision om trækort. - - -
- Trækortsvindue for Diskforbrugsanalyse - - Treemaps teori. Viser 2 trækortsdiagrammer - -
- - - - 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. - - 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. - - Trækort er meget effektive når størrelse er den vigtigste funktion, der skal vises. -
- - - - Ringdiagram - - Ringdiagram 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: - - -
- Diskanalyseforbrug viser et ringdiagram med filsystemforbruget - - Efter opstart af programmet vises filsystemts brug. Grafisk repræsentation til højre. - -
- - - 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 Ringdiagrammet 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. - - - -
- Diskforbrugsanalyse viser et ringdiagram med brugen af en mappe - - Efter skanning af en mappe. - -
- - - Ringdiagrammet 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. - - 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 ringdiagrammet. 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 ringdiagrammet), så vil du få den modsatte opførelse, du går et trin tilbage i hierarkiet. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/da/legal.xml mate-utils-1.26.1/baobab/help/da/legal.xml --- mate-utils-1.26.0/baobab/help/da/legal.xml 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/da/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 henvisning eller i filen COPYING-DOCS som distribueres sammen med denne manual. - 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. - - 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. - - DOKUMENTET OG ÆNDREDE VERSIONER AF DOKUMENTET STILLES TIL RÅDIGHED UNDER GNU FREE DOCOMENTATION LICENSE MED FØLGENDE BETINGELSER: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/baobab/help/de/de.po mate-utils-1.26.1/baobab/help/de/de.po --- mate-utils-1.26.0/baobab/help/de/de.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/de/de.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,21 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Ettore Atalan , 2018 -# Tobias Bannert , 2018 -# Wolfgang Ulbrich , 2018 -# Moritz Bruder , 2018 +# Stefano Karapetsas , 2021 +# Ettore Atalan , 2021 +# Moritz Bruder , 2021 +# Tobias Bannert , 2021 +# Wolfgang Ulbrich , 2021 # Julian Rüger , 2021 +# Marcel Artz , 2021 +# Xpistian , 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2021\n" -"Language-Team: German (https://www.transifex.com/mate/teams/13566/de/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Xpistian , 2023\n" +"Language-Team: German (https://app.transifex.com/mate/teams/13566/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -30,7 +32,8 @@ "Hendrik Richter\n" "Christian Kirbach\n" "Wolfgang Stoeggl\n" -"Tobias Bannert" +"Tobias Bannert\n" +"Marcel Artz" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -47,7 +50,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:30 msgid "2015-2021 MATE Documentation Project" -msgstr "" +msgstr "2015-2021 Mate-Dokumentationsprojekt" #. (itstool) path: articleinfo/copyright #: C/index.docbook:34 @@ -120,14 +123,20 @@ #. (itstool) path: legalnotice/title #: C/index.docbook:121 msgid "Feedback" -msgstr "Rückmeldungen" +msgstr "" +"\n" +"\n" +"### CuBox i4 Pro Review\n" +"\n" +"" #. (itstool) path: legalnotice/para #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Um einen Fehler zu melden oder eine Verbesserung bzgl. der " "Festplattenbelegungsanalyse oder dieses Handbuchs vorzuschlagen, folgen Sie " @@ -492,8 +501,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title @@ -791,6 +801,6 @@ "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 " +"DAS DOKUMENT SOWIE VERÄNDERTE VERSIONEN DAVON WERDEN UNTER DEN BEDINGUNGEN " +"DER »GNU FREE DOCUMENTATION LICENSE« BEREITGESTELLT, MIT DEM WEITEREN " "VERSTÄNDNIS, DASS: <_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/baobab/help/de/index.docbook mate-utils-1.26.1/baobab/help/de/index.docbook --- mate-utils-1.26.0/baobab/help/de/index.docbook 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/de/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,461 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE-Dokumentationsprojekt - - - GNOME-Dokumentationsprojekt - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Rückmeldungen - Um einen Fehler zu melden oder eine Verbesserung bzgl. der Festplattenbelegungsanalyse oder dieses Handbuchs vorzuschlagen, folgen Sie den Anweisungen auf der MATE-Rückmeldungsseite. - - -
- - - Disk Usage Analyzer - - - - - - - Einführung - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Erste Schritte - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Verwendung - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Einstellungen - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/de/legal.xml mate-utils-1.26.1/baobab/help/de/legal.xml --- mate-utils-1.26.0/baobab/help/de/legal.xml 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/de/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 Verknüpfung oder in der mit diesem Handbuch gelieferten Datei COPYING-DOCS. - 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. - - 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. - - DAS DOKUMENT SOWIE MODIFIZIERTE VERSIONEN DAVON WERDEN UNTER DEN BEDINGUNGEN DER GNU FREE DOCUMENTATION LICENSE BEREITGESTELLT, MIT DEM WEITEREN VERSTÄNDNIS, DASS: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/baobab/help/dz/dz.po mate-utils-1.26.1/baobab/help/dz/dz.po --- mate-utils-1.26.0/baobab/help/dz/dz.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/dz/dz.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Dzongkha (https://www.transifex.com/mate/teams/13566/dz/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Dzongkha (https://app.transifex.com/mate/teams/13566/dz/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -117,8 +117,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -479,8 +480,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/dz/index.docbook mate-utils-1.26.1/baobab/help/dz/index.docbook --- mate-utils-1.26.0/baobab/help/dz/index.docbook 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/dz/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - བེད་སྤྱོད་ - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - དགའ་གདམ་ཚུ། - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/dz/legal.xml mate-utils-1.26.1/baobab/help/dz/legal.xml --- mate-utils-1.26.0/baobab/help/dz/legal.xml 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/dz/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/el/el.po mate-utils-1.26.1/baobab/help/el/el.po --- mate-utils-1.26.0/baobab/help/el/el.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/el/el.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Alexandros Kapetanios , 2018 -# 437c9d6e19936ed69f57bed9e0fe4716, 2018 -# kosmmart , 2018 -# TheDimitris15, 2019 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 +# Alexandros Kapetanios , 2021 +# 437c9d6e19936ed69f57bed9e0fe4716, 2021 +# kosmmart , 2021 +# TheDimitris15, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: TheDimitris15, 2019\n" -"Language-Team: Greek (https://www.transifex.com/mate/teams/13566/el/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: TheDimitris15, 2021\n" +"Language-Team: Greek (https://app.transifex.com/mate/teams/13566/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -123,8 +123,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -485,8 +486,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title @@ -682,8 +684,8 @@ " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" -"Επιτρέπεται η αντιγραφή, η διανομή και / ή η τροποποίηση αυτού του εγγράφου " -"σύμφωνα με τους όρους της Άδειας Τεκμηρίωσης ελευθέρου λογισμικού GNU " +"Επιτρέπεται η αντιγραφή, η διανομή και / η τροποποίηση αυτού του εγγράφου " +"σύμφωνα με τους όρους της Άδειας Τεκμηρίωσης Ελευθέρου λογισμικού GNU " "(GFDL), Έκδοσης 1.1 ή οποιασδήποτε μεταγενέστερης έκδοσης που δημοσιεύεται " "από το Ίδρυμα Ελεύθερου Λογισμικού χωρίς Μεταβλητές Ενότητες, χωρίς Κείμενα " "Προσωρινού Εξώφυλλου και Κανένα κείμενο πίσω. Μπορείτε να βρείτε ένα " @@ -771,7 +773,6 @@ "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" -"Η οθόνη προσβασιμότητας πληκτρολογίου σας δείχνει την κατάσταση των " -"χαρακτηριστικών προσβασιμότητας πληκτρολογίου όταν αυτά χρησιμοποιούνται. " -"Για παράδειγμα, μπορείτε να δείτε ποια πλήκτρα τροποποίησης είναι ενεργά και" -" ποια κουμπιά του ποντικιού πιέζονται μέσω του πληκτρολογίου." +"ΤΟ ΕΓΓΡΑΦΟ ΚΑΙ ΤΡΟΠΟΠΟΙΗΜΕΝΕΣ ΕΚΔΟΣΕΙΣ ΤΟΥ ΕΓΓΡΑΦΟΥ ΠΑΡΕΧΟΝΤΑΙ ΜΕ ΤΟΥΣ ΟΡΟΥΣ" +" ΤΗΣ ΑΔΕΙΑΣ ΤΕΚΜΗΡΙΩΣΗ ΕΛΕΥΘΕΡΟΥ ΛΟΓΙΣΜΙΚΟΥ GNU ΜΕ ΤΗΝ ΠΕΡΑΙΤΕΡΩ ΚΑΤΑΝΟΜΗ " +"ΟΤΙ: <_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/baobab/help/el/index.docbook mate-utils-1.26.1/baobab/help/el/index.docbook --- mate-utils-1.26.0/baobab/help/el/index.docbook 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/el/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - Έργο Τεκμηρίωσης MATE - - - Έργο τεκμηρίωσης GNOME - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Ανάδραση - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Εισαγωγή - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Για να ξεκινήσετε - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Χρήση - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Προτιμήσεις - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/el/legal.xml mate-utils-1.26.1/baobab/help/el/legal.xml --- mate-utils-1.26.0/baobab/help/el/legal.xml 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/el/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ - - - Επιτρέπεται η αντιγραφή, η διανομή και / ή η τροποποίηση αυτού του εγγράφου σύμφωνα με τους όρους της Άδειας Τεκμηρίωσης ελευθέρου λογισμικού GNU (GFDL), Έκδοσης 1.1 ή οποιασδήποτε μεταγενέστερης έκδοσης που δημοσιεύεται από το Ίδρυμα Ελεύθερου Λογισμικού χωρίς Μεταβλητές Ενότητες, χωρίς Κείμενα Προσωρινού Εξώφυλλου και Κανένα κείμενο πίσω. Μπορείτε να βρείτε ένα αντίγραφο του GFDL σε αυτό σύνδεσμος ή στο αρχείο COPYING-DOCS που διανέμεται με αυτό το εγχειρίδιο. - Αυτή η τεκμηρίωση είναι μέρος της συλλογής τεκμηρίωσης του MATE όπως διανέμεται υπό τους όρους του GFDL. Εάν επιθυμείτε να διανείμετε αυτή την τεκμηρίωση ξεχωριστά από την συλλογή, μπορείτε να το κάνετε εάν η τεκμηρίωση συνοδεύεται από αντίγραφο της άδειας (GFDL) όπως περιγράφεται στον τομέα 6 της άδειας. - - Πολλά από τα ονόματα που χρησιμοποιούνται από εταιρίες για να ξεχωρίσουν τα προϊόντα και τις υπηρεσίες είναι σήματα κατατεθέν. Όπου αυτά τα ονόματα εμφανίζονται στην τεκμηρίωση MATE, και τα μέλη της ομάδας τεκμηρίωσης MATE έχουν γνώση αυτών, τότε αυτά αναγράφονται με κεφαλαίους χαρακτήρες ή με αρχικούς κεφαλαίους χαρακτήρες. - - Η οθόνη προσβασιμότητας πληκτρολογίου σας δείχνει την κατάσταση των χαρακτηριστικών προσβασιμότητας πληκτρολογίου όταν αυτά χρησιμοποιούνται. Για παράδειγμα, μπορείτε να δείτε ποια πλήκτρα τροποποίησης είναι ενεργά και ποια κουμπιά του ποντικιού πιέζονται μέσω του πληκτρολογίου. - diff -Nru mate-utils-1.26.0/baobab/help/en_AU/en_AU.po mate-utils-1.26.1/baobab/help/en_AU/en_AU.po --- mate-utils-1.26.0/baobab/help/en_AU/en_AU.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/en_AU/en_AU.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Michael Findlay , 2018 +# Michael Findlay , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: English (Australia) (https://www.transifex.com/mate/teams/13566/en_AU/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Michael Findlay , 2021\n" +"Language-Team: English (Australia) (https://app.transifex.com/mate/teams/13566/en_AU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/en_AU/index.docbook mate-utils-1.26.1/baobab/help/en_AU/index.docbook --- mate-utils-1.26.0/baobab/help/en_AU/index.docbook 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/en_AU/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferences - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/en_AU/legal.xml mate-utils-1.26.1/baobab/help/en_AU/legal.xml --- mate-utils-1.26.0/baobab/help/en_AU/legal.xml 2021-08-05 19:46:18.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/en_AU/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/en_CA/en_CA.po mate-utils-1.26.1/baobab/help/en_CA/en_CA.po --- mate-utils-1.26.0/baobab/help/en_CA/en_CA.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/en_CA/en_CA.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: English (Canada) (https://www.transifex.com/mate/teams/13566/en_CA/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: English (Canada) (https://app.transifex.com/mate/teams/13566/en_CA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/en_CA/index.docbook mate-utils-1.26.1/baobab/help/en_CA/index.docbook --- mate-utils-1.26.0/baobab/help/en_CA/index.docbook 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/en_CA/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferences - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/en_CA/legal.xml mate-utils-1.26.1/baobab/help/en_CA/legal.xml --- mate-utils-1.26.0/baobab/help/en_CA/legal.xml 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/en_CA/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/en_GB/en_GB.po mate-utils-1.26.1/baobab/help/en_GB/en_GB.po --- mate-utils-1.26.0/baobab/help/en_GB/en_GB.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/en_GB/en_GB.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Martin Wimpress , 2018 -# Andi Chandler , 2021 +# Stefano Karapetsas , 2021 +# Andi Chandler , 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2021\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mate/teams/13566/en_GB/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Andi Chandler , 2023\n" +"Language-Team: English (United Kingdom) (https://app.transifex.com/mate/teams/13566/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,12 +19,14 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Martin Wimpress" +msgstr "" +"Martin Wimpress\n" +"Andi Chandler" #. (itstool) path: articleinfo/title #: C/index.docbook:23 msgid "Disk Usage Analyzer Manual" -msgstr "" +msgstr "Disk Usage Analyser Manual" #. (itstool) path: abstract/para #: C/index.docbook:26 @@ -33,6 +34,8 @@ "Disk Usage Analyzer is a graphical, menu-driven viewer that you can use to " "view and monitor your disk usage and folder structure." msgstr "" +"Disk Usage Analyser is a graphical, menu-driven viewer that you can use to " +"view and monitor your disk usage and folder structure." #. (itstool) path: articleinfo/copyright #: C/index.docbook:30 @@ -42,7 +45,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:34 msgid "2006 Fabio Marzocca" -msgstr "" +msgstr "2006 Fabio Marzocca" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -62,6 +65,8 @@ "MATE Documentation Team MATE " "Desktop " msgstr "" +"MATE Documentation Team MATE " +"Desktop " #. (itstool) path: authorgroup/author #: C/index.docbook:62 @@ -70,6 +75,9 @@ "GNOME Documentation Project
" "thesaltydog@gmail.com
" msgstr "" +"Fabio Marzocca " +"GNOME Documentation Project
" +"thesaltydog@gmail.com
" #. (itstool) path: authorgroup/author #: C/index.docbook:71 @@ -77,11 +85,13 @@ "Fabio Marzocca " "
thesaltydog@gmail.com
" msgstr "" +"Fabio Marzocca " +"
thesaltydog@gmail.com
" #. (itstool) path: revdescription/para #: C/index.docbook:101 msgid "Wolfgang Ulbrich" -msgstr "" +msgstr "Wolfgang Ulbrich" #. (itstool) path: revhistory/revision #: C/index.docbook:97 @@ -89,11 +99,13 @@ "Disk Usage Analyzer Manual 1.10 July " "2015 <_:revdescription-1/>" msgstr "" +"Disk Usage Analyser Manual 1.10 July " +"2015 <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:110 msgid "Emmanuele Bassi ebassi@gmail.com" -msgstr "" +msgstr "Emmanuele Bassi ebassi@gmail.com" #. (itstool) path: revhistory/revision #: C/index.docbook:106 @@ -101,11 +113,13 @@ "Disk Usage Analyzer Manual 1.0 April " "2006 <_:revdescription-1/>" msgstr "" +"Disk Usage Analyser Manual 1.0 April " +"2006 <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:118 msgid "This manual describes version 1.10 of Disk Usage Analyzer." -msgstr "" +msgstr "This manual describes version 1.10 of Disk Usage Analyser." #. (itstool) path: legalnotice/title #: C/index.docbook:121 @@ -116,14 +130,19 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." -msgstr "" +"application or this manual, follow the directions in the MATE Feedback " +"Page." +msgstr "" +"To report a bug or make a suggestion regarding the Disk Usage Analyser " +"application or this manual, follow the directions in the MATE Feedback " +"Page." #. (itstool) path: article/indexterm #: C/index.docbook:130 msgid "Disk Usage Analyzer" -msgstr "" +msgstr "Disk Usage Analyser" #. (itstool) path: sect1/title #: C/index.docbook:138 @@ -138,6 +157,10 @@ " Usage Analyzer can easily scan either the whole filesystem " "tree, or a specific user-requested directory branch (local or remote)." msgstr "" +"Disk Usage Analyser is a graphical, menu-driven " +"application to analyze disk usage in any MATE environment. Disk" +" Usage Analyser can easily scan either the whole filesystem " +"tree, or a specific user-requested directory branch (local or remote)." #. (itstool) path: sect1/para #: C/index.docbook:144 @@ -147,17 +170,22 @@ "Analyzer also provides a full graphical treemap window for " "each selected folder." msgstr "" +"It also auto-detects in real-time any changes made to your home directory as" +" far as any mounted/unmounted device. Disk Usage " +"Analyser also provides a full graphical treemap window for " +"each selected folder." #. (itstool) path: sect1/title #: C/index.docbook:153 msgid "Getting Started" -msgstr "" +msgstr "Getting Started" #. (itstool) path: sect1/para #: C/index.docbook:155 msgid "" "Disk Usage Analyzer can be started in three ways:" msgstr "" +"Disk Usage Analyser can be started in three ways:" #. (itstool) path: listitem/para #: C/index.docbook:157 @@ -165,16 +193,18 @@ "from MATE menu " "ApplicationsAccessories;" msgstr "" +"from MATE menu " +"ApplicationsAccessories;" #. (itstool) path: listitem/para #: C/index.docbook:159 msgid "from a terminal window;" -msgstr "" +msgstr "from a terminal window;" #. (itstool) path: listitem/para #: C/index.docbook:161 msgid "from Caja \"Open with...\" ;" -msgstr "" +msgstr "from Caja \"Open with...\" ;" #. (itstool) path: sect1/para #: C/index.docbook:166 @@ -182,6 +212,8 @@ "If you want to start Disk Usage Analyzer from a " "terminal window, just type:" msgstr "" +"If you want to start Disk Usage Analyser from a " +"terminal window, just type:" #. (itstool) path: sect1/para #: C/index.docbook:168 @@ -190,6 +222,9 @@ "<full_path_to_a_directory>, then press " "Return." msgstr "" +"mate-disk-usage-analyzer " +"<full_path_to_a_directory>, then press " +"Return." #. (itstool) path: sect1/para #: C/index.docbook:170 @@ -197,6 +232,8 @@ "If launched from MATE menu, Disk Usage Analyzer " "starts and remains in a stand-by state, waiting for user action." msgstr "" +"If launched from MATE menu, Disk Usage Analyzer " +"starts and remains in a stand-by state, waiting for user action." #. (itstool) path: sect1/para #: C/index.docbook:171 @@ -204,11 +241,13 @@ "When you start Disk Usage Analyzer from the MATE " "Menu, the following window is displayed." msgstr "" +"When you start Disk Usage Analyser from the MATE " +"Menu, the following window is displayed." #. (itstool) path: figure/title #: C/index.docbook:175 msgid "Disk Usage Analyzer Window" -msgstr "" +msgstr "Disk Usage Analyser Window" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -221,6 +260,8 @@ "external ref='figures/baobab_window.png' " "md5='381c84c892310cbc49afc0d5e90ad555'" msgstr "" +"external ref='figures/baobab_window.png' " +"md5='381c84c892310cbc49afc0d5e90ad555'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:177 @@ -230,31 +271,35 @@ "Analyzer main window. Contains menubar, display area, scrollbars, and " "statusbar. " msgstr "" +" Shows Disk Usage " +"Analyser main window. Contains menubar, display area, scrollbars, and " +"statusbar. " #. (itstool) path: sect1/para #: C/index.docbook:189 msgid "The user can then:" -msgstr "" +msgstr "The user can then:" #. (itstool) path: listitem/para #: C/index.docbook:191 msgid "start a full filesystem scan;" -msgstr "" +msgstr "start a full filesystem scan;" #. (itstool) path: listitem/para #: C/index.docbook:193 msgid "select a specific local directory branch to scan" -msgstr "" +msgstr "select a specific local directory branch to scan" #. (itstool) path: listitem/para #: C/index.docbook:195 msgid "select a remote server and folder to scan" -msgstr "" +msgstr "select a remote server and folder to scan" #. (itstool) path: listitem/para #: C/index.docbook:197 msgid "set preferences" -msgstr "" +msgstr "set preferences" #. (itstool) path: sect1/title #: C/index.docbook:207 @@ -264,7 +309,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:210 msgid "Full filesystem scan" -msgstr "" +msgstr "Full filesystem scan" #. (itstool) path: sect2/para #: C/index.docbook:211 @@ -274,6 +319,10 @@ "Filesystem from the menu, or press on the " "Scan Filesystem toolbar button." msgstr "" +"To start a full filesystem scan select " +"AnalyzerScan " +"Filesystem from the menu, or press on the " +"Scan Filesystem toolbar button." #. (itstool) path: sect2/para #: C/index.docbook:214 @@ -281,11 +330,13 @@ "When the scanning process ends up, you will get the full tree of your " "filesystem, like the one in the next Figure." msgstr "" +"When the scanning process ends up, you will get the full tree of your " +"filesystem, like the one in the next Figure." #. (itstool) path: figure/title #: C/index.docbook:219 msgid "Disk Usage Analyzer Full filesystem scan" -msgstr "" +msgstr "Disk Usage Analyser Full filesystem scan" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -298,6 +349,8 @@ "external ref='figures/baobab_fullscan.png' " "md5='c36d630b13ddb1e1712125dc34262229'" msgstr "" +"external ref='figures/baobab_fullscan.png' " +"md5='c36d630b13ddb1e1712125dc34262229'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:221 @@ -307,6 +360,10 @@ "Analyzer full filesystem scan window. Contains menubar, display area, " "scrollbars, and statusbar. " msgstr "" +" Shows Disk Usage " +"Analyser full filesystem scan window. Contains menubar, display area, " +"scrollbars, and statusbar. " #. (itstool) path: note/para #: C/index.docbook:233 @@ -316,6 +373,10 @@ "thread starts scanning the filesystem. If any large partition is mounted on " "the filesystem, that will be scanned too." msgstr "" +"When you run a full filesystem scan, Disk Usage " +"Analyzer 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." #. (itstool) path: sect2/para #: C/index.docbook:238 @@ -327,6 +388,12 @@ "ViewAllocated " "Space ." msgstr "" +"Disk Usage Analyzer 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 " +"ViewAllocated " +"Space ." #. (itstool) path: warning/para #: C/index.docbook:243 @@ -335,6 +402,9 @@ " 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." msgstr "" +"Disk Usage Analyzer 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." #. (itstool) path: sect2/para #: C/index.docbook:247 @@ -344,11 +414,15 @@ "counted in the total, but highlighted in the right-hand column of the " "window." msgstr "" +"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." #. (itstool) path: sect2/title #: C/index.docbook:254 msgid "Single folder scan" -msgstr "" +msgstr "Single folder scan" #. (itstool) path: sect2/para #: C/index.docbook:256 @@ -358,11 +432,15 @@ "Folder... from the menu, or press on the " "Scan Folder toolbar button." msgstr "" +"To start a single folder scan select " +"AnalyzerScan " +"Folder... from the menu, or press on the " +"Scan Folder toolbar button." #. (itstool) path: sect2/title #: C/index.docbook:263 msgid "Remote scan" -msgstr "" +msgstr "Remote scan" #. (itstool) path: sect2/para #: C/index.docbook:265 @@ -374,11 +452,17 @@ "following dialog box. Disk Usage Analyzer can " "connect to a server through ssh, ftp, smb, http and https." msgstr "" +"If you need to scan a remote server-folder, just click on the toolbar icon " +"Scan Remote Folder or select " +"AnalyzerScan Remote " +"Folder from the menu and you will get the " +"following dialog box. Disk Usage Analyzer can " +"connect to a server through ssh, ftp, smb, http and https." #. (itstool) path: figure/title #: C/index.docbook:272 msgid "Disk Usage Analyzer Remote folder scan" -msgstr "" +msgstr "Disk Usage Analyzer Remote folder scan" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -391,6 +475,8 @@ "external ref='figures/baobab_remote.png' " "md5='b8d834a11cf8f227e1aefdee167a1a67'" msgstr "" +"external ref='figures/baobab_remote.png' " +"md5='b8d834a11cf8f227e1aefdee167a1a67'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:274 @@ -399,6 +485,9 @@ "format=\"PNG\"/> Shows Disk Usage " "Analyzer remote folder dialog window. " msgstr "" +" Shows Disk Usage " +"Analyzer remote folder dialogue window. " #. (itstool) path: sect1/title #: C/index.docbook:293 @@ -412,11 +501,14 @@ "preferences, choose " "EditPreferences." msgstr "" +"To change the Disk Usage Analyzer application " +"preferences, choose " +"EditPreferences." #. (itstool) path: figure/title #: C/index.docbook:300 msgid "Disk Usage Analyzer Preferences Window" -msgstr "" +msgstr "Disk Usage Analyser Preferences Window" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -429,6 +521,8 @@ "external ref='figures/baobab_prefs.png' " "md5='64e7c2ce647708579f9cc749c63aeca5'" msgstr "" +"external ref='figures/baobab_prefs.png' " +"md5='64e7c2ce647708579f9cc749c63aeca5'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:302 @@ -437,11 +531,14 @@ "format=\"PNG\"/> Preferences window " " " msgstr "" +" Preferences window " +" " #. (itstool) path: sect2/title #: C/index.docbook:315 msgid "Select devices to be scanned" -msgstr "" +msgstr "Select devices to be scanned" #. (itstool) path: sect2/para #: C/index.docbook:316 @@ -450,16 +547,19 @@ "are listed. Click on the checkbox to include/exclude the partition into the " "filesystem scanning operations." msgstr "" +"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." #. (itstool) path: note/para #: C/index.docbook:319 msgid "The device mounted on \"/\" cannot be excluded from the scan." -msgstr "" +msgstr "The device mounted on \"/\" cannot be excluded from the scan." #. (itstool) path: sect2/title #: C/index.docbook:323 msgid "Enable monitoring of home" -msgstr "" +msgstr "Enable monitoring of home" #. (itstool) path: sect2/para #: C/index.docbook:324 @@ -468,24 +568,32 @@ "will constantly monitor any external changes to home directory and warn the " "user if a file is added/removed." msgstr "" +"If this option is checked, Disk Usage Analyzer " +"will constantly monitor any external changes to home directory and warn the " +"user if a file is added/removed." #. (itstool) path: sect1/title #: C/index.docbook:332 msgid "Treemaps" -msgstr "" +msgstr "Treemaps" #. (itstool) path: sect1/para #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" +"Treemap concepts have been developed by Ben Shneiderman" +" in the '90s. Read his vision on " +"treemaps." #. (itstool) path: figure/title #: C/index.docbook:339 msgid "Disk Usage Analyzer Treemap Window" -msgstr "" +msgstr "Disk Usage Analyser Treemap Window" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -498,6 +606,8 @@ "external ref='figures/baobab_treemaps.png' " "md5='b553b49db25f9d6b98efcc394a5d3689'" msgstr "" +"external ref='figures/baobab_treemaps.png' " +"md5='b553b49db25f9d6b98efcc394a5d3689'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:341 @@ -506,6 +616,9 @@ "format=\"PNG\"/> Treemap's theory. Shows" " 2 treemap diagrams " msgstr "" +" Treemap's theory. Shows" +" 2 treemap diagrams " #. (itstool) path: sect1/para #: C/index.docbook:354 @@ -515,6 +628,10 @@ "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." msgstr "" +"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." #. (itstool) path: sect1/para #: C/index.docbook:359 @@ -528,6 +645,14 @@ "in the treemap, as a result of its construction. Color and annotation can be" " used to give extra information about the leaves." msgstr "" +"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. Colour and annotation can " +"be used to give extra information about the leaves." #. (itstool) path: note/para #: C/index.docbook:368 @@ -535,11 +660,13 @@ "Treemaps are very effective when size is the most important feature to be " "displayed." msgstr "" +"Treemaps are very effective when size is the most important feature to be " +"displayed." #. (itstool) path: sect1/title #: C/index.docbook:374 msgid "Ringschart" -msgstr "" +msgstr "Ringschart" #. (itstool) path: sect1/para #: C/index.docbook:376 @@ -548,11 +675,14 @@ "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:" msgstr "" +"Ringschart 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:" #. (itstool) path: figure/title #: C/index.docbook:383 msgid "Disk Usage Analyzer showing a ringschart with the file system usage" -msgstr "" +msgstr "Disk Usage Analyser showing a ringschart with the file system usage" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -565,6 +695,8 @@ "external ref='figures/baobab_ringschart1.png' " "md5='84b2e52d360fbda7311ce59a9532be7a'" msgstr "" +"external ref='figures/baobab_ringschart1.png' " +"md5='84b2e52d360fbda7311ce59a9532be7a'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:385 @@ -574,6 +706,10 @@ "application, it is showed the file system usage. Graphical representation on" " the right. " msgstr "" +" After launching the " +"application, it is showed the file system usage. Graphical representation on" +" the right. " #. (itstool) path: sect1/para #: C/index.docbook:398 @@ -586,11 +722,18 @@ "it before it has been completed, only a partial representation is done based" " on the directories whose usage was computed." msgstr "" +"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 Ringschart 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." #. (itstool) path: figure/title #: C/index.docbook:411 msgid "Disk Usage Analyzer showing a ringschart with the usage of a folder" -msgstr "" +msgstr "Disk Usage Analyser showing a ringschart with the usage of a folder" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -603,6 +746,8 @@ "external ref='figures/baobab_ringschart2.png' " "md5='d938ef7e9299de5b304c7654bf14e364'" msgstr "" +"external ref='figures/baobab_ringschart2.png' " +"md5='d938ef7e9299de5b304c7654bf14e364'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:413 @@ -611,6 +756,9 @@ "format=\"PNG\"/> After scanning a " "folder. " msgstr "" +" After scanning a " +"folder. " #. (itstool) path: sect1/para #: C/index.docbook:425 @@ -634,6 +782,24 @@ "indicating their names. It's possible that not all of the subfolders' names " "are displayed, to avoid overlappings." msgstr "" +"The Ringschart is composed of a set of nested rings " +"around a central circle. This circle symbolises 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 colour to ease " +"visualisation. 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 grey tooltips will appear, " +"indicating their names. It's possible that not all of the subfolders' names " +"are displayed, to avoid overlappings." #. (itstool) path: sect1/para #: C/index.docbook:446 @@ -648,6 +814,15 @@ "ringschart frame) you'll get the opposite behavior, " "going back one step in the hierarchy." msgstr "" +"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 ringschart 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 " +"ringschart frame) you'll get the opposite behaviour, " +"going back one step in the hierarchy." #. (itstool) path: sect1/para #: C/index.docbook:457 @@ -659,6 +834,12 @@ "representation, files are taken into account to calculate the amount of " "space occupied by folders." msgstr "" +"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." #. (itstool) path: para/ulink #: C/legal.xml:9 diff -Nru mate-utils-1.26.0/baobab/help/en_GB/index.docbook mate-utils-1.26.1/baobab/help/en_GB/index.docbook --- mate-utils-1.26.0/baobab/help/en_GB/index.docbook 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/en_GB/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,461 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - 2015-2021 MATE Documentation Project - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferences - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/en_GB/legal.xml mate-utils-1.26.1/baobab/help/en_GB/legal.xml --- mate-utils-1.26.0/baobab/help/en_GB/legal.xml 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/en_GB/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 link or in the file COPYING-DOCS distributed with this manual. - 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. - - 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. - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENCE WITH THE FURTHER UNDERSTANDING THAT: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/baobab/help/eo/eo.po mate-utils-1.26.1/baobab/help/eo/eo.po --- mate-utils-1.26.0/baobab/help/eo/eo.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/eo/eo.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Michael Moroni , 2018 -# Stefano Karapetsas , 2018 -# Forecast , 2018 -# Cora Loftis, 2018 +# Michael Moroni , 2021 +# Stefano Karapetsas , 2021 +# Forecast , 2021 +# Cora Loftis, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Cora Loftis, 2018\n" -"Language-Team: Esperanto (https://www.transifex.com/mate/teams/13566/eo/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Cora Loftis, 2021\n" +"Language-Team: Esperanto (https://app.transifex.com/mate/teams/13566/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -125,8 +125,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -487,8 +488,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/eo/index.docbook mate-utils-1.26.1/baobab/help/eo/index.docbook --- mate-utils-1.26.0/baobab/help/eo/index.docbook 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/eo/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - Projekto de Dokumentado de MATE - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Rimarkoj - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Enkonduko - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Uzado - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Agordoj - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/eo/legal.xml mate-utils-1.26.1/baobab/help/eo/legal.xml --- mate-utils-1.26.0/baobab/help/eo/legal.xml 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/eo/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,55 +0,0 @@ - - - Permeso estas aljuĝita kopii, distribui kaj/aŭ ŝanĝi ĉi tiun dokumenton sur la kondiĉoj de la GNU Licenso de Libera Dokumentado (GFDL), Eldono 1.1 aŭ iu posta eldono eldonita de la Free Software Foundation, sen Invariantaj Sekcioj, aŭ Teksto de Antaŭa aŭ Malantaŭa Kovrilo. Vi povas trovi kopio de la GFDL je ĉi tiun ligo aŭ en la dosiero COPYING-DOCS, distribuita kun ĉi tiu manlibro. - Ĉi tiu manlibro estas parto de kolekto de manlibroj de MATE, distribuita sur la GFDL. Se vi ŝatus distribui ĉi tiun manlibron aparte de la kolekto, vi povas fari tion aldonante kopion de la licenso al la manlibro, kiel priskribita je sekcio 6 de la licenso. - - Multaj el la nomoj uzitaj de kompanioj distingui iliaj produktoj kaj servicioj asertis kiel varmarkoj. Tie, kie tiuj nomoj aperas je iu dokumentado de MATE, kaj la membroj de la Projekto de Dokumentado de MATE estas konsciaj pri tiuj, tiam la nomoj estas majusklaj aŭ la unua letero estas majuskla. - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/es/es.po mate-utils-1.26.1/baobab/help/es/es.po --- mate-utils-1.26.0/baobab/help/es/es.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es/es.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,31 +1,33 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Andres Sanchez , 2018 -# elio , 2018 -# Isabel Ortuño , 2018 -# Benjamin Perez Carrillo , 2020 -# Toni Estévez , 2021 +# seacat , 2021 +# Stefano Karapetsas , 2021 +# Andres Sanchez , 2021 +# elio , 2021 +# Benjamin Perez Carrillo , 2021 # Wolfgang Ulbrich , 2021 +# Isabel Ortuño , 2021 +# Toni Estévez , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Wolfgang Ulbrich , 2021\n" -"Language-Team: Spanish (https://www.transifex.com/mate/teams/13566/es/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Toni Estévez , 2021\n" +"Language-Team: Spanish (https://app.transifex.com/mate/teams/13566/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" msgstr "" -"Toni Estevez , 2019\n" +"Toni Estevez , 2020-2021\n" +"Adolfo Jayme Barrientos , 2018\n" "Jorge González , 2007-2010\n" "Francisco Javier F. Serrador , 2003-2006\n" "Pablo Gonzalo del Campo , 2002-2003" @@ -108,8 +110,8 @@ "Disk Usage Analyzer Manual 1.10 July " "2015 <_:revdescription-1/>" msgstr "" -"Disk Usage Analyzer Manual 1.10 July " -"2015 <_:revdescription-1/>" +"Manual de Analizador del uso del disco 1.10 " +"Julio 2015 <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:110 @@ -139,8 +141,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Para informar de un error o hacer una sugerencia acerca de la aplicación " "Analizador del uso del disco o de este manual, siga las instrucciones de la " @@ -232,7 +235,7 @@ msgstr "" "mate-disk-usage-analyzer " "<full_path_to_a_directory>, después pulse " -"Ejecutar." +"Intro." #. (itstool) path: sect1/para #: C/index.docbook:170 @@ -332,7 +335,8 @@ "Para iniciar una exploración completa del sistema de archivos seleccione " "AnalizadorExplorar el sistema de" " archivos en el menú o pulse el botón " -"Explorar el sistema de archivos." +"Explorar el sistema de archivos en la barra de " +"herramientas." #. (itstool) path: sect2/para #: C/index.docbook:214 @@ -374,7 +378,7 @@ " Muestra la ventana de " "exploración completa del sistema de archivos de Analizador del uso del " -"disco. Contiene la barra de menú, el área de visualización, las barras de " +"disco. Contiene la barra de menús, el área de visualización, las barras de " "desplazamiento y la barra de estado. " #. (itstool) path: note/para @@ -575,8 +579,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title @@ -720,7 +725,7 @@ msgstr "" " Después de explorar una" -" carpeta " +" carpeta. " #. (itstool) path: sect1/para #: C/index.docbook:425 @@ -839,9 +844,9 @@ "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" -"Muchos de los nombres utilizados por las empresas para distinguir sus " -"productos y servicios se consideran marcas comerciales. Cuando esos nombres " -"aparecen en cualquier documentación de MATE y los miembros del proyecto de " +"Muchos de los nombres usados por las empresas para distinguir sus productos " +"y servicios se consideran marcas comerciales. Cuando esos nombres aparecen " +"en cualquier documentación de MATE y los miembros del proyecto de " "documentación de MATE son conscientes de que se trata de marcas registradas," " dichos nombres se escriben en letras mayúsculas o con inical mayúscula." @@ -860,8 +865,8 @@ "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 DOCUMENTO SE PROPORCIONA «TAL CUAL», SIN GARANTÍA DE NINGÚN TIPO, NI " -"EXPLÍCITA NI IMPLÍCITA, INCLUYENDO, ENTRE OTRAS, LAS GARANTÍAS DE QUE EL " +"EL DOCUMENTO SE PROPORCIONA «TAL CUAL ESTA», SIN GARANTÍA DE NINGÚN TIPO, NI" +" EXPLÍCITA NI IMPLÍCITA, INCLUYENDO, ENTRE OTRAS, LAS GARANTÍAS DE QUE EL " "DOCUMENTO O UNA VERSIÓN MODIFICADA DEL DOCUMENTO CAREZCA DE DEFECTOS " "COMERCIALES, SEA ADECUADO A UN PROPÓSITO PARTICULAR O INCUMPLA ALGUNA " "NORMATIVA. TODO RIESGO EN RELACIÓN CON LA CALIDAD, LA PRECISIÓN Y LA " diff -Nru mate-utils-1.26.0/baobab/help/es/index.docbook mate-utils-1.26.1/baobab/help/es/index.docbook --- mate-utils-1.26.0/baobab/help/es/index.docbook 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,408 +0,0 @@ - - - - - - -]> - - -
- - - - Manual de Analizador del uso del disco - - - Analizador del uso del disco es un visor gráfico basado en menús que puede usarse para ver y monitorear el uso del disco y la estructura de las carpetas - - - 2015-2021 Proyecto de documentación de MATE - 2006 Fabio Marzocca - - - Proyecto de documentación de MATE - - - Proyecto de documentación de GNOME - - - - - - Equipo de documentación de MATE Escritorio MATE - Fabio Marzocca Proyecto de documentación de GNOME
thesaltydog@gmail.com
- - Fabio Marzocca
thesaltydog@gmail.com
- - -
- - - - - - Disk Usage Analyzer Manual 1.10 July 2015 - Wolfgang Ulbrich - Proyecto de documentación de MATE - - Manual de Analizador del uso del disco 1.0 Abril 2006 - Emmanuele Bassi ebassi@gmail.com - Proyecto de documentación de GNOME - - - - Este manual describe la versión 1.10 de Analizador del uso del disco - - - Comentarios - Para informar de un error o hacer una sugerencia acerca de la aplicación Analizador del uso del disco o de este manual, siga las instrucciones de la Página de comentarios de MATE. - - - - - - Toni Estevez - - toni.estevez@gmail.com - - - - 2019 - - Toni Estevez - - - - - Jorge González - - jorgegonz@svn.gnome.org - - - - 2007-2010 - - Jorge González - - - - - Francisco Javier F. Serrador - - serrador@cvs.gnome.org - - - - 2003-2006 - - Francisco Javier F. Serrador - - - - - Pablo Gonzalo del Campo - - pablodc@bigfoot.com - - - - 2002-2003 - - Pablo Gonzalo del Campo - -
- - Analizador del uso del disco - - - - - - Introducción - - Analizador del uso del disco es una aplicación gráfica, basada en menús, para analizar el uso del disco en cualquier entorno MATE. Analizador del uso del disco puede explorar fácilmente todo el árbol del sistema de archivos o una rama de carpetas específica solicitada por el usuario (local o remota). - También detecta automáticamente en tiempo real cualquier cambio que se haga en la carpeta personal incluyendo dispositivos montados o desmontados. Analizador del uso del disco también proporciona una ventana con un gráfico de árbol completo para cada carpeta seleccionada. - - - - - - Cómo empezar - - Analizador del uso del disco puede iniciarse de tres maneras: - - desde el menú MATE AplicacionesAccesorios; - - desde la ventana del terminal; - - desde «Abrir con...» de Caja; - - - - -Si quiere iniciar Analizador del uso del disco desde la ventana del terminal, escriba: - -mate-disk-usage-analyzer <full_path_to_a_directory>, después pulse Ejecutar. - - Si lo inicia desde el menú MATE, Analizador del uso del disco se inicia y permanece en espera hasta que el usuario realiza una acción. - Al iniciar Analizador del uso del disco desde el menú MATE, se muestra la ventana siguiente. - - -
- Ventana de Analizador del uso del disco - - Muestra la ventana principal de Analizador del uso del disco. Contiene una barra de estado, un área de visualización, barras de desplazamiento y una barra de estado. - -
- - -Entonces el usuario puede: - - iniciar una exploración completa del sistema de archivos; - - seleccionar una rama específica de la carpeta local para explorar - - seleccionar un servidor remoto y una carpeta para explorar - - configurar las preferencias - - - - -
- - - - - Uso - - - Exploración completa del sistema de archivos - Para iniciar una exploración completa del sistema de archivos seleccione AnalizadorExplorar el sistema de archivos en el menú o pulse el botón Explorar el sistema de archivos. - - Cuando el proceso de exploración finalice, obtendrá el diagrama completo de su sistema de archivos, como el que aparece en la imagen siguiente. - - -
- Exploración completa del sistema de archivos en Analizador del uso del disco - - Muestra la ventana de exploración completa del sistema de archivos de Analizador del uso del disco. Contiene la barra de menú, el área de visualización, las barras de desplazamiento y la barra de estado. - -
- - - Cuando realice una exploración completa del sistema, la ventana de Analizador del uso del disco comenzará a mostrar el gráfico en cuanto la cadena empiece a explorar el sistema de archivos. Si hubiera una partición montada en el sistema de archivos, también se exploraría. - - Analizador del uso del disco mostrará los tamaños en el árbol de carpetas según el espacio asignado. Esto quiere decir que los tamaños mostrados hacen referencia al uso real del disco y no al tamaño aparente de la carpeta. Si quiere ver el tamaño aparente del archivo, desmarque VerEspacio asignado . - - Analizador del uso del disco no contará el directorio /proc, ni tampoco otro tamaño de archivo que no esta relacionado al archivo "mismo", del mismo modo no serán parte del tamaño del directorio los symlinks, las secciones de caracteres, o las secciones de aparatos. - - Los enlaces duros se gestionan de forma diferente: este primer enlace duro se cuenta como un archivo normal, mientras que los enlaces posteriores al mismo nodo índice del dispositivo no se cuentan en el total, sino que se resaltan en la columna de la derecha de la ventana. -
- - - Exploración de una sola carpeta - - Para iniciar una exploración de una sola carpeta, seleccione AnalizarExplorar la carpeta... en el menú o haga clic en el botón Explorar la carpeta de la barra de herramientas. - - - - - Exploración remota - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferencias - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Seleccionar los dispositivos que se van a explorar - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Analizador del uso del disco que muestra un gráfico de anillos con el uso del sistema de archivos - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Analizador del uso del disco que muestra un gráfico de anillos con el uso de una carpeta - - Después de explorar una carpeta - -
- - - El gráfico de anillos está compuesto por un conjunto de anillos anidados alrededor de un círculo central. Este círculo simboliza la carpeta raíz del árbol parcial (es decir, la carpeta que el usuario ha seleccionado para la exploración). Cada anillo representa un nivel en el árbol parcial, por lo que las subcarpetas de la carpeta raíz se representarán en el primer anillo y los niveles más profundos del árbol corresponden a los anillos exteriores del gráfico. Cada subcarpeta está representada por un sector del anillo, cuyo ángulo es proporcional al tamaño del contenido de la carpeta, y está pintada de un color diferente para facilitar su visualización. Se pueden dibujar hasta cinco niveles; en caso de que una carpeta de ese último quinto nivel contenga aún más subcarpetas, esta situación será señalada por la presencia de una curva negra cerca del borde del sector del anillo de esa carpeta. Cuando se selecciona una carpeta sin más subcarpetas para que sea la raíz del árbol parcial, solo se dibujará el círculo interior. Cuando el puntero del ratón pase por encima de una de las carpetas del gráfico, la carpeta se destacará y aparecerá un cuadro emergente con información sobre su nombre y tamaño. Si hay alguna subcarpeta, aparecerán pequeños cuadros emergentes en gris, indicando el nombre. Es posible que no se muestren todos los nombres de las subcarpetas, para evitar superposiciones. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - El porcentaje del radio de la carpeta superior que se usa en una carpeta dada es directamente proporcional a la relación entre su propio tamaño y el de su carpeta superior. Es fácil de entender que el tamaño de una carpeta es igual o menor que el de la carpeta superior. Aunque en esta representación gráfica solo se muestran las carpetas, se tienen en cuenta los archivos para calcular la cantidad de espacio que ocupan las carpetas. -
-
diff -Nru mate-utils-1.26.0/baobab/help/es/legal.xml mate-utils-1.26.1/baobab/help/es/legal.xml --- mate-utils-1.26.0/baobab/help/es/legal.xml 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Se concede permiso para copiar, distribuir y/o modificar este documento según los términos de la Licencia de Documentación Libre (GFDL) de GNU, en la versión 1.1 o en cualquier verisón posterior publicada por la Free Software Foundation, sin secciones invariables ni textos de portada ni de contraportada. Puede encontrar una copia de la GFDL enenlace o en el archivo COPYING-DOCS distribuido con este manual. - Este manual es parte de una colección de manuales de MATE distribuidos bajo la GFDL. Si quiere distribuir este manual por separado de la colección, puede hacerlo añadiendo una copia de la licencia al manual, tal y como se describe en la sección 6 de la licencia. - - Muchos de los nombres utilizados por las empresas para distinguir sus productos y servicios se consideran marcas comerciales. Cuando esos nombres aparecen en cualquier documentación de MATE y los miembros del proyecto de documentación de MATE son conscientes de que se trata de marcas registradas, dichos nombres se escriben en letras mayúsculas o con inical mayúscula. - - EL DOCUMENTO Y LAS VERSIONES MODIFICADAS DEL DOCUMENTO SE PROPORCIONAN SEGÚN LOS TÉRMINOS DE LA LICENCIA DE DOCUMENTACIÓN LIBRE DE GNU CON EL ACUERDO ADICIONAL DE QUE: - - EL DOCUMENTO SE PROPORCIONA «TAL CUAL», SIN GARANTÍA DE NINGÚN TIPO, NI EXPLÍCITA NI IMPLÍCITA, INCLUYENDO, ENTRE OTRAS, LAS GARANTÍAS DE QUE EL DOCUMENTO O UNA VERSIÓN MODIFICADA DEL DOCUMENTO CAREZCA DE DEFECTOS COMERCIALES, SEA ADECUADO A UN PROPÓSITO PARTICULAR O INCUMPLA ALGUNA NORMATIVA. TODO RIESGO EN RELACIÓN CON LA CALIDAD, LA PRECISIÓN Y LA UTILIDAD DEL DOCUMENTO O UNA VERSIÓN MODIFICADA DEL DOCUMENTO RECAE EN USTED. SI EL DOCUMENTO O CUALQUIER VERSIÓN MODIFICADA DEL DOCUMENTO RESULTARA DEFECTUOSO EN CUALQUIER ASPECTO, USTED (Y NO EL REDACTOR INICIAL, EL AUTOR O CUALQUIER CONTRIBUYENTE) ASUMIRÁ TODOS LOS COSTES DE MANTENIMIENTO, REPARACIÓN O CORRECCIÓN NECESARIOS. ESTA RENUNCIA DE GARANTÍA ES UNA PARTE ESENCIAL DE ESTA LICENCIA. NO SE AUTORIZA EL USO DEL DOCUMENTO NI DE CUALQUIER VERSIÓN MODIFICADA DEL DOCUMENTO SALVO EN VIRTUD DE LA PRESENTE CLÁUSULA DE EXENCIÓN DE RESPONSABILIDAD; Y - - - BAJO NINGUNA CIRCUNSTANCIA NI BAJO NINGÚN CONCEPTO LEGAL, YA SEA POR RESPONSABILIDAD CIVIL (INCLUIDA LA NEGLIGENCIA), CONTRACTUAL O DE OTRO TIPO, EL AUTOR, EL REDACTOR INICIAL, CUALQUIER CONTRIBUYENTE O CUALQUIER DISTRIBUIDOR DEL DOCUMENTO O DE UNA VERSIÓN MODIFICADA DEL DOCUMENTO, O CUALQUIER PROVEEDOR DE CUALQUIERA DE DICHAS PARTES, NO SERÁN RESPONSABLES ANTE NINGUNA PERSONA POR NINGÚN DAÑO DIRECTO, INDIRECTO, ESPECIAL, ACCIDENTAL O DERIVADO DE CUALQUIER TIPO, INCLUIDOS, ENTRE OTROS, LOS DAÑOS POR PÉRDIDA DE REPUTACIÓN, INTERRUPCIÓN DEL TRABAJO, FALLO O MAL FUNCIONAMIENTO DEL EQUIPO O CUALQUIER OTRO DAÑO O PÉRDIDA DERIVADO O RELACIONADO CON EL USO DEL DOCUMENTO Y LAS VERSIONES MODIFICADAS DEL DOCUMENTO, INCLUSO SI DICHAS PARTES HAN SIDO INFORMADAS DE LA POSIBILIDAD DE QUE SE PRODUZCAN DICHOS DAÑOS. - - - diff -Nru mate-utils-1.26.0/baobab/help/es_AR/es_AR.po mate-utils-1.26.1/baobab/help/es_AR/es_AR.po --- mate-utils-1.26.0/baobab/help/es_AR/es_AR.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_AR/es_AR.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,21 +1,21 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Reshi Starkey , 2018 -# Dario Badagnani , 2018 +# Stefano Karapetsas , 2021 +# Reshi Starkey , 2021 +# Dario Badagnani , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Dario Badagnani , 2018\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mate/teams/13566/es_AR/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Dario Badagnani , 2021\n" +"Language-Team: Spanish (Argentina) (https://app.transifex.com/mate/teams/13566/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -118,8 +118,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -480,8 +481,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/es_AR/index.docbook mate-utils-1.26.1/baobab/help/es_AR/index.docbook --- mate-utils-1.26.0/baobab/help/es_AR/index.docbook 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_AR/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - Proyecto de Documentación para MATE - - - Proyecto de Documentación para GNOME - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferencias - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/es_AR/legal.xml mate-utils-1.26.1/baobab/help/es_AR/legal.xml --- mate-utils-1.26.0/baobab/help/es_AR/legal.xml 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_AR/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/es_CL/es_CL.po mate-utils-1.26.1/baobab/help/es_CL/es_CL.po --- mate-utils-1.26.0/baobab/help/es_CL/es_CL.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_CL/es_CL.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,21 +1,21 @@ # # Translators: -# prflr88 , 2018 -# Alejo_K , 2018 -# Robert Petitpas , 2018 +# Pablo Lezaeta Reyes , 2021 +# Alejo_K , 2021 +# Robert Petitpas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Robert Petitpas , 2018\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/mate/teams/13566/es_CL/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Robert Petitpas , 2021\n" +"Language-Team: Spanish (Chile) (https://app.transifex.com/mate/teams/13566/es_CL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_CL\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -116,8 +116,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -478,8 +479,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/es_CL/index.docbook mate-utils-1.26.1/baobab/help/es_CL/index.docbook --- mate-utils-1.26.0/baobab/help/es_CL/index.docbook 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_CL/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Uso - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferencias - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/es_CL/legal.xml mate-utils-1.26.1/baobab/help/es_CL/legal.xml --- mate-utils-1.26.0/baobab/help/es_CL/legal.xml 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_CL/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/es_CO/es_CO.po mate-utils-1.26.1/baobab/help/es_CO/es_CO.po --- mate-utils-1.26.0/baobab/help/es_CO/es_CO.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_CO/es_CO.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,20 @@ # # Translators: -# Sergio Alejandro Bayona Becerra , 2018 -# Julian Borrero , 2018 +# Sergio Alejandro Bayona Becerra , 2021 +# Julian Borrero , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Julian Borrero , 2018\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/mate/teams/13566/es_CO/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Julian Borrero , 2021\n" +"Language-Team: Spanish (Colombia) (https://app.transifex.com/mate/teams/13566/es_CO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_CO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -115,8 +115,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -477,8 +478,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/es_CO/index.docbook mate-utils-1.26.1/baobab/help/es_CO/index.docbook --- mate-utils-1.26.0/baobab/help/es_CO/index.docbook 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_CO/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferencias - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/es_CO/legal.xml mate-utils-1.26.1/baobab/help/es_CO/legal.xml --- mate-utils-1.26.0/baobab/help/es_CO/legal.xml 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_CO/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/es_ES/es_ES.po mate-utils-1.26.1/baobab/help/es_ES/es_ES.po --- mate-utils-1.26.0/baobab/help/es_ES/es_ES.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_ES/es_ES.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,20 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Jose11091 , 2018 +# Stefano Karapetsas , 2021 +# Jose11091 , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Jose11091 , 2018\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/mate/teams/13566/es_ES/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Jose11091 , 2021\n" +"Language-Team: Spanish (Spain) (https://app.transifex.com/mate/teams/13566/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -117,8 +117,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -479,8 +480,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/es_ES/index.docbook mate-utils-1.26.1/baobab/help/es_ES/index.docbook --- mate-utils-1.26.0/baobab/help/es_ES/index.docbook 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_ES/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferencias - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/es_ES/legal.xml mate-utils-1.26.1/baobab/help/es_ES/legal.xml --- mate-utils-1.26.0/baobab/help/es_ES/legal.xml 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_ES/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/es_MX/es_MX.po mate-utils-1.26.1/baobab/help/es_MX/es_MX.po --- mate-utils-1.26.0/baobab/help/es_MX/es_MX.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_MX/es_MX.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,20 @@ # # Translators: -# jorge becerril , 2018 -# Luis Armando Medina , 2018 +# jorge becerril , 2021 +# Luis Armando Medina , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Luis Armando Medina , 2018\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mate/teams/13566/es_MX/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Luis Armando Medina , 2021\n" +"Language-Team: Spanish (Mexico) (https://app.transifex.com/mate/teams/13566/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_MX\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -122,8 +122,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -484,8 +485,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/es_MX/index.docbook mate-utils-1.26.1/baobab/help/es_MX/index.docbook --- mate-utils-1.26.0/baobab/help/es_MX/index.docbook 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_MX/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,557 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Luis Armando Medina A. - - contacto@luisarmandomedina.com - - - - 2016 - - Luis Armando Medina A. - - - - - Jorge González - - jorgegonz@svn.gnome.org - - - - 2007-2010 - - Jorge González - - - - - Francisco Javier F. Serrador - - serrador@cvs.gnome.org - - - - 2003-2006 - - Francisco Javier F. Serrador - - - - - Pablo Gonzalo del Campo - - pablodc@bigfoot.com - - - - 2000-2004 - - Pablo Gonzalo del Campo - - - - - Carlos Perelló Marín - - carlos@gnome-db.org - - - - 2000 - - 2002 - - Carlos Perelló Marín - - - - - Ismael Olea - - ismael@olea.org - - - - 2001 - - Ismael Olea - - - - - Jorge Carrasquilla Soares - - jorge@conectiva.com.br - - - - 2000 - - Jorge Carrasquilla Soares - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferencias - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/es_MX/legal.xml mate-utils-1.26.1/baobab/help/es_MX/legal.xml --- mate-utils-1.26.0/baobab/help/es_MX/legal.xml 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_MX/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/es_PR/es_PR.po mate-utils-1.26.1/baobab/help/es_PR/es_PR.po --- mate-utils-1.26.0/baobab/help/es_PR/es_PR.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_PR/es_PR.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,20 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Neverest , 2018 +# Stefano Karapetsas , 2021 +# Neverest , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Neverest , 2018\n" -"Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/mate/teams/13566/es_PR/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Neverest , 2021\n" +"Language-Team: Spanish (Puerto Rico) (https://app.transifex.com/mate/teams/13566/es_PR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_PR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -117,8 +117,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -479,8 +480,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/es_PR/index.docbook mate-utils-1.26.1/baobab/help/es_PR/index.docbook --- mate-utils-1.26.0/baobab/help/es_PR/index.docbook 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_PR/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferencias - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/es_PR/legal.xml mate-utils-1.26.1/baobab/help/es_PR/legal.xml --- mate-utils-1.26.0/baobab/help/es_PR/legal.xml 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/es_PR/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/et/et.po mate-utils-1.26.1/baobab/help/et/et.po --- mate-utils-1.26.0/baobab/help/et/et.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/et/et.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Ivar Smolin , 2018 +# Ivar Smolin , 2021 +# Stefano Karapetsas , 2021 +# vaba , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Ivar Smolin , 2018\n" -"Language-Team: Estonian (https://www.transifex.com/mate/teams/13566/et/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: vaba , 2021\n" +"Language-Team: Estonian (https://app.transifex.com/mate/teams/13566/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,7 +25,8 @@ "Ilmar Kerm , 2001, 2002.\n" "Tõivo Leedjärv , 2002, 2003.\n" "Priit Laes , 2004–2006, 2008, 2009\n" -"Ivar Smolin , 2005–2010, 2014–2015, 2018." +"Ivar Smolin , 2005–2010, 2014–2015, 2018.\n" +"Marko Silluste, 2021." #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -120,8 +122,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -482,8 +485,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/et/index.docbook mate-utils-1.26.1/baobab/help/et/index.docbook --- mate-utils-1.26.0/baobab/help/et/index.docbook 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/et/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,528 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Tagasiside - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Ilmar Kerm - - ikerm hot ee - - - - 2001 - - 2002. - - Ilmar Kerm - - - - - Tõivo Leedjärv - - toivo linux ee - - - - 2002 - - 2003. - - Tõivo Leedjärv - - - - - Priit Laes - - plaes plaes org - - - - 2004–2006 - - 2008 - - 2009 - - Priit Laes - - - - - Ivar Smolin - - okul linux ee - - - - 2005–2010 - - 2014–2015 - - 2018. - - Ivar Smolin - -
- - - Disk Usage Analyzer - - - - - - - Sissejuhatus - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Kasutus - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Eelistused - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/et/legal.xml mate-utils-1.26.1/baobab/help/et/legal.xml --- mate-utils-1.26.0/baobab/help/et/legal.xml 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/et/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/eu/eu.po mate-utils-1.26.1/baobab/help/eu/eu.po --- mate-utils-1.26.0/baobab/help/eu/eu.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/eu/eu.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Asier Iturralde Sarasola , 2018 -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Alexander Gabilondo , 2018 +# Asier Iturralde Sarasola , 2021 +# Stefano Karapetsas , 2021 +# Alexander Gabilondo , 2021 +# Wolfgang Ulbrich , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Alexander Gabilondo , 2018\n" -"Language-Team: Basque (https://www.transifex.com/mate/teams/13566/eu/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Wolfgang Ulbrich , 2021\n" +"Language-Team: Basque (https://app.transifex.com/mate/teams/13566/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -119,8 +119,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -481,8 +482,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/eu/index.docbook mate-utils-1.26.1/baobab/help/eu/index.docbook --- mate-utils-1.26.0/baobab/help/eu/index.docbook 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/eu/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATEren dokumentazio-proiektua - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Ohar-bidaltzea - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Sarrera - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Erabilera - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Hobespenak - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/eu/legal.xml mate-utils-1.26.1/baobab/help/eu/legal.xml --- mate-utils-1.26.0/baobab/help/eu/legal.xml 2021-08-05 19:46:19.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/eu/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - Eskuliburu hau GFDL lizentziarekin banatzen diren MATE eskuliburuen bildumakoa da. Eskuliburu hau bildumatik bereizita banatu nahi baduzu, bana dezakezu, baina eskuliburuari lizentziaren kopia bat gehitu beharko diozu, lizentzian bertan 6. atalean azaltzen den bezala. - - Enpresek euren produktu eta zerbitzuak bereizteko erabiltzen dituzten izen asko marka erregistratu moduan hartu behar dira. Izen horiek MATEren edozein agiritan agertzen direnean, eta MATEren Dokumentazio Proiektuko kideak marka komertzialak direla konturatu badira, orduan izen horiek maiuskulaz idatzita egongo dira, osorik edo hasierako letra maiuskulaz jarrita. - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/fa/fa.po mate-utils-1.26.1/baobab/help/fa/fa.po --- mate-utils-1.26.0/baobab/help/fa/fa.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fa/fa.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Borderliner , 2018 -# Mahdi Pourghasem , 2018 +# Stefano Karapetsas , 2021 +# Borderliner , 2021 +# Mahdi Pourghasem , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Mahdi Pourghasem , 2018\n" -"Language-Team: Persian (https://www.transifex.com/mate/teams/13566/fa/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Mahdi Pourghasem , 2021\n" +"Language-Team: Persian (https://app.transifex.com/mate/teams/13566/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -116,8 +116,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -478,8 +479,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/fa/index.docbook mate-utils-1.26.1/baobab/help/fa/index.docbook --- mate-utils-1.26.0/baobab/help/fa/index.docbook 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fa/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - تنظیمات - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/fa/legal.xml mate-utils-1.26.1/baobab/help/fa/legal.xml --- mate-utils-1.26.0/baobab/help/fa/legal.xml 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fa/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/fi/fi.po mate-utils-1.26.1/baobab/help/fi/fi.po --- mate-utils-1.26.0/baobab/help/fi/fi.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fi/fi.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,18 +1,18 @@ # # Translators: -# Lasse Liehu , 2018 -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Riku Viitanen , 2018 -# nomen omen, 2018 +# Lasse Liehu , 2021 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 +# Riku Viitanen , 2021 +# nomen omen, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: nomen omen, 2018\n" -"Language-Team: Finnish (https://www.transifex.com/mate/teams/13566/fi/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: nomen omen, 2021\n" +"Language-Team: Finnish (https://app.transifex.com/mate/teams/13566/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -123,8 +123,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -485,8 +486,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/fi/index.docbook mate-utils-1.26.1/baobab/help/fi/index.docbook --- mate-utils-1.26.0/baobab/help/fi/index.docbook 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fi/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - Maten dokumentointiprojekti - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Palaute - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Johdanto - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Käyttö - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Asetukset - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/fi/legal.xml mate-utils-1.26.1/baobab/help/fi/legal.xml --- mate-utils-1.26.0/baobab/help/fi/legal.xml 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fi/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/fil/index.docbook mate-utils-1.26.1/baobab/help/fil/index.docbook --- mate-utils-1.26.0/baobab/help/fil/index.docbook 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fil/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Mga Pagtatangi - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/fil/legal.xml mate-utils-1.26.1/baobab/help/fil/legal.xml --- mate-utils-1.26.0/baobab/help/fil/legal.xml 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fil/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/fr/fr.po mate-utils-1.26.1/baobab/help/fr/fr.po --- mate-utils-1.26.0/baobab/help/fr/fr.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fr/fr.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,34 +1,34 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Étienne Deparis , 2018 -# Wolfgang Ulbrich , 2018 -# df3de0cb43d289cd23a753345b3743cd_a20684f, 2018 -# Guillaume Fayard , 2018 -# Laurent Napias , 2018 -# sire cartier , 2018 -# Laurent Napias, 2020 -# Tubuntu, 2020 +# Stefano Karapetsas , 2021 +# Tubuntu, 2021 +# Étienne Deparis , 2021 +# Wolfgang Ulbrich , 2021 +# df3de0cb43d289cd23a753345b3743cd_a20684f, 2021 +# Laurent Napias, 2021 +# sire cartier , 2021 +# Guillaume Fayard , 2021 +# Laurent Napias , 2021 # Stéphane PETRUS , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" "Last-Translator: Stéphane PETRUS , 2021\n" -"Language-Team: French (https://www.transifex.com/mate/teams/13566/fr/)\n" +"Language-Team: French (https://app.transifex.com/mate/teams/13566/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" msgstr "" -"Contributeurs au projet MATE :\n" +"Contributeurs au projet MATE :\n" "Voir https://www.transifex.com/mate/teams/13566/fr/\n" "\n" "Contributeurs au projet GNOME :\n" @@ -69,13 +69,13 @@ #. (itstool) path: revdescription/para #: C/index.docbook:47 C/index.docbook:103 msgid "MATE Documentation Project" -msgstr "Le projet de documentation MATE" +msgstr "Projet de documentation MATE" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:50 C/index.docbook:113 msgid "GNOME Documentation Project" -msgstr "GNOME Documentation Project" +msgstr "Projet de documentation GNOME" #. (itstool) path: authorgroup/author #: C/index.docbook:56 @@ -138,8 +138,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -500,8 +501,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title @@ -715,8 +717,8 @@ " section 6 of the license." msgstr "" "Ce manuel fait partie de la collection de manuels MATE distribués selon les " -"termes de la licence de documentation libre GNU. Si vous souhaitez " -"distribuer ce manuel indépendamment de la collection, vous devez joindre un " +"termes de la Licence GNU de documentation libre. Si vous souhaitez " +"distribuer ce manuel indépendamment de la collection, veuillez joindre un " "exemplaire de la licence au document, comme indiqué dans la section 6 de " "celle-ci." diff -Nru mate-utils-1.26.0/baobab/help/fr/index.docbook mate-utils-1.26.1/baobab/help/fr/index.docbook --- mate-utils-1.26.0/baobab/help/fr/index.docbook 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,588 +0,0 @@ - - - - - - -]> - - -
- - - - Manuel de l'analyseur d'utilisation des disques - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - 2015-2021 Projet de documentation MATE - 2006 Fabio Marzocca - - - Le projet de documentation MATE - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - Ce manuel concerne la version 1.10 de l'analyseur d'utilisation des disques. - - - Votre avis - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Vincent Renardias - - vincent@ldsol.com - - - - 1998-2000. - - Vincent Renardias - - - - - Joaquim Fellmann - - joaquim@hrnet.fr - - - - 2000. - - Joaquim Fellmann - - - - - Christophe Merlet - - redfox@redfoxcenter.org - - - - 2000-2006. - - Christophe Merlet - - - - - Christophe Fergeau - - teuf@users.sourceforge.net - - - - 2002-2003. - - Christophe Fergeau - - - - - Sun G11n - - gnome_int_l10n@ireland.sun.com - - - - 2002. - - Sun G11n - - - - - Robert-André Mauchin - - zebob.m@pengzone.org - - - - 2006-2008. - - Robert-André Mauchin - - - - - Stéphane Raimbault - - stephane.raimbault@gmail.com - - - - 2007. - - Stéphane Raimbault - - - - - Yannick Tailliez - - ytdispatch-libre@yahoo.com - - - - 2008. - - Yannick Tailliez - - - - - Claude Paroz - - claude@2xlibre.net - - - - 2008-2010. - - Claude Paroz - - - - - Gérard Baylard - - gerard dot b at bbox dot fr - - - - 2010 - - Gérard Baylard - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Premiers pas - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - depuis une fenêtre de console; - - depuis Caja "Ouvrir avec..."; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Utilisation - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Préférences - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/fr/legal.xml mate-utils-1.26.1/baobab/help/fr/legal.xml --- mate-utils-1.26.0/baobab/help/fr/legal.xml 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Permission est accordée de copier, distribuer et/ou modifier ce document selon les termes de la Licence GNU de documentation libre (GFDL), Version 1.1 ou ultérieure publiée par la Free Software Foundation sans section inaltérable, sans texte de première page ni de dernière page de couverture. Vous trouverez une copie (en anglais) de la GFDL en suivant ce lien ou dans le fichier COPYING-DOCS fourni avec le présent manuel. - Ce manuel fait partie de la collection de manuels MATE distribués selon les termes de la licence de documentation libre GNU. Si vous souhaitez distribuer ce manuel indépendamment de la collection, vous devez joindre un exemplaire de la licence au document, comme indiqué dans la section 6 de celle-ci. - - La plupart des noms utilisés par les entreprises pour distinguer leurs produits et services sont des marques déposées. Lorsque ces noms apparaissent dans la documentation MATE et que les membres du projet de Documentation MATE sont informés de l'existence de ces marques déposées, soit ces noms entiers, soit leur première lettre est en majuscule. - - CE DOCUMENT ET SES VERSIONS MODIFIEES SONT FOURNIS SELON LES TERMES DE LA LICENCE GNU FREE DOCUMENTATION EN COMPRENANT QUE : - - LE PRÉSENT DOCUMENT EST FOURNI « TEL QUEL », SANS AUCUNE GARANTIE, EXPRESSE OU IMPLICITE, Y COMPRIS, ET SANS LIMITATION, LES GARANTIES DE BONNE QUALITÉ MARCHANDE OU D'APTITUDE À UN EMPLOI PARTICULIER OU AUTORISÉ DU DOCUMENT OU DE SA VERSION MODIFIÉE. L'UTILISATEUR ASSUME TOUT RISQUE RELATIF À LA QUALITÉ, À LA PERTINENCE ET À LA PERFORMANCE DU DOCUMENT OU DE SA VERSION DE MISE À JOUR. SI LE DOCUMENT OU SA VERSION MODIFIÉE S'AVÉRAIT DÉFECTUEUSE, L'UTILISATEUR (ET NON LE RÉDACTEUR INITIAL, L'AUTEUR, NI TOUT AUTRE PARTICIPANT) ENDOSSERA LES COÛTS DE TOUTE INTERVENTION, RÉPARATION OU CORRECTION NÉCESSAIRE. CETTE DÉNÉGATION DE RESPONSABILITÉ CONSTITUE UNE PARTIE ESSENTIELLE DE CETTE LICENCE. AUCUNE UTILISATION DE CE DOCUMENT OU DE SA VERSION MODIFIÉE N'EST AUTORISÉE AUX TERMES DU PRÉSENT ACCORD, EXCEPTÉ SOUS CETTE DÉNÉGATION DE RESPONSABILITÉ ; - - - EN AUCUNE CIRCONSTANCE ET SOUS AUCUNE INTERPRÉTATION DE LA LOI, QU'IL S'AGISSE DE RESPONSABILITÉ CIVILE (Y COMPRIS LA NÉGLIGENCE), CONTRACTUELLE OU AUTRE, L'AUTEUR, LE RÉDACTEUR INITIAL, TOUT PARTICIPANT ET TOUT DISTRIBUTEUR DE CE DOCUMENT OU DE SA VERSION DE MISE À JOUR AINSI QUE TOUT FOURNISSEUR DE QUELQUE PARTIE QUE CE SOIT NE POURRONT ÊTRE TENUS RESPONSABLES À L'ÉGARD DE QUICONQUE POUR TOUT DOMMAGE DIRECT, INDIRECT, PARTICULIER OU ACCIDENTEL DE TOUT TYPE Y COMPRIS, SANS LIMITATION, LES DOMMAGES LIÉS À LA PERTE DE CLIENTÈLE, AUX ARRÊTS DE TRAVAIL, AUX DÉFAILLANCES ET AUX DYSFONCTIONNEMENTS INFORMATIQUES OU TOUT AUTRE DOMMAGE OU PERTE LIÉE À L'UTILISATION DU PRÉSENT DOCUMENT ET DE SES VERSIONS DE MISE À JOUR, ET CE MÊME SI CES PARTIES ONT ÉTÉ INFORMÉES DE LA POSSIBILITÉ DE TELS DOMMAGES. - - - diff -Nru mate-utils-1.26.0/baobab/help/frp/frp.po mate-utils-1.26.1/baobab/help/frp/frp.po --- mate-utils-1.26.0/baobab/help/frp/frp.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/frp/frp.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Alexandre Raymond, 2018 +# Alexandre Raymond, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Alexandre Raymond, 2018\n" -"Language-Team: Franco-Provençal (Arpitan) (https://www.transifex.com/mate/teams/13566/frp/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Alexandre Raymond, 2021\n" +"Language-Team: Franco-Provençal (Arpitan) (https://app.transifex.com/mate/teams/13566/frp/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/frp/index.docbook mate-utils-1.26.1/baobab/help/frp/index.docbook --- mate-utils-1.26.0/baobab/help/frp/index.docbook 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/frp/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Prèfèrences - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/frp/legal.xml mate-utils-1.26.1/baobab/help/frp/legal.xml --- mate-utils-1.26.0/baobab/help/frp/legal.xml 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/frp/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/fur/fur.po mate-utils-1.26.1/baobab/help/fur/fur.po --- mate-utils-1.26.0/baobab/help/fur/fur.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fur/fur.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Friulian (https://www.transifex.com/mate/teams/13566/fur/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Friulian (https://app.transifex.com/mate/teams/13566/fur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/fur/index.docbook mate-utils-1.26.1/baobab/help/fur/index.docbook --- mate-utils-1.26.0/baobab/help/fur/index.docbook 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fur/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferencis - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/fur/legal.xml mate-utils-1.26.1/baobab/help/fur/legal.xml --- mate-utils-1.26.0/baobab/help/fur/legal.xml 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fur/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/fy/fy.po mate-utils-1.26.1/baobab/help/fy/fy.po --- mate-utils-1.26.0/baobab/help/fy/fy.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fy/fy.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Western Frisian (https://www.transifex.com/mate/teams/13566/fy/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Western Frisian (https://app.transifex.com/mate/teams/13566/fy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -117,8 +117,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -479,8 +480,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/fy/index.docbook mate-utils-1.26.1/baobab/help/fy/index.docbook --- mate-utils-1.26.0/baobab/help/fy/index.docbook 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fy/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Ynstellingen - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/fy/legal.xml mate-utils-1.26.1/baobab/help/fy/legal.xml --- mate-utils-1.26.0/baobab/help/fy/legal.xml 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/fy/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ga/ga.po mate-utils-1.26.1/baobab/help/ga/ga.po --- mate-utils-1.26.0/baobab/help/ga/ga.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ga/ga.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Irish (https://www.transifex.com/mate/teams/13566/ga/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Irish (https://app.transifex.com/mate/teams/13566/ga/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -117,8 +117,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -479,8 +480,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ga/index.docbook mate-utils-1.26.1/baobab/help/ga/index.docbook --- mate-utils-1.26.0/baobab/help/ga/index.docbook 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ga/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Úsáid - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Sainroghanna - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ga/legal.xml mate-utils-1.26.1/baobab/help/ga/legal.xml --- mate-utils-1.26.0/baobab/help/ga/legal.xml 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ga/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/gl/gl.po mate-utils-1.26.1/baobab/help/gl/gl.po --- mate-utils-1.26.0/baobab/help/gl/gl.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/gl/gl.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Robert Antoni Buj i Gelonch , 2019 # Miguel Anxo Bouzada , 2021 +# Robert Antoni Buj i Gelonch , 2021 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Miguel Anxo Bouzada , 2021\n" -"Language-Team: Galician (https://www.transifex.com/mate/teams/13566/gl/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Wolfgang Ulbrich , 2021\n" +"Language-Team: Galician (https://app.transifex.com/mate/teams/13566/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -120,8 +120,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -482,8 +483,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/gl/index.docbook mate-utils-1.26.1/baobab/help/gl/index.docbook --- mate-utils-1.26.0/baobab/help/gl/index.docbook 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/gl/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,461 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - 2015-2021 Proxecto de documentación do MATE - - 2006 - Fabio Marzocca - - - - Proxecto de documentación do MATE - - - Proxecto de documentación do GNOME - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Comentarios - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introdución - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Comezando - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Uso - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferencias - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/gl/legal.xml mate-utils-1.26.1/baobab/help/gl/legal.xml --- mate-utils-1.26.0/baobab/help/gl/legal.xml 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/gl/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Autorízase a copia, distribución e/ou modificación deste documento baixo os termos da Licenza de Documentación Libre de GNU (GFDL), versión 1.1 ou calquera outra versión posterior publicada pola Free Software Foundation sen seccións invariantes, sen textos de cuberta e sen textos de cuberta traseira. Pode atopar unha copia da GFDL en ligazón ou no ficheiro COPYING-DOCS distribuído con este manual. - Este manual forma parte da colección de manuais MATE distribuídos baixo a licenza GFDL. Se quere distribuír este manual separadamente da colección, pode facelo engadindo unha copia da licenza ao manual, tal e como está descrito na sección 6 da licenza. - - Moitos dos nomes utilizados polas empresas para distinguir os seus produtos e servizos son reivindicados como marcas comerciais. Cando estes nomes aparecen en calquera documentación de MATE e os membros do Proxecto de documentación de MATE son conscientes das marcas rexistradas, os nomes están en letras maiúsculas ou maiúsculas iniciais. - - O DOCUMENTO E AS VERSIÓNS MODIFICADAS DO DOCUMENTO FORNÉCENSE BAIXO OS TERMOS DA LICENZA LIBRE DE DOCUMENTACIÓN DE GNU CO ACORDO ADICIONAL DE: - - O DOCUMENTO FORNÉCESE «TAL E COMO É», SEN GARANTÍA DE NINGÚN TIPO, NIN EXPLÍCITA NIN IMPLÍCITA INCLUÍNDO, SEN LIMITACIÓN, GARANTÍA DE QUE O DOCUMENTO OU VERSIÓN MODIFICADA DESTE CAREZA DE DEFECTOS COMERCIAIS, SEXA AXEITADO A UN FIN CONCRETO OU INCUMPRA ALGUNHA NORMATIVA. TODO O RISCO RELATIVO Á CALIDADE, PRECISIÓN E UTILIDADE DO DOCUMENTO OU A SÚA VERSIÓN MODIFICADA RECAE EN VOSTEDE. SE CALQUERA DOCUMENTO OU VERSIÓN MODIFICADA DAQUEL RESULTARA DEFECTUOSO EN CALQUERA ASPECTO, VOSTEDE (E NON O REDACTOR INICIAL, AUTOR OU COLABORADOR) ASUMIRÁ OS CUSTOS DE TODA REPARACIÓN, MANTEMENTO OU CORRECCIÓN NECESARIOS. ESTA RENUNCIA DE GARANTÍA É UNHA PARTE ESENCIAL DESTA LICENZA. NON SE AUTORIZA O USO DE NINGÚN DOCUMENTO NIN VERSIÓN MODIFICADA DESTE POLO PRESENTE, SALVO DENTRO DO CUMPRIMENTO DA RENUNCIA; E - - - BAIXO NINGUNHA CIRCUNSTANCIA NIN BAIXO NINGUNHA TEORÍA LEGAL, SEXA POR ERRO (INCLUÍNDO NEGLIXENCIA), CONTRATO OU DE ALGÚN OUTRO MODO, O AUTOR, O ESCRITOR INICIAL, CALQUERA COLABORADOR, OU CALQUERA DISTRIBUIDOR DO DOCUMENTO OU VERSIÓN MODIFICADA DO DOCUMENTO, OU CALQUERA PROVEDOR DE CALQUERA DESAS PARTES, SERÁ RESPONSÁBEL ANTE NINGUNHA PERSOA POR NINGÚN DANO DIRECTO, INDIRECTO, ESPECIAL, INCIDENTAL OU DERIVADO DE NINGÚN TIPO, INCLUÍNDO, SEN LIMITACIÓN DANOS POR PERDA DE MERCANCÍAS, PARO TÉCNICO, FALLO INFORMÁTICO OU MAL FUNCIONAMENTO OU CALQUERA OUTRO POSÍBEL DANO OU PERDAS DERIVADAS OU RELACIONADAS CO USO DO DOCUMENTO OU AS SÚAS VERSIÓNS MODIFICADAS, AÍNDA QUE DITA PARTE TEÑA SIDO INFORMADA DA POSIBILIDADE DE QUE SE PRODUCISEN DITOS DANOS. - - - diff -Nru mate-utils-1.26.0/baobab/help/gu/gu.po mate-utils-1.26.1/baobab/help/gu/gu.po --- mate-utils-1.26.0/baobab/help/gu/gu.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/gu/gu.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Milan Savaliya , 2018 +# Stefano Karapetsas , 2021 +# Milan Savaliya , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Milan Savaliya , 2018\n" -"Language-Team: Gujarati (https://www.transifex.com/mate/teams/13566/gu/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Milan Savaliya , 2021\n" +"Language-Team: Gujarati (https://app.transifex.com/mate/teams/13566/gu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -115,8 +115,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -477,8 +478,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/gu/index.docbook mate-utils-1.26.1/baobab/help/gu/index.docbook --- mate-utils-1.26.0/baobab/help/gu/index.docbook 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/gu/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - પરિચય - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - વપરાશ - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - પસંદગીઓ - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/gu/legal.xml mate-utils-1.26.1/baobab/help/gu/legal.xml --- mate-utils-1.26.0/baobab/help/gu/legal.xml 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/gu/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ha/ha.po mate-utils-1.26.1/baobab/help/ha/ha.po --- mate-utils-1.26.0/baobab/help/ha/ha.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ha/ha.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Hausa (https://www.transifex.com/mate/teams/13566/ha/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Hausa (https://app.transifex.com/mate/teams/13566/ha/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ha/index.docbook mate-utils-1.26.1/baobab/help/ha/index.docbook --- mate-utils-1.26.0/baobab/help/ha/index.docbook 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ha/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Fifiko - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ha/legal.xml mate-utils-1.26.1/baobab/help/ha/legal.xml --- mate-utils-1.26.0/baobab/help/ha/legal.xml 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ha/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/he/he.po mate-utils-1.26.1/baobab/help/he/he.po --- mate-utils-1.26.0/baobab/help/he/he.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/he/he.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,18 +1,18 @@ # # Translators: -# Stefano Karapetsas , 2018 -# בר בוכובזה , 2018 -# Yaron Shahrabani , 2020 -# shy tzedaka , 2020 -# Omer I.S. , 2020 +# Yaron Shahrabani , 2021 +# Stefano Karapetsas , 2021 +# בר בוכובזה , 2021 +# shy tzedaka , 2021 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Omer I.S. , 2020\n" -"Language-Team: Hebrew (https://www.transifex.com/mate/teams/13566/he/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e , 2021\n" +"Language-Team: Hebrew (https://app.transifex.com/mate/teams/13566/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,7 +22,9 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Yaron Shahrabani " +msgstr "" +"Yaron Shahrabani \n" +"Omer I.S. " #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -118,8 +120,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -130,7 +133,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:138 msgid "Introduction" -msgstr "היכרות" +msgstr "מבוא" #. (itstool) path: sect1/para #: C/index.docbook:140 @@ -153,7 +156,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:153 msgid "Getting Started" -msgstr "מההתחלה" +msgstr "מדריך התחלה" #. (itstool) path: sect1/para #: C/index.docbook:155 @@ -480,8 +483,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/he/index.docbook mate-utils-1.26.1/baobab/help/he/index.docbook --- mate-utils-1.26.0/baobab/help/he/index.docbook 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/he/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,462 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - מיזם התיעוד של MATE - - - מיזם התיעוד של GNOME - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - משוב - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - מנתח השימוש בכונן - - - - - - היכרות - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - מההתחלה - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - בשימוש - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - העדפות - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/he/legal.xml mate-utils-1.26.1/baobab/help/he/legal.xml --- mate-utils-1.26.0/baobab/help/he/legal.xml 2021-08-05 19:46:20.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/he/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/hi/hi.po mate-utils-1.26.1/baobab/help/hi/hi.po --- mate-utils-1.26.0/baobab/help/hi/hi.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/hi/hi.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Sadgamaya , 2018 -# Panwar108 , 2018 +# Stefano Karapetsas , 2021 +# Sadgamaya , 2021 +# Panwar108 , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Panwar108 , 2018\n" -"Language-Team: Hindi (https://www.transifex.com/mate/teams/13566/hi/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Panwar108 , 2021\n" +"Language-Team: Hindi (https://app.transifex.com/mate/teams/13566/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -120,8 +120,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -407,7 +408,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:293 msgid "Preferences" -msgstr "वरीयताएँ" +msgstr "सेटिंग्स" #. (itstool) path: sect1/para #: C/index.docbook:295 @@ -482,8 +483,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/hi/index.docbook mate-utils-1.26.1/baobab/help/hi/index.docbook --- mate-utils-1.26.0/baobab/help/hi/index.docbook 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/hi/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE प्रलेखन योजना - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - परिचय - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - उपयोग - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - वरीयताएँ - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/hi/legal.xml mate-utils-1.26.1/baobab/help/hi/legal.xml --- mate-utils-1.26.0/baobab/help/hi/legal.xml 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/hi/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/hr/hr.po mate-utils-1.26.1/baobab/help/hr/hr.po --- mate-utils-1.26.0/baobab/help/hr/hr.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/hr/hr.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Elvis M. Lukšić , 2018 -# Ivica Kolić , 2019 -# Radovan Gundulić , 2020 +# Ivica Kolić , 2021 +# Elvis M. Lukšić , 2021 +# Radovan Gundulić , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Radovan Gundulić , 2020\n" -"Language-Team: Croatian (https://www.transifex.com/mate/teams/13566/hr/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Radovan Gundulić , 2021\n" +"Language-Team: Croatian (https://app.transifex.com/mate/teams/13566/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -148,8 +148,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -514,8 +515,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/hr/index.docbook mate-utils-1.26.1/baobab/help/hr/index.docbook --- mate-utils-1.26.0/baobab/help/hr/index.docbook 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/hr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,437 +0,0 @@ - - - - - - -]> - - -
- - - - Priručnik analizatora uporabe diska - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - 2006 Fabio Marzocca - - - MATE dokumentacijski projekt - - - GNOME dokumentacijski projekt - - - - - - - MATE Documentation Team - - MATE Desktop - - - Fabio Marzocca GNOME dokumentacijski projekt
thesaltydog@gmail.com
- - Fabio Marzocca
thesaltydog@gmail.com
- - -
- - - - - - Priručnik analizatora uporabe diska 1.10 Srpanj 2015 - Wolfgang Ulbrich - MATE dokumentacijski projekt - - Priručnik analizatora uporabe diska 1.0 Travanj 2006 - Emmanuele Bassi ebassi@gmail.com - GNOME dokumentacijski projekt - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Povratne informacije - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Uvod - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Započnimo - - Analizator zauzeća diska se može pokrenuti na tri načina: - - from MATE menu ApplicationsAccessories; - - iz prozora terminala; - - iz Caje "Otvori pomoću..."; - - - - -Ako želite pokrenuti Analizator zauzeća diska iz prozora terminala, samo utipkajte: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Upotreba - - - Skeniranje cijelog datotečnog sustava - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Skeniranje jedne mape - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Prilagodbe - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Odaberite uređaje koje ćete skenirati - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/hr/legal.xml mate-utils-1.26.1/baobab/help/hr/legal.xml --- mate-utils-1.26.0/baobab/help/hr/legal.xml 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/hr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/hu/hu.po mate-utils-1.26.1/baobab/help/hu/hu.po --- mate-utils-1.26.0/baobab/help/hu/hu.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/hu/hu.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,20 @@ # # Translators: -# KAMI KAMI , 2018 -# Rezső Páder , 2018 -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Falu , 2018 -# Balázs Meskó , 2018 -# Robert Antoni Buj i Gelonch , 2019 +# Rezső Páder , 2021 +# Robert Antoni Buj i Gelonch , 2021 +# Stefano Karapetsas , 2021 +# clefebvre , 2021 +# Wolfgang Ulbrich , 2021 +# Falu , 2021 +# Balázs Meskó , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 i Gelonch , 2019\n" -"Language-Team: Hungarian (https://www.transifex.com/mate/teams/13566/hu/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Balázs Meskó , 2021\n" +"Language-Team: Hungarian (https://app.transifex.com/mate/teams/13566/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -25,14 +25,14 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"Dvornik László\n" -"Kelemen Gábor\n" -"Tímár András\n" -"Kalman „KAMI” Szalai\n" -"Falu\n" -"Rezső Páder\n" -"Zoltán Rápolthy\n" -"Meskó Balázs " +"Dvornik László \n" +"Kelemen Gábor \n" +"Kalman „KAMI” Szalai \n" +"Falu \n" +"Rezső Páder \n" +"Zoltán Rápolthy \n" +"Meskó Balázs \n" +"Tímár András " #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -128,8 +128,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -490,8 +491,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title @@ -675,7 +677,7 @@ #. (itstool) path: para/ulink #: C/legal.xml:9 msgid "link" -msgstr "hivatkozással" +msgstr "link" #. (itstool) path: legalnotice/para #: C/legal.xml:2 diff -Nru mate-utils-1.26.0/baobab/help/hu/index.docbook mate-utils-1.26.1/baobab/help/hu/index.docbook --- mate-utils-1.26.0/baobab/help/hu/index.docbook 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/hu/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE dokumentációs projekt - - - GNOME dokumentációs projekt - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Visszajelzés - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Bevezetés - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Kezdő lépések - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Használat - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Beállítások - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/hu/legal.xml mate-utils-1.26.1/baobab/help/hu/legal.xml --- mate-utils-1.26.0/baobab/help/hu/legal.xml 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/hu/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Jelen dokumentum szabadon másolható, terjeszthető és/vagy módosítható a GNU Free Documentation License (GFDL) 1.1-es verziója vagy a Free Software Foundation által kiadott ennél frissebb verziója alatt, a "Nem változtatható szakaszok", "Címlapszövegek" és a "Hátlapszövegek" kivételével. A GFDL leírása ezzel a hivatkozással érhető el, vagy a jelen dokumentációban található COPYING-DOCS fájlban. - Ez a kézikönyv része a GFDL alatt megjelenő MATE dokumentációk gyűjteményének. A kézikönyv a gyűjteménytől függetlenül szabadon terjeszthető, a licenc másolatát mellékelve a 6. szakaszban leírtaknak megfelelően. - - A cégek különböző, védjegy alá tartozó elnevezéseket használnak termékeik és szolgáltatásuk megkülönböztetéséhez. Ahol ezek a nevek megjelennek bármelyik MATE dokumentációban és a MATE dokumentációs projekt tagjainak tudomásuk van a védjegyről, abban az esetben ezek az elnevezések teljes egészében vagy kezdőbetűik nagybetűsek. - - A DOKUMENTUM ÉS A DOKUMENTUM MÓDOSÍTOTT VERZIÓI A GNU FREE DOCUMENTATION LICENSE FELTÉTELEI SZERINT KERÜLNEK KÖZREADÁSRA, A TOVÁBBIAK ISMERETÉBEN: - - A DOKUMENTUM „JELEN ÁLLAPOTÁBAN” KERÜL KIADÁSRA MINDENFÉLE GARANCIAVÁLLALÁS NÉLKÜL, LEGYEN AZ KIFEJEZETT VAGY BELEÉRTETT, BELEÉRTVE, DE NEM KIZÁRÓLAGOSAN A FORGALOMBA HOZHATÓSÁGRA VAGY ALKALMAZHATÓSÁGRA, A JELEN DOKUMENTUMNAK VAGY ANNAK MÓDOSÍTOTT VERZIÓJÁNAK HIBAMENTESSÉGÉRE VONATKOZÓ GARANCIÁKAT. A DOKUMENTUM VAGY ANNAK MÓDOSÍTOTT VÁLTOZATÁNAK MINŐSÉGÉBŐL ÉS FELHASZNÁLHATÓSÁGÁBÓL FAKADÓ ÖSSZES KOCKÁZAT A FELHASZNÁLÓT TERHELI. HA A DOKUMENTUM BIZONYÍTOTTAN HIBÁS, A FELHASZNÁLÓNAK MAGÁNAK (NEM A DOKUMENTUM ÍRÓJÁNAK, KIADÓJÁNAK VAGY BÁRMELY KÖZREMŰKÖDŐNEK) KELL VÁLLALNIA A JAVÍTÁSHOZ SZÜKSÉGES MINDEN KÖLTSÉGET. A JELEN GARANCIAELUTASÍTÁS A JELEN LICENC LÉNYEGI RÉSZE. A LEFEDETT DOKUMENTUM VAGY ANNAK MÓDOSÍTOTT VERZIÓJÁNAK HASZNÁLATA CSAK A JELEN ELUTASÍTÁSSAL EGYÜTT ENGEDÉLYEZETT, ÉS - - - SEMMILYEN KÖRÜLMÉNYEK KÖZÖTT ÉS SEMMILYEN JOGI MEGFONTOLÁSBÓL, LEGYEN AZ MAGÁNJOGI VÉTKES CSELEKMÉNY (BELEÉRTVE A HANYAGSÁGOT), SZERZŐDÉS VAGY BÁRMELY MÁS DOLOG, NEM FELELŐS ÖN, A LEFEDETT KÓD ELSŐ FEJLESZTŐJE ÉS TÖBBI KÖZREMŰKÖDŐJE VAGY EZEK BÁRMELY SZÁLLÍTÓJA SEMMILYEN MÁS SZEMÉLY FELÉ SEMMILYEN FAJTA KÖZVETLEN, SPECIÁLIS, VÉLETLEN VAGY KÖVETKEZMÉNYES KÁRÉRT, BELEÉRTVE DE NEM KIZÁRÓLAG A HÍRNÉV ELVESZTÉSÉBŐL, MUNKA LEÁLLÁSÁBÓL, SZÁMÍTÓGÉP MEGHIBÁSODÁSÁBÓL VAGY HELYTELEN MŰKÖDÉSÉBŐL SZÁRMAZÓ, VAGY BÁRMELY EGYÉB KERESKEDELMI KÁROKAT ÉS VESZTESÉGEKET, MÉG AKKOR IS, HA AZ ILYEN FÉL INFORMÁLVA LETT AZ ILYEN KÁROK ELŐFORDULÁSÁNAK LEHETŐSÉGÉRŐL. A FELELŐSSÉG EZEN KORLÁTOZÁSA NEM ALKALMAZHATÓ ABBAN AZ ESETBEN, HA HALÁL VAGY SZEMÉLYI SÉRÜLÉS TÖRTÉNT A FÉL HANYAGSÁGÁBÓL KIFOLYÓLAG, OLYAN MÉRTÉKBEN, AMENNYIRE AZ ALKALMAZHATÓ TÖRVÉNYEK MEGTILTJÁK AZ ILYEN KORLÁTOZÁSOKAT. - - - diff -Nru mate-utils-1.26.0/baobab/help/hy/hy.po mate-utils-1.26.1/baobab/help/hy/hy.po --- mate-utils-1.26.0/baobab/help/hy/hy.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/hy/hy.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Siranush , 2018 -# Avag Sayan , 2020 +# Stefano Karapetsas , 2021 +# Siranush , 2021 +# Avag Sayan , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Avag Sayan , 2020\n" -"Language-Team: Armenian (https://www.transifex.com/mate/teams/13566/hy/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Avag Sayan , 2021\n" +"Language-Team: Armenian (https://app.transifex.com/mate/teams/13566/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,7 +20,7 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "թարգմանչի կրեդիտներ" +msgstr "թարգմանչի երախտիք" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -116,8 +116,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -478,8 +479,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/hy/index.docbook mate-utils-1.26.1/baobab/help/hy/index.docbook --- mate-utils-1.26.0/baobab/help/hy/index.docbook 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/hy/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE փաստաթղթավորման նախագիծ - - - GNOME փաստաթղթավորման նախագիծ - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Արձագանք - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Օգտագործում - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Հատկություններ - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/hy/legal.xml mate-utils-1.26.1/baobab/help/hy/legal.xml --- mate-utils-1.26.0/baobab/help/hy/legal.xml 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/hy/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ia/ia.po mate-utils-1.26.1/baobab/help/ia/ia.po --- mate-utils-1.26.0/baobab/help/ia/ia.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ia/ia.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Tea Coba , 2018 -# SoftInterlingua <>, 2020 +# SoftInterlingua <>, 2021 +# Tea Coba , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: SoftInterlingua <>, 2020\n" -"Language-Team: Interlingua (https://www.transifex.com/mate/teams/13566/ia/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Tea Coba , 2021\n" +"Language-Team: Interlingua (https://app.transifex.com/mate/teams/13566/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -115,8 +115,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -477,8 +478,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ia/index.docbook mate-utils-1.26.1/baobab/help/ia/index.docbook --- mate-utils-1.26.0/baobab/help/ia/index.docbook 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ia/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferentias - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ia/legal.xml mate-utils-1.26.1/baobab/help/ia/legal.xml --- mate-utils-1.26.0/baobab/help/ia/legal.xml 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ia/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/id/id.po mate-utils-1.26.1/baobab/help/id/id.po --- mate-utils-1.26.0/baobab/help/id/id.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/id/id.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Willy Sudiarto Raharjo , 2018 -# Wolfgang Ulbrich , 2018 -# Kukuh Syafaat , 2018 -# Chotibul Studio , 2020 -# Andika Triwidada , 2021 +# Stefano Karapetsas , 2021 +# Willy Sudiarto Raharjo , 2021 +# Aril Apria Susanto , 2021 +# Wolfgang Ulbrich , 2021 +# Triyan W. Nugroho , 2021 +# Andika Triwidada , 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Andika Triwidada , 2021\n" -"Language-Team: Indonesian (https://www.transifex.com/mate/teams/13566/id/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Andika Triwidada , 2022\n" +"Language-Team: Indonesian (https://app.transifex.com/mate/teams/13566/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -28,12 +28,14 @@ "Ahmad Riza H Nst \n" "Dirgita \n" "Tim MATE Indonesia \n" -"Kukuh Syafaat , 2017." +"Kukuh Syafaat , 2017.\n" +"Andika Triwidada , 2020, 2021.\n" +"Triyan W. Nugroho , 2021." #. (itstool) path: articleinfo/title #: C/index.docbook:23 msgid "Disk Usage Analyzer Manual" -msgstr "" +msgstr "Manual Penganalisis Penggunaan Disk" #. (itstool) path: abstract/para #: C/index.docbook:26 @@ -41,6 +43,9 @@ "Disk Usage Analyzer is a graphical, menu-driven viewer that you can use to " "view and monitor your disk usage and folder structure." msgstr "" +"Penganalisis Penggunaan Disk adalah penampil grafis berbasis menu yang dapat" +" Anda gunakan untuk melihat dan memantau penggunaan disk dan struktur folder" +" Anda." #. (itstool) path: articleinfo/copyright #: C/index.docbook:30 @@ -50,7 +55,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:34 msgid "2006 Fabio Marzocca" -msgstr "" +msgstr "2006 Fabio Marzocca" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -70,6 +75,8 @@ "MATE Documentation Team MATE " "Desktop " msgstr "" +"Tim Dokumentasi MATE Desktop " +"MATE " #. (itstool) path: authorgroup/author #: C/index.docbook:62 @@ -78,6 +85,9 @@ "GNOME Documentation Project
" "thesaltydog@gmail.com
" msgstr "" +"Fabio Marzocca " +"Proyek Dokumentasi GNOME
" +"thesaltydog@gmail.com
" #. (itstool) path: authorgroup/author #: C/index.docbook:71 @@ -85,6 +95,8 @@ "Fabio Marzocca " "
thesaltydog@gmail.com
" msgstr "" +"Fabio Marzocca " +"
thesaltydog@gmail.com
" #. (itstool) path: revdescription/para #: C/index.docbook:101 @@ -97,11 +109,13 @@ "Disk Usage Analyzer Manual 1.10 July " "2015 <_:revdescription-1/>" msgstr "" +"Manual Penganalisis Penggunaan Disk 1.10 Juli " +"2015 <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:110 msgid "Emmanuele Bassi ebassi@gmail.com" -msgstr "" +msgstr "Emmanuele Bassi ebassi@gmail.com" #. (itstool) path: revhistory/revision #: C/index.docbook:106 @@ -109,11 +123,13 @@ "Disk Usage Analyzer Manual 1.0 April " "2006 <_:revdescription-1/>" msgstr "" +"Manual Penganalisis Penggunaan Disk 1.0 April " +"2006 <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:118 msgid "This manual describes version 1.10 of Disk Usage Analyzer." -msgstr "" +msgstr "Manual ini menjelaskan versi 1.10 dari Penganalisis Penggunaan Disk." #. (itstool) path: legalnotice/title #: C/index.docbook:121 @@ -124,14 +140,18 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." -msgstr "" +"application or this manual, follow the directions in the MATE Feedback " +"Page." +msgstr "" +"Untuk melaporkan bug atau membuat saran mengenai aplikasi Penganalisis " +"Penggunaan Disk atau manual ini, ikuti petunjuk di Halaman Umpan Balik MATE." #. (itstool) path: article/indexterm #: C/index.docbook:130 msgid "Disk Usage Analyzer" -msgstr "" +msgstr "Penganalisis Penggunaan Disk" #. (itstool) path: sect1/title #: C/index.docbook:138 @@ -146,6 +166,11 @@ " Usage Analyzer can easily scan either the whole filesystem " "tree, or a specific user-requested directory branch (local or remote)." msgstr "" +"Penganalisis Penggunaan Disk adalah aplikasi " +"grafis berbasis menu untuk menganalisis penggunaan disk di lingkungan MATE " +"apa pun. Penganalisis Penggunaan Disk dapat " +"dengan mudah memindai seluruh pohon sistem berkas, atau cabang direktori " +"tertentu yang diminta pengguna (lokal atau jarak jauh)." #. (itstool) path: sect1/para #: C/index.docbook:144 @@ -155,17 +180,24 @@ "Analyzer also provides a full graphical treemap window for " "each selected folder." msgstr "" +"Ini juga secara otomatis mendeteksi secara real-time setiap perubahan yang " +"dilakukan pada direktori home Anda sejauh perangkat yang dikait/tidak " +"dilepas kait. Penganalisis Penggunaan Disk juga " +"menyediakan jendela peta pohon grafis lengkap untuk setiap folder yang " +"dipilih." #. (itstool) path: sect1/title #: C/index.docbook:153 msgid "Getting Started" -msgstr "Mulai" +msgstr "Memulai" #. (itstool) path: sect1/para #: C/index.docbook:155 msgid "" "Disk Usage Analyzer can be started in three ways:" msgstr "" +"Penganalisis Penggunaan Disk dapat dimulai dengan" +" tiga cara:" #. (itstool) path: listitem/para #: C/index.docbook:157 @@ -173,16 +205,18 @@ "from MATE menu " "ApplicationsAccessories;" msgstr "" +"dari menu MATE " +"AplikasiAksesoris;" #. (itstool) path: listitem/para #: C/index.docbook:159 msgid "from a terminal window;" -msgstr "" +msgstr "dari jendela terminal;" #. (itstool) path: listitem/para #: C/index.docbook:161 msgid "from Caja \"Open with...\" ;" -msgstr "" +msgstr "dari Caja \"Buka dengan...\" ;" #. (itstool) path: sect1/para #: C/index.docbook:166 @@ -190,6 +224,8 @@ "If you want to start Disk Usage Analyzer from a " "terminal window, just type:" msgstr "" +"Jika Anda ingin memulai Penganalisis Penggunaan " +"Disk dari jendela terminal, cukup ketik:" #. (itstool) path: sect1/para #: C/index.docbook:168 @@ -198,6 +234,9 @@ "<full_path_to_a_directory>, then press " "Return." msgstr "" +"mate-disk-usage-analyzer " +"<path_lengkap_ke_suatu_direktori>, lalu tekan " +"Return." #. (itstool) path: sect1/para #: C/index.docbook:170 @@ -205,6 +244,9 @@ "If launched from MATE menu, Disk Usage Analyzer " "starts and remains in a stand-by state, waiting for user action." msgstr "" +"Jika diluncurkan dari menu MATE, Penganalisis Penggunaan " +"Disk dimulai dan tetap dalam keadaan siaga, menunggu tindakan " +"pengguna." #. (itstool) path: sect1/para #: C/index.docbook:171 @@ -212,11 +254,13 @@ "When you start Disk Usage Analyzer from the MATE " "Menu, the following window is displayed." msgstr "" +"Saat Anda memulai Penganalisis Penggunaan Disk " +"dari Menu MATE, jendela berikut ditampilkan." #. (itstool) path: figure/title #: C/index.docbook:175 msgid "Disk Usage Analyzer Window" -msgstr "" +msgstr "Jendela Penganalisis Penggunaan Disk" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -228,7 +272,7 @@ msgid "" "external ref='figures/baobab_window.png' " "md5='381c84c892310cbc49afc0d5e90ad555'" -msgstr "" +msgstr "." #. (itstool) path: screenshot/mediaobject #: C/index.docbook:177 @@ -238,31 +282,35 @@ "Analyzer main window. Contains menubar, display area, scrollbars, and " "statusbar. " msgstr "" +" Menampilkan jendela " +"utama Penganalisis Penggunaan Disk. Berisi bilah menu, area tampilan, bilah " +"gulir, dan bilah status. " #. (itstool) path: sect1/para #: C/index.docbook:189 msgid "The user can then:" -msgstr "" +msgstr "Pengguna kemudian dapat:" #. (itstool) path: listitem/para #: C/index.docbook:191 msgid "start a full filesystem scan;" -msgstr "" +msgstr "memulai pemindaian sistem berkas lengkap;" #. (itstool) path: listitem/para #: C/index.docbook:193 msgid "select a specific local directory branch to scan" -msgstr "" +msgstr "pilih cabang direktori lokal tertentu untuk dipindai" #. (itstool) path: listitem/para #: C/index.docbook:195 msgid "select a remote server and folder to scan" -msgstr "" +msgstr "pilih server dan folder jarak jauh untuk dipindai" #. (itstool) path: listitem/para #: C/index.docbook:197 msgid "set preferences" -msgstr "" +msgstr "mengatur preferensi" #. (itstool) path: sect1/title #: C/index.docbook:207 @@ -272,7 +320,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:210 msgid "Full filesystem scan" -msgstr "" +msgstr "Pemindaian sistem berkas lengkap" #. (itstool) path: sect2/para #: C/index.docbook:211 @@ -282,6 +330,10 @@ "Filesystem from the menu, or press on the " "Scan Filesystem toolbar button." msgstr "" +"Untuk memulai pemindaian sistem berkas lengkap pilih " +"PenganalisisPindai Sistem " +"Berkas dari menu, atau tekan tombol bilah alat " +"Pindai Sistem Berkas." #. (itstool) path: sect2/para #: C/index.docbook:214 @@ -289,11 +341,13 @@ "When the scanning process ends up, you will get the full tree of your " "filesystem, like the one in the next Figure." msgstr "" +"Ketika proses pemindaian berakhir, Anda akan mendapatkan pohon penuh dari " +"sistem berkas Anda, seperti yang ada di Gambar berikutnya." #. (itstool) path: figure/title #: C/index.docbook:219 msgid "Disk Usage Analyzer Full filesystem scan" -msgstr "" +msgstr "Penganalisis Penggunaan Disk Pemindaian sistem berkas lengkap" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -305,7 +359,7 @@ msgid "" "external ref='figures/baobab_fullscan.png' " "md5='c36d630b13ddb1e1712125dc34262229'" -msgstr "" +msgstr "." #. (itstool) path: screenshot/mediaobject #: C/index.docbook:221 @@ -315,6 +369,10 @@ "Analyzer full filesystem scan window. Contains menubar, display area, " "scrollbars, and statusbar. " msgstr "" +" Menampilkan jendela " +"pemindaian sistem berkas lengkap Penganalisis Penggunaan Disk. Berisi bilah " +"menu, area tampilan, bilah gulir, dan bilah status. " #. (itstool) path: note/para #: C/index.docbook:233 @@ -324,6 +382,10 @@ "thread starts scanning the filesystem. If any large partition is mounted on " "the filesystem, that will be scanned too." msgstr "" +"Saat Anda menjalankan pemindaian sistem berkas lengkap, jendela " +"Penganalisis Penggunaan Disk akan mulai " +"menggambar pohon segera setelah utas mulai memindai sistem berkas. Jika ada " +"partisi besar yang dipasang pada sistem berkas, itu akan dipindai juga." #. (itstool) path: sect2/para #: C/index.docbook:238 @@ -335,6 +397,13 @@ "ViewAllocated " "Space ." msgstr "" +"Penganalisis Penggunaan Disk akan menampilkan " +"ukuran di pohon direktori sebagai ruang yang dialokasikan. Ini berarti bahwa" +" ukuran yang ditampilkan mengacu pada penggunaan disk yang sebenarnya dan " +"bukan ke ukuran direktori yang jelas. Jika Anda ingin melihat ukuran berkas " +"yang jelas, hapus centang " +"TampilanRuang yang " +"Dialokasikan." #. (itstool) path: warning/para #: C/index.docbook:243 @@ -343,6 +412,10 @@ " 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." msgstr "" +"Penganalisis Penggunaan Disk tidak akan " +"menghitung dir /proc, atau ukuran berkas apa pun yang tidak terkait dengan " +"berkas \"polos\", sehingga symlink, blok karakter, blok perangkat tidak akan" +" menjadi bagian dari ukuran direktori." #. (itstool) path: sect2/para #: C/index.docbook:247 @@ -352,11 +425,15 @@ "counted in the total, but highlighted in the right-hand column of the " "window." msgstr "" +"Hard-link dikelola dengan cara yang berbeda: hardlink pertama ini dihitung " +"sebagai berkas normal, sedangkan tautan berikutnya ke perangkat inode yang " +"sama tidak dihitung secara total, tetapi disorot di kolom sebelah kanan " +"jendela." #. (itstool) path: sect2/title #: C/index.docbook:254 msgid "Single folder scan" -msgstr "" +msgstr "Pemindaian folder tunggal" #. (itstool) path: sect2/para #: C/index.docbook:256 @@ -366,11 +443,15 @@ "Folder... from the menu, or press on the " "Scan Folder toolbar button." msgstr "" +"Untuk memulai pemindaian folder tunggal, pilih " +"PenganalisisPindai " +"Folder... dari menu, atau tekan tombol toolbar " +"Pindai Folder." #. (itstool) path: sect2/title #: C/index.docbook:263 msgid "Remote scan" -msgstr "" +msgstr "Pemindaian jarak jauh" #. (itstool) path: sect2/para #: C/index.docbook:265 @@ -382,11 +463,17 @@ "following dialog box. Disk Usage Analyzer can " "connect to a server through ssh, ftp, smb, http and https." msgstr "" +"Jika Anda perlu memindai folder server jarak jauh, cukup klik ikon bilah " +"alat Pindai Folder Jarak Jauh atau pilih " +"PenganalisisPindai Folder Jarak " +"Jauh dari menu dan Anda akan mendapatkan kotak " +"dialog berikut. Penganalisis Penggunaan Disk " +"dapat terhubung ke server melalui ssh, ftp, smb, http, dan https." #. (itstool) path: figure/title #: C/index.docbook:272 msgid "Disk Usage Analyzer Remote folder scan" -msgstr "" +msgstr "Penganalisis Penggunaan Disk Pemindaian folder remote" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -398,7 +485,7 @@ msgid "" "external ref='figures/baobab_remote.png' " "md5='b8d834a11cf8f227e1aefdee167a1a67'" -msgstr "" +msgstr "." #. (itstool) path: screenshot/mediaobject #: C/index.docbook:274 @@ -407,6 +494,10 @@ "format=\"PNG\"/> Shows Disk Usage " "Analyzer remote folder dialog window. " msgstr "" +" Memperlihatkan jendela " +"dialog folder jarak jauh Penganalisis Penggunaan Disk. " +"" #. (itstool) path: sect1/title #: C/index.docbook:293 @@ -420,11 +511,14 @@ "preferences, choose " "EditPreferences." msgstr "" +"Untuk mengubah preferensi aplikasi Penganalisis Penggunaan " +"Disk, pilih " +"SuntingPreferensi." #. (itstool) path: figure/title #: C/index.docbook:300 msgid "Disk Usage Analyzer Preferences Window" -msgstr "" +msgstr "Jendela Preferensi Penganalisis Penggunaan Disk" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -436,7 +530,7 @@ msgid "" "external ref='figures/baobab_prefs.png' " "md5='64e7c2ce647708579f9cc749c63aeca5'" -msgstr "" +msgstr "." #. (itstool) path: screenshot/mediaobject #: C/index.docbook:302 @@ -445,11 +539,14 @@ "format=\"PNG\"/> Preferences window " " " msgstr "" +" Jendela preferensi " +" " #. (itstool) path: sect2/title #: C/index.docbook:315 msgid "Select devices to be scanned" -msgstr "" +msgstr "Pilih perangkat yang akan dipindai" #. (itstool) path: sect2/para #: C/index.docbook:316 @@ -458,16 +555,20 @@ "are listed. Click on the checkbox to include/exclude the partition into the " "filesystem scanning operations." msgstr "" +"Di bagian pertama jendela Preferensi, semua perangkat yang dipasang yang " +"terdeteksi terdaftar. Klik pada kotak centang untuk " +"menyertakan/mengecualikan partisi ke dalam operasi pemindaian sistem berkas." #. (itstool) path: note/para #: C/index.docbook:319 msgid "The device mounted on \"/\" cannot be excluded from the scan." msgstr "" +"Perangkat yang dikait pada \"/\" tidak dapat dikecualikan dari pemindaian." #. (itstool) path: sect2/title #: C/index.docbook:323 msgid "Enable monitoring of home" -msgstr "" +msgstr "Aktifkan pemantauan rumah" #. (itstool) path: sect2/para #: C/index.docbook:324 @@ -476,24 +577,32 @@ "will constantly monitor any external changes to home directory and warn the " "user if a file is added/removed." msgstr "" +"Jika opsi ini dicentang, Penganalisis Penggunaan " +"Disk akan terus memantau setiap perubahan eksternal pada " +"direktori home dan memperingatkan pengguna jika berkas ditambahkan/dihapus." #. (itstool) path: sect1/title #: C/index.docbook:332 msgid "Treemaps" -msgstr "" +msgstr "Peta pohon" #. (itstool) path: sect1/para #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." -msgstr "" +" in the '90s. Read his vision on " +"treemaps." +msgstr "" +"Konsep peta pohon telah dikembangkan oleh Ben " +"Shneiderman pada tahun 90-an. Baca visinya atas " +"peta pohon." #. (itstool) path: figure/title #: C/index.docbook:339 msgid "Disk Usage Analyzer Treemap Window" -msgstr "" +msgstr "Jendela Peta Pohon Penganalisis Penggunaan Disk" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -505,7 +614,7 @@ msgid "" "external ref='figures/baobab_treemaps.png' " "md5='b553b49db25f9d6b98efcc394a5d3689'" -msgstr "" +msgstr "." #. (itstool) path: screenshot/mediaobject #: C/index.docbook:341 @@ -514,6 +623,9 @@ "format=\"PNG\"/> Treemap's theory. Shows" " 2 treemap diagrams " msgstr "" +" Teori peta pohon. " +"Memperlihatkan 2 diagram peta pohon " #. (itstool) path: sect1/para #: C/index.docbook:354 @@ -523,6 +635,10 @@ "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." msgstr "" +"Gambar menunjukkan contoh teori peta pohon. Setiap simpul (seperti yang " +"ditunjukkan dalam diagram pohon) memiliki nama (huruf) dan ukuran terkait " +"(angka). Ukuran daun dapat mewakili misalnya ukuran berkas individu, ukuran " +"simpul non-daun adalah jumlah ukuran anak-anaknya." #. (itstool) path: sect1/para #: C/index.docbook:359 @@ -536,6 +652,14 @@ "in the treemap, as a result of its construction. Color and annotation can be" " used to give extra information about the leaves." msgstr "" +"Peta pohon dibangun melalui subdivisi rekursif dari persegi panjang awal. " +"Ukuran setiap sub-persegi panjang sesuai dengan ukuran simpul. Arah " +"subdivisi bergantian per level: pertama secara horizontal, berikutnya secara" +" vertikal, dan sebagainya. Akibatnya, persegi panjang awal dipartisi menjadi" +" persegi panjang yang lebih kecil, sehingga ukuran setiap persegi panjang " +"mencerminkan ukuran daun. Struktur pohon juga tercermin dalam peta pohon, " +"sebagai hasil dari konstruksinya. Warna dan anotasi dapat digunakan untuk " +"memberikan informasi tambahan tentang daun." #. (itstool) path: note/para #: C/index.docbook:368 @@ -543,11 +667,13 @@ "Treemaps are very effective when size is the most important feature to be " "displayed." msgstr "" +"Peta pohon sangat efektif ketika ukuran adalah fitur terpenting yang akan " +"ditampilkan." #. (itstool) path: sect1/title #: C/index.docbook:374 msgid "Ringschart" -msgstr "" +msgstr "Bagan cincin" #. (itstool) path: sect1/para #: C/index.docbook:376 @@ -556,11 +682,16 @@ "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:" msgstr "" +"Bagan cincin adalah representasi grafis dari penggunaan" +" disk oleh folder konkret. Saat meluncurkan aplikasi, diberitahukan " +"penggunaan sistem berkas seperti yang dapat dilihat pada gambar berikutnya:" #. (itstool) path: figure/title #: C/index.docbook:383 msgid "Disk Usage Analyzer showing a ringschart with the file system usage" msgstr "" +"Penganalisis Penggunaan Disk memperlihatkan bagain cincin penggunaan sistem " +"berkas" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -572,7 +703,7 @@ msgid "" "external ref='figures/baobab_ringschart1.png' " "md5='84b2e52d360fbda7311ce59a9532be7a'" -msgstr "" +msgstr "." #. (itstool) path: screenshot/mediaobject #: C/index.docbook:385 @@ -582,6 +713,10 @@ "application, it is showed the file system usage. Graphical representation on" " the right. " msgstr "" +" Setelah meluncurkan " +"aplikasi, ditampilkan penggunaan sistem berkas. Representasi grafis di " +"sebelah kanan. " #. (itstool) path: sect1/para #: C/index.docbook:398 @@ -594,11 +729,20 @@ "it before it has been completed, only a partial representation is done based" " on the directories whose usage was computed." msgstr "" +"Saat Anda mulai memindai folder, pohon sub folder dibuat dan dicantumkan di " +"sisi kiri. Setiap baris berisi informasi untuk nama, berapa banyak ruang " +"yang digunakan (persentase dan ukuran dalam KB, MB atau GB) dan cacah item " +"(menambahkan berkas dan direktori). Ketika proses ini berakhir, " +"Bagan< cincin/guilabel> digambar di sisi kanan. Jika Anda " +"menghentikannya sebelum selesai, hanya representasi parsial yang dilakukan " +"berdasarkan direktori yang penggunaannya dihitung." #. (itstool) path: figure/title #: C/index.docbook:411 msgid "Disk Usage Analyzer showing a ringschart with the usage of a folder" msgstr "" +"Penganalisis Penggunaan Disk memperlihatkan bagan cincin dari penggunaan " +"folder" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -610,7 +754,7 @@ msgid "" "external ref='figures/baobab_ringschart2.png' " "md5='d938ef7e9299de5b304c7654bf14e364'" -msgstr "" +msgstr "." #. (itstool) path: screenshot/mediaobject #: C/index.docbook:413 @@ -619,6 +763,9 @@ "format=\"PNG\"/> After scanning a " "folder. " msgstr "" +" Setelah memindai " +"folder. " #. (itstool) path: sect1/para #: C/index.docbook:425 @@ -642,6 +789,23 @@ "indicating their names. It's possible that not all of the subfolders' names " "are displayed, to avoid overlappings." msgstr "" +"Bagan cincin terdiri dari satu set cincin berlapis di " +"sekitar lingkaran tengah. Lingkaran ini melambangkan folder akar pohon " +"parsial (yaitu, folder yang telah dipilih pengguna untuk dipindai). Setiap " +"cincin mewakili tingkat di pohon parsial, jadi yaitu sub folder dari folder " +"akar akan diwakili di cincin pertama, dan tingkat yang lebih dalam di pohon " +"sesuai dengan cincin luar dalam bagan. Setiap sub folder diwakili oleh " +"sektor cincin, sudutnya sebanding dengan ukuran isi folder, dan dicat dengan" +" warna yang berbeda untuk memudahkan visualisasi. Hingga lima level dapat " +"ditarik; jika folder di tingkat kelima terakhir itu berisi lebih banyak sub " +"folder, situasi ini akan ditunjukkan oleh adanya kurva hitam yang dekat " +"dengan tepi sektor cincin folder itu. Ketika folder tanpa sub folder lebih " +"lanjut dipilih untuk menjadi akar dari pohon parsial, hanya lingkaran dalam " +"yang akan digambar. Ketika penunjuk tetikus diambangkan pada salah satu " +"folder dalam grafik, itu akan disorot dan tooltip akan muncul dengan " +"informasi tentang nama dan ukurannya. Jika ada sub folder, tooltip abu-abu " +"kecil akan muncul, menunjukkan namanya. Ada kemungkinan bahwa tidak semua " +"nama sub folder ditampilkan, untuk menghindari tumpang tindih." #. (itstool) path: sect1/para #: C/index.docbook:446 @@ -656,6 +820,15 @@ "ringschart frame) you'll get the opposite behavior, " "going back one step in the hierarchy." msgstr "" +"Anda dapat naik dan turun baris dalam daftar (secara opsional memperluas " +"baris dengan sub folder), representasi grafik akan berubah menggunakan " +"folder yang dipilih sebagai akar dari pohon parsial yang akan diwakili. " +"Folder juga dapat dinavigasi dari bagan cincin itu " +"sendiri. Jika Anda mengklik dengan tombol kiri tetikus Anda di dalam folder," +" Anda akan bergerak lebih dalam dengan mengatur root grafik ke folder itu. " +"Jika Anda menekan tombol tengah (tidak peduli tempatnya selama Anda mengklik" +" di dalam bingkai bagan cincin), Anda akan mendapatkan " +"perilaku sebaliknya, mundur satu langkah dalam hierarki." #. (itstool) path: sect1/para #: C/index.docbook:457 @@ -667,11 +840,17 @@ "representation, files are taken into account to calculate the amount of " "space occupied by folders." msgstr "" +"Persentase jari-jari induknya yang digunakan oleh folder tertentu berbanding" +" lurus dengan hubungan antara ukurannya sendiri dan induknya. Sangat mudah " +"untuk memahami bahwa ukuran folder sama atau lebih kecil dari induknya. " +"Meskipun hanya direktori yang ditampilkan dalam representasi grafis ini, " +"berkas diperhitungkan untuk menghitung banyaknya ruang yang ditempati oleh " +"folder." #. (itstool) path: para/ulink #: C/legal.xml:9 msgid "link" -msgstr "taut" +msgstr "tautan" #. (itstool) path: legalnotice/para #: C/legal.xml:2 @@ -734,17 +913,17 @@ "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 LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " -"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" +"DOKUMEN DISEDIAKAN \"SEBAGAIMANA ADANYA\", TANPA JAMINAN APA PUN, BAIK " +"TERSURAT MAUPUN TERSIRAT, TERMASUK, TANPA BATASAN, JAMINAN BAHWA DOKUMEN " +"ATAU VERSI MODIFIKASI DOKUMEN BEBAS DARI CACAT DAPAT DIPERDAGANGKAN ATAU " +"TIDAK UNTUK TUJUAN TERTENTU -INFRINGING. SELURUH RISIKO TERKAIT KUALITAS, " +"AKURASI, DAN KINERJA DOKUMEN ATAU VERSI MODIFIKASI DOKUMEN ADALAH PADA ANDA." +" SEHARUSNYA DOKUMEN ATAU VERSI YANG DIMODIFIKASI TERBUKTI CACAT DALAM HAL " +"APA PUN, ANDA (BUKAN PENULIS AWAL, PENGARANG ATAU KONTRIBUTOR APA PUN) " +"BERTANGGUNG JAWAB BIAYA PELAYANAN, PERBAIKAN, ATAU KOREKSI YANG DIPERLUKAN. " +"PENAFIAN JAMINAN INI MENJADI BAGIAN PENTING LISENSI INI. TIDAK ADA " +"PENGGUNAAN DOKUMEN ATAU VERSI MODIFIKASI DOKUMEN YANG DIIZINKAN DI SINI " +"KECUALI BERDASARKAN PENAFIAN INI; DAN" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -760,16 +939,17 @@ "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." +"DALAM KEADAAN APA PUN DAN DALAM TEORI HUKUM, BAIK DALAM TOR (TERMASUK " +"KELALAIAN), KONTRAK, ATAU LAINNYA, PENULIS, PENULIS AWAL, KONTRIBUTOR APA " +"PUN, ATAU DISTRIBUTOR DOKUMEN ATAU VERSI YANG DIMODIFIKASI DARI DOKUMEN APA " +"PUN, ATAU VERSI YANG DIMODIFIKASI DARI DOKUMEN APA PUN, ATAU DARI PIHAK " +"TERSEBUT, BERTANGGUNG JAWAB KEPADA SIAPAPUN ATAS KERUSAKAN LANGSUNG, TIDAK " +"LANGSUNG, KHUSUS, INSIDENTAL, ATAU KONSEKUENSIAL DARI SETIAP KARAKTER " +"TERMASUK, TANPA BATASAN, KERUSAKAN ATAS KEHILANGAN NAMA BAIK, PENGHENTIAN " +"KERJA, KEGAGALAN KOMPUTER ATAU KESALAHAN LAINNYA, ATAU KERUSAKAN APA PUN DAN" +" SEMUA KERUSAKAN ATAU KERUGIAN YANG TIMBUL KARENA ATAU TERKAIT DENGAN " +"PENGGUNAAN DOKUMEN DAN VERSI YANG DIUBAH DARI DOKUMEN, MESKIPUN PIHAK " +"TERSEBUT TELAH DIBERITAHU TENTANG KEMUNGKINAN KERUSAKAN TERSEBUT." #. (itstool) path: legalnotice/para #: C/legal.xml:28 @@ -778,6 +958,6 @@ "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 LICENSE WITH THE FURTHER UNDERSTANDING THAT: " +"DOKUMEN DAN VERSI MODIFIKASI DOKUMEN DIBERIKAN BERDASARKAN PERSYARATAN " +"LISENSI DOKUMENTASI GRATIS GNU DENGAN PEMAHAMAN LEBIH LANJUT BAHWA: " "<_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/baobab/help/id/index.docbook mate-utils-1.26.1/baobab/help/id/index.docbook --- mate-utils-1.26.0/baobab/help/id/index.docbook 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/id/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,474 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - 2015-2021 Projek Dokumentasi MATE - - 2006 - Fabio Marzocca - - - - Projek Dokumentasi MATE - - - Projek Dokumentasi GNOME - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Umpan balik - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Kukuh Syafaat - - syafaatkukuh@gmail.com - - - - 2017. - - Kukuh Syafaat - -
- - - Disk Usage Analyzer - - - - - - - Pengantar - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Mulai - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Cara pakai - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferensi - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/id/legal.xml mate-utils-1.26.1/baobab/help/id/legal.xml --- mate-utils-1.26.0/baobab/help/id/legal.xml 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/id/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Hak diberikan untuk menyalin, mendistribusikan, dan/atau mengubah dokumen ini di bawah persyaratan GNU Free Documentation License (GFDL, Lisensi Dokumentasi Bebas GNU), Versi 1.1 atau sebarang versi setelahnya yang dipublikasikan oleh Free Software Foundation tanpa Invariant Section, tanpa Front-Cover Texts, dan tanpa Back-Cover Texts. Anda dapat menemukan salinan dari GFDL pada taut atau di dalam berkas COPYING-DOCS yang didistribusikan bersama manual ini. - Manual ini adalah bagian dari suatu koleksi manual MATE yang disebarkan di bawah GDFL. Bila Anda ingin menyebarkan manual ini secara terpisah dari koleksi, Anda dapat melakukannya dengan menambahkan salinan lisensi ke manual, sebagaimana dijelaskan di bagian 6 dari lisensi. - - Banyak nama yang dipakai oleh perusahaan-perusahaan untuk membedakan produk dan layanan mereka diklaim sebagai merek dagang. Ketika nama-nama tersebut muncul di dalam sebarang dokumentasi MATE, and anggota Projek Dokumentasi MATE disadarkan atas merek dagang tersebut, maka nama-nama akan ditulis dalam huruf besar atau huruf awal huruf besar. - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/baobab/help/ie/ie.po mate-utils-1.26.1/baobab/help/ie/ie.po --- mate-utils-1.26.0/baobab/help/ie/ie.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ie/ie.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Caarmi, 2019 +# Caarmi, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Caarmi, 2019\n" -"Language-Team: Interlingue (https://www.transifex.com/mate/teams/13566/ie/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Caarmi, 2021\n" +"Language-Team: Interlingue (https://app.transifex.com/mate/teams/13566/ie/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -18,7 +18,7 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "OIS , 2019" +msgstr "OIS , 2020" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ie/index.docbook mate-utils-1.26.1/baobab/help/ie/index.docbook --- mate-utils-1.26.0/baobab/help/ie/index.docbook 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ie/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,477 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - OIS - - mistresssilvara@hotmail.com - - - - 2019 - - OIS - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferenties - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ie/legal.xml mate-utils-1.26.1/baobab/help/ie/legal.xml --- mate-utils-1.26.0/baobab/help/ie/legal.xml 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ie/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ig/ig.po mate-utils-1.26.1/baobab/help/ig/ig.po --- mate-utils-1.26.0/baobab/help/ig/ig.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ig/ig.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Igbo (https://www.transifex.com/mate/teams/13566/ig/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Igbo (https://app.transifex.com/mate/teams/13566/ig/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ig/index.docbook mate-utils-1.26.1/baobab/help/ig/index.docbook --- mate-utils-1.26.0/baobab/help/ig/index.docbook 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ig/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Nkarachọ - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ig/legal.xml mate-utils-1.26.1/baobab/help/ig/legal.xml --- mate-utils-1.26.0/baobab/help/ig/legal.xml 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ig/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/is/index.docbook mate-utils-1.26.1/baobab/help/is/index.docbook --- mate-utils-1.26.0/baobab/help/is/index.docbook 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/is/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,490 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Samúel Jón Gunnarsson - - sammi@techattack.nu - - - - 2003 - - Samúel Jón Gunnarsson - - - - - Sveinn í Felli - - sv1@fellsnet.is - - - - 2012-2016 - - Sveinn í Felli - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Kjörstillingar - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/is/is.po mate-utils-1.26.1/baobab/help/is/is.po --- mate-utils-1.26.0/baobab/help/is/is.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/is/is.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Sveinn í Felli , 2018 -# Stefano Karapetsas , 2018 +# Sveinn í Felli , 2021 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Icelandic (https://www.transifex.com/mate/teams/13566/is/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Icelandic (https://app.transifex.com/mate/teams/13566/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -118,8 +118,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -480,8 +481,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/is/legal.xml mate-utils-1.26.1/baobab/help/is/legal.xml --- mate-utils-1.26.0/baobab/help/is/legal.xml 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/is/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/it/index.docbook mate-utils-1.26.1/baobab/help/it/index.docbook --- mate-utils-1.26.0/baobab/help/it/index.docbook 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/it/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,287 +0,0 @@ - - - - - - -]> - - -
- - - - Manuale di Analizzatore di utilizzo del disco - - - Analizzatore di utilizzo del disco è un visualizzatore grafico che permette di vedere e monitorare l'utilizzo del disco e la struttura delle cartelle. - - - 2015-2021 Progetto Documentazione di MATE - 2006 Fabio Marzocca - - - Progetto di documentazione di MATE - - - Progetto della Documentazione di GNOME - - - - - - Team Documentazione di MATE MATE desktop - Fabio Marzocca Progetto Documentazione di GNOME
thesaltydog@gmail.com
- - Fabio Marzocca
thesaltydog@gmail.com
- - -
- - - - - - Manuale di Analizzatore di utilizzo del disco 1.10 Luglio 2015 - Wolfgang Ulbrich - Progetto di documentazione di MATE - - Analizzatore di utilizzo del disco 1.0 Aprile 2006 - Emmanuele Bassi ebassi@gmail.com - Progetto della Documentazione di GNOME - - - - Questo manuale è relativo alla versione 1.10 di Analizzatore di utilizzo del disco - - - Commenti - Per segnalare un malfunzionamento o un suggerimento su Analizzatore di utilizzo del disco o su questo manuale, segure le indicazioni nella Pagina di feedback di MATE. - - -
- - Analizzatore di utilizzo del disco - - - - - - Introduzione - - Analizzatore di utilizzo del disco è un'applicazione grafica controllata via menù, per analizzare l'utilizzo del disco in qualsiasi ambiente MATE. Analizzatore di utilizzo del disco può scansionare facilmente l'intero file system o una porzione di esso specifica a scelta dell'utente (locale o remota). - Esso, inoltre, rileva automaticamente in tempo reale qualsiasi modifica apportata alla cartella home o a qualsiasi dispositivo montato/smontato. Analizzatore di utilizzo del disco fornisce anche una visione ad albero completa per ogni cartella selezionata. - - - - - - Introduzione - - E' possibile avviare Analizzatore di utilizzo del disco nei seguenti modi: - - dal menu MATE ApplicazioniAccessori; - - da una finestra di terminale; - - da Caja "Apri con..." ; - - - - -Se si vuole avviare Analizzatore di utilizzo del disco da un terminale, inserisci: - -mate-disk-usage-analyzer <percorso_alla_cartella>, e premere Invio. - - Se avviato dal menu MATE, l'Analizzatore di utilizzo del disco si avvia in standby, in attesa di un'azione da parte dell'utente. - Quando si esegue Analizzatore di utilizzo del disco dal menu MATE, viene mostrata la seguente finestra. - - -
- Finestra di Analizzatore di utilizzo del disco - - Mostra la finestra principale di Analizzatore di utilizzo del disco. Contiene le barre dei menu, di scorrimento, di stato e l'area di visualizzazione. - -
- - -E' possibile: - - avviare una scansione completa del sistema; - - selezionare una cartella da scansionare; - - selezionare un server e una cartella remoti da scansionare; - - modificare le impostazioni - - - - -
- - - - - Uso - - - Scansione completa del sistema - Per avviare una scansione completa, selezionare AnalizzatoreScansione file system nel menu, o premere il tasto Scansiona il file system nella barra degli strumenti. - - Quando il processo di scansione finisce, viene mostrato l'albero completo del filesystem come nella figura seguente. - - -
- Scansione completa di Analizzatore di utilizzo del disco - - Mostra la finestra di una scansione completa del file system in Analizzatore di utilizzo del disco. Contiene le barre dei menu, di scorrimento, di stato e l'area di visualizzazione. - -
- - - Quando si avvia una scansione completa del file system, Analizzatore di utilizzo del disco inizierà subito a disegnare l'albero. Se sul filesystem è montata una partizione di grandi dimensioni, verrà scansionata anch'essa. - - Analizzatore di utilizzo del discovisualizzerà le dimensioni delle cartelle nella struttura ad albero. Le dimensioni visualizzate si riferiscono all'effettivo utilizzo del disco e non alle dimensioni apparenti della cartella. Se si desideri visualizzare le dimensioni apparenti del file, deselezionare VisualizzaSpazio allocato . - - Analizzatore di utilizzo del disco non tiene conto della cartella /proc, né di qualsiasi altro file non riconducibile ad un file "semplice". Collegamenti simbolici, blocchi di caratteri e blocchi di dispositivi non rientreranno quindi nel calcolo della dimensione della cartella. - - Gli hard-link vengono gestiti in modo diverso: il primo hardlink viene conteggiato come un normale file, mentre i link successivi allo stesso dispositivo inode non vengono conteggiati nel totale, ma evidenziati nella colonna di destra della finestra. -
- - - Scansione di una singola cartella - - Per scansionare una singola cartella selezionare AnalizzatoreScansione cartella.. dal menu o premere Scansione cartella dalla barra degli strumenti. - - - - - Scansione remota - - Se si vuoie scansionare una cartella remota, selezionare Scansiona una cartella remota dalla barra degli strumenti o seleziona AnalizzatoreScansione cartella remota dal menu e verrà visualizzata la seguente finestra di dialogo. Analizzatore di utilizzo del disco può connettersi al server tramite ssh, ftp, smb, http e https. - - -
- Scansione cartella remota di Analizzatore di utilizzo del disco - - Mostra la finestra di scansione di una cartella remota in Analizzatore di utilizzo del disco. - -
- - -
- -
- - - - - Preferenze - - Per cambiare le preferenze di Analizzatore di utilizzo del disco, selezionare modificaPreferenze. - - -
- Finestra delle preferenze di Analizzatore di utilizzo del disco - - Mostra la finestra delle preferenze - -
- - - - Seleziona i dispositivi da scansionare - Nella prima parte della finestra Preferenze sono elencati tutti i dispositivi montati rilevati. Fare clic sulla casella di controllo per includere/escludere la partizione dalla scansione del file system. - I dispositivi montati in "/" non possono essere esclusi dalla scansione. - - - - Monitorare i cambiamenti alla propria cartella home - ISe questa opzione è selezionata, Analizzatore di utilizzo del disco monitorerà costantemente ogni modifica esterna alla cartella home directory e avvertirà l'utente se un file è stato aggiunto/rimosso. - -
- - - - Mappa ad albero - - Il concetto di Mappa ad albero è stato concepito da Ben Shneiderman negli anni '90. Leggi l'articolo originale vision on treemaps. - - -
- Mappa ad albero di Analizzatore di utilizzo del disco - - Teorema delle mappe ad albero. Mostra 2 diagrammi ad albero - -
- - - - La figura mostra un esempio della teoria delle mappe ad albero. Ogni nodo (come mostrato nel diagramma ad albero) ha un nome (una lettera) e una dimensione associata (un numero). La dimensione delle foglie può rappresentare ad esempio la dimensione dei singoli file, mentre la dimensione dei nodi intermedi è la somma delle dimensioni dei suoi figli. - - La mappa ad albero è costituita da una suddivisione ricorsiva del rettangolo iniziale. La dimensione di ogni sotto-rettangolo corrisponde alla dimensione del nodo. La direzione della suddivisione si alterna per ogni livello: prima orizzontalmente, poi verticalmente, ecc. Di conseguenza, il rettangolo iniziale è suddiviso in rettangoli più piccoli, in modo che la dimensione di ciascun rettangolo rifletta la dimensione della relativa foglia. La struttura dell'albero si riflette anche nella mappa a causa del sistema di costruzione della stessa. Per fornire ulteriori informazioni sulle foglie è possibile usare colori e annotazioni. - - Le mappe ad albero sono molto efficaci quando l'importante è rappresentare graficamente una dimensione. -
- - - - Grafico ad anelli - - Il Grafico ad anelli è una rapprensentazione grafica dell'utilizzo del disco. Quando si lancia l'applicazione viene mostrato l'utilizzo del disco, come si può vedere nella figura seguente: - - -
- Analizzatore di utilizzo del disco mostra un grafico ad anello della percentuale d'uso dello spazio. - - Mostra l'utilizzo del disco dopo l'avvio dell'applicazione. Rappresentazione grafica sulla destra. - -
- - - Quando si avvia la scansione di una cartella, l'albero delle sottocartelle viene creato ed elencato sul lato sinistro. Ogni riga contiene informazioni sul nome, lo spazio occupato (percentuale e dimensione in KB, MB o GB) e il numero di elementi (file e cartelle). Quando questo processo termina, viene disegnato il Grafico ad anelli sullaa destra. Se viene interrotto prima del completamento, viene mostrata una rappresentazione parziale basata sulle cartelle analizzate. - - - -
- Analizzatore di utilizzo del disco mostra un grafico ad anello della percentuale d'uso della cartella. - - Dopo la scansione di una cartella. - -
- - - Il Grafico ad anello è composto da una serie di anelli raggruppati intorno ad un elemento centrale. Questo elemento simboleggia la cartella principale dell'albero parziale (cioè la cartella che l'utente ha selezionato per la scansione). Ogni anello è invece un livello nell'albero parziale, quindi le sottocartelle della cartella principale saranno rappresentate nel primo anello, e i livelli più profondi nell'albero corrispondono agli anelli esterni del grafico. Ogni sottocartella è rappresentata da un settore dell'anello, il cui angolo è proporzionale alla dimensione del contenuto della cartella e dipinta con un colore diverso per facilitarne la visualizzazione. Si possono disegnare fino a cinque livelli e nel caso in cui una cartella in quest'ultimo livello contenga altre sottocartelle, viene mostrata una curva nera vicino al bordo del settore dell'anello relativo a quella cartella. Quando una cartella senza ulteriori sottocartelle viene selezionata come radice dell'albero parziale, verrà disegnato solo il cerchio interno. Posizionando il puntatore del mouse su una delle cartelle nel grafico questo viene evidenziato e appare una nota con le informazioni sul nome e le dimensioni. Se ci sono delle sottocartelle, appariranno altre note grigie con l'indicazione del nome. E' possibile che non vengano mostrati tutti i nomi delle sottocartelle al fine di evitare sovrapposizioni. - - È possibile scorrere le righe dell'elenco (espandendo quelle con sottocartelle) e la rappresentazione grafica cambierà utilizzando la cartella selezionata come radice dell'albero parziale da rappresentare. Le cartelle possono anche essere esplorate dal grafico ad anelli stesso. Cliccando con il tasto sinistro del mouse all'interno di una cartella è possibile aumentare la profondità impostando quella cartella come radice del grafico. Premendo il pulsante centrale (non importa la posizione, ma è sufficiente che sia all'interno del grafico ad anelli) si otterrà il comportamento opposto, tornando indietro di un livello gerarchico. - - La percentuale del raggio della cartella superiore utilizzata da una data cartella è direttamente proporzionale al rapporto tra la propria dimensione e quella della cartella genitrice. È facile intuire che la dimensione di una cartella sarà uguale o più piccola a quella della cartella superiore. Anche se in questa rappresentazione grafica vengono mostrate solo le cartelle, vengono conteggiati anche i file per calcolare la quantità di spazio occupato dalle cartelle. -
-
diff -Nru mate-utils-1.26.0/baobab/help/it/it.po mate-utils-1.26.1/baobab/help/it/it.po --- mate-utils-1.26.0/baobab/help/it/it.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/it/it.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,31 +1,30 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Marco Z. , 2018 -# Giuseppe Pignataro , 2019 -# Enrico B. , 2019 +# Stefano Karapetsas , 2021 +# Giuseppe Pignataro , 2021 +# Wolfgang Ulbrich , 2021 +# Enrico B. , 2021 +# Marco Z. , 2021 # Alessandro Volturno , 2021 +# 6d1bb5d393520b00f70a137a58397ea1_b5ba1e2 <22cc5e560e0d5b6554809bfb51b90403_882095>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Alessandro Volturno , 2021\n" -"Language-Team: Italian (https://www.transifex.com/mate/teams/13566/it/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: 6d1bb5d393520b00f70a137a58397ea1_b5ba1e2 <22cc5e560e0d5b6554809bfb51b90403_882095>, 2021\n" +"Language-Team: Italian (https://app.transifex.com/mate/teams/13566/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "" -"Enrico Bella, 2019\n" -"Alessandro Volturno, 2020" +msgstr "Alessandro Volturno, 2021" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -56,13 +55,13 @@ #. (itstool) path: revdescription/para #: C/index.docbook:47 C/index.docbook:103 msgid "MATE Documentation Project" -msgstr "Progetto di documentazione di MATE" +msgstr "Progetto della documentazione MATE" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:50 C/index.docbook:113 msgid "GNOME Documentation Project" -msgstr "Progetto della Documentazione di GNOME" +msgstr "Progetto Documentazione di GNOME " #. (itstool) path: authorgroup/author #: C/index.docbook:56 @@ -137,8 +136,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Per segnalare un malfunzionamento o un suggerimento su Analizzatore di " "utilizzo del disco o su questo manuale, segure le indicazioni nella Treemap
concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" "Il concetto di Mappa ad albero è stato concepito da Ben" " Shneiderman negli anni '90. Leggi l'articolo originale o nel " +"Foundation senza sezioni invarianti, senza testi di copertina e senza testi " +"di frontespizio. Potete trovare una copia del GFDL qui <_:ulink-1/> o nel " "file COPYING-DOCS distribuito con questo manuale." #. (itstool) path: legalnotice/para @@ -898,7 +899,7 @@ "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" -"Questo manuale fa parte di una raccolta di manuali MATE distribuita in " +"Questo manuale fa parte di una raccolta di manuali di MATE distribuita in " "conformità con la GFDL. Per poter distribuire questo manuale separatamente, " "è necessario inserirvi una copia della licenza, come descritto nella sezione" " 6 della licenza." @@ -914,9 +915,9 @@ msgstr "" "Molti dei nomi usati dalle aziende per distinguere i propri prodotti e " "servizi sono rivendicati come marchi. Quando questi nomi compaiono nella " -"documentazione di MATE, e i partecipanti al MATE Documentation Project sono " -"consapevoli del loro utilizzo, essi vengono scritti in lettere maiuscole o " -"con l'iniziale maiuscola." +"documentazione di MATE, e i partecipanti al progetto di documentazione MATE " +"sono consapevoli del loro utilizzo, essi vengono scritti in lettere " +"maiuscole o con l'iniziale maiuscola." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -933,19 +934,20 @@ "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 "" -"IL DOCUMENTO VIENE FORNITO SENZA GARANZIE DI ALCUN TIPO, ESPLICITE O " -"IMPLICITE, INCLUSE, MA SENZA LIMITAZIONE, LE GARANZIE ATTESTANTI CHE IL " -"DOCUMENTO O LE SUE VERSIONI MODIFICATE SIANO PRIVI DI DIFETTI, " -"COMMERCIALIZZABILI, IDONEI A UN DETERMINATO SCOPO O CHE NON VIOLINO DIRITTI " -"DI TERZI. SI DECLINA QUALUNQUE RESPONSABILITÀ RIGUARDO AI RISCHI INERENTI LA" -" QUALITÀ, L'ACCURATEZZA E LE PRESTAZIONI DEL DOCUMENTO O DI UNA SUA VERSIONE" -" MODIFICATA. QUALORA UN DOCUMENTO O UNA SUA VERSIONE MODIFICATA DOVESSERO " -"PRESENTARE QUALUNQUE TIPO DI DIFETTO, IL COSTO DI EVENTUALI INTERVENTI DI " -"ASSISTENZA, RIPARAZIONE O CORREZIONE SARÀ A CARICO DELL'UTENTE (NON DEL " -"REDATTORE INIZIALE, DELL'AUTORE O DI ALTRI COLLABORATORI). QUESTA " -"LIMITAZIONE DELLA GARANZIA COSTITUISCE PARTE ESSENZIALE DELLA LICENZA. L'USO" -" DEL DOCUMENTO O DELLE SUE VERSIONI MODIFICATE È CONSENTITO SOLO ENTRO I " -"TERMINI DI QUESTA LIMITAZIONE DELLA GARANZIA;" +"IL DOCUMENTO VIENE FORNITO SULLA BASE DEL \"COME È\", SENZA GARANZIE DI " +"ALCUN TIPO, ESPLICITE O IMPLICITE, INCLUSE, MA SENZA LIMITAZIONE, LE " +"GARANZIE ATTESTANTI CHE IL DOCUMENTO O LE SUE VERSIONI MODIFICATE SIANO " +"PRIVI DI DIFETTI, COMMERCIALIZZABILI, IDONEI A UN DETERMINATO SCOPO O CHE " +"NON VIOLINO DIRITTI DI TERZI. SI DECLINA QUALUNQUE RESPONSABILITÀ RIGUARDO " +"AI RISCHI INERENTI LA QUALITÀ, L'ACCURATEZZA E LE PRESTAZIONI DEL DOCUMENTO " +"O DI UNA SUA VERSIONE MODIFICATA. QUALORA UN DOCUMENTO O UNA SUA VERSIONE " +"MODIFICATA DOVESSERO PRESENTARE QUALUNQUE TIPO DI DIFETTO, IL COSTO DI " +"EVENTUALI INTERVENTI DI ASSISTENZA, RIPARAZIONE O CORREZIONE SARÀ A CARICO " +"DELL'UTENTE (NON DEL REDATTORE INIZIALE, DELL'AUTORE O DI ALTRI " +"COLLABORATORI). QUESTA LIMITAZIONE DELLA GARANZIA COSTITUISCE PARTE " +"ESSENZIALE DELLA LICENZA. L'USO DEL DOCUMENTO O DELLE SUE VERSIONI " +"MODIFICATE È CONSENTITO SOLO ENTRO I TERMINI DI QUESTA LIMITAZIONE DELLA " +"GARANZIA;" #. (itstool) path: listitem/para #: C/legal.xml:55 diff -Nru mate-utils-1.26.0/baobab/help/it/legal.xml mate-utils-1.26.1/baobab/help/it/legal.xml --- mate-utils-1.26.0/baobab/help/it/legal.xml 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/it/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - È concesso il permesso di copiare, distribuire e/o modificare questo documento in base ai termini della GNU Free Documentation License (GFDL), Versione 1.1 o qualsiasi versione successiva pubblicata dalla Free Software Foundation senza sezioni invarianti, senza testi di copertina e nessun testo di retro copertina. Puoi trovare una copia del GFDL qui collegamento o nel file COPYING-DOCS distribuito con questo manuale. - Questo manuale fa parte di una raccolta di manuali MATE distribuita in conformità con la GFDL. Per poter distribuire questo manuale separatamente, è necessario inserirvi una copia della licenza, come descritto nella sezione 6 della licenza. - - Molti dei nomi usati dalle aziende per distinguere i propri prodotti e servizi sono rivendicati come marchi. Quando questi nomi compaiono nella documentazione di MATE, e i partecipanti al MATE Documentation Project sono consapevoli del loro utilizzo, essi vengono scritti in lettere maiuscole o con l'iniziale maiuscola. - - IL DOCUMENTO E LE VERSIONI MODIFICATE DEL DOCUMENTO VENGONO RILASCIATE SECONDO I TERMINI DELLA GNU FREE DOCUMENTATION LICENSE TENENDO PRESENTE CHE: - - IL DOCUMENTO VIENE FORNITO SENZA GARANZIE DI ALCUN TIPO, ESPLICITE O IMPLICITE, INCLUSE, MA SENZA LIMITAZIONE, LE GARANZIE ATTESTANTI CHE IL DOCUMENTO O LE SUE VERSIONI MODIFICATE SIANO PRIVI DI DIFETTI, COMMERCIALIZZABILI, IDONEI A UN DETERMINATO SCOPO O CHE NON VIOLINO DIRITTI DI TERZI. SI DECLINA QUALUNQUE RESPONSABILITÀ RIGUARDO AI RISCHI INERENTI LA QUALITÀ, L'ACCURATEZZA E LE PRESTAZIONI DEL DOCUMENTO O DI UNA SUA VERSIONE MODIFICATA. QUALORA UN DOCUMENTO O UNA SUA VERSIONE MODIFICATA DOVESSERO PRESENTARE QUALUNQUE TIPO DI DIFETTO, IL COSTO DI EVENTUALI INTERVENTI DI ASSISTENZA, RIPARAZIONE O CORREZIONE SARÀ A CARICO DELL'UTENTE (NON DEL REDATTORE INIZIALE, DELL'AUTORE O DI ALTRI COLLABORATORI). QUESTA LIMITAZIONE DELLA GARANZIA COSTITUISCE PARTE ESSENZIALE DELLA LICENZA. L'USO DEL DOCUMENTO O DELLE SUE VERSIONI MODIFICATE È CONSENTITO SOLO ENTRO I TERMINI DI QUESTA LIMITAZIONE DELLA GARANZIA; - - - IN NESSUNA CIRCOSTANZA E PER NESSUNA RAGIONE LEGALE, INCLUSI I PRINCIPI DI COLPA (INCLUSA LA NEGLIGENZA), ACCORDO CONTRATTUALE O ALTRO, SARÀ POSSIBILE CONSIDERARE L'AUTORE, IL REDATTORE INIZIALE, GLI ALTRI COLLABORATORI, QUALUNQUE DISTRIBUTORE DEL DOCUMENTO O DI UNA SUA VERSIONE MODIFICATA O QUALUNQUE FORNITORE DELLE PERSONE CITATE, RESPONSABILE NEI CONFRONTI DI QUALUNQUE PERSONA PER DANNI DIRETTI, INDIRETTI, SPECIALI, INCIDENTALI O CONSEGUENTI DI QUALUNQUE NATURA, INCLUSI, MA SENZA LIMITAZIONE, I DANNI PER PERDITA DI AVVIAMENTO, INTERRUZIONE DEL LAVORO, GUASTO O MALFUNZIONAMENTO DEL COMPUTER O QUALUNQUE ALTRO DANNO O PERDITA DERIVANTE O CORRELATA ALL'USO DEL DOCUMENTO O DI UNA SUA VERSIONE MODIFICATA, ANCHE QUALORA LE PERSONE CITATE FOSSERO STATE INFORMATE DELLA POSSIBILITÀ DI TALI DANNI. - - - diff -Nru mate-utils-1.26.0/baobab/help/ja/index.docbook mate-utils-1.26.1/baobab/help/ja/index.docbook --- mate-utils-1.26.0/baobab/help/ja/index.docbook 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ja/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,287 +0,0 @@ - - - - - - -]> - - -
- - - - ディスク使用量解析器マニュアル - - - ディスク使用量解析器は、メニュー・ベースのグラフィカルなビューアであり、ディスク使用率とフォルダ構造を表示および監視するために使用できます。 - - - 2015-2021 MATE 文書化プロジェクト - 2006 Fabio Marzocca - - - MATE 文書化プロジェクト - - - GNOME 文書化プロジェクト - - - - - - MATE 文書化チーム MATE デスクトップ - Fabio Marzocca GNOME 文書化チーム
thesaltydog@gmail.com
- - Fabio Marzocca
thesaltydog@gmail.com
- - -
- - - - - - ディスク使用量解析器マニュアル 1.10 2015年7月 - Wolfgang Ulbrich - MATE 文書化プロジェクト - - ディスク使用量解析器マニュアル 1.0 2006年4月 - Emmanuele Bassi ebassi@gmail.com - GNOME 文書化プロジェクト - - - - このマニュアルは、ディスク使用量解析器 1.10 版について説明しています。 - - - フィードバック - このディスク使用量解析器や当マニュアルに関する不具合や提案を報告するには、MATE フィードバック・ページの方法に従ってください。 - - -
- - ディスク使用量解析器 - - - - - - はじめに - - ディスク使用量解析器は、メニュー・ベースのグラフィカル・アプリケーションであり、あらゆるMATE環境におけるディスク使用量を分析します。ディスク使用量解析器は、ファイルのシステム・ツリー全体、またはユーザーが要求した特定のディレクトリ・ブランチ (ローカルまたはリモート) を簡単にスキャンできます。 - また、ホーム・ディレクトリに加えられた変更をリアルタイムで自動検出します。例えば、マウント/アンマウントされたデバイスに関することなどです。ディスク使用量解析器では、選択した各フォルダの完全なツリー・マップのウィンドウも表示されます。 - - - - - - 使ってみましょう - - ディスク使用量解析器は、次の3つの方法で起動できます。 - - MATE メニューのアプリケーションアクセサリから。 - - 端末ウィンドウから。 - - Caja 「...で開く」から。 - - - - -端末ウィンドウからディスク使用量解析器を起動する場合は、次のように入力します。 - -mate-disk-usage-analyzer <full_path_to_a_directory> と入力し、Return キーを押します。 - - MATE メニューから起動した場合は、ディスク使用量解析器が起動して、ユーザーの操作を待つスタンバイ状態となります。 - MATE メニューからディスク使用量解析器を起動すると、次のウィンドウが表示されます。 - - -
- ディスク使用量解析器のウィンドウ - - ディスク使用量解析器のメイン・ウィンドウを表示します。メニューバー、表示領域、スクロールバーおよびステータスバーが表示されます。 - -
- - -ユーザーは次の操作を実行できます。 - - ファイルシステム全体のスキャンを開始する - - 特定のローカルディレクトリのブランチを選択してスキャンする - - リモートサーバとフォルダを選択してスキャンする - - 各種設定を行う - - - - -
- - - - - 使い方 - - - ファイルシステム全体のスキャン - ファイルシステム全体のスキャンを開始するには、メニューから解析ファイルシステムのスキャンを選択するか、またはツールバーのファイルシステムのスキャンボタンをクリックします。 - - スキャン・プロセスが終了すると、次の図のように、ファイルシステムのツリー全体が表示されます。 - - -
- ディスク使用量解析器によるファイルシステムのフルスキャン - - ディスク使用量解析器のファイルシステム全体のスキャン・ウィンドウを表示します。メニューバー、表示領域、スクロールバーおよびステータスバーが表示されます。 - -
- - - ファイルシステム全体のスキャンを実行すると、ディスク使用量解析器のウィンドウは、スレッドがファイルシステムのスキャンを開始すると同時にツリーの描画を開始します。ファイルシステムに大きなパーティションがマウントされている場合は、そのパーティションもスキャンされます。 - - ディスク使用量解析器では、ディレクトリ・ツリーにサイズが割当て済み領域として表示されます。これは、表示されるサイズが実際のディスク使用量を参照するものであって、見かけ上のディレクトリ・サイズを参照するものではないことを意味します。見かけ上のファイル・サイズを表示したい場合は、表示Allocated Space の選択を解除します。 - - ディスク使用量分析器は、/proc ディレクトリや、「プレーン」ファイルに関連しないファイル・サイズをカウントしません。したがって、シンボリック・リンク、文字ブロック、デバイス・ブロックは、ディレクトリ・サイズに含まれません。 - - ハードリンクは別の方法で管理されています。この最初のハードリンクは通常のファイルとしてカウントされますが、同じ inode デバイスへの後続リンクは合計でカウントされず、ウィンドウの右側の列で強調表示されます。 -
- - - 単独フォルダのスキャン - - フォルダ1個のスキャンを開始するには、メニューから解析フォルダのスキャン...を選択するか、またはフォルダのスキャンツールバーボタンを押します。 - - - - - リモート・スキャン - - リモートのサーバーフォルダをスキャンする必要がある場合は、ツールバーアイコンのリモートフォルダーのスキャンをクリックするか、またはメニューから解析リモート・フォルダのスキャンを選択するだけ実行できます。次のダイアログボックスが表示されます。ディスク使用量解析器は、ssh、ftp、smb、http、https を使用してサーバに接続できます。 - - -
- ディスク使用量解析器によるリモート・フォルダ・スキャン - - ディスク使用量解析器のリモート・フォルダ・ダイアログウィンドウを表示します。 - -
- - -
- -
- - - - - 設定 - - ディスク使用量解析器の設定を変更するには、編集設定を選択します。 - - -
- ディスク使用量解析器の設定ウィンドウ - - 設定ウィンドウ - -
- - - - 解析するデバイスを選択する - 設定ウィンドウの最初の部分には、検出されたマウント済みデバイスがすべて表示されます。ファイルシステムのスキャン作業に含める、あるいは除外するパーティションはチェックボックス使って選択します。 - 「/」にマウントされているデバイスは、スキャンから除外できません。 - - - - ホームの監視を有効にする - このオプションをチェックすると、ディスク使用量解析器は、ホーム・ディレクトリに対する外部からの変更を常時に監視し、ファイルが追加または削除された場合にユーザーへ警告します。 - -
- - - - ツリーマップ - - ツリーマップの概念は 1990 年代、ベン・シュナイダーマンによって開発されました。彼のツリーマップに対する先見性を理解しましょう。 - - -
- ディスク使用量解析器のツリーマップ・ウィンドウ - - ツリーマップの理論。2つのツリーマップを図式で示します。 - -
- - - - 図は、ツリーマップの理論の例を示しています。各ノード (ツリーの図で表示) には、名前 (文字) と関連するサイズ (数字) があります。リーフのサイズは、たとえば個々のファイルのサイズを表し、非リーフ・ノードのサイズはその子ノードのサイズの合計です。 - - ツリーマップは、最初の矩形の再帰的なサブディビジョンによって構築されます。各矩形の下位サイズは、ノードのサイズに対応します。下位分割の方向はレベルごとに交互になります。最初は水平方向、次は垂直方向などです。その結果、最初の矩形は小さな矩形に分割され、各矩形のサイズはリーフのサイズを反映します。ツリーの構造もツリーマップに反映されます。色と注釈を使用して、リーフに関する追加情報を提供できます。 - - ツリーマップは、サイズが最も重要な要素である場合において、非常に効果的です。 -
- - - - リング・チャート - - リング・チャートは、実際のフォルダによるディスク使用量のグラフ表示です。このアプリケーションを起動すると、次の図に示すように、ファイルシステムの使用量が通知されます。 - - -
- ディスク使用量解析器で、ファイルシステム使用量のリング・チャートを表示 - - アプリケーションを起動すると、ファイル・システムの使用状況が右側のグラフに表示されます。 - -
- - - フォルダのスキャンを開始すると、サブフォルダのツリーが作成され、左側に表示されます。各行には、名前、使用領域の大きさ ( 割合およびサイズを KB、MB または GB で表示 ) およびアイテムの個数 (追加のファイルやディレクトリ) に関する情報が含まれます。このプロセスが終了すると、リング・チャートが右側に描画されます。もし完了前に停止した場合は、計算上のディレクトリ使用量に基づいて部分的な表示だけを行います。 - - - -
- ディスク使用量解析器で、フォルダの使用状況のリング・チャートを表示 - - フォルダをスキャンした後です。 - -
- - - リング・チャートは、中央の円を囲む一連の入れ子状のリングで構成されています。この円は、部分ツリーのルート・フォルダ (ユーザーがスキャン用に選択したフォルダ) を表しています。各リングは部分ツリーのレベルを表しています。つまり、ルート・フォルダのサブフォルダは最初のリングで表され、ツリーのより深いレベルはチャートの外側のリングに対応しています。各サブフォルダはリングのセクタで表されており、その角度はフォルダ内容のサイズに比例していて、視覚化を容易にするために異なる色で着色されています。最大5つのレベルを描画できます。最後の5番目のレベルのフォルダにさらに多くのサブフォルダが含まれている場合、その状況はそのフォルダのリング・セクタの端に、近い黒い曲線の存在によって示されます。サブフォルダのないフォルダを部分ツリーのルートとして選択すると、内側の円のみが描画されます。マウス・ポインタをグラフィック内のいずれかのフォルダに重ねると、そのフォルダが強調表示され、ツールヒントに名前とサイズに関する情報が表示されます。もしサブフォルダがある場合は、名前を示す小さな灰色のツールヒントが表示されます。重複を避けるために、サブフォルダの名前がすべて表示されない場合があります。 - - リスト内の行を上下に移動できます (必要に応じて、サブフォルダを含む行を展開できます) 。表示される部分ツリーのルートとして選択したフォルダに応じて、グラフィック表示が変更されます。扱うフォルダは、リング・チャート自体から移動することもできます。フォルダ内でマウスの左ボタンをクリックすると、グラフィックのルートをそのフォルダに設定することによって、さらに深い階層へ移動できます。中央のボタンを押すと (リング・チャートのフレーム内をクリックする限り、どの部分をクリックしても)、逆の動作になり、階層内の1つ前の段階へ戻ります。 - - 特定のフォルダで使用される親の半径部分の割合は、そのフォルダのサイズと親のサイズの関係に正比例します。フォルダのサイズが、親のサイズと同じかそれ以下であることは容易に分かります。この図ではディレクトリだけが表示されていますが、ファイルはフォルダによって占有される使用量を計算に含まれています。 -
-
diff -Nru mate-utils-1.26.0/baobab/help/ja/ja.po mate-utils-1.26.1/baobab/help/ja/ja.po --- mate-utils-1.26.0/baobab/help/ja/ja.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ja/ja.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# ABE Tsunehiko, 2018 -# Wolfgang Ulbrich , 2018 -# Green, 2021 +# Stefano Karapetsas , 2021 +# ABE Tsunehiko, 2021 +# Wolfgang Ulbrich , 2021 +# Green , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Green, 2021\n" -"Language-Team: Japanese (https://www.transifex.com/mate/teams/13566/ja/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Green , 2021\n" +"Language-Team: Japanese (https://app.transifex.com/mate/teams/13566/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -142,8 +142,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "このディスク使用量解析器や当マニュアルに関する不具合や提案を報告するには、MATE フィードバック・ページの方法に従ってください。" @@ -469,7 +470,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:293 msgid "Preferences" -msgstr "設定" +msgstr "各種設定" #. (itstool) path: sect1/para #: C/index.docbook:295 @@ -552,8 +553,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" "ツリーマップの概念は 1990 年代、ベン・シュナイダーマンによって開発されました。彼の" msgstr "" -"この文書およびその修正版は、以下の点をさらに了解しているという前提で、GNU 自由文書ライセンス " +"この文書およびその修正版は、以下の点を了解しているという前提で、GNU 自由文書ライセンス " "の条件の下で配布されています:<_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/baobab/help/ja/legal.xml mate-utils-1.26.1/baobab/help/ja/legal.xml --- mate-utils-1.26.0/baobab/help/ja/legal.xml 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ja/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - この文書をフリーソフトウェア財団発行の GNU 自由文書ライセンス(第 1.1 版かそれ以降から1つを選択)が定める条件の下で複製、頒布、あるいは改変することを許可します。変更不可部分、表カバーテキスト、裏カバーテキストは存在しません。このライセンスの複製物はリンク、またはこの文書と共に配布されている COPYING-DOCS というファイルに中に記載されています。 - 本文書は GFDL の下で配布されているその他の MATE マニュアル集の一部です。これらのマニュアルとは別に本文書を別個に配布する場合は、GFDL の第6節で説明しているように、そのマニュアル集に対してライセンスの複製を添付してください。 - - 企業が自らの製品とサービスを区別する目的で使用する名称の多くは、登録商標であると主張しています。こうした名称が MATE の文書の中に記載されていて、この登録商標が MATE 文書化プロジェクトのメンバーによって了解されている箇所については、名称が大文字または頭文字を大文字で表示しています。 - - この文書およびその修正版は、以下の点をさらに了解しているという前提で、GNU 自由文書ライセンス の条件の下で配布されています: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/baobab/help/jv/index.docbook mate-utils-1.26.1/baobab/help/jv/index.docbook --- mate-utils-1.26.0/baobab/help/jv/index.docbook 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/jv/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Paling disenengi - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/jv/jv.po mate-utils-1.26.1/baobab/help/jv/jv.po --- mate-utils-1.26.0/baobab/help/jv/jv.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/jv/jv.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Ngalim Siregar , 2018 +# Ngalim Siregar , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Ngalim Siregar , 2018\n" -"Language-Team: Javanese (https://www.transifex.com/mate/teams/13566/jv/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Ngalim Siregar , 2021\n" +"Language-Team: Javanese (https://app.transifex.com/mate/teams/13566/jv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/jv/legal.xml mate-utils-1.26.1/baobab/help/jv/legal.xml --- mate-utils-1.26.0/baobab/help/jv/legal.xml 2021-08-05 19:46:21.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/jv/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ka/index.docbook mate-utils-1.26.1/baobab/help/ka/index.docbook --- mate-utils-1.26.0/baobab/help/ka/index.docbook 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ka/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - შესავალი - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - პარამეტრები - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ka/ka.po mate-utils-1.26.1/baobab/help/ka/ka.po --- mate-utils-1.26.0/baobab/help/ka/ka.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ka/ka.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Georgian (https://www.transifex.com/mate/teams/13566/ka/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Georgian (https://app.transifex.com/mate/teams/13566/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ka/legal.xml mate-utils-1.26.1/baobab/help/ka/legal.xml --- mate-utils-1.26.0/baobab/help/ka/legal.xml 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ka/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/kab/index.docbook mate-utils-1.26.1/baobab/help/kab/index.docbook --- mate-utils-1.26.0/baobab/help/kab/index.docbook 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/kab/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - Asenfaṛ n tsemlit n MATE - - - Asenfaṛ n tsemlit n GNOME - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Tazwart - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Ismenyifen - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/kab/kab.po mate-utils-1.26.1/baobab/help/kab/kab.po --- mate-utils-1.26.0/baobab/help/kab/kab.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/kab/kab.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Slimane Selyan AMIRI , 2020 +# Slimane Selyan AMIRI , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Slimane Selyan AMIRI , 2020\n" -"Language-Team: Kabyle (https://www.transifex.com/mate/teams/13566/kab/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Slimane Selyan AMIRI , 2021\n" +"Language-Team: Kabyle (https://app.transifex.com/mate/teams/13566/kab/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -117,8 +117,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -479,8 +480,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/kab/legal.xml mate-utils-1.26.1/baobab/help/kab/legal.xml --- mate-utils-1.26.0/baobab/help/kab/legal.xml 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/kab/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/kk/index.docbook mate-utils-1.26.1/baobab/help/kk/index.docbook --- mate-utils-1.26.0/baobab/help/kk/index.docbook 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/kk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Басы - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Қолданылуы - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Баптаулар - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/kk/kk.po mate-utils-1.26.1/baobab/help/kk/kk.po --- mate-utils-1.26.0/baobab/help/kk/kk.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/kk/kk.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Baurzhan Muftakhidinov , 2018 -# Stefano Karapetsas , 2018 +# Baurzhan Muftakhidinov , 2021 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Kazakh (https://www.transifex.com/mate/teams/13566/kk/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Kazakh (https://app.transifex.com/mate/teams/13566/kk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -115,8 +115,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -477,8 +478,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/kk/legal.xml mate-utils-1.26.1/baobab/help/kk/legal.xml --- mate-utils-1.26.0/baobab/help/kk/legal.xml 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/kk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/km/index.docbook mate-utils-1.26.1/baobab/help/km/index.docbook --- mate-utils-1.26.0/baobab/help/km/index.docbook 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/km/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - ចំណូល​ចិត្ត - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/km/km.po mate-utils-1.26.1/baobab/help/km/km.po --- mate-utils-1.26.0/baobab/help/km/km.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/km/km.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Khmer (https://www.transifex.com/mate/teams/13566/km/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Khmer (https://app.transifex.com/mate/teams/13566/km/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/km/legal.xml mate-utils-1.26.1/baobab/help/km/legal.xml --- mate-utils-1.26.0/baobab/help/km/legal.xml 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/km/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/kn/index.docbook mate-utils-1.26.1/baobab/help/kn/index.docbook --- mate-utils-1.26.0/baobab/help/kn/index.docbook 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/kn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - ಪರಿಚಯ - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - ಬಳಕೆ - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - ಆದ್ಯತೆಗಳು - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/kn/kn.po mate-utils-1.26.1/baobab/help/kn/kn.po --- mate-utils-1.26.0/baobab/help/kn/kn.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/kn/kn.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Yogesh K S , 2018 -# karthik holla , 2018 +# Stefano Karapetsas , 2021 +# Sai Vinoba , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: karthik holla , 2018\n" -"Language-Team: Kannada (https://www.transifex.com/mate/teams/13566/kn/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Sai Vinoba , 2021\n" +"Language-Team: Kannada (https://app.transifex.com/mate/teams/13566/kn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -21,7 +20,8 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"ಶಂಕರ್ ಪ್ರಸಾದ್ ,ಕಾರ್ತಿಕ ಹೊಳ್ಳ " +"ಶಂಕರ್ ಪ್ರಸಾದ್ ,ಕಾರ್ತಿಕ ಹೊಳ್ಳ " +",ಸಾಯಿ ವಿನೋಬ" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -117,8 +117,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -404,7 +405,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:293 msgid "Preferences" -msgstr "ಆದ್ಯತೆಗಳು" +msgstr "ಒಲವುಗಳು" #. (itstool) path: sect1/para #: C/index.docbook:295 @@ -479,8 +480,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/kn/legal.xml mate-utils-1.26.1/baobab/help/kn/legal.xml --- mate-utils-1.26.0/baobab/help/kn/legal.xml 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/kn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ko/index.docbook mate-utils-1.26.1/baobab/help/ko/index.docbook --- mate-utils-1.26.0/baobab/help/ko/index.docbook 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ko/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,365 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - 2015-2021 MATE 문서화 프로젝트 - - 2006 - Fabio Marzocca - - - - MATE 문서화 프로젝트 - - - GNOME 문서화 프로젝트 - - - - - - MATE 문서화 팀 MATE 데스크톱 - Fabio Marzocca GNOME 문서화 프로젝트
thesaltydog@gmail.com
- - Fabio Marzocca
thesaltydog@gmail.com
- - -
- - - - - - 디스크 사용량 분석기 설명서 1.10 2015년 7월 - Wolfgang Ulbrich - - MATE 문서화 프로젝트 - - 디스크 사용량 분석기 설명서 1.0 4월 2006 - Emmanuele Bassi ebassi@gmail.com - GNOME 문서화 프로젝트 - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - 피드백 - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - 디스크 사용량 분석기 - - - - - - 소개 - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - 시작하기 - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - 디스크 사용량 분석기 기본 창을 표시합니다. 메뉴 표시줄, 디스플레이 영역, 스크롤바 및 상태 표시줄을 포함합니다. - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - 사용법 - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - 검색 프로세스가 완료되면 다음 그림에서와 같이 파일 시스템의 전체 트리가 표시됩니다. - - -
- Disk Usage Analyzer Full filesystem scan - - 디스크 사용량 분석기 전체 파일 시스템 검사 창을 표시합니다. 메뉴 표시줄, 디스플레이 영역, 스크롤바 및 상태 표시줄을 포함합니다. - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - 디스크 사용량 분석기 원격 폴더 대화 상자 창을 표시합니다. - -
- - -
- -
- - - - - 기본 설정 - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - 기본 설정 창 - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - 트리맵 - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- 디스크 사용량 분석기 트리맵 창 - - 트리맵의 이론. 트리맵 다이어그램 2개 표시 - -
- - - - 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. - - 트리맵은 초기 사각형의 재귀 세분분할을 통해 구성됩니다. 각 하위 사각형의 크기는 노드크기에 해당합니다. 세분화 방향은 레벨마다 번갈아 나타납니다: 첫 번째 가로, 다음 세로로, 기타 등등. 그 결과, 초기 사각형이 더 작은 직사각형으로 분할되어 각 사각형의 크기가 잎의 크기를 반영합니다.  트리의 구조도 트리 맵에 반영되어 있습니다. 색상과 주석은 잎에 대한 추가 정보를 제공하는 데 사용될 수 있습니다. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - 응용 프로그램을 시작한 후 파일 시스템 사용량이 표시됩니다. 오른쪽의 그래픽 표현입니다. - -
- - - 폴더 검색을 시작하면 하위 폴더의 트리가 만들어지고 왼쪽에 나열됩니다. 각 행에는 이름, 차지하는 공간(KB, MB 또는 GB의 백분율 및 크기) 및 항목 수(파일 및 디렉터리 추가)에 대한 정보가 포함됩니다. 이 프로세스가 완료되면 오른쪽에 링차트가 그려집니다. 완료하기 전에 중지하면 사용량이 계산된 디렉터리를 기준으로 부분 표시만 수행됩니다. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - 폴더를 스캔한 후. - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ko/ko.po mate-utils-1.26.1/baobab/help/ko/ko.po --- mate-utils-1.26.0/baobab/help/ko/ko.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ko/ko.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Seong-ho Cho , 2018 -# Stefano Karapetsas , 2018 -# 박정규(Jung-Kyu Park) , 2018 -# HanSol Park , 2018 -# JungHee Lee , 2021 +# Seong-ho Cho , 2021 +# Stefano Karapetsas , 2021 +# 1763f4a4329a2376c933c5e919a36cbc_341ca53 <1f851310383599d03339229d772e1290_119292>, 2021 # Wolfgang Ulbrich , 2021 +# HanSol Park , 2021 +# Junghee Lee , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Wolfgang Ulbrich , 2021\n" -"Language-Team: Korean (https://www.transifex.com/mate/teams/13566/ko/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Junghee Lee , 2021\n" +"Language-Team: Korean (https://app.transifex.com/mate/teams/13566/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -137,8 +137,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -519,8 +520,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title @@ -739,9 +741,9 @@ " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" -"GNU 자유 문서화 사용 허가서(GFDL), 버전 1.1 또는 자유 소프트웨어 재단에서 게시한 모든 이후 버전의 조건에 따라 이 문서를 " -"복사, 배포 및/또는 수정할 수 있는 권한이 부여됩니다. 뒷 표지 텍스트 없음. GFDL의 사본은 여기 또는 이 설명서와 함께 배포된 " -"COPYING-DOCS 파일에서 찾을 수 있습니다." +"GNU 자유 문서화 사용 허가서(GFDL), 버전 1.1 또는 그 이후의 버전의 조건에 따라 이 문서를 복사, 배포 및/또는 수정할 수 " +"있는 권한이 부여되며, 불변 섹션, 전면 커버 텍스트 및 백커버 텍스트가 없습니다. 뒷 표지 텍스트 없음. GFDL의 복사본은 이 " +"<_:ulink-1/>나 이 설명서와 함께 배포된 COPYING-DOCs 파일에서 찾을 수 있습니다." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -812,5 +814,5 @@ "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" -"문서의 문서 및 수정된 버전은 gnu 자유 문서 라이센스의 조건에 따라 제공되며, 다음 사항을 더 잘 이해하고 있습니다: " +"문서 및 문서의 수정된 버전은 GNU 자유 문서화 라이센스의 조건에 따라 제공되며, 다음 사항을 더 잘 이해하고 있습니다: " "<_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/baobab/help/ko/legal.xml mate-utils-1.26.1/baobab/help/ko/legal.xml --- mate-utils-1.26.0/baobab/help/ko/legal.xml 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ko/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - GNU 자유 문서화 사용 허가서(GFDL), 버전 1.1 또는 자유 소프트웨어 재단에서 게시한 모든 이후 버전의 조건에 따라 이 문서를 복사, 배포 및/또는 수정할 수 있는 권한이 부여됩니다. 뒷 표지 텍스트 없음. GFDL의 사본은 여기 또는 이 설명서와 함께 배포된 COPYING-DOCS 파일에서 찾을 수 있습니다. - 본 설명서는 GFDL에 따라 배포된 MATE 설명서 컬렉션의 일부입니다. 본 설명서를 컬렉션과 별도로 배포하려는 경우에는 라이센스 조항 6에 따라 라이센스 사본을 설명서에 추가하면 됩니다. - - 기업의 제품과 서비스를 식별하기 위해 사용된 많은 이름은 상표로 간주됩니다. MATE 문서에 사용된 이름과 MATE 문서화 프로젝트의 구성원은 해당 상표로, 모두 대문자로 표시되거나 첫 글자가 대문자로 표시되어 있습니다. - - 문서의 문서 및 수정된 버전은 gnu 자유 문서 라이센스의 조건에 따라 제공되며, 다음 사항을 더 잘 이해하고 있습니다: - - 문서는 "있는 그대로"로 제공되며 상품성, 특정 목적에의 적합성 또는 준수에 대한 보증을 비롯한 일체의 명시적 또는 암시적인 보증을 제한 없이 부인합니다. 문서 및 수정판의 품질, 정확성 및 성능에 대한 책임은 전적으로 사용자에게 있습니다. 문서 또는 수정판에 대한 오류를 입증하려면 사용자(원저작자, 저작자 또는 배포자 아님)는 필요한 서비스, 수리 및 수정 비용을 부담해야 합니다. 본 보증 부인은 라이센스의 필수 부분에 해당합니다. 본 보증 부인을 따르지 않는 모든 문서나 수정판은 사용할 수 없습니다. - - - 또한 불법 행위(부주의 포함), 계약 또는 직접, 간접, 특별, 부수적 및 파생적인 모든 손해(영업권 손실, 작업 중지, 컴퓨터 오류 및 고장 또는 본 문서나 수정판의 사용으로 인해 발생하거나 관련된 기타 모든 손실 및 이러한 손실 가능성에 대해 미리 공지한 경우에도 제한되지 않음)에 대해서는 어떠한 상황이나 법률적인 이론 하에서도 본 문서 또는 수정판의 저작자, 원저자, 모든 배포자 또는 공급자는 책임을 지지 않습니다. - - - diff -Nru mate-utils-1.26.0/baobab/help/ku/index.docbook mate-utils-1.26.1/baobab/help/ku/index.docbook --- mate-utils-1.26.0/baobab/help/ku/index.docbook 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ku/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Vebijêrk - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ku/ku.po mate-utils-1.26.1/baobab/help/ku/ku.po --- mate-utils-1.26.0/baobab/help/ku/ku.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ku/ku.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Kurdish (https://www.transifex.com/mate/teams/13566/ku/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Kurdish (https://app.transifex.com/mate/teams/13566/ku/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ku/legal.xml mate-utils-1.26.1/baobab/help/ku/legal.xml --- mate-utils-1.26.0/baobab/help/ku/legal.xml 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ku/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ku_IQ/index.docbook mate-utils-1.26.1/baobab/help/ku_IQ/index.docbook --- mate-utils-1.26.0/baobab/help/ku_IQ/index.docbook 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ku_IQ/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - هەڵبژاردنەکان - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ku_IQ/ku_IQ.po mate-utils-1.26.1/baobab/help/ku_IQ/ku_IQ.po --- mate-utils-1.26.0/baobab/help/ku_IQ/ku_IQ.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ku_IQ/ku_IQ.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Rasti K5 , 2018 +# Rasti K5 , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Rasti K5 , 2018\n" -"Language-Team: Kurdish (Iraq) (https://www.transifex.com/mate/teams/13566/ku_IQ/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Rasti K5 , 2021\n" +"Language-Team: Kurdish (Iraq) (https://app.transifex.com/mate/teams/13566/ku_IQ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ku_IQ/legal.xml mate-utils-1.26.1/baobab/help/ku_IQ/legal.xml --- mate-utils-1.26.0/baobab/help/ku_IQ/legal.xml 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ku_IQ/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ky/index.docbook mate-utils-1.26.1/baobab/help/ky/index.docbook --- mate-utils-1.26.0/baobab/help/ky/index.docbook 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ky/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Колдонлушу - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Ырастоолор - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ky/ky.po mate-utils-1.26.1/baobab/help/ky/ky.po --- mate-utils-1.26.0/baobab/help/ky/ky.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ky/ky.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2018 +# 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2018\n" -"Language-Team: Kyrgyz (https://www.transifex.com/mate/teams/13566/ky/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2021\n" +"Language-Team: Kyrgyz (https://app.transifex.com/mate/teams/13566/ky/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ky/legal.xml mate-utils-1.26.1/baobab/help/ky/legal.xml --- mate-utils-1.26.0/baobab/help/ky/legal.xml 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ky/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/la/index.docbook mate-utils-1.26.1/baobab/help/la/index.docbook --- mate-utils-1.26.0/baobab/help/la/index.docbook 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/la/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Praeferentiae - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/la/la.po mate-utils-1.26.1/baobab/help/la/la.po --- mate-utils-1.26.0/baobab/help/la/la.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/la/la.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Vendelín Slezák , 2018 +# Stefano Karapetsas , 2021 +# Vendelín Slezák , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Vendelín Slezák , 2018\n" -"Language-Team: Latin (https://www.transifex.com/mate/teams/13566/la/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Vendelín Slezák , 2021\n" +"Language-Team: Latin (https://app.transifex.com/mate/teams/13566/la/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -115,8 +115,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -477,8 +478,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/la/legal.xml mate-utils-1.26.1/baobab/help/la/legal.xml --- mate-utils-1.26.0/baobab/help/la/legal.xml 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/la/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/lt/index.docbook mate-utils-1.26.1/baobab/help/lt/index.docbook --- mate-utils-1.26.0/baobab/help/lt/index.docbook 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/lt/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,295 +0,0 @@ - - - - - - -]> - - -
- - - - Disko naudojimo analizatoriaus žinynas - - - Kaip matoma iš pavadinimo, Disko naudojimo analizatorius yra grafinė paslaugų programa, kurią galite naudoti savo disko naudojimo ir aplankų struktūros stebėsenai. - - - - 2015-2021 - MATE Documentation Project - - 2006 Fabio Marzocca - - - MATE dokumentacijos projektas - - - GNOME dokumentacijos projektas - - - - - - - MATE Documentation Team - - MATE Desktop - - - Fabio Marzocca GNOME dokumentacijos projektas
thesaltydog@gmail.com
- - Fabio Marzocca
thesaltydog@gmail.com
- - -
- - - - - - Disko naudojimo analizatoriaus žinynas 1.10 2015 liepa - Wolfgang Ulbrich - MATE dokumentacijos projektas - - Disko naudojimo analizatoriaus žinynas 1.0 2006 balandis - Emmanuele Bassi ebassi@gmail.com - GNOME dokumentacijos projektas - - - - Šiame žinyne aprašoma Disko naudojimo analizatoriaus versija 1.10. - - - Atsiliepimai - Pranešimui apie programos klaidą arba pasiūlymams dėl Disko naudojimo analizatoriaus programos ar šio žinyno, sekite nuorodas MATE atsako puslapyje. - - -
- - Disko naudojimo analizatorius - - - - - - Įžanga - - Disko naudojimo analizatorius yra grafinė, meniu valdoma programa disko naudojimo analizavimui bet kurioje MATE sistemoje. Disko naudojimo analizatorius gali lengvai nuskenuoti visą failų sistemos medį arba specifinius naudotojo pasirinktus vietinius ar nuotolinius katalogus. - Jis taip pat automatiškai aptinka visus jūsų namų katalogo pakeitimus, kaip ir kiekviename prijungtame/neprijungtame įrenginyje. Disko naudojimo analizatorius taip pat pateikia išsamų grafinį medžio langą kiekvienam pasirinktam aplankui. - - - - - - Darbo pradžia - - Disko naudojimo analizatorių galite paleisti trimis būdais: - - iš MATE meniu ProgramosReikmenys; - - iš terminalo lango; - - iš Caja „Atverti su...“ - - - - -Jei norite paleisti Disko naudojimo analizatorių iš terminalo lango, tiesiog įveskite: - -mate-disk-usage-analyzer <full_path_to_a_directory>, tada paspauskite Įvesti. - - Iš MATE meniu paleistas Disko naudojimo analizatorius paleistas lieka budėjimo būsenoje, laukdamas naudotojo veiksmų. - Paleidžiant Disko naudojimo analizatorių iš MATE meniu, matomas šis langas. - - -
- Disko naudojimo analizatoriaus langas - - Rodomas pagrindinis Disko naudojimo analizatoriaus langas. Jame yra meniu juosta, rodymo sritis, slinkimo juostos ir būsenos juosta. - -
- - -Naudotojas gali: - - pradėti visuotinį failų sistemos skenavimą; - - pasirinkti skenavimui specifinį vietinį katalogą - - pasirinkti nuotolinį serverį ir jo aplanką skenavimui - - nustatyti parametrus - - - - -
- - - - - Naudojimas - - - Visuotinis failų sistemos skenavimas - Norėdami pradėti visuotinį failų sistemos skenavimą, pasirinktie AnalizatoriusSkaityti failų sistemą meniu arba įrankių juostoje paspauskite mygtuką Skaityti failų sistemą. - - Kai skenavimas baigiasi, pradedamas rodyti pilnas failų sistemos medis, panašus į rodomą šiame paveikslėlyje: - - -
- Disko naudojimo analizatoriaus Visuotinis failų sistemos skenavimas - - Rodomas Disko naudojimo analizatoriaus failų sistemos visuotinio skenavimo langas. Jame yra meniu juosta, rodymo sritis, slinkimo juostos ir būsenos juosta. - -
- - - Paleidus visuotinį failų sistemos skenavimą, Disko naudojimo analizatoriaus lange atsiras medis. Jeigu prie failų sistemos prijungtas didelis skaidinys, jis irgi bus nuskenuotas. - - Disko naudojimo analizatorius katalogų dydį rodys kaip naudojamą vietą. Tai reiškia, kad katalogų rodymo dydis priklauso nuo disko faktinio naudojimo, o ne dydžio. Jei norite matyti esamų failų dydį, atžymėkite RodymasIšskirta vieta. - - Disko naudojimo analizatorius neįskaičiuos /proc katalogo bei kitų ne „tradicinių“ failų dydžių, todėl simbolinės nuorodos, simbolių bei įrenginių blokai neįskaičiuojami į katalogų dydį. - - Patvarieji saitai tvarkomi kitaip: iš pradžių priskaičiuojami kaip normalūs failai, o vėlesnės nuorodos į tą patį inode įrenginį neįskaičiuojamos į galutinius kiekius, bet atskirai paryškinamos lango dešiniame stulpelyje. -
- - - Vieno aplanko skenavimas - - Kad nuskenuotumėte vieną aplanką, meniu pasirinkite AnalizatoriusSkaityti aplanką arba spauskite Skaityti aplanką įrankių juostoje. - - - - - Nuotolinis skenavimas - - Nuotolinio serverio aplanko skenavimui tiesiog paspauskite įrankių juostos piktogramą Skaityti nuotolinį aplanką arba meniu pasirinkite AnalizatoriusSkaityti nuotolinį aplanką.... Tuomet atsiras paveikslėlyje pavaizduotas dialogas. Disko naudojimo analizatorius gali prisijungti prie serverio naudojant ssh, ftp, smb, http ir https. - - -
- Disko naudojimo analizatoriaus nuotolinio aplanko skenavimas - - Rodomas Disko naudojimo analizatoriaus nuotoliniio aplanko dialogo langas. - -
- - -
- -
- - - - - Nustatymai - - Norėdami pakeisti Disko naudojimo analizatoriaus programos nuostatas, pasirinkite TaisaNustatymai - - -
- Disko naudojimo analizatoriaus nustatymų langas - - Nustatymų langas - -
- - - - Skenuojamų įrenginių pasirinkimas - Pirmojoje Nustatymų lango dalyje surašomi visi nustatyti prijungti įrenginiai. Pažymėkite langelį, kad įtrauktumėte arba pašalintumėte skaidinį skenavimui. - Įrenginys, prijungtas prie „/“ visada privalo būti nuskaitomas. - - - - Įjungti namų aplanko stebėjimą - Jeigu šis punktas pažymėtas, Disko naudojimo analizatorius nuolat stebės bet kokius išorinius namų katologo pokyčius ir praneš naudotojui apie failų pridėjimą/pašalinimą. - -
- - - - Medžiai - - Medžių žemėlapių konceptą XX a. 10 dešimtmetyje ištobulino Ben Shneiderman. Paskaitykite jo įžvalgas apie medžių žemėlapius. - - -
- Disko naudojimo analizatoriaus medžių žemėlapio langas - - Medžių žemėlapių teorija. Rodomi 2 medžių žemėlapiai - -
- - - - Paveikslėlyje pavaizduotas medžio žemėlapių teorijos pavyzdys. Kiekvienas mazgas (pavaizduotas medžio diagramoje) turi pavadinimą (raidę) ir susijusį dydį (skaičių). Lapų skaičius gali atspindėti atskirų failų dydį; ne lapų mazgų skaičius yra pomazgių dydžių suma. - - Medžio žemėlapis sukonstruojamas iš pasikartojančių pradinio keturkampio padalijimų. Kiekvieno žemesnio lygmens keturkampio dydis priklauso nuo mazgo dydžio. Žemesnių lygių kryptys keičiasi pagal lygmenis – pradžioje horizontali, po to vertikali ir t. t. Taip pradinis keturkampis padalijamas į daug mažesnių, taip, kad kiekvieno keturkampio dydis atitiktų lapo dydį. Medžio struktūra taip pat atspindima žemėlapyje. Papildomai informacijai apie lapus gali būti naudojamos spalvos bei pastabos. - - Medžio žemėlapiai yra labai efektyvūs, kuomet labiausiai reikia pavaizduoti dydį. -
- - - - Žiedinė diagrama - - Žiedinė diagrama – grafinis disko naudojimo kiekviename aplanke atvaizdavimas. Paleidus programą, failų sistemos naudojimas pavaizduojamas panašiai, į šį paveikslėlį: - - -
- Disko naudojimo analizatorius rodo failų sistemos naudojimo žiedinę diagramą - - Paleidus programą rodomas failų sistemos naudojimas. Grafinis atvaizdavimas dešinėje. - -
- - - Pradėjus skenuoti aplanką, sukuriamas poaplankių medis ir rodomas kairėje pusėje. Kiekvienoje eilutėje yra poaplankio pavadinimas, užimama vieta (procentais, KB, MB, arba GB) ir objektų skaičių (failų ir katalogų). Užbaigus šį procesą, dešinėje pusėje atsiranda Žiedinė diagrama. Jeigu šį procesą nutrauksite neužbaigus, bus rodoma tik dalinė analizuotų katalogų diagrama. - - - -
- Disko naudojimo analizatorius rodo žiedinę aplanko naudojimo diagramą - - Nuskenavus aplanką. - -
- - - Žiedinė diagrama susideda iš aplinkui centrinį apskritimą sujungtų žiedų. Centrinis apskritimas simbolizuoja šakninį dalinio medžio (pasirinkto skenavimui). Kiekvienas žiedas vaizduoja dalinio medžio lymgenį – poaplankius, kurių kampas atitinka aplankų turinį. Gali būti rodoma iki 5 lygmenų, esant daugiau piešiama juoda kreivė apie penktojo lygmens ribas. Esant aplankui be poaplankių, matysis tik vidurinis apskritimas. Užvedus pelę ant aplanko diagramoje jis bus paryškintas ir iššoks patarimas su informacija apie aplanko pavadinimą ir pavadinimą. Esant poaplankių taip pat matysite mažus pilkus patarimus su šių aplankų pavadinimais. Kai kurių aplankų pavadinimai gali būti praleisti. - - Sąrašo eilutėmis galite vaikščioti aukštyn ir žemyn. Pasirinkus naują šakninį katalogą atitinkamai pasikeis ir žiedinė diagrama. Aplankus galite pasiekti ir iš pačios diagramos. Paspaudę kairiu pelės klavišu, nustatysite šį aplanką šankniniu. Paspaudus vidurinį klavišą (nesvarbu kurioje žiedinės diagramos vietoje) įvyks atvirkščias dalykas, grįšite vienu hierarchiniu žingsniu aukštyn. - - Aukštesnio lygio aplanko spindulio procentas yra tiesiogiai proporcingas tarp jo paties ir aukštesniojo aplanko dydžių. Lengva suprasti, kad žemesniojo aplanko dydis yra lygus arba mažesnis. Kadangi šioje diagramoje rodomi tik aplankai, failai įskaičiuojami į aplankų dydžio sudėtį. -
-
diff -Nru mate-utils-1.26.0/baobab/help/lt/legal.xml mate-utils-1.26.1/baobab/help/lt/legal.xml --- mate-utils-1.26.0/baobab/help/lt/legal.xml 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/lt/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Suteikiamas leidimas kopijuoti, platinti ir/arba modifikuoti šį dokumentą pagal GNU laisvosios dokumentacijos licenciją (GFDL), versiją 1.1 arba bet kurią kitą vėlesnę, publikuotą Laisvosios programinės įrangos fondo (FSF), be invariantinių skyrių, priekinių ir galinių viršelių tekstų. Galite perskaityti GFDL čia nuoroda arba COPYING-DOCS faile, pridėtame prie šio žinyno. - Šis žinynas yra MATE žinynų rinkinio, platinamo GFDL sąlygomis, dalis. Jeigu norite dalintis šiuo žinynu atskirai nuo šio rinkinio, galite tą daryti pridėdami šios licencijos kopiją, kaip nurodyta 6 šios licencijos dalyje. - - Nemažai įmonių, jų produktų ir paslaugų pavadinimai laikomi prekės ženklais. Kuomet šie pavadinimai pasirodo bet kur MATE dokumentacijoje, ir MATE dokumentacijos projekto nariai atkreipia į juos dėmesį, šie pavadinimai radomi didžiosiomis raidėmis arba pradedami didžiąja raide. - - DOKUMENTAS IR MODIFIKUOTOS JO VERSIJOS PATEIKIAMOS GNU LAISVOSIOS DOKUMENTACIJOS LICENCIJOS SĄLYGOMIS SU TOLESNIU SUPRATIMU, KAD: - - DOKUMENTAS PATEIKIAMAS TOKS, KOKS YRA, BE BET KOKIOS RŪŠIES GARANTIJŲ, IŠREIKŠTŲ AR PAREIKŠTŲ, NERIBOTAI LAIKANT, KAD DOKUMENTAS AR JO MODIFIKUOTA VERSIJA YRA BE KLAIDŲ, TINKAMA KONKREČIAI PASKIRČIAI ARBA NEPAŽEIDŽIANTI TAM TIKRŲ TEISIŲ. VISA ŠIO DOKUMENTO AR JO MODIFIKUOTOS VERSIJOS KOKYBĖS, TIKSLUMO IR VEIKIMO PRIKLAUSO JUMS. ESANT BET KOKIAM ŠIO DOKUMENTO AR JO MODIFIKUOTOS VERSIJOS TRŪKUMUI, JŪS (NE PIRMINIS RAŠYTOJAS, AUTORIUS AR KITAS PAGALBININKAS) PRISIIMATE REIKIAMO APTARNAVIMO, REMONTO AR TAISYMO IŠLAIDAS. ŠIS ATSAKOMYBĖS ATSISAKYMAS YRA ESMINĖ ŠIOS LICENCIJOS DALIS. TOLIAU NELEIDŽIAMAS JOKS ŠIO DOKUMENTO AR MODIFIKUOTOS VERSIJOS NAUDOJIMAS, IŠSKYRUS PAGAL ŠĮ ATSAKOMYBĖS ATSISAKYMĄ; IR - - - ESANT JOKIOMS APLINKYMBĖMS IR JOKIAI TEISINEI TEORIJAI AR DELIKTUI (ĮSKAITANT APLAIDUMĄ), SUTARČIAI AR KITAIS ATŽVILGIAIS, ŠIO DOKUMETNO AR JO MODIFIKUOTOS VERSIJOS AUTORIUS, PRADINIS RAŠYTOJAS, BET KURIS PAGALBININKAS ARBA BET KURIS PLATINTOJAS NĖRA ATSAKINGAS BET KURIAM ASMENIUI UŽ BET KOKIUS TIESIOGINIUS, NETIESIOGINIUS, YPATINGUS, ATSITIKTINIUS AR PASEKMINIUS NUOSTOLIUS, ĮSKAITANT DARBO SUSTOJIMĄ, KOMPIUTERIO GEDIMUS AR BET KURIUOS KITUS NUOSTOLIUS ARBA PRARADIMUS, KYLANČIUS IŠ ARBA SUSIJUSIUS SU ŠIO DOKUMENTO AR JO MODIFIKUOTŲ VERSIJŲ NAUDOJIMU, NET JEI IR VIENA IŠ PUSIŲ YRA INFORMUOTA APIE TOKIŲ NUOSTOLIŲ GALIMYBĘ. - - - diff -Nru mate-utils-1.26.0/baobab/help/lt/lt.po mate-utils-1.26.1/baobab/help/lt/lt.po --- mate-utils-1.26.0/baobab/help/lt/lt.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/lt/lt.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Moo, 2018 -# Džiugas Grėbliūnas , 2020 +# Stefano Karapetsas , 2021 +# Džiugas Grėbliūnas , 2021 # Wolfgang Ulbrich , 2021 +# Moo, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Wolfgang Ulbrich , 2021\n" -"Language-Team: Lithuanian (https://www.transifex.com/mate/teams/13566/lt/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Moo, 2021\n" +"Language-Team: Lithuanian (https://app.transifex.com/mate/teams/13566/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -32,7 +32,7 @@ "Tomas Kuliavas \n" "Gediminas Paulauskas \n" "Moo\n" -"Džiugas Grėbliūnas " +"Džiugas Grėbliūnas " #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -45,14 +45,13 @@ "Disk Usage Analyzer is a graphical, menu-driven viewer that you can use to " "view and monitor your disk usage and folder structure." msgstr "" -"Kaip matoma iš pavadinimo, Disko naudojimo analizatorius yra grafinė " -"paslaugų programa, kurią galite naudoti savo disko naudojimo ir aplankų " -"struktūros stebėsenai." +"Disko naudojimo analizatorius yra grafinė paslaugų programa, kurią galite " +"naudoti savo disko naudojimo ir aplankų struktūros stebėsenai." #. (itstool) path: articleinfo/copyright #: C/index.docbook:30 msgid "2015-2021 MATE Documentation Project" -msgstr "" +msgstr "2015-2021 MATE dokumentacijos projektas" #. (itstool) path: articleinfo/copyright #: C/index.docbook:34 @@ -140,12 +139,14 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Pranešimui apie programos klaidą arba pasiūlymams dėl Disko naudojimo " -"analizatoriaus programos ar šio žinyno, sekite nuorodas MATE atsako puslapyje." +"analizatoriaus programos ar šio žinyno, sekite nuorodas MATE atsako " +"puslapyje." #. (itstool) path: article/indexterm #: C/index.docbook:130 @@ -330,7 +331,7 @@ "Filesystem from the menu, or press on the " "Scan Filesystem toolbar button." msgstr "" -"Norėdami pradėti visuotinį failų sistemos skenavimą, pasirinktie " +"Norėdami pradėti visuotinį failų sistemos skenavimą, pasirinkite " "AnalizatoriusSkaityti failų " "sistemą meniu arba įrankių juostoje paspauskite " "mygtuką Skaityti failų sistemą." @@ -586,24 +587,25 @@ #. (itstool) path: sect1/title #: C/index.docbook:332 msgid "Treemaps" -msgstr "Medžiai" +msgstr "Medžio žemėlapiai" #. (itstool) path: sect1/para #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" -"Medžių žemėlapių konceptą XX a. 10 dešimtmetyje " +"Medžio žemėlapių konceptą XX a. 10 dešimtmetyje " "ištobulino Ben Shneiderman. Paskaitykite jo įžvalgas apie" -" medžių žemėlapius." +" medžių žemėlapius (anglų k.)
" #. (itstool) path: figure/title #: C/index.docbook:339 msgid "Disk Usage Analyzer Treemap Window" -msgstr "Disko naudojimo analizatoriaus medžių žemėlapio langas" +msgstr "Disko naudojimo analizatoriaus medžio žemėlapio langas" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -627,7 +629,7 @@ " 2 treemap diagrams " msgstr "" "Medžių žemėlapių teorija. " +"format=\"PNG\"/>Medžio žemėlapių teorija. " "Rodomi 2 medžių žemėlapiai" #. (itstool) path: sect1/para @@ -675,7 +677,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:374 msgid "Ringschart" -msgstr "Žiedinė diagrama" +msgstr "Žiedinės diagramos" #. (itstool) path: sect1/para #: C/index.docbook:376 @@ -800,7 +802,7 @@ "apskritimas. Užvedus pelę ant aplanko diagramoje jis bus paryškintas ir " "iššoks patarimas su informacija apie aplanko pavadinimą ir pavadinimą. Esant" " poaplankių taip pat matysite mažus pilkus patarimus su šių aplankų " -"pavadinimais. Kai kurių aplankų pavadinimai gali būti praleisti." +"pavadinimais. Kai kurių poaplankių pavadinimai gali būti praleisti." #. (itstool) path: sect1/para #: C/index.docbook:446 diff -Nru mate-utils-1.26.0/baobab/help/lv/index.docbook mate-utils-1.26.1/baobab/help/lv/index.docbook --- mate-utils-1.26.0/baobab/help/lv/index.docbook 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/lv/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Ievads - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Izmantojums - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Iestatījumi - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/lv/legal.xml mate-utils-1.26.1/baobab/help/lv/legal.xml --- mate-utils-1.26.0/baobab/help/lv/legal.xml 2021-08-05 19:46:22.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/lv/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/lv/lv.po mate-utils-1.26.1/baobab/help/lv/lv.po --- mate-utils-1.26.0/baobab/help/lv/lv.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/lv/lv.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# duck , 2018 +# Stefano Karapetsas , 2021 +# duck , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: duck , 2018\n" -"Language-Team: Latvian (https://www.transifex.com/mate/teams/13566/lv/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: duck , 2021\n" +"Language-Team: Latvian (https://app.transifex.com/mate/teams/13566/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -117,8 +117,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -479,8 +480,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/mai/index.docbook mate-utils-1.26.1/baobab/help/mai/index.docbook --- mate-utils-1.26.0/baobab/help/mai/index.docbook 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mai/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - परिचय - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - प्रयोग - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - वरीयतासभ - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/mai/legal.xml mate-utils-1.26.1/baobab/help/mai/legal.xml --- mate-utils-1.26.0/baobab/help/mai/legal.xml 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mai/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/mai/mai.po mate-utils-1.26.1/baobab/help/mai/mai.po --- mate-utils-1.26.0/baobab/help/mai/mai.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mai/mai.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Maithili (https://www.transifex.com/mate/teams/13566/mai/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Maithili (https://app.transifex.com/mate/teams/13566/mai/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/Makefile.in mate-utils-1.26.1/baobab/help/Makefile.in --- mate-utils-1.26.0/baobab/help/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,567 +0,0 @@ -# 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 . -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/help -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 = -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__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.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@ -HELP_ID = mate-disk-usage-analyzer -HELP_FILES = index.docbook legal.xml -HELP_MEDIA = \ - figures/baobab_fullscan.png \ - figures/baobab_prefs.png \ - figures/baobab_remote.png \ - figures/baobab_ringschart1.png \ - figures/baobab_ringschart2.png \ - figures/baobab_treemaps.png \ - figures/baobab_window.png - - -# Add linguas to be ignored, e.g. IGNORE_HELP_LINGUAS = ca de es fr -@USE_NLS_TRUE@IGNORE_HELP_LINGUAS = -@USE_NLS_FALSE@HELP_LINGUAS = -@USE_NLS_TRUE@HELP_LINGUAS = $(if $(IGNORE_HELP_LINGUAS), \ -@USE_NLS_TRUE@ $(filter-out $(IGNORE_HELP_LINGUAS),$(subst /,,$(dir $(wildcard */*.po)))), \ -@USE_NLS_TRUE@ $(subst /,,$(dir $(wildcard */*.po))) ) - -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/help/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign baobab/help/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): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -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 -installdirs: -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: - -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-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-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: - -.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-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-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 - -.PRECIOUS: Makefile - - -@YELP_HELP_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 -Nru mate-utils-1.26.0/baobab/help/mate-disk-usage-analyzer.omf.in mate-utils-1.26.1/baobab/help/mate-disk-usage-analyzer.omf.in --- mate-utils-1.26.0/baobab/help/mate-disk-usage-analyzer.omf.in 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mate-disk-usage-analyzer.omf.in 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + user's guide + + + + diff -Nru mate-utils-1.26.0/baobab/help/mg/index.docbook mate-utils-1.26.1/baobab/help/mg/index.docbook --- mate-utils-1.26.0/baobab/help/mg/index.docbook 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mg/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Safidy - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/mg/legal.xml mate-utils-1.26.1/baobab/help/mg/legal.xml --- mate-utils-1.26.0/baobab/help/mg/legal.xml 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mg/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/mg/mg.po mate-utils-1.26.1/baobab/help/mg/mg.po --- mate-utils-1.26.0/baobab/help/mg/mg.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mg/mg.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Malagasy (https://www.transifex.com/mate/teams/13566/mg/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Malagasy (https://app.transifex.com/mate/teams/13566/mg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/mi/index.docbook mate-utils-1.26.1/baobab/help/mi/index.docbook --- mate-utils-1.26.0/baobab/help/mi/index.docbook 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mi/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Ngā tina hiahia - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/mi/legal.xml mate-utils-1.26.1/baobab/help/mi/legal.xml --- mate-utils-1.26.0/baobab/help/mi/legal.xml 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mi/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/mi/mi.po mate-utils-1.26.1/baobab/help/mi/mi.po --- mate-utils-1.26.0/baobab/help/mi/mi.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mi/mi.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Maori (https://www.transifex.com/mate/teams/13566/mi/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Maori (https://app.transifex.com/mate/teams/13566/mi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/mk/index.docbook mate-utils-1.26.1/baobab/help/mk/index.docbook --- mate-utils-1.26.0/baobab/help/mk/index.docbook 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Претставување - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Употреба - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Параметри - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/mk/legal.xml mate-utils-1.26.1/baobab/help/mk/legal.xml --- mate-utils-1.26.0/baobab/help/mk/legal.xml 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/mk/mk.po mate-utils-1.26.1/baobab/help/mk/mk.po --- mate-utils-1.26.0/baobab/help/mk/mk.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mk/mk.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# exoos , 2018 +# Stefano Karapetsas , 2021 +# exoos , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: exoos , 2018\n" -"Language-Team: Macedonian (https://www.transifex.com/mate/teams/13566/mk/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: exoos , 2021\n" +"Language-Team: Macedonian (https://app.transifex.com/mate/teams/13566/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -115,8 +115,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -477,8 +478,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ml/index.docbook mate-utils-1.26.1/baobab/help/ml/index.docbook --- mate-utils-1.26.0/baobab/help/ml/index.docbook 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ml/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - അവതരണം - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - ഉപയോഗം - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - മുന്‍ഗണനകള്‍ - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ml/legal.xml mate-utils-1.26.1/baobab/help/ml/legal.xml --- mate-utils-1.26.0/baobab/help/ml/legal.xml 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ml/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ml/ml.po mate-utils-1.26.1/baobab/help/ml/ml.po --- mate-utils-1.26.0/baobab/help/ml/ml.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ml/ml.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Malayalam (https://www.transifex.com/mate/teams/13566/ml/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Malayalam (https://app.transifex.com/mate/teams/13566/ml/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -116,8 +116,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -478,8 +479,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/mn/index.docbook mate-utils-1.26.1/baobab/help/mn/index.docbook --- mate-utils-1.26.0/baobab/help/mn/index.docbook 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Тохиргоо - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/mn/legal.xml mate-utils-1.26.1/baobab/help/mn/legal.xml --- mate-utils-1.26.0/baobab/help/mn/legal.xml 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/mn/mn.po mate-utils-1.26.1/baobab/help/mn/mn.po --- mate-utils-1.26.0/baobab/help/mn/mn.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mn/mn.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Mongolian (https://www.transifex.com/mate/teams/13566/mn/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Mongolian (https://app.transifex.com/mate/teams/13566/mn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -116,8 +116,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -478,8 +479,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/mr/index.docbook mate-utils-1.26.1/baobab/help/mr/index.docbook --- mate-utils-1.26.0/baobab/help/mr/index.docbook 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - परिचय - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - वापर - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - प्राधान्यक्रम - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/mr/legal.xml mate-utils-1.26.1/baobab/help/mr/legal.xml --- mate-utils-1.26.0/baobab/help/mr/legal.xml 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/mr/mr.po mate-utils-1.26.1/baobab/help/mr/mr.po --- mate-utils-1.26.0/baobab/help/mr/mr.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/mr/mr.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Vaibhav S Dalvi , 2018 +# Stefano Karapetsas , 2021 +# Vaibhav S Dalvi , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Vaibhav S Dalvi , 2018\n" -"Language-Team: Marathi (https://www.transifex.com/mate/teams/13566/mr/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Vaibhav S Dalvi , 2021\n" +"Language-Team: Marathi (https://app.transifex.com/mate/teams/13566/mr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -115,8 +115,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -477,8 +478,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ms/index.docbook mate-utils-1.26.1/baobab/help/ms/index.docbook --- mate-utils-1.26.0/baobab/help/ms/index.docbook 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ms/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,287 +0,0 @@ - - - - - - -]> - - -
- - - - Panduan Penganalisis Penggunaan Cakera - - - Penganalsisis Penggunaan Cakera ialah pelihat terpacu-menu bergrafik yang dapat melihat dan memantau penggunaan dan struktur folder cakera anda. - - - 2015-2021 Projek Dokumentasi MATE - 2006 Fabio Marzocca - - - Projek Dokumentasi MATE - - - Projek Dokumentasi GNOME - - - - - - Pasukan Pendokumenan MATE Atas Meja MATE - Fabio Marzocca Projek Dokumentasi GNOME
thesaltydog@gmail.com
- - Fabio Marzocca
thesaltydog@gmail.com
- - -
- - - - - - Panduan Penganalisis Penggunaan Cakera 1.10 Julai 2015 - Wolfgang Ulbrich - Projek Dokumentasi MATE - - Panduan Penganalisis Penggunaan Cakera 1.0 April 2006 - Emmanuele Bassi ebassi@gmail.com - Projek Dokumentasi GNOME - - - - Panduan ini menerangkan Penganalisis Penggunaan Cakera Versi 1.10. - - - Maklumbalas - Untuk melaporkan pepijat atau membuat saranan berkenaan aplikasi Penganalisis Penggunaan Cakera atau panduan ini, ikuti arahan di dalam Halaman Maklumbalas MATE. - - -
- - Penganalisis Penggunaan Cakera - - - - - - Pengenalan - - Penganalisis Penggunaan Cakera ialah sebuah aplikasi terpacu-menu, bergrafik untuk menganalisis penggunaan cakera dalam mana-mana persekitaran MATE. Penganalisis Penggunaan Cakera dapat mengimbas dengan mudah sama ada keseluruhan pepohon sistem fail, atau cabang direktori khusus yang dipinta oleh pengguna (setempat atau jauh). - Ia juga auto-kesan apa jua perubahan pada direktori rumah anda secara masa-nyata begitu juga pada mana-mana peranti terlekap/ditanggal. Penganalisis Penggunaan Cakera juga menyediakan satu tetingkap peta pepohon bergrafik lengkap untuk setiap folder terpilih. - - - - - - Membiasakan Diri - - Penganalisis Penggunaan Cakera boleh dimulakan dalam tiga cara: - - melalui menu MATE AplikasiAksesori;' - - melalui tetingkap terminal; - - melalui Caja "Buka dengan..." ; - - - - -Jika anda mahu memulakan Penganalisis Penggunaan Cakera melalui tetingkap terminal, hanya taip: - -mate-disk-usage-analyzer <laluan_penuh_ke_direktori_tersebut>, kemudian ketik Return. - - Jika dilancarkan melalui menu MATE, Penganalsisi Penggunaan Cakera dimulakan dan kekal dalam keadaan bersedia, menunggu tindakan pengguna. - Ketika anda memulakan Penganalisis Penggunaan Cakera melalui Menu MATE, tetingkap berikut dipaparkan. - - -
- Tetingkap Penganalisis Penggunaan Cakera - - Menunjukkan tetingkap utama Penganalisis Penggunaan Cakera. Mengandungi palang menu, kawasan paparan, palang tatal, dan palang status. - -
- - -Kemudian pengguna boleh: - - memulakan pengimbasan sistem fail penuh; - - memilih cabang direktori setempat khusus untuk diimbas - - pilih pelayan dan folder jauh untuk diimbas - - tetapkan keutamaan - - - - -
- - - - - Penggunaan - - - Imbas sistem fail penuh - Untuk memulakan pengimbasan sistem fail penuh, pilih PenganalisisImbas Sistem Fail melalui menu, atau ketik pada butang palang alat Imbas Sistem Fail. - - Ketika proses pengimbasan selesai, anda akan dapat melihat pepohon lengkap bagi sistem fail anda, seperti Rajah berikut - - -
- Imbas Penuh sistem Fail Penganalisis Penggunaan Cakera - - Menunjukkan tetingkap imbas penuh sistem fail Penganalisis Penggunaan Cakera. Mengandungi kawasan paparan, palang tatal, dan palang status. - -
- - - Ketika anda menjalani pengimbasan sistem fail penuh, tetingkap Penganalisis Penggunaan Cakera akan mula melukis pepohon sebaik sahaja jaluran mula mengimbas sistem fail. Jika mana-mana sekatan bersaiz besar terlekap dalam sistem fail, ia juga akan diimbas. - - Penganalisis Penggunaan Cakera akan paparkan saiz dalam pepohon direktori sepertimana ruang teruntuk. Ini bermaksud saiz terpapar merujuk pada penggunaan cakera sebenar dan bukannya saiz direktori yang kelihatan. Jika anda mahu melihat saiz fail sebenar, buang tanda LihatRuang Teruntuk . - - Penganalisis Penggunaan Cakera tidak akan mengimbas dir /proc, atau mana-mana saiz fail yang tidak berkaitan dengan fail "plain", jadi pautan simbolik atau symlinks, blok aksara, blok peranti tidak dimasukkan dalam saiz direktori. - - Pautan-keras diurus dengan cara berbeza: pautan keras pertama ini dikira sebagai fail biasa, manakala pautan berikutnya ke peranti inode yang sama tidak dikira, tetapi disorot dalam lajur sebelah-kanan tetingkap. -
- - - Imbas satu folder - - Untuk memulakan pengimbasan satu folder, pilih PenganalisisImbas Folder... melalui menu, atau ketik pada butang palang alat Imbas Folder. - - - - - Imbas jauh - - Jika anda perlu mengimbas folder-pelayan jauh, hanya klik pada ikon palang alat Imbas Folder Jauh atau pilih Penganalisis Imbas Folder Jauh melalui menu seperti kotak dialog berikut. Penganalisis Penggunaan Cakera tidak dapat bersambung ke pelayan melalui ssh, ftp, smb, http dan https. - - -
- Imbas folder Jauh Penganalisis Penggunaan Cakera - - Menunjukkan tetingkap dialog folder jauh Penganalisis Penggunaan Cakera. - -
- - -
- -
- - - - - Keutamaan - - Untuk mengubah keutamaan aplikasi Penganalisis Penggunaan Cakera, pilih SuntingKeutamaan. - - -
- Tetingkap Keutamaan Penganalisis Penggunaan Cakera - - Tetingkap Keutamaan - -
- - - - Pilih peranti untuk diimbas - Pada bahagian pertama tetingkap Keutamaan, semua peranti terlekap yang dikesan akan disenaraikan. Klik pada kota tanda untuk serta/asingkan sekatan ke dalam operasi pengimbasan sistem fail. - Peranti terlekap pada "/" tidak boleh diasingkan dari pengimbasan. - - - - Benarkan pemantauan rumah - Jika pilihan ini ditanda, Pengganalisis Penggunaan Cakera akan sentiasa memantau apa-apa perubahan dalaman direktori rumha dan beri amaran kepada pengguna jika ada fail ditambah/dibuang. - -
- - - - Peta Pepohon - - Konsep Peta Pepohon telah dibangunkan oleh Ben Shneiderman pada tahun '90-an. Baca visinya berkenaan peta pepohon. - - -
- Tetingkap Peta Pepohon Penganalisis Penggunaan Cakera - - Teori Peta Pepohon. Menunjukkan 2 rajah peta pepohon - -
- - - - Rajah menunjukkan satu contoh teori peta pepohon. Setiap nod (seperti dalam rajah pepohon) mempunyai nama (abjad) dan dikaitkan dengan saiz (angka). Saiz daun mewakili kejadian saiz fail secara individu, saiz nod bukan-daun ialah jumlah saiz anak-anaknya. - - Peta pepohon dibina melalui subbahagian rekursif bagi segiempat awalan. Saiz bagi setiap subsegiempat berkait rapat dengan saiz nod. Arah subbahagian berbeza mengikut aras: mula-mula melintang, berikutnya menegak, dan seterusnya. Hasilnya, segiempat awalan disekat menjadi segiempat yang lebih kecil, dan saiz segiempat bergantung pada saiz daun. Struktur pepohon juga berkait rapat dengan peta pepohon. Warna dan anotasi boleh digunakan untuk memberikan maklumat tambahan berkenaan daun-daun. - - Peta pepohon sangat efektif ketika saiz merupakan fitur terpenting untuk dipaparkan. -
- - - - Carta Gelang - - Carta Gelang ialah perwakilan bergrafik bagi penggunaan cakera berpandukan folder. Ketika melancarkan aplikasi, ia mengenal pasti penggunaan sistem fail sepertimana pada rajah berikutnya: - - -
- Penganalisis Penggunaan Cakera menunjukkan sebuah carta gelang dengan penggunaan sistem fail - - Selepas melancarkan aplikasi, penggunaan sistem fail dapat dipaparkan. Perwakilan bergrafik berada di sebelah kanan. - -
- - - Ketika anda mula mengimbas sesebuah folder, pepohon subfolder dicipta dan tersenarai di sebelah kiri. Setiap baris mengandungi maklumat nama, bagaimana ruang digunakan (peratus dan saiz dalam KB, MB atau GB) dan bilangan item (penambahan fail dan direktori). Setelah proses ini tamat, satu Carta Gelang akan terbentuk di sebelah kanan. Jika anda hentikan sebelum ia selesai mengimbas, hanya sebahagian perwakilan sahaja selesai berdasarkan yang mana telah dikira. - - - -
- Penganalisis Penggunaan Cakera menunjukkan sebuah carta gelang dengan penggunaan folder - - Selepas mengimbas folder. - -
- - - Carta Gelang terdiri dari set gelang tersarang di sekeliling bulatan pusat. Bulatan ini mewakili folder root bagi pepohon separa (iaitu, folder yang pengguna pilih untuk mengimbas). Setiap gelang mewakili satu aras di dalam sebahagian pepohon iaitu subfolder bagi folder root akan diwakili dalam gelang pertama, semakin dalam aras dalam pepohon dibandingkan dengan gelang lebih luar di dalam carta. Setiap subfolder diwakili dengan sektor gelang, sudutnya berkadaran dengan saiz kandungan folder, dan diwarnakan dengan pelbagai warna untuk memudahkan pengecaman. Sehingga aras ke-lima boleh dipaparkan; sekiranya terdapat lebih dari lima aras subfolder di dalamnya, situasi ini akan ditanda dengan lengkung hitam ditepi sektor gelang folder tersebut. Jika folder tanpa subfolders terpilih menjadi root bagi sebahagian pepohon, hanya bulatan dalaman akan dilukis. Bila penuding tetikus berada di atas salah satu folders dalam grafik, ia akan disorot dan satu tip alatan akan muncul dengan maklumat berkenaan nama dan saiznya. Sekiranya terdapa subfolder, tip alatan kelabu kecil akan muncul, memaparkan namanya. Berkemungkinan bukan semua nama subfolder dipaparkan, untuk menghindari pertindihan. - - Anda boleh pergi ke atas atau ke bawah baris dalam senarai (ia akan dikembangkan jika ada subfolder), perwakilan bergrafik akan berubah menggunakan folder terpilih sebagai root bagi sebahagian pepohon akan ditunjukkan. Folder juga boleh dinavigasikan dari dalam carta gelang itu sendiri. Jika anda klik dengan butang kiri terikus dalam sesebuah folder, anda akan bergerak ke dalam dengan menetapkan root grafik bagi folder itu. Jika anda menekan butang tengah tetikus (tidak kisah di mana anda klik asalkan dalam bingkai carta gelang) anda melakukan tindakan berlawanan, naik ke atas selangkah di dalam hieraki. - - Peratus jejari induknya digunakan oleh folder yang diberi adalah berkadaran dengan saiznya dan induknya. Adalah lebih mudah difahami saiz folder menyamai atau lebih kecil dari induknya. Walaupun hanya satu direktori dipaparkan dalam perwakilan bergrafik ini, fail dikira untuk mengetahui amaun ruang yang digunakan oleh folder tersebut. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ms/legal.xml mate-utils-1.26.1/baobab/help/ms/legal.xml --- mate-utils-1.26.0/baobab/help/ms/legal.xml 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ms/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Keizinan diberi untuk menyalin, mengedar dan/atau mengubahsuai dokumen ini bawah terma Lesen Dokumentasi Bebas GNU (GDFL), bagi Versi 1.1 atau mana-mana versi terkemudian yang telah diterbitkan oleh Free Software Foundation tanpa Seksyen Tak Varian, tanpa Teks Muka-Hadapan, dan tanpa Teks Muka Belakang. Anda boleh temui satu salinan GFDL di dalam pautan atau di dalam fail COPYING-DOCS yang disertakan bersama-sama panduan ini. - Panduan ini adalah sebahagian dari koleksi panduan MATE yang diedar bawah GFDL. Jika anda mahu edar panduan ini secara berasingan dari koleksi asalnya, anda boleh membuat sedemikian dengan menambah satu salinan lesen ke dalam panduan sepertimana yang dijelaskan dalam seksyen 6 lesen tersebut. - - Kebanyakan nama digunakan oleh syarikat untuk membezakan produk dan perkhidmatan mereka dituntut sebagai tanda dagangan. Jika nama tersebut ada di dalam dokumentasi MATE, dan ahli-ahli Projek Dokumentasi MATE sedar akan tanda dagangan tersebut, kerana nama-nama tersebut telah di huruf besarkan atau huruf awalnya telah dihuruf besarkan. - - DOKUMEN DAN VERSI UBAHSUAI DOKUMEN DISEDIAKAN BAWAH TERMA LESEN DOKUMENTASI BEBAS GNU DENGAN PERKARA BERIKUT: - - DOKUMEN DISEDIAKAN SEBAGAI DASAR "SEBAGAIMANA ADANYA", TANPA JAMINAN ATAS APA JUA, SAMA ADA DIUNGKAP ATAU DILAKSANA, TERMASUKLAH, TANPA HAD, JAMINAN TERHADAP DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN ADALAH BEBAS MASALAH KEBOLEHNIAGAAN. SESUAI ATAS TUJUAN TERTENTU ATAU BUKAN-PELANGGARAN. KESELURUHAN RISIKO ATAS KUALITI, KETEPATAN, DAN PRESTASI DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN TERLETAK PADA DIRI ANDA. SEKIRANYA TERDAPAT MANA-MANA DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN YANG BERMASALAH DALAM APA JUA BENTUK, ANDA (BUKAN PENULIS, PENGARANG ATAU MANA-MANA PENYUMBANG ASAL) MENANGGUNG KOS APA JUA PERKHIDMATAN, PEMBAIKAN ATAU PEMBETULAN YANG DIPERLUKAN. PENAFIAN JAMINAN INI TERBENTUK SEBAGAI BAHAGIAN PENTING LESEN INI. MAKA TIDAK PENGGUNAAN MANA-MANA DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN DIIZINKAN KECUALI TERTAKLUK DI BAWAH PENAFIAN INI; DAN - - - TANPA DI BAWAH APA-APA KEADAAN DAN TEORI PERUNDANGAN, SAMA ADA DALAM TORT (TERMASUKLAH KECUAIAN), KONTRAK, ATAU SEUMPAMA DENGANNYA, SI PENGARANG, PENULIS ASAL, MANA-MANA PENYUMBANG, ATAU MANA-MANA PENGEDAR DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN, ATAU MANA-MANA PEMBEKAL ATAS APA JUA KUMPULAN, JUGA PADA MANA-MANA INDIVIDU ATAS KEROSAKAN SECARA LANGSUNG ATAU TIDAK LANGSUNG, SECARA KHUSUS, TIDAK SENGAJA ATAU, KEROSAKAN LANJUTAN TERHADAP SESIAPA SAHAJA, TERMASUKLAH TANPA HAD BAGI KEROSAKAN NAMA BAIK, GANGGUAN KERJA, KEGAGALAN ATAU KEROSAKAN KOMPUTER, ATAU MANA-MANA MAHUPUN SEMUA KEROSAKAN LAIN BERKAITAN PENGGUNAAN DOKUMEN DAN VERSI UBAHSUAI DOKUMEN, WALAUPUN PIHAK TERSEBUT TELAH DIMAKLUMKAN ADANYA KEBARANGKALIAN KEROSAKAN SEBEGITU BOLEH BERLAKU. - - - diff -Nru mate-utils-1.26.0/baobab/help/ms/ms.po mate-utils-1.26.1/baobab/help/ms/ms.po --- mate-utils-1.26.0/baobab/help/ms/ms.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ms/ms.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Robert Antoni Buj i Gelonch , 2019 +# Robert Antoni Buj i Gelonch , 2021 # abuyop , 2021 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: abuyop , 2021\n" -"Language-Team: Malay (https://www.transifex.com/mate/teams/13566/ms/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Malay (https://app.transifex.com/mate/teams/13566/ms/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -129,8 +129,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Untuk melaporkan pepijat atau membuat saranan berkenaan aplikasi " "Penganalisis Penggunaan Cakera atau panduan ini, ikuti arahan di dalam " @@ -584,8 +585,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" "Konsep Peta Pepohon telah dibangunkan oleh Ben " "Shneiderman pada tahun '90-an. Baca - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - 2006 Fabio Marzocca - - - MATE dokumentasjonsprosjekt - - - GNOME dokumentasjonsprosjekt - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - Fabio Marzocca
thesaltydog@gmail.com
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Tilbakemelding - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduksjon - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Kom i gang - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Bruk - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Innstillinger - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/nb/legal.xml mate-utils-1.26.1/baobab/help/nb/legal.xml --- mate-utils-1.26.0/baobab/help/nb/legal.xml 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/nb/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/nb/nb.po mate-utils-1.26.1/baobab/help/nb/nb.po --- mate-utils-1.26.0/baobab/help/nb/nb.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/nb/nb.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Allan Nordhøy , 2018 -# Imre Kristoffer Eilertsen , 2018 +# Stefano Karapetsas , 2021 +# Allan Nordhøy , 2021 +# Imre Kristoffer Eilertsen , 2021 # Jan Sherdahl, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" "Last-Translator: Jan Sherdahl, 2021\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/mate/teams/13566/nb/)\n" +"Language-Team: Norwegian Bokmål (https://app.transifex.com/mate/teams/13566/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -129,8 +129,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -491,8 +492,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/nds/index.docbook mate-utils-1.26.1/baobab/help/nds/index.docbook --- mate-utils-1.26.0/baobab/help/nds/index.docbook 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/nds/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - gebruk - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Instellens - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/nds/legal.xml mate-utils-1.26.1/baobab/help/nds/legal.xml --- mate-utils-1.26.0/baobab/help/nds/legal.xml 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/nds/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/nds/nds.po mate-utils-1.26.1/baobab/help/nds/nds.po --- mate-utils-1.26.0/baobab/help/nds/nds.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/nds/nds.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Low German (https://www.transifex.com/mate/teams/13566/nds/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Low German (https://app.transifex.com/mate/teams/13566/nds/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -117,8 +117,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -479,8 +480,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ne/index.docbook mate-utils-1.26.1/baobab/help/ne/index.docbook --- mate-utils-1.26.0/baobab/help/ne/index.docbook 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ne/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - परिचय - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - प्रयोग - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - प्राथमिकताहरू - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ne/legal.xml mate-utils-1.26.1/baobab/help/ne/legal.xml --- mate-utils-1.26.0/baobab/help/ne/legal.xml 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ne/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ne/ne.po mate-utils-1.26.1/baobab/help/ne/ne.po --- mate-utils-1.26.0/baobab/help/ne/ne.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ne/ne.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Sven Keeter , 2018 -# chautari , 2018 +# Stefano Karapetsas , 2021 +# Sven Keeter , 2021 +# chautari , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: chautari , 2018\n" -"Language-Team: Nepali (https://www.transifex.com/mate/teams/13566/ne/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: chautari , 2021\n" +"Language-Team: Nepali (https://app.transifex.com/mate/teams/13566/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -118,8 +118,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -480,8 +481,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/nl/index.docbook mate-utils-1.26.1/baobab/help/nl/index.docbook --- mate-utils-1.26.0/baobab/help/nl/index.docbook 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/nl/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentatie Project - - - GNOME Documentatie Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Terukoppeling - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introductie - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Gebruik - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Voorkeuren - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/nl/legal.xml mate-utils-1.26.1/baobab/help/nl/legal.xml --- mate-utils-1.26.0/baobab/help/nl/legal.xml 2021-08-05 19:46:23.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/nl/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - Deze handleiding maakt deel uit van een verzameling MATE handleidingen onder de GFDL. Als u deze handleiding afzonderlijk wil verspreiden, dan kan u dit door een kopie van de licentie van de handleiding toe te voegen, zoals beschreven in hoofdstuk 6 van de licentie. - - Vele van de namen zoals gebruikt bij bedrijven om hun producten en services te onderscheiden zijn geclaimd als handelsmerken. Wanneer deze namen voorkomen in enige MATE documentatie, en de leden van het MATE Documentatie Project hiervan bewust zijn gemaakt, dan zullen deze namen in hoofdletters zijn of beginnen met hoofdletters. - - HET DOCUMENT EEN AANGEPASTE VERSIES VAN HET DOCUMENT WORDEN AANGEBODEN ONDER DE VOORWAARDEN VAN DE GNU FREE DOCUMENTATION LICENTIE MET HET BEGRIP DAT: - - HET DOCUMENT IS AANGEBODEN OP EEN "ZOALS HET IS" BASIS, ZONDER ENIGE VORM VAN GARANTIE, ZOWEL UITGESPROKEN ALS GEÏMPLICEERD, INCLUSIEF, ZONDER BEPERKINGEN, GARANTIES DAT HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET DOCUMENT VRIJ VERHANDELBARE GEBREKEN OF GESCHIKT IS VOOR EEN BEPAALD DOEL IS, OF GEEN INBREUK MAAKT. HET VOLLEDIGE RISICO BETREFFEND DE KWALITEIT, ACCURAATHEID, EN PRESTATIES VAN HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET DOCUMENT LIGT BIJ U. INDIEN HET DOCUMENT DEFECT BLIJKT TE ZIJN IN ENIGE VORM, U (NIET DE INITIËLE SCHRIJVER, AUTEUR OF ENIGE BIJDRAGER) ZAL DE KOSTEN KOSTEN VOOR ENIGE NODIGE SERVICE, REPARATIE OF CORRECTIE OP ZICH NEMEN. DEZE DISCLAIMER BETREFT DE GARANTIE IS EEN ESSENTIEEL ONDERDEEL VAN DEZE LICENTIE. GEEN ENKEL GEBRUIK VAN DIT DOCUMENT OF AANGEPASTE VERSIE VAN HET DOCUMENT IS TOEGESTAAN ALS VOLGT ZONDER DEZE DISCLAIMER; EN - - - 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. - - - - diff -Nru mate-utils-1.26.0/baobab/help/nl/nl.po mate-utils-1.26.1/baobab/help/nl/nl.po --- mate-utils-1.26.0/baobab/help/nl/nl.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/nl/nl.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Pjotr , 2018 -# dragnadh, 2018 -# Ronald van Zuijlen, 2018 -# b9b0d258fa591da5350b6e67cf68cd68_9fecbb4 <28506b9ff23f99a34b566250ce31bbad_250479>, 2018 -# Benji Leenders, 2020 +# Stefano Karapetsas , 2021 +# Pjotr , 2021 +# dragnadh, 2021 +# b9b0d258fa591da5350b6e67cf68cd68_9fecbb4 <28506b9ff23f99a34b566250ce31bbad_250479>, 2021 +# Ronald van Zuijlen, 2021 +# kaasknak, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Benji Leenders, 2020\n" -"Language-Team: Dutch (https://www.transifex.com/mate/teams/13566/nl/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: kaasknak, 2021\n" +"Language-Team: Dutch (https://app.transifex.com/mate/teams/13566/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,18 +23,7 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "" -"Launchpad-bijdragers:\n" -" Daniël H. https://launchpad.net/~daan-is-here\n" -" Mark Cilissen https://launchpad.net/~pixlism\n" -" Peter van der Does https://launchpad.net/~pdoes\n" -" Tom Louwrier https://launchpad.net/~tom-louwrier\n" -" Twan Coenraad https://launchpad.net/~t.coenraad\n" -" cumulus007 https://launchpad.net/~cumulus-007\n" -" kactusrvm https://launchpad.net/~kactusrvm\n" -" kriekske https://launchpad.net/~kriekenbuik-gmail\n" -"Andere bijdragers:\n" -"Pjotr" +msgstr "Pjotr (pjotrvertaalt@gmail.com)" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -130,8 +119,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -492,8 +482,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title @@ -699,9 +690,9 @@ " section 6 of the license." msgstr "" "Deze handleiding maakt deel uit van een verzameling MATE handleidingen onder" -" de GFDL. Als u deze handleiding afzonderlijk wil verspreiden, dan kan u dit" -" door een kopie van de licentie van de handleiding toe te voegen, zoals " -"beschreven in hoofdstuk 6 van de licentie." +" de GFDL. Als u deze handleiding afzonderlijk wilt verspreiden, dan kan u " +"dit doen door een kopie van de licentie aan de handleiding toe te voegen, " +"zoals beschreven in hoofdstuk 6 van de licentie." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -712,11 +703,11 @@ "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" -"Vele van de namen zoals gebruikt bij bedrijven om hun producten en services " -"te onderscheiden zijn geclaimd als handelsmerken. Wanneer deze namen " -"voorkomen in enige MATE documentatie, en de leden van het MATE Documentatie " -"Project hiervan bewust zijn gemaakt, dan zullen deze namen in hoofdletters " -"zijn of beginnen met hoofdletters." +"Vele van de namen die worden gebruikt door bedrijven om hun producten en " +"diensten te onderscheiden zijn vastgelegd als handelsmerken. Wanneer deze " +"namen voorkomen in enige MATE documentatie, en wanneer de leden van het MATE" +" Documentatie Project hierop attent zijn gemaakt, zullen deze namen in " +"hoofdletters zijn of beginnen met hoofdletters." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -733,18 +724,18 @@ "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 "" -"HET DOCUMENT IS AANGEBODEN OP EEN \"ZOALS HET IS\" BASIS, ZONDER ENIGE VORM " -"VAN GARANTIE, ZOWEL UITGESPROKEN ALS GEÏMPLICEERD, INCLUSIEF, ZONDER " +"HET DOCUMENT WORDT AANGEBODEN OP EEN \"ZOALS HET IS\" BASIS, ZONDER ENIGE " +"VORM VAN GARANTIE, ZOWEL UITGESPROKEN ALS GEÏMPLICEERD, INCLUSIEF, ZONDER " "BEPERKINGEN, GARANTIES DAT HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET " -"DOCUMENT VRIJ VERHANDELBARE GEBREKEN OF GESCHIKT IS VOOR EEN BEPAALD DOEL " -"IS, OF GEEN INBREUK MAAKT. HET VOLLEDIGE RISICO BETREFFEND DE KWALITEIT, " -"ACCURAATHEID, EN PRESTATIES VAN HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET" -" DOCUMENT LIGT BIJ U. INDIEN HET DOCUMENT DEFECT BLIJKT TE ZIJN IN ENIGE " -"VORM, U (NIET DE INITIËLE SCHRIJVER, AUTEUR OF ENIGE BIJDRAGER) ZAL DE " -"KOSTEN KOSTEN VOOR ENIGE NODIGE SERVICE, REPARATIE OF CORRECTIE OP ZICH " -"NEMEN. DEZE DISCLAIMER BETREFT DE GARANTIE IS EEN ESSENTIEEL ONDERDEEL VAN " +"DOCUMENT VRIJ IS VAN VERHANDELBARE GEBREKEN OF GESCHIKT IS VOOR EEN BEPAALD " +"DOEL IS, OF GEEN INBREUK MAAKT. HET VOLLEDIGE RISICO BETREFFENDE DE " +"KWALITEIT, ACCURAATHEID, EN PRESTATIES VAN HET DOCUMENT OF DE AANGEPASTE " +"VERSIE VAN HET DOCUMENT LIGT BIJ U. INDIEN HET DOCUMENT DEFECT BLIJKT TE " +"ZIJN IN ENIGE VORM, ZAL U (NIET DE INITIËLE SCHRIJVER, AUTEUR OF ENIGE " +"BIJDRAGER) DE KOSTEN VOOR BENODIGD ONDERHOUD, REPARATIE OF CORRECTIE OP ZICH" +" NEMEN. DEZE AANSPRAKELIJKHEIDSUITSLUITING IS EEN WEZENLIJK ONDERDEEL VAN " "DEZE LICENTIE. GEEN ENKEL GEBRUIK VAN DIT DOCUMENT OF AANGEPASTE VERSIE VAN " -"HET DOCUMENT IS TOEGESTAAN ALS VOLGT ZONDER DEZE DISCLAIMER; EN" +"HET DOCUMENT IS TOEGESTAAN ZONDER DEZE UITSLUITING VAN AANSPRAKELIJKHEID; EN" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -760,6 +751,17 @@ "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" +"ONDER GEEN ENKELE OMSTANDIGHEDEN EN ONDER GEEN JURIDISCHE THEORIE, ZIJ HET " +"WETTELIJK (INCLUSIEF NALATIGHEID), CONTRACT, OF ANDERZIJDS ZAL DE AUTEUR, " +"INITIËLE AUTEUR, ENIGE BIJDRAGER VAN HET DOCUMENT OF DE AANGEPASTE VERSIE " +"VAN HET DOCUMENT, NOCH ENIGE LEVERANCIER VAN EEN VAN DEZE PARTIJEN, " +"AANSPRAKELIJK GEHOUDEN WORDEN DOOR ENIG PERSOON VOOR ENIGE DIRECTE, " +"INDIRECTE, SPECIALE, INCIDENTELE, OF GEVOLG SCHADE IN ELKE VORM INCLUSIEF, " +"ZONDER BEPERKING, SCHADE DOOR VERLIES VAN GOEDE WIL, WERK ONDERBREKING, " +"COMPUTER FALEN OF STORING, OF ENIGE ANDERE VORM VAN SCHADE OF VERLIES ALS " +"GEVOLGEN VAN HET GEBRUIKT VAN HET DOCUMENT EN DE AANGEPASTE VERSIES VAN HET " +"DOCUMENT, ZELFS ALS ZO EEN PARTIJ GEÏNFORMEERD ZOU ZIJN OVER DE MOGELIJKHEID" +" VAN ZULKE SCHADES." #. (itstool) path: legalnotice/para #: C/legal.xml:28 @@ -768,6 +770,6 @@ "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" -"HET DOCUMENT EEN AANGEPASTE VERSIES VAN HET DOCUMENT WORDEN AANGEBODEN ONDER" -" DE VOORWAARDEN VAN DE GNU FREE DOCUMENTATION LICENTIE MET HET BEGRIP DAT: " -"<_:orderedlist-1/>" +"HET DOCUMENT EN AANGEPASTE VERSIES VAN HET DOCUMENT WORDEN BESCHIKBAAR " +"GESTELD ONDER DE VOORWAARDEN VAN DE GNU FREE DOCUMENTATION LICENTIE WAARBIJ " +"BUITENDIEN GELDT DAT: <_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/baobab/help/nn/index.docbook mate-utils-1.26.1/baobab/help/nn/index.docbook --- mate-utils-1.26.0/baobab/help/nn/index.docbook 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/nn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Dokumentasjonsprosjekt - - - GNOME Dokumentasjonsprosjekt - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Tilbakemelding - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Innføring - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Bruk - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Innstillingar - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/nn/legal.xml mate-utils-1.26.1/baobab/help/nn/legal.xml --- mate-utils-1.26.0/baobab/help/nn/legal.xml 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/nn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/nn/nn.po mate-utils-1.26.1/baobab/help/nn/nn.po --- mate-utils-1.26.0/baobab/help/nn/nn.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/nn/nn.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Øystein Steffensen-Alværvik, 2018 -# Andrew Rabbitt , 2020 +# Stefano Karapetsas , 2021 +# Øystein Steffensen-Alværvik, 2021 +# Andrew Rabbitt , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Andrew Rabbitt , 2020\n" -"Language-Team: Norwegian Nynorsk (https://www.transifex.com/mate/teams/13566/nn/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Andrew Rabbitt , 2021\n" +"Language-Team: Norwegian Nynorsk (https://app.transifex.com/mate/teams/13566/nn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,7 +22,8 @@ msgid "translator-credits" msgstr "" "Åsmund Skjæveland \n" -"Eskild Hustvedt " +"Eskild Hustvedt \n" +"Andrew J Rabbitt " #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -118,8 +119,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -480,8 +482,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/nso/index.docbook mate-utils-1.26.1/baobab/help/nso/index.docbook --- mate-utils-1.26.0/baobab/help/nso/index.docbook 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/nso/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferences - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/nso/legal.xml mate-utils-1.26.1/baobab/help/nso/legal.xml --- mate-utils-1.26.0/baobab/help/nso/legal.xml 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/nso/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/nso/nso.po mate-utils-1.26.1/baobab/help/nso/nso.po --- mate-utils-1.26.0/baobab/help/nso/nso.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/nso/nso.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Northern Sotho (https://www.transifex.com/mate/teams/13566/nso/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Northern Sotho (https://app.transifex.com/mate/teams/13566/nso/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -116,8 +116,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -478,8 +479,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/oc/index.docbook mate-utils-1.26.1/baobab/help/oc/index.docbook --- mate-utils-1.26.0/baobab/help/oc/index.docbook 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/oc/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,435 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - 2015-2021 MATE Documentation Project - 2006 Fabio Marzocca - - - Projècte de documentacion de MATE - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - Fabio Marzocca GNOME Documentation Project
thesaltydog@gmail.com
- - Fabio Marzocca
thesaltydog@gmail.com
- - -
- - - - - - Disk Usage Analyzer Manual 1.10 July 2015 - Wolfgang Ulbrich - Projècte de documentacion de MATE - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Comentaris - Per senhalar una avaria o per formular una suggestion a prepaus de l’Analisador MATE d’utilizacion dels disques o aqueste manual, seguissètz las instruccions dins la pagina de comentaris de MATE. - - -
- - Analizador d’utilizacion dels disques - - - - - - Introduccion - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Començar - - Òm pòt aviar Analizador d’utilizacion dels disques de 3 biaisses : - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Utilizacion - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Analisi d’un sòl dossièr - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Analisi alonhada - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferéncias - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/oc/legal.xml mate-utils-1.26.1/baobab/help/oc/legal.xml --- mate-utils-1.26.0/baobab/help/oc/legal.xml 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/oc/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Autorizacion vos es donada de copiar, distribuir e/o modificar aqueste document segon los tèrmes de la Licéncia GNU Free Documentation License (GFDL), Version 1.1 o ulteriora publicada per la Free Software Foundation sens seccion inalterabla, sens tèxt de primièra pagina de cubèrta ni tèxt de darrièra pagina de cubèrta. Trobaretz un exemplari de la GFDL en seguissent aqueste ligam o dins lo fichièr COPYING-DOCS provesit amb lo present manual. - Aqueste manual fa part de la colleccion de manuals de MATE distribuits jols tèrmes de la licéncia de documentacion liura GNU. Se volètz distribuir aqueste document a despart de la colleccion, o podètz far en ajustant un exemplar de la licéncia al manual, coma indicat a la seccion 6 de la licéncia. - - La màger part dels noms utilizats per las entrepresas per distinguir lors produches e servicis son de marcas depausadas. Quand aqueles noms apareisson dins la documentacion MATE e que los membres del projècte de Documentacion MATE son informats de l’existéncia d’aquelas marcas depausadas, siá aqueles noms entièrs, siá lor primièra letra es en majuscula. - - LOS DOCUMENTS E LAS VERSIONS MODIFICADAS D’AQUESTE DOCUMENT SON FORNITS JOLS TÈRMES DE LA LICÉNCIA DE DOCUMENTACION LIURA GNU ESTANT QUE : - - LO DOCUMENT ES PROVESIT « TAL COMA ES » SENS CAP DE GARANTIDA DE QUIN TIPE QUE SIÁ, EXPLICITA O IMPLICADA, AQUÒ INCLUTZ, SENS CAP DE LIMIT, LAS GARANTIDAS QUE LO DOCUMENT O UNA VERSION MODIFICADA NON AJA PAS CAP DE DEFAUT, QUE SIÁ COMERCIABLE, QUE SIÁ ADAPTAT PER UN USATGE PARTICULAR O QUE ENFRANGA PAS LA LEI. TOT LO RISC RESPÈCTE A LA QUALITAT, L’EXACTITUD O LAS QUALITATS TECNICAS DEL DOCUMENT O DE SAS VERSIONS MODIFICADAS ES VÒSTRE. SE PER CAS LO DOCUMENT O UNA VERSION MODIFICADA S’AVERÈSSE DEFECTUÓS AL RESPÈCTE DE QUIN ASPÈCTE QUE SIÁ, VOSAUTRES (NON PAS LO REDACTOR INICIAL, L’AUTOR O QUIN CONTRIBUIDOR QUE SIÁ) ASSUMISSÈTZ LO CÒST DE TOTA MANTENENÇA, REPARACION O CORRECCION NECESSÀRIA. AQUESTA DESCARGA DE GARANTIDA CONSTITUÍS UNA PART ESSENCIALA D’AQUESTA LICÉNCIA. CAP D’UTILIZACION D’AQUESTE DOCUMENT O VERSION MODIFICADA ES AUTORIZADA LEVAT JOS AQUESTA DESCARGA DE GARANTIDA E - - - EN CAP DE CIRCONSTÀNCIA E JOS CAP D’INTERPRETACION LEGALA, QUE SIÁ DE RESPONSABILITAT CIVILA (NEGLIGÉNCIA INCLUSA), CONTRACTUALA O AUTRA, L’AUTOR, LO REDACTOR INICIAL, TOT CONTRIBUIDOR E TOT DISTRIBUIDOR D’AQUESTE DOCUMENT O DE SA VERSION MODIFICADA NI CAP DE PROVESIDOR D’AQUESTES PARTS SERÀN PAS RESPONSABLES AL RESPÈCTE DE QUIN DAMATGE DIRÈCTE, INDIRÈCTE, ESPECIAL O ACCIDENTAL QUE SIÁ DE TOT TIPE E TANBEN, SENS LIMITACION, LOS DAMATGES LIGATS A LA PÈRDA DE CLIENTÈLA, LAS INTERRUPCIONS DE TRABALH, ALS DEFALHIMENTS E DISFONCIONAMENTS INFORMATICS O TOTA AUTRA PÈRDA LIGADA A L’UTILIZACION DEL DOCUMENT E DE SAS VERSIONS MODIFICADAS, ATAL METEIS S’AQUESTES PART ÈRAN AVISATS DE LA POSSIBILITAT D’AQUESTES DAMATGES. - - - diff -Nru mate-utils-1.26.0/baobab/help/oc/oc.po mate-utils-1.26.1/baobab/help/oc/oc.po --- mate-utils-1.26.0/baobab/help/oc/oc.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/oc/oc.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# 48c2de07903ce5a77a8e90265f95c4c2_8909374 <837c8d0ab97b27e737893c19f79bd4de_348476>, 2018 +# Stefano Karapetsas , 2021 # Quentin PAGÈS, 2021 +# Wolfgang Ulbrich , 2021 +# 48c2de07903ce5a77a8e90265f95c4c2_8909374 <837c8d0ab97b27e737893c19f79bd4de_348476>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Quentin PAGÈS, 2021\n" -"Language-Team: Occitan (post 1500) (https://www.transifex.com/mate/teams/13566/oc/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: 48c2de07903ce5a77a8e90265f95c4c2_8909374 <837c8d0ab97b27e737893c19f79bd4de_348476>, 2021\n" +"Language-Team: Occitan (post 1500) (https://app.transifex.com/mate/teams/13566/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,8 +22,8 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"Yannig Marchegay (Kokoyaya) & Cédric Valmary " -"(totenoc.eu) " +"Yannig Marchegay (Kokoyaya) , Cédric Valmary " +"(totenoc.eu) , Quentin Pagès" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -126,8 +126,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Per senhalar una avaria o per formular una suggestion a prepaus de " "l’Analisador MATE d’utilizacion dels disques o aqueste manual, seguissètz " @@ -137,7 +138,7 @@ #. (itstool) path: article/indexterm #: C/index.docbook:130 msgid "Disk Usage Analyzer" -msgstr "Analizador d’utilizacion dels disques" +msgstr "Analisador d’utilizacion dels disques" #. (itstool) path: sect1/title #: C/index.docbook:138 @@ -172,7 +173,7 @@ msgid "" "Disk Usage Analyzer can be started in three ways:" msgstr "" -"Òm pòt aviar Analizador d’utilizacion dels " +"Òm pòt aviar Analisador d’utilizacion dels " "disques de 3 biaisses :" #. (itstool) path: listitem/para @@ -494,8 +495,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/or/index.docbook mate-utils-1.26.1/baobab/help/or/index.docbook --- mate-utils-1.26.0/baobab/help/or/index.docbook 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/or/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - ପରିଚୟ - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - ବ୍ୟବହାର ବିଧି - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - ପସନ୍ଦ - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/or/legal.xml mate-utils-1.26.1/baobab/help/or/legal.xml --- mate-utils-1.26.0/baobab/help/or/legal.xml 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/or/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/or/or.po mate-utils-1.26.1/baobab/help/or/or.po --- mate-utils-1.26.0/baobab/help/or/or.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/or/or.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Oriya (https://www.transifex.com/mate/teams/13566/or/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Odia (https://app.transifex.com/mate/teams/13566/or/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/pa/index.docbook mate-utils-1.26.1/baobab/help/pa/index.docbook --- mate-utils-1.26.0/baobab/help/pa/index.docbook 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/pa/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - ਗਨੋਮ ਦਸਤਾਵੇਜ਼ ਪ੍ਰੋਜੈਕਟ - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - ਸੁਝਾਅ - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - ਜਾਣ ਪਛਾਣ - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - ਵਰਤੋਂ - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - ਮੇਰੀ ਪਸੰਦ - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/pa/legal.xml mate-utils-1.26.1/baobab/help/pa/legal.xml --- mate-utils-1.26.0/baobab/help/pa/legal.xml 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/pa/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - ਇਹ ਦਸਤਾਵੇਜ਼ ਗਨੋਮ ਦਸਤਾਵੇਜ਼ ਭੰਡਾਰ ਦਾ ਭਾਗ ਹੈ, ਜੋ ਕਿ GFDL ਦੇ ਅਧੀਨ ਜਾਰੀ ਕੀਤਾ ਗਿਆ ਹੈ। ਜੇ ਤੁਸੀਂ ਇਹ ਦਸਤਾਵੇਜ਼ ਨੂੰ ਭੰਡਾਰ ਤੋਂ ਬਿਨਾਂ ਵੰਡਣਾ ਚਾਹੁੰਦੇ ਹੋ ਤਾਂ ਤੁਸੀਂ ਇਹ ਲਾਈਸੈਂਸ ਦੇ ਭਾਗ 6 ਵਿੱਚ ਦੱਸੇ ਮੁਤਾਬਕ ਦਸਤਾਵੇਜ਼ ਨਾਲ ਲਾਈਸੈਂਸ ਦੀ ਇੱਕ ਨਕਲ ਜੋੜ ਕੇ ਕਰ ਸਕਦੇ ਹੋ। - - ਕੰਪਨੀਆਂ ਵਲੋਂ ਆਪਣੇ ਉਤਪਾਦਾਂ ਅਤੇ ਸੇਵਾਵਾਂ ਲਈ ਵਰਤੇ ਗਏ ਕਈ ਨਾਂ ਮਾਰਕੇ ਹਨ। ਜਦੋਂ ਵੀ ਉਹ ਨਾਂ ਕਿਸੇ ਗਨੋਮ ਦਸਤਾਵੇਜ਼ ਪ੍ਰੋਜੈਕਟ ਵਿੱਚ ਆਉਦੇ ਹਨ ਅਤੇ ਗਨੋਮ ਦਸਤਾਵੇਜ਼ ਪ੍ਰੋਜੈਕਟ ਦੇ ਮੈਂਬਰ ਹਨ ਤਾਂ ਉਨ੍ਹਾਂ ਮਾਰਕਿਆਂ ਬਾਰੇ ਜਾਣਕਾਰੀ ਦੇਣ ਲਈ, ਉਹਨਾਂ ਨੇ ਦੇ ਨਾਂ ਵੱਡੇ ਅੱਖਰਾਂ ਵਿੱਚ ਜਾਂ ਪਹਿਲੇਂ ਅੱਖਰ ਵੱਡੇ ਰੱਖੇ ਗਏ ਹਨ। - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/pa/pa.po mate-utils-1.26.1/baobab/help/pa/pa.po --- mate-utils-1.26.0/baobab/help/pa/pa.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/pa/pa.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Wolfgang Ulbrich , 2018\n" -"Language-Team: Panjabi (Punjabi) (https://www.transifex.com/mate/teams/13566/pa/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Wolfgang Ulbrich , 2021\n" +"Language-Team: Panjabi (Punjabi) (https://app.transifex.com/mate/teams/13566/pa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -119,8 +119,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -481,8 +482,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/pl/index.docbook mate-utils-1.26.1/baobab/help/pl/index.docbook --- mate-utils-1.26.0/baobab/help/pl/index.docbook 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/pl/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,452 +0,0 @@ - - - - - - -]> - - -
- - - - Podręcznik Analizatora wykorzystania dysku - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - 2015-2021 dokumentacja projektu MATE - 2006 Fabio Marzocca - - - Projekt dokumentacji MATE - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - Fabio Marzocca
thesaltydog@gmail.com
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Opinia - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Wprowadzenie - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Analizator wykorzystania dysku może być uruchomiony na trzy sposoby: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Okno analizatora wykorzystania dysku - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Użycie - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferencje - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/pl/legal.xml mate-utils-1.26.1/baobab/help/pl/legal.xml --- mate-utils-1.26.0/baobab/help/pl/legal.xml 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/pl/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Udziela się zgody na kopiowanie, dystrybucję i/lub modyfikację tego tekstu na warunkach licencji GNU Free Documentation License (GFDL) w wersji 1.1 lub nowszej, opublikowanej przez Free Software Foundation bez Sekcji Niezmiennych, bez Strony Tytułowej i bez Treści Okładki. Kopia tekstu licencji GFDL umieszczona została pod tym odnośnik lub w pliku COPYING-DOCS rozpowszechnianym razem z tą instrukcją. - Ten podręcznik jest częścią zestawu podręczników MATE rozpowszechnianych na licencji GFDL. Jeżeli chcesz rozpowszechnić tą instrukcję osobno od zestawu, możesz to zrobić dodając kopię licencji do podręcznika, jak opisano w dziale 6 tej licencji. - - Wiele nazw używanych przez firmy do rozróżnienia ich produktów i usług jest zgłoszonych jako znaki towarowe. W przypadku pojawienia się tych nazw w dowolnej dokumentacji MATE, a członkowie Projektu Dokumentacji MATE są świadomi tych znaków towarowych, wówczas nazwy są pisane wielkimi literami lub pierwszymi wielkimi literami. - - DOKUMENT I ZMODYFIKOWANE WERSJE DOKUMENTU SĄ DOSTARCZANE NA WARUNKACH LICENCJI WOLNEJ DOKUMENTACJI GNU Z DALSZYM ZROZUMIENIEM, ŻE: - - DOKUMENT JEST DOSTARCZANY W STANIE „TAK JAK JEST”, BEZ JAKIEGOKOLWIEK WYRAŻENIA, DOMNIEMANIA GWARANCJI, W TYM MIĘDZY INNYMI GWARANCJI, ŻE DOKUMENT LUB ZMODYFIKOWANA WERSJA DOKUMENTU JEST WOLNA OD WAD HANDLOWYCH LUB DO OKREŚLONEGO CELU -NARUSZENIE. CAŁKOWITE RYZYKO DOTYCZĄCE JAKOŚCI, DOKŁADNOŚCI I WYDAJNOŚCI DOKUMENTU LUB ZMODYFIKOWANEJ WERSJI DOKUMENTU SPOCZYWA NA UŻYTKOWNIKU. JEŻELI JAKIKOLWIEK DOKUMENT LUB ZMODYFIKOWANA WERSJA OKAŻE SIĘ WADLIWA POD JAKIMKOLWIEK WZGLĘGEM, UŻYTKOWNIK (NIE WSTĘPNY PISARZ, AUTOR CZY ŻADEN WSPÓŁPRACOWNIK) PONOSI KOSZTY WSZELKICH NIEZBĘDNYCH SERWISÓW, NAPRAW LUB POPRAWEK. NINIEJSZE WYŁĄCZENIE GWARANCJI STANOWI ISTOTNĄ CZĘŚĆ LICENCJI. ZGODNIE Z NINIEJSZYM WYŁĄCZENIEM ODPOWIEDZIALNOŚCI NIE JEST ZEZWOLONE NA KORZYSTANIE Z JAKICHKOLWIEK DOKUMENTÓW LUB ZMODYFIKOWANYCH WERSJI DOKUMENTU; ORAZ - - - W ŻADNYM PRZYPADKU I W ŻADNEJ TEORII PRAWNEJ, CZY W DZIAŁANIU CZYNNYM (W TYM ZANIEDBANIA), UMOWY LUB W INNY SPOSÓB, AUTOR, PISARZ WSTĘPNY, WSPÓŁPRACOWNIK ANI DYSTRYBUTOR DOKUMENTU LUB ZMODYFIKOWANA WERSJA DOKUMENTU TAKICH STRON NIE PONOSI ODPOWIEDZIALNOŚCI WOBEC JAKICHKOLWIEK OSÓB ZA JAKIEKOLWIEK BEZPOŚREDNIE, POŚREDNIE, SZCZEGÓLNE, PRZYPADKOWE LUB WTÓRNE SZKODY JAKIEGOKOLWIEK CHARAKTERU, W TYM MIĘDZY INNYMI USZKODZENIA ZA UTRATĘ WŁAŚCIWOŚCI, PRZERWY W PRACY, AWARIE LUB INNE USZKODZENIA KOMPUTERA LUB STRATY WYNIKAJĄCE Z KORZYSTANIA Z DOKUMENTU I ZMODYFIKOWANYCH WERSJI DOKUMENTU, NAWET JEŚLI STRONA ZOSTAŁA POINFORMOWANA O MOŻLIWOŚCI WYSTĄPIENIA TAKICH SZKÓD. - - - diff -Nru mate-utils-1.26.0/baobab/help/pl/pl.po mate-utils-1.26.1/baobab/help/pl/pl.po --- mate-utils-1.26.0/baobab/help/pl/pl.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/pl/pl.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,22 +1,23 @@ # # Translators: -# Piotr Drąg , 2018 -# Piotr Strębski , 2018 -# Stefano Karapetsas , 2018 -# pietrasagh , 2018 -# Przemek P , 2018 -# Marcin GTriderXC , 2018 -# Dominik Adrian Grzywak, 2018 -# Szymon Blaut , 2021 +# Piotr Drąg , 2021 +# Piotr Strębski , 2021 +# Stefano Karapetsas , 2021 +# clefebvre , 2021 +# Dominik Adrian Grzywak, 2021 +# Marcin GTriderXC , 2021 +# Przemek P , 2021 # Daniel Tokarzewski , 2021 +# Szymon Blaut , 2021 +# pietrasagh , 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Daniel Tokarzewski , 2021\n" -"Language-Team: Polish (https://www.transifex.com/mate/teams/13566/pl/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: pietrasagh , 2022\n" +"Language-Team: Polish (https://app.transifex.com/mate/teams/13566/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,10 +28,16 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"Tłumacze środowiska MATE, 2013-2014, 2016-2018\n" +"Tłumacze środowiska MATE, 2014-2020\n" "\n" -"Tomasz Bielecki, 2005\n" -"Paweł Marciniak, 2007" +"Zbigniew Chyla, 2002-2003\n" +"Artur Flinta, 2003-2005\n" +"Wadim Dziedzic, 2007-2009\n" +"Tomasz Dominikowski, 2008-2009\n" +"Joanna Mazgaj, 2009\n" +"Piotr Drąg, 2010\n" +"Aviary.pl, 2007-2010\n" +"Daniel Tokarzewski, 2020" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -64,7 +71,7 @@ #. (itstool) path: revdescription/para #: C/index.docbook:50 C/index.docbook:113 msgid "GNOME Documentation Project" -msgstr "GNOME Documentation Project" +msgstr "Dokumentacja projektu GNOME" #. (itstool) path: authorgroup/author #: C/index.docbook:56 @@ -128,8 +135,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -163,7 +171,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:153 msgid "Getting Started" -msgstr "" +msgstr "Pierwsze kroki" #. (itstool) path: sect1/para #: C/index.docbook:155 @@ -492,8 +500,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title @@ -677,7 +686,7 @@ #. (itstool) path: para/ulink #: C/legal.xml:9 msgid "link" -msgstr "odnośnik" +msgstr "dowiązanie" #. (itstool) path: legalnotice/para #: C/legal.xml:2 diff -Nru mate-utils-1.26.0/baobab/help/ps/index.docbook mate-utils-1.26.1/baobab/help/ps/index.docbook --- mate-utils-1.26.0/baobab/help/ps/index.docbook 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ps/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - کارونه - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - غوراوي - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ps/legal.xml mate-utils-1.26.1/baobab/help/ps/legal.xml --- mate-utils-1.26.0/baobab/help/ps/legal.xml 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ps/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ps/ps.po mate-utils-1.26.1/baobab/help/ps/ps.po --- mate-utils-1.26.0/baobab/help/ps/ps.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ps/ps.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Pushto (https://www.transifex.com/mate/teams/13566/ps/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Pashto (https://app.transifex.com/mate/teams/13566/ps/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -116,8 +116,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -478,8 +479,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/pt/index.docbook mate-utils-1.26.1/baobab/help/pt/index.docbook --- mate-utils-1.26.0/baobab/help/pt/index.docbook 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/pt/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,387 +0,0 @@ - - - - - - -]> - - -
- - - - Manual do Analisador de Utilização do Disco - - - O 'Analisador de Utilização do Disco' é um visualizador gráfico orientado por menus que pode ser utilizado para visualizar e monitorizar a utilização de disco e a estrutura de pasta. - - - 2015-2021 Projecto de Documentação do MATE - 2006 Fabio Marzocca - - - Projeto de Documentação do MATE - - - Projeto de Documentação do GNOME - - - - - - - MATE Documentation Team - - MATE Desktop - - - Fabio Marzocca GNOME - Documentação do Projeto
thesaltydog@gmail.com
- - Fabio Marzocca
thesaltydog@gmail.com
- - -
- - - - - - Manual do Analisador de Utilização do Disco 1.10 July 2015 - Wolfgang Ulbrich - Projeto de Documentação do MATE - - Manual do Analisador de Utilização do Disco 1.0 Abril de 2006 - Emmanuele Bassi ebassi@gmail.com - Projeto de Documentação do GNOME - - - - Este manual descreve a versão 1.10 do Analisador de Utilização do Disco. - - - Enviar Opiniões - Para reportar um erro ou fazer uma sugestão sobre a aplicação 'Analisador de Utilização do Disco' deste manual, siga as indicações na Página de Opiniões do MATE. - - - - - - Hugo Carvalho - - hugokarvalho@gmail.com - - - - 2018 - - Hugo Carvalho - -
- - Analisador de Utilização do Disco - - - - - - Introdução - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - Também deteta automaticamente em tempo real quaisquer alterações feitas ao diretório de raiz em qualquer dispositivo montado/desmontado. O Analisador de Utilização do Disco também apresenta uma janela com uma árvore-mapa gráfica para cada pasta selecionada. - - - - - - Iniciação - - Analisador de Utilização do Disco pode ser iniciado de três maneiras: - - from MATE menu ApplicationsAccessories; - - a partir de uma janela do terminal; - - a partir de Caja "Abrir com..." ; - - - - -Se quiser inicializar a Analisador de Utilização do Disco de uma janela do terminal, apenas escreva: - -mate-disk-usage-analyzer <full_path_to_a_directory>, e depois pressione a tecla Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Janela do Analisador de Utilização do Disco - - Mostra a janela principal do Analisador de Utilização do Disco. Contém a barra de menus, área de visualização, barras de deslocamento e a barra de estado. - -
- - -O utilizador pode então: - - iniciar uma análise de todo o sistema de ficheiros; - - selecionar um diretório local específico a analizar - - selecionar um servidor remoto e uma pasta a analisar - - definir as preferências - - - - -
- - - - - Utilização - - - Análise a todo o sistema de ficheiros - Para iniciar uma análise de todo o sistema de ficheiros, selecione AnalisadorAnalisar Sistema de Ficheiros no menu ou clique no botão da barra de ferramentas Analisar Sistema de Ficheiros. - - Quando o processo de análise termina, irá aparecer uma árvore completa do sistema de ficheiros, como a mostrada imagem seguinte. - - -
- Análise completa do sistema de ficheiros do Analisador de Utilização do Disco - - Mostra a janela do sistema de ficheiros do Analisador de Utilização do Disco. Contém a barra de menus, área de visualização, barras de deslocamento e a barra de estado. - -
- - - Quando executa uma análise de todo o sistema, irá aparecer na janela do Analisador de Utilização do Disco uma árvore assim que for iniciado a análise do sistema. Se for montada uma partição grande, esta será analisada também. - - O Analisador de Utilização do Disco irá mostrar os tamanhos da árvore de diretórios como espaço alocado. Isto significa que os tamanhos mostrados referem-se à utilização atual do disco e não o tamanho aparente do diretório. Se quiser ver o tamanho do ficheiro aparente, desative no menu VerEspaço Alocado . - - O Analisador de Utilização do Disco não irá contar do diretório /proc nem o tamanho de um ficheiro qualquer que não esteja relacionado com um ficheiro "simples", por isso os symlinks, clocos de caracteres e blocos de dispositivos não farão parte do tamanho do diretório. - - Os atalhos fixos (hard links) são geridos de uma forma diferente: este primeiro atalho fixo é contado como um ficheiro normal, enquanto que os atalhos subsequentes estão ligados ao mesmo nó de índice do dispositivo não são contados no total, mas destacados na coluna da direita da janela. -
- - - Análise de uma pasta - - Para iniciar a análise de uma única pasta selecione AnalisadorAnalisar pasta... no menu, ou clique no botão Analisar pasta na barra de ferramentas. - - - - - Análise remota - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - Mostra a janela da pasta remota do Analisador de Utilização do Disco. - -
- - -
- -
- - - - - Preferências - - Para alterar as preferências da aplicação Analisador de Utilziação do Disco, escolha EditarPreferências. - - -
- Janela das Preferências do Analisador de Utilização do Disco - - Janela das Preferências - -
- - - - Selecione os dispositivos para serem analisados - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Árvores-mapa - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - Depois de analisar uma pasta. - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/pt/legal.xml mate-utils-1.26.1/baobab/help/pt/legal.xml --- mate-utils-1.26.0/baobab/help/pt/legal.xml 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/pt/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - É dada permissão para copiar, distribuir e/ou alterar este documento sob os termos da Licença de Documentação Livre GNU (GFDL), Versão 1.1 ou qualquer outra posteriormente publicada pela Free Software Foundation sem quaisquer Secções Invariantes, Textos de Capa ou Prefácios, e sem Textos Finais ou Posfácios. Poderá encontrar uma cópia da GFDL neste atalho ou no ficheiro COPYING-DOCS distribuído com este manual. - Este manual é parte de uma coleção de manuais MATE distribuídos sob a GFDL. Se desejar distribuir este manual separadamente da coleção, poderá fazê-lo desde que lhe adicione uma cópia da licença, tal como descrito na secção 6 desta licença. - - Muitos dos nomes utilizados pelas empresas para distinguir os seus produtos e serviços são reclamados como marcas registadas. Onde esses nomes surgirem em qualquer documentação MATE, e aos membros do Projeto de Documentação do MATE for dado conhecimento dessas marcas registadas, estes nomes estarão todos em maiúsculas ou com a primeira letra de cada palavra em maiúscula. - - O DOCUMENTO E VERSÕES MODIFICADAS DO DOCUMENTO SÃO DISPONIBILIZADAS NOS TERMOS DA LICENÇA DE DOCUMENTAÇÃO LIVRE GNU (GNU FREE DOCUMENTATION LICENSE) COM O SUBSEQUENTE ENTENDIMENTO DE QUE: - - ESTE DOCUMENTO É DISPONIBILIZADO NUMA BASE "TAL COMO ESTÁ", SEM QUALQUER GARANTIA DE QUALQUER TIPO, NEM EXPRESSA NEM IMPLÍCITA, INCLUINDO, MAS SEM LIMITAR, GARANTIAS DE QUE O DOCUMENTO OU VERSÃO ALTERADA DO DOCUMENTO SE ENCONTRA LIVRE DE DEFEITOS PARA COMERCIALIZAÇÃO, ADEQUADO A UM PROPÓSITO ESPECÍFICO OU QUE NÃO INFRINJA. A TOTALIDADE DO RISCO DE QUALIDADE, PORMENORIZAÇÃO, E DESEMPENHO DO DOCUMENTO OU VERSÃO ALTERADA DO DOCUMENTO É SUA. CASO ALGUM DOCUMENTO OU VERSÃO ALTERADA SE DEMONSTRE DEFICIENTE EM QUALQUER ASPETO, O LEITOR (E NÃO O AUTOR INICIAR, OU QUALQUER CONTRIBUINTE POSTERIOR) ASSUME O CUSTO DE TODO O SERVIÇO DE REPARAÇÃO, ASSISTÊNCIA OU CORREÇÃO QUE POSSE SER NECESSÁRIO. ESTA DESRESPONSABILIZAÇÃO DE GARANTIA CONSTITUI UMA PARTE ESSENCIAL DESTA LICENÇA. NENHUMA UTILIZAÇÃO DE QUALQUER DOCUMENTO OU VERSÃO ALTERADO DO DOCUMENTO SE ENCONTRA AUTORIZADA EXCETO SE SUJEITA A ESTA DESRESPONSABILIZAÇÃO; E - - - SOB QUAISQUER CIRCUNSTÂNCIAS E TEORIA LEGAL, QUER SEJA POR ERRO (INCLUINDO NEGLIGÊNCIA), CONTRATO, OU QUALQUER OUTRO MOTIVO, PODERÁ O AUTOR, ESCRITOR INICIAL, QUALQUER CONTRIBUINTE, OU QUALQUER DISTRIBUIDOR DO DOCUMENTO OU VERSÃO ALTERADA DO DOCUMENTO, OU QUALQUER FORNECEDOR DE UMA DESSAS PARTES, SER RESPONSÁVEL PERANTE QUALQUER PESSOA POR QUAISQUER DANOS DIRETOS, INDIRETOS, ESPECIAIS, ACIDENTAIS OU CONSEQUENCIAIS DE QUALQUER TIPO INCLUINDO, SEM LIMITAR, DANOS POR PERCA DE BOM NOME (GOODWILL), PARAGENS DE TRABALHO, FALHA OU MAU FUNCIONAMENTO INFORMÁTICO, OU QUALQUER E TODOS OS OUTROS DANOS OU PERCAS DECORRENTES OU RELACIONADAS COM A UTILIZAÇÃO DO DOCUMENTO E VERSÕES ALTERADAS DO DOCUMENTO, MESMO QUE TAL PARTE TENHA SIDO INFORMADA DA POSSIBILIDADE DE OCORREREM TAIS DANOS. - - - diff -Nru mate-utils-1.26.0/baobab/help/pt/pt.po mate-utils-1.26.1/baobab/help/pt/pt.po --- mate-utils-1.26.0/baobab/help/pt/pt.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/pt/pt.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,31 +1,32 @@ # # Translators: -# Carlos Moreira, 2018 -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Manuela Silva , 2018 -# Rui , 2018 -# Robert Antoni Buj i Gelonch , 2019 -# Hugo Carvalho , 2020 +# Robert Antoni Buj i Gelonch , 2021 +# Carlos Moreira, 2021 +# clefebvre , 2021 +# Wolfgang Ulbrich , 2021 +# Rui , 2021 +# Manuela Silva , 2021 # José Vieira , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" "Last-Translator: José Vieira , 2021\n" -"Language-Team: Portuguese (https://www.transifex.com/mate/teams/13566/pt/)\n" +"Language-Team: Portuguese (https://app.transifex.com/mate/teams/13566/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Hugo Carvalho , 2018" +msgstr "" +"Hugo Carvalho , 2018\n" +"José Vieira , 2021" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -63,7 +64,7 @@ #. (itstool) path: revdescription/para #: C/index.docbook:50 C/index.docbook:113 msgid "GNOME Documentation Project" -msgstr "Projeto de Documentação do GNOME" +msgstr "Projecto de Documentação do GNOME" #. (itstool) path: authorgroup/author #: C/index.docbook:56 @@ -104,7 +105,7 @@ "2015 <_:revdescription-1/>" msgstr "" "Manual do Analisador de Utilização do Disco 1.10 " -"July 2015 <_:revdescription-1/>" +"Julho de 2015 <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:110 @@ -129,18 +130,19 @@ #. (itstool) path: legalnotice/title #: C/index.docbook:121 msgid "Feedback" -msgstr "Enviar Opiniões" +msgstr "Opinião" #. (itstool) path: legalnotice/para #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Para reportar um erro ou fazer uma sugestão sobre a aplicação 'Analisador de" -" Utilização do Disco' deste manual, siga as indicações na Página de Opiniões do " +" Utilização do Disco' deste manual, siga as indicações na Página de Opiniões do " "MATE." #. (itstool) path: article/indexterm @@ -563,8 +565,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/pt_BR/index.docbook mate-utils-1.26.1/baobab/help/pt_BR/index.docbook --- mate-utils-1.26.0/baobab/help/pt_BR/index.docbook 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/pt_BR/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Manual do Analizador de Uso do Disco - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - Projeto de Documentação do MATE - - - Projeto de Documentação do GNOME - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Retorno - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introdução - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Começando - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Uso - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferências - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/pt_BR/legal.xml mate-utils-1.26.1/baobab/help/pt_BR/legal.xml --- mate-utils-1.26.0/baobab/help/pt_BR/legal.xml 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/pt_BR/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - É concedida permissão para copiar, distribuir e / ou modificar este documento sob os termos da Licença de Documentação Livre GNU (GFDL), Versão 1.1 ou qualquer versão posterior publicada pela Free Software Foundation sem Seções Invariantes, sem Textos de Capa Frontal e sem textos de contracapa. Você pode encontrar uma cópia da GFDL no link ou no arquivo COPYING-DOCS distribuído com este manual. - Esse manual é parte de uma coleção de manuais do MATE distribuída sob a GFDL. Se você quiser distribuir essa manual separado da coleção, pode fazê-lo adicionando uma cópia da licença ao manual, como descrito na seção 6 da licença. - - Muitos dos nomes usados por companhias para distinguir seus produtos e serviços são marcas registradas. Quando esses nomes ocorrem em alguma parte da documentação do MATE, e os membros do Projeto de documentação do MATE estiverem cientes de serem marcas registradas, esses nomes estarão maiúsculas ou com as iniciais em maiúsculas. - - O DOCUMENTO E AS VERSÕES MODIFICADAS DO DOCUMENTO SÃO FORNECIDOS DE ACORDO COM OS TERMOS DA LICENÇA DE DOCUMENTAÇÃO GRATUITA DA GNU COM O ENTENDIMENTO COMPREENDIDO DE QUE: - - O DOCUMENTO É FORNECIDO COMO UMA BASE "COMO ESTÁ", SEM GARANTIAS DE QUALQUER TIPO, TANTO EXPRESSA OU IMPLÍCITA, INCLUINDO, SEM LIMITAÇÃO, GARANTIAS DE QUE O DOCUMENTO OU VERSÃO MODIFICADA DO DOCUMENTO É COMERCIALIZÁVEL, LIVRE DE DEFEITOS, PRÓPRIO PARA UM PROPÓSITO ESPECÍFICO OU SEM INFRAÇÕES. TODO O RISCO A RESPEITO DA QUALIDADE, EXATIDÃO, E DESEMPENHO DO DOCUMENTO OU VERSÕES MODIFICADAS DO DOCUMENTO É SEU. SE ALGUM DOCUMENTO OU VERSÃO MODIFICADA SE PROVAR DEFEITUOSO EM QUALQUER ASPECTO, VOCÊ (NÃO O ESCRITOR INICIAL, AUTOR OU QUALQUER CONTRIBUIDOR) ASSUME O CUSTO DE QUALQUER SERVIÇO NECESSÁRIO, REPARO OU CORREÇÃO. ESTA RENÚNCIA DE GARANTIAS CONSTITUI UMA PARTE ESSENCIAL DESTA LICENÇA. NENHUM USO DESTE DOCUMENTO OU VERSÃO MODIFICADA DESTE DOCUMENTO É AUTORIZADO SE NÃO FOR SOB ESTA RENÚNCIA; E - - - SOB NENHUM CIRCUNSTÂNCIA E SOB NENHUMA TEORIA LEGAL, TANTO EM DADO (INCLUINDO NEGLIGÊNCIA), CONTRATO, OU OUTROS, DEVEM O AUTOR, ESCRITOR INICIAL, QUALQUER CONTRIBUIDOR, OU QUALQUER DISTRIBUIDOR DO DOCUMENTO OU VERSÃO MODIFICADA DO DOCUMENTO, OU QUALQUER FORNECEDOR DE ALGUMA DESSAS PARTES, SER CONSIDERADOS RESPONSÁVEIS A QUALQUER PESSOA POR QUALQUER DANO, SEJA DIRETO, INDIRETO, ESPECIAL, ACIDENTAL OU CONSEQÜENCIAL DE QUALQUER INDIVÍDUO, INCLUINDO, SEM LIMITAÇÃO, DANOS POR PERDA DE BOA VONTADE, TRABALHO PARADO, FALHA NO COMPUTADOR OU MAL FUNCIONAMENTO, OU QUALQUER E TODOS OS OUTROS DANOS OU PERDAS RESULTANTES OU RELACIONADAS AO USO DO DOCUMENTO E VERSÕES MODIFICADAS, MESMO QUE TAL PARTE TENHA SIDO INFORMADA DA POSSIBILIDADE DE TAIS DANOS. - - - diff -Nru mate-utils-1.26.0/baobab/help/pt_BR/pt_BR.po mate-utils-1.26.1/baobab/help/pt_BR/pt_BR.po --- mate-utils-1.26.0/baobab/help/pt_BR/pt_BR.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/pt_BR/pt_BR.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,27 +1,28 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Aldo Oliveira , 2018 -# Marcelo Ghelman , 2018 -# Victor Gonçalves , 2018 -# Wolfgang Ulbrich , 2018 -# b36c7cf4cf669a51ae00d04c19629819, 2018 -# Italo Penaforte , 2018 -# Robert Antoni Buj i Gelonch , 2019 -# gustavo s, 2020 +# Robert Antoni Buj i Gelonch , 2021 +# Stefano Karapetsas , 2021 +# Marcelo Ghelman , 2021 +# Victor Gonçalves , 2021 +# Wolfgang Ulbrich , 2021 +# Italo Penaforte , 2021 +# b36c7cf4cf669a51ae00d04c19629819, 2021 +# gustavo s, 2021 +# Josué Teodoro Moreira , 2021 +# Luciano Luck, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: gustavo s, 2020\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mate/teams/13566/pt_BR/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Luciano Luck, 2022\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/mate/teams/13566/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -30,7 +31,6 @@ "Equipe de tradução no Transifex:\n" "Fabrizzio Alphonsus Soares https://www.transifex.com/accounts/profile/fabrizzio\n" "Alberto Federman Neto https://www.transifex.com/accounts/profile/albfneto\n" -"Aldo Oliveira https://www.transifex.com/user/profile/AldoBR/\n" "Appes https://www.transifex.com/accounts/profile/apps\n" "arm332 https://www.transifex.com/accounts/profile/arm332\n" "augusteiner https://www.transifex.com/accounts/profile/augusteiner\n" @@ -48,7 +48,10 @@ "Matheus Martins https://www.transifex.com/accounts/profile/Matheus_Martins\n" "Michele dos Santos da Silva https://www.transifex.com/accounts/profile/mchelem\n" "Thiago Cangussu https://www.transifex.com/accounts/profile/cangussu.thg\n" -"vitorgatti https://www.transifex.com/accounts/profile/vitorgatti" +"vitorgatti https://www.transifex.com/accounts/profile/vitorgatti\n" +"Ítalo Rangel Penaforte https://www.transifex.com/accounts/profile/italo.penaforte\n" +"George Salu da Silva https://www.transifex.com/user/profile/George_salu_da_silva/\n" +"Josué Teodoro Moreira https://www.transifex.com/user/profile/J0sueTM/" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -66,6 +69,7 @@ #: C/index.docbook:30 msgid "2015-2021 MATE Documentation Project" msgstr "" +"2015-2021 Projecto de Documentação do MATE" #. (itstool) path: articleinfo/copyright #: C/index.docbook:34 @@ -144,8 +148,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -506,8 +511,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ro/index.docbook mate-utils-1.26.1/baobab/help/ro/index.docbook --- mate-utils-1.26.0/baobab/help/ro/index.docbook 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ro/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introducere - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Utilizare - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferințe - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ro/legal.xml mate-utils-1.26.1/baobab/help/ro/legal.xml --- mate-utils-1.26.0/baobab/help/ro/legal.xml 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ro/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ro/ro.po mate-utils-1.26.1/baobab/help/ro/ro.po --- mate-utils-1.26.0/baobab/help/ro/ro.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ro/ro.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Daniel , 2018 +# Stefano Karapetsas , 2021 +# Daniel , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Daniel , 2018\n" -"Language-Team: Romanian (https://www.transifex.com/mate/teams/13566/ro/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Daniel , 2021\n" +"Language-Team: Romanian (https://app.transifex.com/mate/teams/13566/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -115,8 +115,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -477,8 +478,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ru/index.docbook mate-utils-1.26.1/baobab/help/ru/index.docbook --- mate-utils-1.26.0/baobab/help/ru/index.docbook 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ru/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,459 +0,0 @@ - - - - - - -]> - - -
- - - - Руководство пользователя анализатора использования дисков - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - 2006 Фабио Марцокка - - - Проект документирования MATE - - - Проект документирования GNOME - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Обратная связь - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - Анализатор использования дисков - - - - - - Введение - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Начало работы - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Использование - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Параметры - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Выберите устройства для сканирования - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Включить наблюдение за домашним каталогом - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ru/legal.xml mate-utils-1.26.1/baobab/help/ru/legal.xml --- mate-utils-1.26.0/baobab/help/ru/legal.xml 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ru/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Разрешается копировать, распространять и / или изменять этот документ в соответствии с условиями лицензии GNU Free Documentation License (GFDL), версии 1.1 или любой более поздней версии, опубликованной Фондом свободного программного обеспечения без каких-либо инвариантных разделов, без добавления текста в начале или в конце. Вы можете найти копию GFDL здесь ссылка или в файле COPYING-DOCS, распространяемом вместе с этим руководством. - Этот документ является частью документации MATE, распространяемой на условиях лицензии GFDL. Если вы хотите распространять этот документ отдельно от общей документации, вы должны приложить копию лицензии к документу, как написано в части 6 лицензии. - - Некоторые имена и марки используются компаниями для обозначения их продуктов и услуг и являются торговыми марками. Там, где эти имена присутствуют в документации и где участники проекта документирования MATE знают об этом, имена выделяются заглавными буквами или начальной заглавной буквой. - - ДОКУМЕНТ И ИЗМЕНЁННЫЕ ВЕРСИИ ДОКУМЕНТА ПРЕДОСТАВЛЯЮТСЯ ПРЕДОСТАВЛЯЮТСЯ ПО УСЛОВИЯМ ЛИЦЕНЗИИ БЕСПЛАТНОЙ ДОКУМЕНТАЦИИ GNU С ПОНИМАНИЕМ ЧТО: - - ДОКУМЕНТ РАСПРОСТРАНЯЕТСЯ «КАК ЕСТЬ», БЕЗ ВСЯКИХ ГАРАНТИЙ, ЯВНЫХ ИЛИ НЕЯВНЫХ, ВКЛЮЧАЯ, БЕЗ ОГРАНИЧЕНИЙ, ГАРАНТИИ ТОГО, ЧТО ДОКУМЕНТ ИЛИ ИЗМЕНЁННАЯ ВЕРСИЯ ДОКУМЕНТА СВОБОДНА ОТ ДЕФЕКТОВ, ПРИГОДНА К ПРОДАЖЕ, ПРИГОДНА К ИСПОЛЬЗОВАНИЮ В ОПРЕДЕЛЁННЫХ ЦЕЛЯХ ИЛИ НЕ НАРУШАЕТ ЗАКОНЫ. ВЕСЬ РИСК, КАСАЮЩИЙСЯ КАЧЕСТВА, ТОЧНОСТИ ИЛИ ПРАВИЛЬНОСТИ ДОКУМЕНТА ИЛИ ИЗМЕНЁННЫХ ВЕРСИЙ ДОКУМЕНТА, ЛЕЖИТ НА ВАС. ЕСЛИ ДОКУМЕНТ ИЛИ ИЗМЕНЁННАЯ ВЕРСИЯ ДОКУМЕНТА ИМЕЕТ НЕДОСТАТКИ, ВЫ (А НЕ АВТОР ДОКУМЕНТА ИЛИ ЕГО ПОМОЩНИК) БЕРЁТЕ НА СЕБЯ СТОИМОСТЬ ЛЮБОЙ НЕОБХОДИМОЙ ДОРАБОТКИ, КОРРЕКЦИИ ИЛИ ВОССТАНОВЛЕНИЯ. ЭТОТ ОТКАЗ ОТ ГАРАНТИЙ СОСТАВЛЯЕТ ВАЖНУЮ ЧАСТЬ ЛИЦЕНЗИИ. НИКАКОЕ ИСПОЛЬЗОВАНИЕ ДОКУМЕНТА ИЛИ ИЗМЕНЁННОЙ ВЕРСИИ ДОКУМЕНТА НЕ ДОПУСКАЕТСЯ БЕЗ ДАННОГО ПРЕДУПРЕЖДЕНИЯ И - - - НИ ПРИ КАКИХ ОБСТОЯТЕЛЬСТВАХ И НИ ПРИ КАКОМ ЗАКОННОМ СПОСОБЕ, НИ ПО КАКОМУ СОГЛАШЕНИЮ ИЛИ ДРУГОЙ ПРИЧИНЕ, АВТОР, СОЗДАТЕЛЬ, ПОМОЩНИКИ ИЛИ РАСПРОСТРАНИТЕЛИ ДОКУМЕНТА НЕ НЕСУТ ОТВЕТСТВЕННОСТЬ ЗА ПРЯМОЙ, КОСВЕННЫЙ, СПЕЦИАЛЬНЫЙ, СЛУЧАЙНЫЙ ИЛИ ПРЕДНАМЕРЕННЫЙ УЩЕРБ ЛЮБОГО СВОЙСТВА, ВКЛЮЧАЯ, БЕЗ ОГРАНИЧЕНИЯ, ПОТЕРЮ ЖЕЛАНИЯ, РАБОТОСПОСОБНОСТИ, КОМПЬЮТЕРНЫЕ СБОИ ИЛИ ПОЛОМКИ, ИЛИ ЛЮБОЙ ДРУГОЙ УЩЕРБ ИЛИ ПОТЕРИ, ВОЗНИКАЮЩИЕ ВСЛЕДСТВИЕ ИЛИ СВЯЗАННЫЕ С ИСПОЛЬЗОВАНИЕМ ДОКУМЕНТА ИЛИ ИЗМЕНЁННЫХ ВЕРСИЙ ДОКУМЕНТА, ДАЖЕ ЕСЛИ СТОРОНА БЫЛА УВЕДОМЛЕНА О ВОЗМОЖНОСТИ ТАКОГО УЩЕРБА. - - - diff -Nru mate-utils-1.26.0/baobab/help/ru/ru.po mate-utils-1.26.1/baobab/help/ru/ru.po --- mate-utils-1.26.0/baobab/help/ru/ru.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ru/ru.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,22 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Дмитрий Михирев, 2018 -# Aleksey Kabanov , 2018 -# AlexL , 2018 -# Wolfgang Ulbrich , 2018 -# Михаил Ильинский , 2018 -# Alex Putz, 2018 +# Stefano Karapetsas , 2021 +# Aleksey Kabanov , 2021 +# AlexL , 2021 +# Wolfgang Ulbrich , 2021 +# Михаил Ильинский , 2021 +# Alex Puts, 2021 +# Olesya Gerasimenko , 2021 +# Alexey Rodionov , 2021 +# Sergej A. , 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Alex Putz, 2018\n" -"Language-Team: Russian (https://www.transifex.com/mate/teams/13566/ru/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Sergej A. , 2022\n" +"Language-Team: Russian (https://app.transifex.com/mate/teams/13566/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -29,6 +31,7 @@ "Александр Сигачёв \n" "Александр Соколов\n" "Александр Хромин\n" +"Алексей Родионов \n" "Алексей Рочев \n" "Алексей Сорокин \n" "Андрей Иванков\n" @@ -68,11 +71,14 @@ "Disk Usage Analyzer is a graphical, menu-driven viewer that you can use to " "view and monitor your disk usage and folder structure." msgstr "" +"Анализатор использования дисков — это графическое средство просмотра, " +"которое можно использовать для просмотра и мониторинга использования вашего " +"диска и структуры папок." #. (itstool) path: articleinfo/copyright #: C/index.docbook:30 msgid "2015-2021 MATE Documentation Project" -msgstr "" +msgstr "2015-2021 Проект документирования MATE" #. (itstool) path: articleinfo/copyright #: C/index.docbook:34 @@ -97,6 +103,8 @@ "MATE Documentation Team MATE " "Desktop " msgstr "" +"Команда документирования MATE MATE" +" Desktop " #. (itstool) path: authorgroup/author #: C/index.docbook:62 @@ -105,6 +113,9 @@ "GNOME Documentation Project
" "thesaltydog@gmail.com
" msgstr "" +"Фабио Марцокка " +"Проект документирования GNOME
" +"thesaltydog@gmail.com
" #. (itstool) path: authorgroup/author #: C/index.docbook:71 @@ -112,6 +123,8 @@ "Fabio Marzocca " "
thesaltydog@gmail.com
" msgstr "" +"Фабио Марцокка " +"
thesaltydog@gmail.com
" #. (itstool) path: revdescription/para #: C/index.docbook:101 @@ -124,6 +137,8 @@ "Disk Usage Analyzer Manual 1.10 July " "2015 <_:revdescription-1/>" msgstr "" +"Руководство по «Анализатору использования дисков» " +"1.10 Июль 2015 <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:110 @@ -136,11 +151,15 @@ "Disk Usage Analyzer Manual 1.0 April " "2006 <_:revdescription-1/>" msgstr "" +"Руководство по «Анализатору использования дисков» 1.0" +" Апрель 2006 <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:118 msgid "This manual describes version 1.10 of Disk Usage Analyzer." msgstr "" +"В этом руководстве описывается версия 1.10 «Анализатора использования " +"дисков»." #. (itstool) path: legalnotice/title #: C/index.docbook:121 @@ -151,9 +170,14 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." -msgstr "" +"application or this manual, follow the directions in the MATE Feedback " +"Page." +msgstr "" +"Чтобы сообщить об ошибке или внести предложение относительно приложения " +"«Анализатор использования дисков» или этого руководства, следуйте " +"инструкциям на странице обратной связи MATE." #. (itstool) path: article/indexterm #: C/index.docbook:130 @@ -173,6 +197,11 @@ " Usage Analyzer
can easily scan either the whole filesystem " "tree, or a specific user-requested directory branch (local or remote)." msgstr "" +"Анализатор использования дисков — это графическое" +" приложение для анализа использования дискового пространства в любой среде " +"MATE. Анализатор использования дисков может легко" +" сканировать как всю файловую систему целиком, так и отдельные папки " +"(локальные или удалённые)." #. (itstool) path: sect1/para #: C/index.docbook:144 @@ -182,6 +211,11 @@ "Analyzer also provides a full graphical treemap window for " "each selected folder." msgstr "" +"Также приложение автоматически обнаруживает в режиме реального времени любые" +" изменения, внесённые в вашу домашнюю папку в отношении любого " +"смонтированного/размонтированного устройства. Анализатор " +"использования дисков также предоставляет полное графическое " +"отображение структуры выбранной папки в виде древовидной диаграммы." #. (itstool) path: sect1/title #: C/index.docbook:153 @@ -193,6 +227,8 @@ msgid "" "Disk Usage Analyzer can be started in three ways:" msgstr "" +"«Анализатор использования дисков» может быть " +"запущен тремя способами:" #. (itstool) path: listitem/para #: C/index.docbook:157 @@ -200,16 +236,18 @@ "from MATE menu " "ApplicationsAccessories;" msgstr "" +"из меню MATE " +"ПриложенияСистемные;" #. (itstool) path: listitem/para #: C/index.docbook:159 msgid "from a terminal window;" -msgstr "" +msgstr "из окна терминала;" #. (itstool) path: listitem/para #: C/index.docbook:161 msgid "from Caja \"Open with...\" ;" -msgstr "" +msgstr "из Caja «Открыть в другой программе...» ;" #. (itstool) path: sect1/para #: C/index.docbook:166 @@ -217,6 +255,8 @@ "If you want to start Disk Usage Analyzer from a " "terminal window, just type:" msgstr "" +"Если вы хотите запустить Анализатор использования " +"дисков из окна терминала, просто введите:" #. (itstool) path: sect1/para #: C/index.docbook:168 @@ -225,6 +265,8 @@ "<full_path_to_a_directory>, then press " "Return." msgstr "" +"mate-disk-usage-analyzer <полный_путь_к_каталогу>, " +"затем нажмите Return." #. (itstool) path: sect1/para #: C/index.docbook:170 @@ -232,6 +274,9 @@ "If launched from MATE menu, Disk Usage Analyzer " "starts and remains in a stand-by state, waiting for user action." msgstr "" +"При запуске из меню MATE Анализатор использования " +"диска запускается и остается в состоянии ожидания действий " +"пользователя." #. (itstool) path: sect1/para #: C/index.docbook:171 @@ -239,11 +284,13 @@ "When you start Disk Usage Analyzer from the MATE " "Menu, the following window is displayed." msgstr "" +"Когда вы запускаете Анализатор использования " +"дисков из меню MATE, появляется следующее окно." #. (itstool) path: figure/title #: C/index.docbook:175 msgid "Disk Usage Analyzer Window" -msgstr "" +msgstr "Окно «Анализатора использования дисков»" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -256,6 +303,8 @@ "external ref='figures/baobab_window.png' " "md5='381c84c892310cbc49afc0d5e90ad555'" msgstr "" +"external ref='figures/baobab_window.png' " +"md5='381c84c892310cbc49afc0d5e90ad555'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:177 @@ -265,31 +314,35 @@ "Analyzer main window. Contains menubar, display area, scrollbars, and " "statusbar.
" msgstr "" +" Показано главное окно " +"«Анализатора использования дисков», содержащее строку меню, область " +"просмотра, полосы прокрутки и строку состояния. " #. (itstool) path: sect1/para #: C/index.docbook:189 msgid "The user can then:" -msgstr "" +msgstr "После этого пользователь может:" #. (itstool) path: listitem/para #: C/index.docbook:191 msgid "start a full filesystem scan;" -msgstr "" +msgstr "запустить полное сканирование системы;" #. (itstool) path: listitem/para #: C/index.docbook:193 msgid "select a specific local directory branch to scan" -msgstr "" +msgstr "выбрать конкретную ветку локального каталога для сканирования" #. (itstool) path: listitem/para #: C/index.docbook:195 msgid "select a remote server and folder to scan" -msgstr "" +msgstr "выбрать удаленный сервер и папку для сканирования" #. (itstool) path: listitem/para #: C/index.docbook:197 msgid "set preferences" -msgstr "" +msgstr "установить предпочтения" #. (itstool) path: sect1/title #: C/index.docbook:207 @@ -299,7 +352,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:210 msgid "Full filesystem scan" -msgstr "" +msgstr "Сканирование файловой системы" #. (itstool) path: sect2/para #: C/index.docbook:211 @@ -309,6 +362,10 @@ "Filesystem from the menu, or press on the " "Scan Filesystem toolbar button." msgstr "" +"Чтобы запустить полное сканирование файловой системы, выберите в меню " +"АнализаторСканировать файловую " +"систему, или нажмите кнопку " +"Сканировать файловую систему на панели инструментов." #. (itstool) path: sect2/para #: C/index.docbook:214 @@ -316,11 +373,13 @@ "When the scanning process ends up, you will get the full tree of your " "filesystem, like the one in the next Figure." msgstr "" +"Когда процесс сканирования завершится, вы получите полную информацию о вашей" +" файловой системе в графическом виде, как показано на следующем рисунке." #. (itstool) path: figure/title #: C/index.docbook:219 msgid "Disk Usage Analyzer Full filesystem scan" -msgstr "" +msgstr "Сканирование файловой системы в «Анализаторе использования дисков»" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -333,6 +392,8 @@ "external ref='figures/baobab_fullscan.png' " "md5='c36d630b13ddb1e1712125dc34262229'" msgstr "" +"external ref='figures/baobab_fullscan.png' " +"md5='c36d630b13ddb1e1712125dc34262229'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:221 @@ -342,6 +403,11 @@ "Analyzer full filesystem scan window. Contains menubar, display area, " "scrollbars, and statusbar. " msgstr "" +" Показано окно " +"сканирования файловой системы «Анализатором использования дисков», " +"содержащее строку меню, область просмотра, полосы прокрутки и строку " +"состояния. " #. (itstool) path: note/para #: C/index.docbook:233 @@ -351,6 +417,11 @@ "thread starts scanning the filesystem. If any large partition is mounted on " "the filesystem, that will be scanned too." msgstr "" +"Когда вы запускаете полное сканирование файловой системы, по мере " +"продвижения сканирования, в окне Анализатора использования " +"дисков начнет рисоваться дерево файловой структуры. Если " +"внутри файловой системы смонтирован какой-либо большой раздел, он также " +"будет просканирован." #. (itstool) path: sect2/para #: C/index.docbook:238 @@ -362,6 +433,13 @@ "ViewAllocated " "Space ." msgstr "" +"Анализатор использования диска показывает размеры" +" графических элементов в дереве каталогов с учётом использованного дискового" +" пространства. Это означает, что видимые элементы отражают размер " +"использованного места на диске, а не размер каталога. Если вы хотите видеть " +"размер файла, то снимите отметку с пункта " +"ВидЗанятое " +"место." #. (itstool) path: warning/para #: C/index.docbook:243 @@ -370,6 +448,10 @@ " 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." msgstr "" +"Анализатор использования диска не будет включать " +"в анализ каталог /proc, а также любой объём файла, не связанный с «обычным» " +"файлом, поэтому символические ссылки, блоки символов, блоки устройств не " +"будут учитываться при расчёте размера каталога." #. (itstool) path: sect2/para #: C/index.docbook:247 @@ -379,11 +461,14 @@ "counted in the total, but highlighted in the right-hand column of the " "window." msgstr "" +"Жёсткие ссылки управляются по-другому: первая жёсткая ссылка считается " +"обычным файлом, а последующие ссылки на один и то же inode устройства в " +"сумме не учитываются, а выделяются в правой колонке окна." #. (itstool) path: sect2/title #: C/index.docbook:254 msgid "Single folder scan" -msgstr "" +msgstr "Сканирование папки" #. (itstool) path: sect2/para #: C/index.docbook:256 @@ -393,11 +478,15 @@ "Folder... from the menu, or press on the " "Scan Folder toolbar button." msgstr "" +"Чтобы запустить сканирование определённой папки, выберите в меню " +"АнализаторСканировать " +"папку..., или нажмите кнопку " +"Сканировать папку на панели инструментов." #. (itstool) path: sect2/title #: C/index.docbook:263 msgid "Remote scan" -msgstr "" +msgstr "Сканирование удалённой папки" #. (itstool) path: sect2/para #: C/index.docbook:265 @@ -409,11 +498,18 @@ "following dialog box. Disk Usage Analyzer can " "connect to a server through ssh, ftp, smb, http and https." msgstr "" +"Если необходимо просканировать удалённую папку, просто щёлкните значок " +"Сканировать удалённую папку на панели инструментов " +"или выберите в меню " +"АнализаторСканировать удалённую " +"папку, после этого будет открыто показанное ниже " +"диалоговое окно. Анализатор использования дисков " +"может подключиться к серверу посредством ssh, ftp, smb, http и https." #. (itstool) path: figure/title #: C/index.docbook:272 msgid "Disk Usage Analyzer Remote folder scan" -msgstr "" +msgstr "Сканирование удалённой папки «Анализатором использования дисков»" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -426,6 +522,8 @@ "external ref='figures/baobab_remote.png' " "md5='b8d834a11cf8f227e1aefdee167a1a67'" msgstr "" +"external ref='figures/baobab_remote.png' " +"md5='b8d834a11cf8f227e1aefdee167a1a67'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:274 @@ -434,6 +532,10 @@ "format=\"PNG\"/> Shows Disk Usage " "Analyzer remote folder dialog window. " msgstr "" +" Показано диалоговое " +"окно для сканирования удаленной папки «Анализатором использования дисков». " +" " #. (itstool) path: sect1/title #: C/index.docbook:293 @@ -447,11 +549,14 @@ "preferences, choose " "EditPreferences." msgstr "" +"Чтобы изменить настройки приложения Анализатор использования " +"дисков, выберите " +"ПравкаПараметры." #. (itstool) path: figure/title #: C/index.docbook:300 msgid "Disk Usage Analyzer Preferences Window" -msgstr "" +msgstr "Окно параметров «Анализатора использования дисков»" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -464,6 +569,8 @@ "external ref='figures/baobab_prefs.png' " "md5='64e7c2ce647708579f9cc749c63aeca5'" msgstr "" +"external ref='figures/baobab_prefs.png' " +"md5='64e7c2ce647708579f9cc749c63aeca5'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:302 @@ -472,6 +579,9 @@ "format=\"PNG\"/> Preferences window " " " msgstr "" +" Окно параметров " +" " #. (itstool) path: sect2/title #: C/index.docbook:315 @@ -485,16 +595,19 @@ "are listed. Click on the checkbox to include/exclude the partition into the " "filesystem scanning operations." msgstr "" +"В центральной части окна параметров перечислены все обнаруженные " +"подключённые устройства. Установите флажок, чтобы включить/исключить раздел " +"из операций сканирования файловой системы." #. (itstool) path: note/para #: C/index.docbook:319 msgid "The device mounted on \"/\" cannot be excluded from the scan." -msgstr "" +msgstr "Устройство, подключенное к «/», нельзя исключить из проверки." #. (itstool) path: sect2/title #: C/index.docbook:323 msgid "Enable monitoring of home" -msgstr "Включить наблюдение за домашним каталогом" +msgstr "Следить за изменениями в домашней папке" #. (itstool) path: sect2/para #: C/index.docbook:324 @@ -503,24 +616,32 @@ "will constantly monitor any external changes to home directory and warn the " "user if a file is added/removed." msgstr "" +"Если этот параметр отмечен, Анализатор использования " +"дисков будет постоянно отслеживать любые изменения в домашней " +"папке и предупреждать пользователя о добавлении/удалении файла." #. (itstool) path: sect1/title #: C/index.docbook:332 msgid "Treemaps" -msgstr "" +msgstr "Древовидные диаграмы" #. (itstool) path: sect1/para #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." -msgstr "" +" in the '90s. Read his vision on " +"treemaps." +msgstr "" +"Концепция Древовидной диаграммы была разработана Беном " +"Шнайдерманом в 90-х годах. Прочтите его видение " +"древовидных диаграмм." #. (itstool) path: figure/title #: C/index.docbook:339 msgid "Disk Usage Analyzer Treemap Window" -msgstr "" +msgstr "Окно древовидной диаграммы «Анализатора использования дисков»" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -533,6 +654,8 @@ "external ref='figures/baobab_treemaps.png' " "md5='b553b49db25f9d6b98efcc394a5d3689'" msgstr "" +"external ref='figures/baobab_treemaps.png' " +"md5='b553b49db25f9d6b98efcc394a5d3689'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:341 @@ -541,6 +664,9 @@ "format=\"PNG\"/> Treemap's theory. Shows" " 2 treemap diagrams " msgstr "" +" Теория древовидной " +"карты. Показано 2 вида древовидных диаграмм " #. (itstool) path: sect1/para #: C/index.docbook:354 @@ -550,6 +676,11 @@ "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." msgstr "" +"На рисунке показан пример теории древовидной карты. Каждый узел (как " +"показано на древовидной диаграмме) имеет имя (букву) и связанный с ним " +"размер (число). Размер листьев может представлять, например, размер " +"отдельных файлов, размер нелистовых узлов представляет собой сумму размеров " +"его дочерних элементов." #. (itstool) path: sect1/para #: C/index.docbook:359 @@ -563,6 +694,14 @@ "in the treemap, as a result of its construction. Color and annotation can be" " used to give extra information about the leaves." msgstr "" +"Древовидная диаграмма строится путем рекурсивного разбиения исходного " +"прямоугольника. Размер каждого подпрямоугольника соответствует размеру узла." +" Направление деления меняется в зависимости от уровня: сначала по " +"горизонтали, затем по вертикали и так далее. В результате исходный " +"прямоугольник разбивается на более мелкие прямоугольники, так что размер " +"каждого прямоугольника отражает размер листа. Структура дерева также " +"отражается в древовидной диаграмме в процессе её построения. Для получения " +"дополнительной информации о листьях можно использовать цвет и пояснения." #. (itstool) path: note/para #: C/index.docbook:368 @@ -570,11 +709,13 @@ "Treemaps are very effective when size is the most important feature to be " "displayed." msgstr "" +"Древовидные диаграммы очень эффективны, когда размер является наиболее " +"важной характеристикой для графического представления." #. (itstool) path: sect1/title #: C/index.docbook:374 msgid "Ringschart" -msgstr "" +msgstr "Кольцевая диаграмма" #. (itstool) path: sect1/para #: C/index.docbook:376 @@ -583,11 +724,17 @@ "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:" msgstr "" +"Кольцевая диаграмма — это графическое представление " +"использования дискового пространства конкретной папкой. При запуске " +"приложения оно получает информацию об использовании файловой системы, как " +"это видно на следующем рисунке:" #. (itstool) path: figure/title #: C/index.docbook:383 msgid "Disk Usage Analyzer showing a ringschart with the file system usage" msgstr "" +"«Анализатор использования дисков», отображающий кольцевую диаграмму " +"использования файловой системы" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -600,6 +747,8 @@ "external ref='figures/baobab_ringschart1.png' " "md5='84b2e52d360fbda7311ce59a9532be7a'" msgstr "" +"external ref='figures/baobab_ringschart1.png' " +"md5='84b2e52d360fbda7311ce59a9532be7a'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:385 @@ -609,6 +758,10 @@ "application, it is showed the file system usage. Graphical representation on" " the right. " msgstr "" +" После запуска " +"приложения будет показано использование файловой системы. Графическое " +"представление будет отображено справа. " #. (itstool) path: sect1/para #: C/index.docbook:398 @@ -621,11 +774,20 @@ "it before it has been completed, only a partial representation is done based" " on the directories whose usage was computed." msgstr "" +"Когда вы начинаете сканировать папку, в левой части окна формируется дерево " +"подпапок. Каждая строка содержит информацию о названии, количестве " +"занимаемого места (процент и размер в КБ, МБ или ГБ) и количестве элементов " +"(файлов и каталогов). По завершению этого процесса, в правой части экрана " +"будет нарисована Кольцевая диаграмма. Если вы " +"остановите сканирование до его завершения, будет выполнено только частичное " +"представление на основе уже проверенных каталогов." #. (itstool) path: figure/title #: C/index.docbook:411 msgid "Disk Usage Analyzer showing a ringschart with the usage of a folder" msgstr "" +"«Анализатор использования дисков», показывающий кольцевую диаграмму " +"использования папки" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -638,6 +800,8 @@ "external ref='figures/baobab_ringschart2.png' " "md5='d938ef7e9299de5b304c7654bf14e364'" msgstr "" +"external ref='figures/baobab_ringschart2.png' " +"md5='d938ef7e9299de5b304c7654bf14e364'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:413 @@ -646,6 +810,9 @@ "format=\"PNG\"/> After scanning a " "folder. " msgstr "" +" После завершения " +"сканирования папки. " #. (itstool) path: sect1/para #: C/index.docbook:425 @@ -669,6 +836,24 @@ "indicating their names. It's possible that not all of the subfolders' names " "are displayed, to avoid overlappings." msgstr "" +"Кольцевая диаграмма состоит из набора вложенных колец " +"вокруг центрального круга. Этот центральный круг символизирует корневую " +"папку (то есть папку, которую пользователь выбрал для сканирования). Каждое " +"кольцо представляет собой уровень в partial-tree, т. е. подпапки корневой " +"папки будут представлены в первом кольце, а более глубокие уровни в " +"структуре соответствуют внешним кольцам на диаграмме. Каждая вложенная папка" +" представлена ​​сектором кольца, угол которого пропорционален размеру " +"содержимого папки и окрашен другим цветом для облегчения визуализации. Может" +" быть отображено до пяти уровней; в случае, если папка на этом последнем " +"пятом уровне содержит ещё подпапки, то на эту ситуацию будет указывать " +"наличие чёрной кривой рядом с краем кольцевого сектора этой папки. Если в " +"качестве корня partial-tree выбрана папка без дополнительных подпапок, будет" +" нарисован только внутренний круг. При наведении указателя мыши на одну из " +"папок на диаграмме она будет выделена и появится всплывающая подсказка с " +"информацией о её названии и размере. Если имеются вложенные папки, то " +"появятся маленькие серые всплывающие подсказки с указанием их названий. " +"Возможно отображение не всех названий вложенных папок, чтобы избежать " +"дублирования." #. (itstool) path: sect1/para #: C/index.docbook:446 @@ -683,6 +868,16 @@ "ringschart frame) you'll get the opposite behavior, " "going back one step in the hierarchy." msgstr "" +"Вы можете перемещаться вверх и вниз по строкам в списке (необязательно " +"расширяя их открытием вложенных папок), при этом, изменится графическое " +"представление структуры диска, за счёт использования выбранной папки в " +"качестве корня частично отображаемого дерева. Перемещаться между папками " +"можно также в самой кольцевой диаграмме. Если вы " +"щёлкнете левой кнопкой мыши по папке, то продвинетесь глубже, установив в " +"качестве корня изображения эту папку. Если вы нажмёте на среднюю кнопку мыши" +" (в независимости от места нахождения курсора внутри круговой " +"диаграммы), то получите противоположное действие, переместитесь " +"на ступень вверх в представленной структуре." #. (itstool) path: sect1/para #: C/index.docbook:457 @@ -694,6 +889,11 @@ "representation, files are taken into account to calculate the amount of " "space occupied by folders." msgstr "" +"Процентное значение, указанное для данной папки, прямо пропорционально " +"отношению её собственного размера и размера родительской папки. Легко " +"понять, что размер папки равен или меньше размера её родительской папки. " +"Хотя в этом графическом представлении показаны только каталоги, файлы " +"учитываются при расчёте объема пространства, занимаемого папками." #. (itstool) path: para/ulink #: C/legal.xml:9 @@ -768,8 +968,8 @@ "ИЗМЕНЁННЫХ ВЕРСИЙ ДОКУМЕНТА, ЛЕЖИТ НА ВАС. ЕСЛИ ДОКУМЕНТ ИЛИ ИЗМЕНЁННАЯ " "ВЕРСИЯ ДОКУМЕНТА ИМЕЕТ НЕДОСТАТКИ, ВЫ (А НЕ АВТОР ДОКУМЕНТА ИЛИ ЕГО " "ПОМОЩНИК) БЕРЁТЕ НА СЕБЯ СТОИМОСТЬ ЛЮБОЙ НЕОБХОДИМОЙ ДОРАБОТКИ, КОРРЕКЦИИ " -"ИЛИ ВОССТАНОВЛЕНИЯ. ЭТОТ ОТКАЗ ОТ ГАРАНТИЙ СОСТАВЛЯЕТ ВАЖНУЮ ЧАСТЬ ЛИЦЕНЗИИ." -" НИКАКОЕ ИСПОЛЬЗОВАНИЕ ДОКУМЕНТА ИЛИ ИЗМЕНЁННОЙ ВЕРСИИ ДОКУМЕНТА НЕ " +"ИЛИ ВОССТАНОВЛЕНИЯ. ЭТОТ ОТКАЗ ОТ ГАРАНТИЙ СОСТАВЛЯЕТ ВАЖНУЮ ЧАСТЬ " +"ЛИЦЕНЗИИ.НИКАКОЕ ИСПОЛЬЗОВАНИЕ ДОКУМЕНТА ИЛИ ИЗМЕНЁННОЙ ВЕРСИИ ДОКУМЕНТА НЕ " "ДОПУСКАЕТСЯ БЕЗ ДАННОГО ПРЕДУПРЕЖДЕНИЯ И" #. (itstool) path: listitem/para @@ -790,7 +990,7 @@ "СОГЛАШЕНИЮ ИЛИ ДРУГОЙ ПРИЧИНЕ, АВТОР, СОЗДАТЕЛЬ, ПОМОЩНИКИ ИЛИ " "РАСПРОСТРАНИТЕЛИ ДОКУМЕНТА НЕ НЕСУТ ОТВЕТСТВЕННОСТЬ ЗА ПРЯМОЙ, КОСВЕННЫЙ, " "СПЕЦИАЛЬНЫЙ, СЛУЧАЙНЫЙ ИЛИ ПРЕДНАМЕРЕННЫЙ УЩЕРБ ЛЮБОГО СВОЙСТВА, ВКЛЮЧАЯ, " -"БЕЗ ОГРАНИЧЕНИЯ, ПОТЕРЮ ЖЕЛАНИЯ, РАБОТОСПОСОБНОСТИ, КОМПЬЮТЕРНЫЕ СБОИ ИЛИ " +"БЕЗ ОГРАНИЧЕНИЯ, ПОТЕРЮ РЕПУТАЦИИ, РАБОТОСПОСОБНОСТИ, КОМПЬЮТЕРНЫЕ СБОИ ИЛИ " "ПОЛОМКИ, ИЛИ ЛЮБОЙ ДРУГОЙ УЩЕРБ ИЛИ ПОТЕРИ, ВОЗНИКАЮЩИЕ ВСЛЕДСТВИЕ ИЛИ " "СВЯЗАННЫЕ С ИСПОЛЬЗОВАНИЕМ ДОКУМЕНТА ИЛИ ИЗМЕНЁННЫХ ВЕРСИЙ ДОКУМЕНТА, ДАЖЕ " "ЕСЛИ СТОРОНА БЫЛА УВЕДОМЛЕНА О ВОЗМОЖНОСТИ ТАКОГО УЩЕРБА." @@ -802,6 +1002,5 @@ "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" -"ДОКУМЕНТ И ИЗМЕНЁННЫЕ ВЕРСИИ ДОКУМЕНТА ПРЕДОСТАВЛЯЮТСЯ ПРЕДОСТАВЛЯЮТСЯ ПО " -"УСЛОВИЯМ ЛИЦЕНЗИИ БЕСПЛАТНОЙ ДОКУМЕНТАЦИИ GNU С ПОНИМАНИЕМ ЧТО: " -"<_:orderedlist-1/>" +"ДОКУМЕНТ И ИЗМЕНЁННЫЕ ВЕРСИИ ДОКУМЕНТА ПРЕДОСТАВЛЯЮТСЯ ПО УСЛОВИЯМ ЛИЦЕНЗИИ " +"БЕСПЛАТНОЙ ДОКУМЕНТАЦИИ GNU С ПОНИМАНИЕМ, ЧТО: <_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/baobab/help/si/index.docbook mate-utils-1.26.1/baobab/help/si/index.docbook --- mate-utils-1.26.0/baobab/help/si/index.docbook 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/si/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - භාවිතය - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - අභිප්‍රේත - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/si/legal.xml mate-utils-1.26.1/baobab/help/si/legal.xml --- mate-utils-1.26.0/baobab/help/si/legal.xml 2021-08-05 19:46:24.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/si/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/si/si.po mate-utils-1.26.1/baobab/help/si/si.po --- mate-utils-1.26.0/baobab/help/si/si.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/si/si.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Sinhala (https://www.transifex.com/mate/teams/13566/si/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Sinhala (https://app.transifex.com/mate/teams/13566/si/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/sk/index.docbook mate-utils-1.26.1/baobab/help/sk/index.docbook --- mate-utils-1.26.0/baobab/help/sk/index.docbook 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Dokumentačný projekt - - - GNOME Dokumentačný projekt - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Reakcia - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Úvod - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Začíname - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Využitie - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Nastavenia - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/sk/legal.xml mate-utils-1.26.1/baobab/help/sk/legal.xml --- mate-utils-1.26.0/baobab/help/sk/legal.xml 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Je povolené kopírovať, šíriť a upravovať tento dokument pod podmienkami GNU Free Documentation License(GFDL), verzie 1.1 alebo akýchkoľvek ďaľších verzí poublikovaných Free Softvare Foundation s Nemennými sekciami, bez vrchných a bez spodných textov. Kópiu GFDL môžete nájsť na na odkaz alebo v súbore COPYING-DOCS ktorý je distribuovaný spolu s týmto manuálom. - Tento manuál je časť s kolekcie MATE manuálov ktoré sú distribuované pod GFDL. Ak chcete distribuovať tento manuál bez celej kolekcie, môžete to spraviť ak ku nemu pridáte kópiu licencie, ako je to vysvetlené v sekcií 6 v licencí. - - Veľa z mien používaných spoločnosťami sú ich ochranné známky. V MATE dokumentácií sa používajú mnohé ochranné známky a členovia MATE Dokumentačného projektu ich preto odlišujú začiatočnými písmenami. - - DOKUMENT A ZMENENÉ VERZIE TOHTO DOKUMENTU SA POSKYTUJÚ ZA ĎAĽŠÍCH PODMIENOK GNU FREE DOCUMENTATION LICENSE S POCHOPENÍM TOHTO: - - DOKUMNET SA POSKYTUJE "TAK AKO JE", BEZ ZÁRUKY AKÉHOKOĽVEK DRUHU, ČI UŽ VÝSLOVNÉHO, VYPLÝVAJÚCEHO, A BEZ ZÁRUKY ŽE TENTO DOKUMENT JE BEZ AKÝCHKOĽVEK CHÝB, ALEBO VHODNÝ PRE KONKRÉTNY ÚČEL ALEBO OPRÁVNENIE. VŠETKA ZODPOVEDNOSŤ ZA KVALITU, PRESNOSŤ A ÚČINNOSŤ DOKUMENTU JE NA VÁS. AK SA DOKUMENT ALEBO JEHO MODIFIKÁCIA UKÁŽE PREUKÁZATEĽNE VADNÁ, MÔŽETE(ALE NIE AK STE POČIATOČNÝ AUTOR, AUTOR ALEBO AKÝKOĽVEK PRISPIEVATEĽ) PREVZIAŤ NÁKLADY NA UDRŽIAVANIE, OPRAVOVANIE A OPRAVU. TOTO VYHLÁSENIE SA POKLADÁ ZA NEODDELITELNÚ SÚČASŤ LICENCIE. NA POUŽÍVANIE DOKUMENTOV ALEBO ICH ZMENENÝCH VERZÍ SA VZŤAHUJE TÁTO LICENCIA OKREM TOHTO VYLÚČENIA ZODPOVEDNOSTI; A - - - V ŽIADNOM PRÍPADE A ZA ŽIADNYCH PRÁVNYCH TEÓRIÍ, ČI ÚMYSELNÉ UBLÍŽENIE (AJ Z NEDBANLIVOSTI), ZMLUVOU, ALEBO INAK SA AUTOR, POČIATOČNÝ SPISOVATEĽ, VŠETCI PRISPIEVATELIA, DISTRIBÚTOR DOKUMENTU ALEBO JEHO MODIFIKOVANEJ VERZIE, ALEBO DODÁVATEĽ AKEJKOĽVEK STRANY, NEZODPOVEDÁ ŽIADNEJ OSOBE ZA AKÉKOĽVEK PRIAME, NEPRIAME, ZVLÁŠTNE, NÁHODNÉ, ALEBO VYPLÝVAJÚCE ŠKODY AKÉHOKOĽVEK CHARAKTERU, AKO OBMEDZENIA, STRATA DOBRÉHO MENA, PRERUŠENIE PRÁCE, ZLYHANIE POČÍTAČA ČI PORUCHY, ALEBO AKÉKOĽVEK INÉ ŠKODY A STRATY KTORÉ VZNIKNÚ, ALEBO SA BUDÚ VZŤAHOVAŤ NA POUŽÍVANIE TOHOTO DOKUMENTU ČI ZMENENÝCH VERZIÍ TOHTO DOKUMENTU AJ KEĎ STRANA BOLA INFORMOVANÁ O MOŽNOSTI TAKÝCHTO ŠKÔD. - - - diff -Nru mate-utils-1.26.0/baobab/help/sk/sk.po mate-utils-1.26.1/baobab/help/sk/sk.po --- mate-utils-1.26.0/baobab/help/sk/sk.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sk/sk.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Dušan Kazik , 2018 -# Stefano Karapetsas , 2018 -# Vendelín Slezák , 2018 -# Ján Ďanovský , 2020 +# Ján Ďanovský , 2021 +# Dušan Kazik , 2021 +# Stefano Karapetsas , 2021 +# Vendelín Slezák , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Ján Ďanovský , 2020\n" -"Language-Team: Slovak (https://www.transifex.com/mate/teams/13566/sk/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Vendelín Slezák , 2021\n" +"Language-Team: Slovak (https://app.transifex.com/mate/teams/13566/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -122,8 +122,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -484,8 +485,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/sl/index.docbook mate-utils-1.26.1/baobab/help/sl/index.docbook --- mate-utils-1.26.0/baobab/help/sl/index.docbook 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sl/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Projektna dokumentacija - - - GNOME Projektna dokumentacija - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Odziv - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Uvod - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Uporaba - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Možnosti - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/sl/legal.xml mate-utils-1.26.1/baobab/help/sl/legal.xml --- mate-utils-1.26.0/baobab/help/sl/legal.xml 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sl/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/sl/sl.po mate-utils-1.26.1/baobab/help/sl/sl.po --- mate-utils-1.26.0/baobab/help/sl/sl.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sl/sl.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,18 +1,18 @@ # # Translators: -# Stefano Karapetsas , 2018 -# jetomit , 2018 -# Damir Mevkić , 2019 -# Helena S , 2020 -# Arnold Marko , 2020 +# Stefano Karapetsas , 2021 +# Damir Mevkić 52K , 2021 +# Helena S , 2021 +# jetomit , 2021 +# Arnold Marko , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Arnold Marko , 2020\n" -"Language-Team: Slovenian (https://www.transifex.com/mate/teams/13566/sl/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Arnold Marko , 2021\n" +"Language-Team: Slovenian (https://app.transifex.com/mate/teams/13566/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -50,13 +50,13 @@ #. (itstool) path: revdescription/para #: C/index.docbook:47 C/index.docbook:103 msgid "MATE Documentation Project" -msgstr "MATE Projektna dokumentacija" +msgstr "MATE projekt dokumentacije" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:50 C/index.docbook:113 msgid "GNOME Documentation Project" -msgstr "GNOME Projektna dokumentacija" +msgstr "GNOME Projekt dokumentacije" #. (itstool) path: authorgroup/author #: C/index.docbook:56 @@ -118,8 +118,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -480,8 +481,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/sq/index.docbook mate-utils-1.26.1/baobab/help/sq/index.docbook --- mate-utils-1.26.0/baobab/help/sq/index.docbook 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sq/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - Dokumentimi Projektit MATE - - - Dokumentimi Projektit GNOME - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Sugjerime - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - paraqitje - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Përdorimi - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Parapëlqimet - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/sq/legal.xml mate-utils-1.26.1/baobab/help/sq/legal.xml --- mate-utils-1.26.0/baobab/help/sq/legal.xml 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sq/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,70 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - Ky manual është pjesë e një koleksioni të manualeve të MATE të shpërndara nën GFDL. Nëse dëshironi ta shpërndani këtë manual veçmas nga koleksioni, mund ta bëni duke shtuar një kopje të licencës në manual, siç përshkruhet në seksionin 6 të licencës. - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/sq/sq.po mate-utils-1.26.1/baobab/help/sq/sq.po --- mate-utils-1.26.0/baobab/help/sq/sq.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sq/sq.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Alban , 2018 -# Indrit Bashkimi , 2018 +# Stefano Karapetsas , 2021 +# Alban , 2021 # Ardit Dani , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" "Last-Translator: Ardit Dani , 2021\n" -"Language-Team: Albanian (https://www.transifex.com/mate/teams/13566/sq/)\n" +"Language-Team: Albanian (https://app.transifex.com/mate/teams/13566/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,6 +21,7 @@ msgctxt "_" msgid "translator-credits" msgstr "" +"Ardit Dani \n" "Elian Myftiu \n" "Indrit Bashkimi \n" "Laurent Dhima " @@ -52,7 +52,7 @@ #. (itstool) path: revdescription/para #: C/index.docbook:47 C/index.docbook:103 msgid "MATE Documentation Project" -msgstr "Dokumentimi Projektit MATE" +msgstr "Dokumentacion Projekti MATE" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -120,8 +120,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -407,7 +408,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:293 msgid "Preferences" -msgstr "Parapëlqimet" +msgstr "Preferencë" #. (itstool) path: sect1/para #: C/index.docbook:295 @@ -482,8 +483,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/sr/index.docbook mate-utils-1.26.1/baobab/help/sr/index.docbook --- mate-utils-1.26.0/baobab/help/sr/index.docbook 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,287 +0,0 @@ - - - - - - -]> - - -
- - - - Упутство за Испитивача искоришћености диска - - - Испитивач искоришћености диска је графички, изборником вођен прегледник који можете да користите да видите и пратите искоришћеност вашег диска и структуру фасцикли. - - - 2015-2021 Пројекат Мејтове документације - 2006 Фабио Марцока - - - Пројекат Мејтове документације - - - Пројекат Гномове документације - - - - - - Тим Мејтове документације Мејтова радна површ - Фабио Марцока Пројекат Гномове документације
thesaltydog@gmail.com
- - Фабио Марцока
thesaltydog@gmail.com
- - -
- - - - - - Упутство Испитивача искоришћености диска 1.10 Јул 2015 - Волфганг Улбрих - Пројекат Мејтове документације - - Упутство Испитивача искоришћености диска 1.0 Април 2015 - Емануеле Баси ebassi@gmail.com - Пројекат Гномове документације - - - - Ово упутство описује издање 1.10 Испитивача искоришћености диска. - - - Примедбе - Да бисте пријавили грешку или дали предлог у вези програма Испитивача искоришћености диска или овог упутства, пратите смернице на Мејтовој страници за примедбе. - - -
- - Испитивач искоришћености диска - - - - - - Увод - - Испитивач искоришћености диска је графички, изборницима управљан програм за испитивање искоришћености диска у Мејтовом окружењу. Испитивач искоришћености диска може лако да прегледа читаво стабло система датотека, или одређену грану директоријума коју одреди корисник (месну или удаљену). - Такође сам открива у стварном времену све промене учињене у вашој личној фасцикли као и све прикачене/откачене уређаје. Испитивач искоришћености диска такође обезбеђује прозор пуне графичке мапе стабла за сваку изабрану фасциклу. - - - - - - Први кораци - - Испитивач искоришћености диска може бити покренут на три начина: - - из Мејтовог изборника „ПрограмиСистемске алатке“; - - из прозора терминала; - - из Цаје „Отвори програмом...“ ; - - - - -Ако желите да покренете Испитивач искоришћености диска из прозора терминала, упишите: - -mate-disk-usage-analyzer <puna_putanja_do_direktorijuma>, затим притисните Унеси. - - Ако је покренут из Мејтовог изборника, „Испитивач искоришћености диска“ се покреће и остаје у стању спремног, чекајући на корисникову радњу. - Када покренете „Испитивач искоришћености диска“ из Мејтовог изборника, бива приказан следећи прозор. - - -
- Прозор Испитивача искоришћености диска - - Приказује главни прозор Испитивача искоришћености диска. Садржи траку изборника, област за приказ, клизаче и траку стања. - -
- - -Корисник затим може: - - да покрене преглед читавог система датотека - - да изабере одређену грану локалног директоријума за прегледање - - да изабере удаљени сервер и фасциклу за прегледање - - да одреди поставке - - - - -
- - - - - Употреба - - - Прегледање читавог система датотека - Да покренете прегледање читавог система датотека изаберите „ИспитивачСистем датотека“ из изборника, или притисните дугме траке алата „Систем датотека“. - - Када се заврши процес прегледања, добићете читаво стабло вашег система датотека, као на следећој слици. - - -
- Преглед читавог система датотека Испитивача искоришћености диска - - Приказује прозор Испитивача искоришћености диска. Садржи траку изборника, област за приказ, клизаче и траку стања. - -
- - - Када покренете прегледање читавог система датотека, прозор Испитивача искоришћености диска ће почети да исцртава стабло чим нит почне да прегледа ситем датотека. Ако је на систем датотека прикачена нека велика партиција, и она ће такође бити прегледана. - - Испитивач искоришћености диска ће приказати величине у стаблу директоријума као додељени простор. Ово значи да се приказане величине односе на стварно заузеће диска а не на привидну величину директоријума. Ако желите да видите привидну величину датотеке, одзначите „ПрегледЗаузети простор“. - - Испитивач искоришћености диска неће рачунати директоријум „/proc“, нити било коју величину датотеке која се не односи на „обичну“ датотеку, тако да симболичке везе, знаковни блокови, блокови уређаја неће бити део велићине директоријума. - - Са чврстим везама се ради на другачији начин: прва чврста веза се рачуна као обична датотека, док се следеће везе ка истом уређају и-чвора уопште не рачунају, али су истакнуте у колони на десној страни прозора. -
- - - Прегледање једне фасцикле - - Да покренете прегледање фасцикле изаберите „ИспитивачФасцикла...“ из изборника, или притисните дугме траке алата „Фасцикла“. - - - - - Удаљено прегледање - - Ако треба да прегледате удаљену фасциклу сервера, кликните на иконицу траке алата „Удаљена фасцикла“ или изаберите „ИспитивачУдаљена фасцикла...“ из изборника и добићете следеће прозорче. Испитивач искоришћености диска може да се повеже на сервер путем „ssh“, „ftp“, „smb“, „http“ и „https“. - - -
- Прегледање удаљене фасцикле Испитивача искоришћености диска - - Приказује прозорче удаљене фасцикле Испитивача искоришћености диска. - -
- - -
- -
- - - - - Поставке - - Да измените поставке програма Испитивач искоришћености диска, изаберите „УредиПоставке“. - - -
- Прозор поставки Испитивача искоришћености диска - - Прозор поставки - -
- - - - Бирање уређаја за прегледање - У првом делу прозора поставки, исписани су сви откривени прикачени уређаји. Кликните на штиклир кућицу да укључите/искључите партицију у радње прегледања система датотека. - Уређај прикачен на „/“ се не може искључити из прегледања. - - - - Укључивање праћења личне фасцикле - Ако је ова опција изабрана, Испитивач искоришћености диска ће непрестано пратити све спољне измене у личној фасцикли и упозорити корисника ако је датотека додата/укоњена. - -
- - - - Мапе стабла - - Концепт Мапа стабла је развио Бен Шнајдерман у '90. Прочитајте његово виђење мапа стабала. - - -
- Прозор мапе стабла Испитивача искоришћености диска - - Теорија мапе стабла. Приказује 2 дијаграма мапе стабла - -
- - - - На слици је дат пример теорије мапе стабла. Сваки чвор (као што је приказано на дијаграму стабла) има назив (слово) и придружена величина (број). Величина листова може представљати на пример величину појединачних датотека, величина чворова који нису листови је збир величина његових проистеклих. - - Мапа стабла је направљена дубинском поделом почетног правоугаоника. Величина сваког правоугаоника одговара величини чвора. Смер поделе се смењује по нивоима: прво водоравно, следећи усправно итд. Као резултат, почетни правоугаоник је подељен на мање правоугаонике, тако да величина сваког правоугаоника одражава величину листа. Структура стабла се такође одражава на мапи стабла, као резултат његове изградње. Боја и напомене се могу користити за давање додатних информација о листовима. - - Мапе стабла су врло делотворне када је величина најважнија функција за приказ. -
- - - - График прстенова - - График прстенова је графичко представљање искоришћености диска конкретном фасциклом. Када покренете програм, бивате обавештени о искоришћености система датотека као што се види на следећој слици: - - -
- Испитивач искоришћености диска који приказује график прстенова са искоришћеношћу система датотека - - Након покретања програма, приказује се искоришћеност система датотека. Графичко представљање је на десној страни. - -
- - - Када започнете прегледање фасцикле, прави се стабло подфасцикли и исписује се на левој страни. Сваки ред садржи информације о називу, колико простора заузима (у процентима и величину у KB, MB или GB) и број ставки (додавањем датотека и директоријума). Када се овај процес заврши, исцртава се График прстенова на десној страни. Ако га зауставите пре него што се заврши, врши се само делимично представљање на основу директоријума чија искоришћеност је израчуната. - - - -
- Испитивач искоришћености диска који приказује график прстенова са искоришћеношћу фасцикле - - Након прегледања фасцикле. - -
- - - График прстенова се састоји од скупа угнеждених прстенова око средишњег круга. Овај круг симболизује корену фасциклу делимичног стабла (односно фасциклу коју је корисник изабрао за прегледање). Сваки прстен представља ниво у делимичном стаблу, тако да ће подфасцикле корене фасцикле бити представљене у првом прстену, а дубљи нивои у stablu одговарају спољним прстеновима на графикону. Свака подфасцикла је представљена подеоком прстена, чији је угао пропорционалан величини садржаја фасцикле, и обојен другом бојом ради лакше визуeлизације. Може се исцртати до пет нивоа; у случају да фасцикла на том последњем петом нивоу садржи још више подфасцикли, на ову ситуацију ће указати присуство црне кривине близу ивице подеока прстена те фасцикле. Када је изабрана фасцикла без даљих подфасцикли да буде корен делимичног стабла, биће исцртан само унутрашњи круг. Када показивач миша наднесете над једном од фасцикли на графику, биће истакнута и појавиће се облачић са информацијама о њеном називу и величини. Ако постоје подфасцикле, појавиће се мали сиви облачић, показујући њихове називе. Могуће је да неће бити приказани сви називи подфасцикли како би се избегло преклапање. - - Можете ићи горе-доле по редовима на списку (изборно проширујући оне са подфасциклама), графички приказ ће се изменити користећи изабрану фасциклу као корен делимичног стабла које ће бити представљено. До фасцикли се такође може стићи из самог графика прстенова. Ако кликнете левим дугметом миша унутар фасцикле, помакнућете се дубље постављањем корена графика у ту фасциклу. Ако притиснете средње дугме (без обзира на место све док кликћете унутар оквира графика прстенова), добићете супротно понашање, враћајући се један корак у хијерархији. - - Проценат полупречника њене полазне коју користи дата фасцикла је директно сразмерна односу између своје величине и њене полазне. Лако је схватити да је величина фасцикле једнака или мања од величине њене полазне. Иако су у овом графичком приказу приказани само директоријуми, датотеке се узимају у обзир да би се израчунала количина простора коју заузимају фасцикле. -
-
diff -Nru mate-utils-1.26.0/baobab/help/sr/legal.xml mate-utils-1.26.1/baobab/help/sr/legal.xml --- mate-utils-1.26.0/baobab/help/sr/legal.xml 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Дозвољено је умножавање, расподела, вршење измена овог документа под условима Гну-ове Лиценце Слободне Документације (ГЛСД), верзије 1.1 или било које касније верзије без непромењивих одељака, текста на насловној и последњој страни, а коју је објавила Задужбина Слободног Софтвера. Примерак ГЛСД можете пронаћи на овој веза или у датотеци „COPYING-DOCS“ која је приложена уз ово упутство. - Ово упутство је део скупа Мејтових докумената објављених под GFDL. Уколико желите да расподељујете ово упутство одвојено од скупа, то можете урадити додавањем примерка лиценце документу, како је описано у одељку 6 саме лиценце. - - Многи називи које компаније користе у циљу препознатљивости својих производа и услуга представљају робне марке. Када (уколико) се такви називи појављују(спомињу) у било којем Мејтовом документу, а чланови Мејтовог документационог пројекта имају сазнања о томе, тада су називи исписани великим словима или са великим почетним словима. - - OVAJ DOKUMENT I NJEGOVE IZMENJENE VERZIJE SU DOSTUPNE POD USLOVIMA GNU-OVE SLOBODNE DOKUMENTACIONE DOZVOLE UZ DODATNU SAGLASNOST DA: - - ДОКУМЕНТ ЈЕ ДОСТУПАН СА СВИМ СВОЈИМ ДОБРИМ И ЛОШИМ СТРАНАМА БЕЗ БИЛО КАКВОГ ЈАМСТВА, БИЛО ОНО ИЗРЕЧЕНО ИЛИ НЕ, УКЉУЧУЈУЋИ БЕЗ ОГРАНИЧЕЊА, ЈАМСТВО ДА ЈЕ ОВАЈ ДОКУМЕНТ ИЛИ ЊЕГОВА ИЗМЕЊЕНА ВЕРЗИЈА БЕЗ НЕДОСТАТАКА, СПРЕМАН ЗА ТРЖИШТЕ, СВРСИСХОДАН И НЕ НАРУШАВА ЗАКОНСКЕ НОРМЕ. ЦЕЛОКУПАН РИЗИК КОЈИ СЕ ОДНОСИ НА КВАЛИТЕТ, ТАЧНОСТ И ДОМЕТ (УЧИНАК) ДОКУМЕНТА ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ СНОСИ КОРИСНИК. УКОЛИКО СЕ У БИЛО КОЈЕМ ДОКУМЕНТУ ИЛИ ЊЕГОВОЈ ИЗМЕЊЕНОЈ ВЕРЗИЈИ ПОЈАВИ НЕДОСТАТАК (ГРЕШКА) БИЛО КОЈЕ ВРСТЕ, КОРИСНИК (А НЕ АУТОР ИЗВОРНЕ ВЕРЗИЈЕ, БИЛО КОЈИ ДРУГИ АУТОР ИЛИ САРАДНИК) СНОСИ СВЕ ТРОШКОВЕ НЕОПХОДНОГ СЕРВИСИРАЊА, ПОПРАВКЕ ИЛИ ИСПРАВКЕ. ОВО ОГРАНИЧЕЊЕ ЈАМСТВА ПРЕДСТАВЉА САСТАВНИ ДЕО ОВЕ ДОЗВОЛЕ. УПОТРЕБА БИЛО КОЈЕГ ДОКУМЕНТА ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ НИЈЕ ДОЗВОЉЕНА ОСИМ ПОД УСЛОВИМА ОВОГ ОГРАНИЧЕЊА ЈАМСТВА. - - - НИ ПОД КАКВИМ ОКОЛНОСТИМА ИЛИ ЗАКОНУ, БИЛО ЗБОГ КРШЕЊА (ИЛИ НЕМАРА) УГОВОРА, ИЛИ НА БИЛО КОЈИ ДРУГИ НАЧИН, АУТОР (ПРВОБИТНЕ ВЕРЗИЈЕ), САРАДНИК ИЛИ ИСПОРУЧИВАЛАЦ ДОКУМЕНТА ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ, НИТИ ДОБАВЉАЧ БИЛО КОЈЕ ОД НАВЕДЕНИХ СТРАНА НЕЋЕ СНОСИТИ МАТЕРИЈАЛНУ ОДГОВОРНОСТ ЗА НАСТАЛА ДИРЕКТНА, ИНДИРЕКТНА, ПОСЕБНА, СЛУЧАЈНА ИЛИ ТИМЕ НАСТАЛА ОШТЕЋЕЊА БИЛО КОЈЕ ВРСТЕ УКЉУЧУЈУЋИ, БЕЗ ОГРАНИЧЕЊА, ШТЕТУ НАНЕСЕНУ УГЛЕДУ ФИРМЕ, ПРЕСТАНКУ ПРОИЗВОДЊЕ, ОТКАЗИВАЊЕ РАДА РАЧУНАРА ИЛИ КВАРА КАО И ЗА СВЕ ОСТАЛЕ ШТЕТЕ ИЛИ ГУБИТКЕ НАСТАЛЕ УСЛЕД КОРИШЋЕЊА ДОКУМЕНТА И ЊЕГОВИХ ИЗМЕЊЕНИХ ВЕРЗИЈА ЧАК И АКО ЈЕ ОШТЕЋЕНА СТРАНА БИЛА ОБАВЕШТЕНА О МОГУЋНОСТИ НАСТАНКА ТЕ ШТЕТЕ. - - - diff -Nru mate-utils-1.26.0/baobab/help/sr/sr.po mate-utils-1.26.1/baobab/help/sr/sr.po --- mate-utils-1.26.0/baobab/help/sr/sr.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sr/sr.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 # Мирослав Николић , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" "Last-Translator: Мирослав Николић , 2021\n" -"Language-Team: Serbian (https://www.transifex.com/mate/teams/13566/sr/)\n" +"Language-Team: Serbian (https://app.transifex.com/mate/teams/13566/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,7 +18,10 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Мирослав Николић " +msgstr "" +"Мирослав Николић ; 2012—2021.\n" +"\n" +"http://prevod.org — превод на српски језик." #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -130,8 +132,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Да бисте пријавили грешку или дали предлог у вези програма Испитивача " "искоришћености диска или овог упутства, пратите смернице на Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" "Концепт Мапа стабла је развио Бен Шнајдерман у '90. " -"Прочитајте његово виђење мапа стабала." +"Прочитајте његово виђење мапа " +"стабала." #. (itstool) path: figure/title #: C/index.docbook:339 @@ -846,7 +851,7 @@ #. (itstool) path: para/ulink #: C/legal.xml:9 msgid "link" -msgstr "веза" +msgstr "вези" #. (itstool) path: legalnotice/para #: C/legal.xml:2 @@ -859,8 +864,8 @@ "with this manual." msgstr "" "Дозвољено је умножавање, расподела, вршење измена овог документа под " -"условима Гну-ове Лиценце Слободне Документације (ГЛСД), верзије 1.1 или било" -" које касније верзије без непромењивих одељака, текста на насловној и " +"условима Гнуове Лиценце Слободне Документације (ГЛСД), верзије 1.1 или било " +"које касније верзије без непромењивих одељака, текста на насловној и " "последњој страни, а коју је објавила Задужбина Слободног Софтвера. Примерак " "ГЛСД можете пронаћи на овој <_:ulink-1/> или у датотеци „COPYING-DOCS“ која " "је приложена уз ово упутство." @@ -873,7 +878,7 @@ "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" -"Ово упутство је део скупа Мејтових докумената објављених под GFDL. Уколико " +"Ово упутство је део скупа Мејтових докумената објављених под ГСДД. Уколико " "желите да расподељујете ово упутство одвојено од скупа, то можете урадити " "додавањем примерка лиценце документу, како је описано у одељку 6 саме " "лиценце." @@ -888,8 +893,8 @@ "capital letters." msgstr "" "Многи називи које компаније користе у циљу препознатљивости својих производа" -" и услуга представљају робне марке. Када (уколико) се такви називи " -"појављују(спомињу) у било којем Мејтовом документу, а чланови Мејтовог " +" и услуга представљају робне марке. Када (уколико) се такви називи појављују" +" (спомињу) у било којем Мејтовом документу, а чланови Мејтовог " "документационог пројекта имају сазнања о томе, тада су називи исписани " "великим словима или са великим почетним словима." @@ -919,7 +924,7 @@ "ТРОШКОВЕ НЕОПХОДНОГ СЕРВИСИРАЊА, ПОПРАВКЕ ИЛИ ИСПРАВКЕ. ОВО ОГРАНИЧЕЊЕ " "ЈАМСТВА ПРЕДСТАВЉА САСТАВНИ ДЕО ОВЕ ДОЗВОЛЕ. УПОТРЕБА БИЛО КОЈЕГ ДОКУМЕНТА " "ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ НИЈЕ ДОЗВОЉЕНА ОСИМ ПОД УСЛОВИМА ОВОГ ОГРАНИЧЕЊА" -" ЈАМСТВА." +" ЈАМСТВА; И" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -952,5 +957,5 @@ "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" -"OVAJ DOKUMENT I NJEGOVE IZMENJENE VERZIJE SU DOSTUPNE POD USLOVIMA GNU-OVE " -"SLOBODNE DOKUMENTACIONE DOZVOLE UZ DODATNU SAGLASNOST DA: <_:orderedlist-1/>" +"ОВАЈ ДОКУМЕНТ И ЊЕГОВА ИЗМЕЊЕНА ИЗДАЊА ЈЕ ДОСТУПАН ПОД УСЛОВИМА ГНУОВЕ " +"СЛОБОДНЕ ДОКУМЕНТАЦИОНЕ ДОЗВОЛЕ УЗ ДОДАТНУ САГЛАСНОСТ ДА: <_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/baobab/help/sr@latin/index.docbook mate-utils-1.26.1/baobab/help/sr@latin/index.docbook --- mate-utils-1.26.0/baobab/help/sr@latin/index.docbook 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sr@latin/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Uvod - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Upotreba - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Postavke - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/sr@latin/legal.xml mate-utils-1.26.1/baobab/help/sr@latin/legal.xml --- mate-utils-1.26.0/baobab/help/sr@latin/legal.xml 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sr@latin/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/sr@latin/sr@latin.po mate-utils-1.26.1/baobab/help/sr@latin/sr@latin.po --- mate-utils-1.26.0/baobab/help/sr@latin/sr@latin.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sr@latin/sr@latin.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Ivan Pejić , 2018 +# Stefano Karapetsas , 2021 +# Ivan Pejić , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Ivan Pejić , 2018\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/mate/teams/13566/sr@latin/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Ivan Pejić , 2021\n" +"Language-Team: Serbian (Latin) (https://app.transifex.com/mate/teams/13566/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -118,8 +118,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -480,8 +481,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/sv/index.docbook mate-utils-1.26.1/baobab/help/sv/index.docbook --- mate-utils-1.26.0/baobab/help/sv/index.docbook 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sv/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,455 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - 2006 Fabio Marzocca - - - Dokumentationsprojekt för MATE - - - Dokumentationsprojekt för GNOME - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - Fabio Marzocca
thesaltydog@gmail.com
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Återkoppling - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduktion - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - från ett terminal fönster; - - från Caja "Öppna med..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Användning - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Inställningar - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/sv/legal.xml mate-utils-1.26.1/baobab/help/sv/legal.xml --- mate-utils-1.26.0/baobab/help/sv/legal.xml 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sv/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - Denna handbok utgör en av flera MATE-handböcker som distribueras under villkoren i GFDL. Om du vill distribuera denna handbok separat från övriga handböcker kan du göra detta genom att lägga till en kopia av licensavtalet i handboken enligt instruktionerna i avsnitt 6 i licensavtalet. - - Flera namn på produkter och tjänster är registrerade varumärken. I de fall dessa namn förekommer i MATE-dokumentation - och medlemmarna i MATE-dokumentationsprojektet är medvetna om dessa varumärken - är de skrivna med versaler eller med inledande versal. - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/sv/sv.po mate-utils-1.26.1/baobab/help/sv/sv.po --- mate-utils-1.26.0/baobab/help/sv/sv.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/sv/sv.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,20 @@ # # Translators: -# Kristoffer Grundström , 2018 -# Stefano Karapetsas , 2018 -# Henrik Mattsson-Mårn , 2018 -# Wolfgang Ulbrich , 2018 -# Daniel Gullbransen, 2018 -# crash , 2019 +# Kristoffer Grundström , 2021 # Luna Jernberg , 2021 +# Stefano Karapetsas , 2021 +# Henrik Mattsson-Mårn , 2021 +# crash , 2021 +# Wolfgang Ulbrich , 2021 +# Daniel Gullbransen, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Luna Jernberg , 2021\n" -"Language-Team: Swedish (https://www.transifex.com/mate/teams/13566/sv/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Daniel Gullbransen, 2021\n" +"Language-Team: Swedish (https://app.transifex.com/mate/teams/13566/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,7 +24,7 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Kristoffer Grundström " +msgstr "Kristoffer Grundström " #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -122,8 +122,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -492,8 +493,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/ta/index.docbook mate-utils-1.26.1/baobab/help/ta/index.docbook --- mate-utils-1.26.0/baobab/help/ta/index.docbook 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ta/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - அறிமுகம் - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - பயன்பாடு - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - விருப்ப தேர்வுகள் - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ta/legal.xml mate-utils-1.26.1/baobab/help/ta/legal.xml --- mate-utils-1.26.0/baobab/help/ta/legal.xml 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ta/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ta/ta.po mate-utils-1.26.1/baobab/help/ta/ta.po --- mate-utils-1.26.0/baobab/help/ta/ta.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ta/ta.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Mooglie , 2018 +# Stefano Karapetsas , 2021 +# Mooglie , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Mooglie , 2018\n" -"Language-Team: Tamil (https://www.transifex.com/mate/teams/13566/ta/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Mooglie , 2021\n" +"Language-Team: Tamil (https://app.transifex.com/mate/teams/13566/ta/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -118,8 +118,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -480,8 +481,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/te/index.docbook mate-utils-1.26.1/baobab/help/te/index.docbook --- mate-utils-1.26.0/baobab/help/te/index.docbook 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/te/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,477 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Praveen Illa - - mail2ipn@gmail.com - - - - 2014 - - Praveen Illa - -
- - - Disk Usage Analyzer - - - - - - - ఉపోద్ఘాతము - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - వినిమయం - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - అభిరుచులు - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/te/legal.xml mate-utils-1.26.1/baobab/help/te/legal.xml --- mate-utils-1.26.0/baobab/help/te/legal.xml 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/te/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/te/te.po mate-utils-1.26.1/baobab/help/te/te.po --- mate-utils-1.26.0/baobab/help/te/te.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/te/te.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# ప్రవీణ్ ఇళ్ళ , 2018 -# Stefano Karapetsas , 2018 +# ప్రవీణ్ ఇళ్ళ , 2021 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Telugu (https://www.transifex.com/mate/teams/13566/te/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Telugu (https://app.transifex.com/mate/teams/13566/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -115,8 +115,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -477,8 +478,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/th/index.docbook mate-utils-1.26.1/baobab/help/th/index.docbook --- mate-utils-1.26.0/baobab/help/th/index.docbook 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/th/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,477 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - โครงการเอกสาร MATE - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - ร่วมเสนอแนะ - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Akom Chotiphantawanon - - knight2000@gmail.com - - - - 2016 - - Akom Chotiphantawanon - -
- - - Disk Usage Analyzer - - - - - - - เกริ่นนำ - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - วิธีใช้ - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - การปรับแต่ง - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/th/legal.xml mate-utils-1.26.1/baobab/help/th/legal.xml --- mate-utils-1.26.0/baobab/help/th/legal.xml 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/th/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - คู่มือนี้ เป็นส่วนหนึ่งของชุดคู่มือ MATE ที่เผยแพร่ภายใต้ GFDL ถ้าคุณต้องการเผยแพร่คู่มือนี้แยกต่างหากจากชุด คุณสามารถทำได้โดยเพิ่มสำเนาของสัญญาอนุญาตไปกับคู่มือ ตามที่อธิบายในข้อ 6 ของสัญญาอนุญาต - - มีชื่อหลายชื่อที่บริษัทต่างๆ ใช้แยกความแตกต่างของผลิตภัณฑ์และบริการของตนจากบริษัทอื่น และอ้างเป็นเครื่องหมายการค้า ที่ใดก็ตามที่ชื่อเหล่านั้นปรากฏในเอกสารของ MATE และสมาชิกโครงการเอกสาร MATE ได้รับทราบเกี่ยวกับเครื่องหมายการค้าเหล่านั้น ชื่อเหล่านั้นจะเขียนด้วยตัวพิมพ์ใหญ่ หรือขึ้นต้นด้วยตัวพิมพ์ใหญ่ - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/th/th.po mate-utils-1.26.1/baobab/help/th/th.po --- mate-utils-1.26.0/baobab/help/th/th.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/th/th.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Akom , 2018 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 +# Akom , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Akom , 2018\n" -"Language-Team: Thai (https://www.transifex.com/mate/teams/13566/th/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Akom , 2021\n" +"Language-Team: Thai (https://app.transifex.com/mate/teams/13566/th/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,7 +20,7 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Akom Chotiphantawanon , 2016" +msgstr "Akom Chotiphantawanon " #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -116,8 +116,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -478,8 +479,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/tk/index.docbook mate-utils-1.26.1/baobab/help/tk/index.docbook --- mate-utils-1.26.0/baobab/help/tk/index.docbook 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/tk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Seçenekler - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/tk/legal.xml mate-utils-1.26.1/baobab/help/tk/legal.xml --- mate-utils-1.26.0/baobab/help/tk/legal.xml 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/tk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/tk/tk.po mate-utils-1.26.1/baobab/help/tk/tk.po --- mate-utils-1.26.0/baobab/help/tk/tk.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/tk/tk.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Turkmen (https://www.transifex.com/mate/teams/13566/tk/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Turkmen (https://app.transifex.com/mate/teams/13566/tk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/tr/index.docbook mate-utils-1.26.1/baobab/help/tr/index.docbook --- mate-utils-1.26.0/baobab/help/tr/index.docbook 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/tr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,546 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Kullanımı Çözümleyici Rehberi - - - Disk Kullanımı Çözümleyicisi, disk kullanımınızı ve dizin yapınızı görüntülemek ve izlemek için kullanabileceğiniz grafiksel, menü tabanlı bir görüntüleyicidir. - - - - 2015-2021 - MATE Documentation Project - - 2006 Fabio Marzocca - - - MATE Belgelendirme Projesi - - - GNOME Belgelendirme Projesi - - - - - - - MATE Documentation Team - - MATE Desktop - - - Fabio Marzocca GNOME Belgelendirme Projesi
thesaltydog@gmail.com
- - Fabio Marzocca
thesaltydog@gmail.com
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Geri bildirim - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Fatih Demir - - kabalak@kabalak.net - - - - 2000. - - Fatih Demir - - - - - Görkem Çetin - - gorkem@gelecek.com.tr - - - - 2002/2003. - - Görkem Çetin - - - - - Barış Çicek - - baris@teamforce.name.tr - - - - 2004 - - 2008 - - 2009. - - Barış Çicek - - - - - Muhammet Kara - - muhammet.k@gmail.com - - - - 2011. - - Muhammet Kara - - - - - hsngrms - - dead-bodies-everywhere@hotmail.com - - - - 2012 - - hsngrms - - - - - Atilla Öntaş - - tarakbumba@gmail.com - - - - 2014 - - Atilla Öntaş - - - - - Emre FIRAT - - emrefirat93@gmail.com - - - - 2013 - - 2014 - - 2015 - - Emre FIRAT - -
- - - Disk Usage Analyzer - - - - - - - Başlangıç - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Başlangıç - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Kullanım - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Tercihler - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/tr/legal.xml mate-utils-1.26.1/baobab/help/tr/legal.xml --- mate-utils-1.26.0/baobab/help/tr/legal.xml 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/tr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Bu belgeyi kopyalama, dağıtma ve/veya değiştirme izni, değişmez bölümsüz, ön kapak metinsiz ve arka kapak metinsiz şekilde GNU Free Documentation License (GNU Özgür Belgeleme Lisansı, GFDL), sürüm 1.1 ya da Free Software Foundation tarafından yayınlanan daha yeni bir sürüm kapsamında verilmiştir. GFDL'in bir kopyasını bu bağlantı ya da bu kılavuzla dağıtılan COPYING-DOCS dosyasında bulabilirsiniz. - Bu kılavuz, GFDL (GNU Özgür Belgelendirme Lisansı) kapsamında yayınlanan MATE kılavuzları koleksiyonunun bir parçasıdır. Bu kılavuzu koleksiyondan ayrı bir biçimde dağıtmak istiyorsanız, lisansın 6. bölümünde açıklandığı gibi kılavuza lisansın bir kopyasını ilave ederek yapabilirsiniz. - - Firmalar tarafından ürün ve hizmetlerinin ayırt edilmeleri için kullandıkları isimlerin birçoğu tescilli marka olarak ayrılmıştır. Bu isimlerin MATE belgelendirilmesinde yer alması ve MATE Belgelendirme Projesi mensupları bu tescilli markalardan haberdar edildikleri durumda, isimlerin ilk harfi ya da tamamı büyük harflerle yazılır. - - BELGE VE BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİ GNU FREE DOCUMENTATION LICENSE (YANİ GNU ÖZGÜR BELGE LİSANSI) KAPSAMINDA, ŞU KONULARDA ANLAŞMAYLA SUNULMUŞTUR: - - BELGE OLDUĞU GİBİ, AÇIK VEYA ZIMNİ HİÇBİR TÜRLÜ GARANTİ OLMADAN SUNULMUŞTUR, Kİ BUNA SINIRLAMA OLMAKSIZIN BELGE VEYA BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİNİN BELLİ BİR AMACA UYGUN OLMALARI, KUSURDAN ARINMIŞ OLMALARI VEYA HAK İHLALİNDE BULUNMAMALARI GARANTİLERİ OLMAMASI DA DAHİLDİR. BELGE VE BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİNİN KALİTESİ, DOĞRULUĞU VE PERFORMANSINA İLİŞKİN TÜM RİSK SİZE AİTTİR. HERHANGİ BİR BELGE VEYA BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMÜNÜN KUSURLU OLMASI HALİNDE, GEREKLİ SERVİS, ONARIM VE DÜZELTMENİN ÜCRETİNİ SİZ ÜSTLENİRSİNİZ (İLK YAZAR, HAZIRLAYAN VEYA HERHANGİ BİR KATILIMCI DEĞİL). BU GARANTİ REDDİ BU LİSANSIN TEMEL BİR PARÇASINI OLUŞTURMAKTADIR. HERHANGİ BİR BELGENİN VEYA BELGENİN DEĞİŞTİRİLMİŞ BİR SÜRÜMÜNÜN KULLANIMINA SADECE BU GARANTİ REDDİ ALTINDA İZİN VERİLMİŞTİR; VE - - - HİÇBİR KOŞULDA VE HİÇBİR YASAL TEORİDE, Kİ BU TAZMİNAT YÜKÜMLÜLÜĞÜ (İHMAK DE DAHİL), KONTRATO VEYA BAŞKA BİR ŞEKİLİ DE İÇERİR, BELGEYİ VE BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİNİ İLK YAZAN, YAZAR, HERHANGİ BİR KATKIDA BULUNAN, DAĞITAN VEYA BU TARAFLARIN HERHANGİ BİR TEDARİKÇİSİ HERHANGİ DOĞRUDAN, DOLAYLI, ÖZEL, ARIZİ ZARARLARDAN HERHANGİ BİR KİŞİ SORUMLU DEĞİLDİR, Kİ BUNA BU TÜR KAYIPLAR HAKKINDA BU TARFAFIN BİLGİLENDİRİLMİŞ OLMASI GEREKSE BİLE SINIRLANMAMIŞ OLMAK ÜZERE ŞEREFİYE KAYBI, İŞ DURMASI, BİLGİSAYAR BOZULMASI VE YANLIŞ ÇALIŞMASI VEYA BELGENİN VE BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİNİN KULLANIMINDAN VEYA KULLANIMIYLA İLİŞKİLİ TÜM KAYIPLAR DAHİLDİR. - - - diff -Nru mate-utils-1.26.0/baobab/help/tr/tr.po mate-utils-1.26.1/baobab/help/tr/tr.po --- mate-utils-1.26.0/baobab/help/tr/tr.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/tr/tr.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,22 @@ # # Translators: -# mauron, 2018 -# Stefano Karapetsas , 2018 -# Butterfly , 2018 -# Murat Servan Kahraman, 2018 -# Yaşar Çiv , 2018 -# 0d1bdb3b9a0d4e8f77bc854af8bf3dfc_e6913f4, 2019 +# mauron, 2021 +# Stefano Karapetsas , 2021 +# Butterfly , 2021 +# Murat Servan Kahraman, 2021 +# Yaşar Çiv , 2021 +# 0d1bdb3b9a0d4e8f77bc854af8bf3dfc_e6913f4, 2021 +# hilalis , 2021 +# Gurbuzguven <6mehmet6@gmail.com>, 2021 +# Hüseyin Güç , 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: 0d1bdb3b9a0d4e8f77bc854af8bf3dfc_e6913f4, 2019\n" -"Language-Team: Turkish (https://www.transifex.com/mate/teams/13566/tr/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Hüseyin Güç , 2022\n" +"Language-Team: Turkish (https://app.transifex.com/mate/teams/13566/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -33,12 +36,13 @@ "hsngrms , 2012\n" "mauron, 2012, 2013, 2014, 2015, 2016, 2017, 2018\n" "Atilla Öntaş , 2014\n" -"Emre FIRAT , 2013, 2014, 2015" +"Emre FIRAT , 2013, 2014, 2015\n" +"Hilalis BIRDS , 2021" #. (itstool) path: articleinfo/title #: C/index.docbook:23 msgid "Disk Usage Analyzer Manual" -msgstr "Disk Kullanımı Çözümleyici Rehberi" +msgstr "Disk Kullanımı İnceleyicisi Rehberi" #. (itstool) path: abstract/para #: C/index.docbook:26 @@ -46,14 +50,14 @@ "Disk Usage Analyzer is a graphical, menu-driven viewer that you can use to " "view and monitor your disk usage and folder structure." msgstr "" -"Disk Kullanımı Çözümleyicisi, disk kullanımınızı ve dizin yapınızı " +"Disk Kullanımı İnceleyicisi, disk kullanımınızı ve dizin yapınızı " "görüntülemek ve izlemek için kullanabileceğiniz grafiksel, menü tabanlı bir " "görüntüleyicidir." #. (itstool) path: articleinfo/copyright #: C/index.docbook:30 msgid "2015-2021 MATE Documentation Project" -msgstr "" +msgstr "2015-2021MATE Belgelendirme Projesi" #. (itstool) path: articleinfo/copyright #: C/index.docbook:34 @@ -110,6 +114,8 @@ "Disk Usage Analyzer Manual 1.10 July " "2015 <_:revdescription-1/>" msgstr "" +"Disk Kullanım İnceleyicisi Kılavuzu 1.10 Temmuz" +" 2015 <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:110 @@ -122,11 +128,13 @@ "Disk Usage Analyzer Manual 1.0 April " "2006 <_:revdescription-1/>" msgstr "" +"Disk Kullanım İnceleyicisi Kılavuzu 1.0 Nisan " +"2006 <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:118 msgid "This manual describes version 1.10 of Disk Usage Analyzer." -msgstr "" +msgstr "Bu kılavuz, Disk Kullanım İnceleyicisi'nin 1.10 sürümünü açıklar." #. (itstool) path: legalnotice/title #: C/index.docbook:121 @@ -137,8 +145,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -190,7 +199,7 @@ #. (itstool) path: listitem/para #: C/index.docbook:159 msgid "from a terminal window;" -msgstr "" +msgstr "uçbirim penceresinden;" #. (itstool) path: listitem/para #: C/index.docbook:161 @@ -229,7 +238,7 @@ #. (itstool) path: figure/title #: C/index.docbook:175 msgid "Disk Usage Analyzer Window" -msgstr "" +msgstr "Disk Kullanım İnceleyicisi Penceresi" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -260,22 +269,22 @@ #. (itstool) path: listitem/para #: C/index.docbook:191 msgid "start a full filesystem scan;" -msgstr "" +msgstr "tam bir dosya sistemi taraması başlatın;" #. (itstool) path: listitem/para #: C/index.docbook:193 msgid "select a specific local directory branch to scan" -msgstr "" +msgstr "taramak için belirli bir dizin seçin" #. (itstool) path: listitem/para #: C/index.docbook:195 msgid "select a remote server and folder to scan" -msgstr "" +msgstr "taranacak bir uzak sunucu ve dizin seçin" #. (itstool) path: listitem/para #: C/index.docbook:197 msgid "set preferences" -msgstr "" +msgstr "tercihleri ​​ayarla" #. (itstool) path: sect1/title #: C/index.docbook:207 @@ -285,7 +294,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:210 msgid "Full filesystem scan" -msgstr "" +msgstr "tam bir dosya sistemi taraması başlatın;" #. (itstool) path: sect2/para #: C/index.docbook:211 @@ -306,7 +315,7 @@ #. (itstool) path: figure/title #: C/index.docbook:219 msgid "Disk Usage Analyzer Full filesystem scan" -msgstr "" +msgstr "Disk Kullanım İnceleyicisi Tam dosya sistemi taraması" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -369,7 +378,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:254 msgid "Single folder scan" -msgstr "" +msgstr "Tek dizin taraması" #. (itstool) path: sect2/para #: C/index.docbook:256 @@ -383,7 +392,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:263 msgid "Remote scan" -msgstr "" +msgstr "uzaktan tarama" #. (itstool) path: sect2/para #: C/index.docbook:265 @@ -437,7 +446,7 @@ #. (itstool) path: figure/title #: C/index.docbook:300 msgid "Disk Usage Analyzer Preferences Window" -msgstr "" +msgstr "Disk Kullanım İnceleyicisi Özellikler Penceresi" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -462,7 +471,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:315 msgid "Select devices to be scanned" -msgstr "" +msgstr "Taranacak cihazları seçin" #. (itstool) path: sect2/para #: C/index.docbook:316 @@ -480,7 +489,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:323 msgid "Enable monitoring of home" -msgstr "" +msgstr "Ev dizininin izlenmesini etkinleştir" #. (itstool) path: sect2/para #: C/index.docbook:324 @@ -499,14 +508,15 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title #: C/index.docbook:339 msgid "Disk Usage Analyzer Treemap Window" -msgstr "" +msgstr "Disk Kullanım İnceleyicisi Ağaç Görünümü Penceresi" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -556,6 +566,8 @@ "Treemaps are very effective when size is the most important feature to be " "displayed." msgstr "" +"Boyut, görüntülenecek en önemli özellik olduğunda, ağaç görünümü çok " +"etkilidir." #. (itstool) path: sect1/title #: C/index.docbook:374 @@ -574,6 +586,8 @@ #: C/index.docbook:383 msgid "Disk Usage Analyzer showing a ringschart with the file system usage" msgstr "" +" Disk Kullanım İnceleyicisi, dosya sistemi kullanımını halka grafiği " +"şeklinde gösteriyor" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -612,6 +626,8 @@ #: C/index.docbook:411 msgid "Disk Usage Analyzer showing a ringschart with the usage of a folder" msgstr "" +" Disk Kullanım İnceleyicisi, dizinin kullandığı alanı halka grafiği şeklinde" +" gösteriyor" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -680,6 +696,11 @@ "representation, files are taken into account to calculate the amount of " "space occupied by folders." msgstr "" +"Belirli bir klasör tarafından kullanılan üst öğesinin yarıçapının yüzdesi, " +"kendi boyutu ile üst öğesininki arasındaki ilişkiyle doğru orantılıdır. Bir " +"klasörün boyutunun ebeveynininkiyle eşit veya daha küçük olduğunu anlamak " +"kolaydır. Bu grafik gösterimde yalnızca dizinler gösterilse de, klasörlerin " +"kapladığı alan miktarını hesaplamak için dosyalar dikkate alınır." #. (itstool) path: para/ulink #: C/legal.xml:9 diff -Nru mate-utils-1.26.0/baobab/help/ug/index.docbook mate-utils-1.26.1/baobab/help/ug/index.docbook --- mate-utils-1.26.0/baobab/help/ug/index.docbook 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ug/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - تونۇشتۇرۇش - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - ئىشلىتىلىشى - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - مايىللىق - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ug/legal.xml mate-utils-1.26.1/baobab/help/ug/legal.xml --- mate-utils-1.26.0/baobab/help/ug/legal.xml 2021-08-05 19:46:25.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ug/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ug/ug.po mate-utils-1.26.1/baobab/help/ug/ug.po --- mate-utils-1.26.0/baobab/help/ug/ug.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ug/ug.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Uyghur (https://www.transifex.com/mate/teams/13566/ug/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Uyghur (https://app.transifex.com/mate/teams/13566/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -123,8 +123,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -485,8 +486,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/uk/index.docbook mate-utils-1.26.1/baobab/help/uk/index.docbook --- mate-utils-1.26.0/baobab/help/uk/index.docbook 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/uk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,446 +0,0 @@ - - - - - - -]> - - -
- - - - Керівництво користувача аналізатора використання дисків - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - 2006 Фабіо Марцокка - - - Проєкт документування MATE - - - Проєкт документації GNOME - - - - - - - MATE Documentation Team - - MATE Desktop - - - Фабіо Марцокка Проєкт документування GNOME
thesaltydog@gmail.com
- - Фабіо Марцокка
thesaltydog@gmail.com
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Зворотній зв'язок - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - Аналізатор використання дисків - - - - - - Вступ - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Початок роботи - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Використання - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Віддалене сканування - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Параметри - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Виберіть пристрої для сканування - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Увімкнути спостереження за домашнім каталогом - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/uk/legal.xml mate-utils-1.26.1/baobab/help/uk/legal.xml --- mate-utils-1.26.0/baobab/help/uk/legal.xml 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/uk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Дозволяється копіювати, розповсюджувати і / або змінювати цей документ у відповідности з умовами ліцензії GNU Free Documentation License (GFDL), версії 1.1 або будь-якої пізнішої версії, оголошеній Фундацією вільного програмного забезпечення без будь-яких інваріянтних розділів, без додавання тексту на початку або в кінці. Ви можете знайти копію GFDL тут посилання або у файлі COPYING-DOCS, розповсюджуваному разом з цим керівництвом. - Цей посібник є частиною збірки документації MATE, яка розповсюджується на умовах ліцензії GFDL. Якщо ви бажаєте розповсюджувати цей посібник окремо від збірки, можете це зробити додавши до нього копію ліцензії, як описано в пункті 6 ліцензії. - - Деякі назви, які використовуються компаніями для розповсюдження своїх продуктів та послуг є торговими марками. Якщо такі назви зустрічаються в документації MATE і учасникам проєкту документування MATE відомо, що вони є торговими марками, тоді ці назви виділяться великими літерами або починаються з великої літери. - - ДОКУМЕНТ Й ЗМІНЕНІ ВЕРСІЇ ДОКУМЕНТУ НАДАЮТЬСЯ ЗА УМОВАМИ ЛІЦЕНЗІЇ БЕЗКОШТОВНОЇ ДОКУМЕНТАЦІЇ GNU З РОЗУМІННЯМ ЩО: - - ДОКУМЕНТ НАДАЄТЬСЯ \"ЯК Є\", БЕЗ БУДЬ-ЯКИХ ГАРАНТІЇ, ЯВНИХ ЧИ НЕЯВНИХ, ВКЛЮЧАЮЧИ, АЛЕ НЕ ОБМЕЖУЮЧИСЬ, ГАРАНТІЙ ЩО ЦЕЙ ДОКУМЕНТ ЧИ ЗМІНЕНА ВЕРСІЯ ДОКУМЕНТА ВІЛЬНІ ВІД ДЕФЕКТІВ, ПРИДАТНІ ДО ПРОДАЖУ, ВІДПОВІДАЮТЬ ПЕВНІЙ МЕТІ АБО НЕ ПОРУШУЮТЬ ЧИЇСЬ ПРАВА. ВЕСЬ РИЗИК ЗА ЯКІСТЬ, ТОЧНІСТЬ, ТА ЧИННІСТЬ ЦЬОГО ДОКУМЕНТУ АБО ЙОГО ЗМІНЕНИХ ВЕРСІЙ ЛЕЖИТЬ НА ВАС. ЯКЩО БУДЬ-ЯКИЙ ДОКУМЕНТ ЧИ ЗМІНЕНА ВЕРСІЯ БУДУТЬ ВИЗНАНІ ДЕФЕКТНИМИ У БУДЬ-ЯКОМУ ВІДНОШЕННІ, ВИ (НЕ ПОЧАТКОВИЙ УКЛАДАЧ, АВТОР АБО БУДЬ-ЯКИЙ СПІВАВТОР) БЕРЕТЕ НА СЕБЕ ВИТРАТИ ЗА БУДЬ-ЯКЕ НЕОБХІДНЕ ОБСЛУГОВУВАННЯ, РЕМОНТ ЧИ ВИПРАВЛЕННЯ. ЦЯ ВІДМОВА ВІД ГАРАНТІЙ СКЛАДАЄ ВАЖЛИВУ ЧАСТИНУ ЦІЄЇ ЛІЦЕНЗІЇ. НЕ ДОПУСКАЄТЬСЯ ВИКОРИСТАННЯ ЦЬОГО ДОКУМЕНТУ АБО ЙОГО ЗМІНЕНОЇ ВЕРСІЇ БЕЗ ПРИЙНЯТТЯ ЦІЄЇ ВІДМОВИ; ТА - - - НІ ЗА ЯКИХ ОБСТАВИН ТА ЗА БУДЬ-ЯКОГО ЗАКОНОДАВСТВА, ЧИ ТО ГРОМАДЯНСЬКОЇ ВІДПОВІДАЛЬНОСТІ (ВКЛЮЧАЮЧИ ХАЛАТНІСТЬ), ДОГОВОРУ, ЧИ ЧОГОСЬ ІНШОГО, АВТОР, ПОЧАТКОВИЙ УКЛАДАЧ, БУДЬ-ЯКИЙ СПІВАВТОР, АБО ДИСТРИБ'ЮТОР ДОКУМЕНТУ ЧИ ЗМІНЕНОЇ ВЕРСІЇ ДОКУМЕНТУ, АБО БУДЬ-ЯКИЙ ПОСТАЧАЛЬНИК БУДЬ-ЯКОЇ З ЦИХ СТОРІН, НЕ НЕСЕ ВІДПОВІДАЛЬНІСТЬ ПЕРЕД БУДЬ-ЯКОЮ ОСОБОЮ ЗА БУДЬ-ЯКІ ПРЯМІ, НЕПРЯМІ, ОСОБЛИВІ, ВИПАДКОВІ, АБО ІСТОТНІ ЗБИТКИ БУДЬ-ЯКОГО ХАРАКТЕРУ ВКЛЮЧАЮЧИ, АЛЕ НЕ ОБМЕЖУЮЧИСЬ, ЗБИТКАМИ ВІД ВТРАТИ ПРЕСТИЖУ, ЗУПИНКИ РОБОТИ, ЗБОЇВ АБО НЕСПРАВНОСТЕЙ КОМП'ЮТЕРА, АБО БУДЬ-ЯКІ ІНШІ ЗБИТКИ АБО ВТРАТИ ЩО ВИНИКЛИ БЕЗВІДНОСНО АБО ВНАСЛІДОК ВИКОРИСТАННЯ ЦЬОГО ДОКУМЕНТУ ТА ЗМІНЕНИХ ВЕРСІЙ ЦЬОГО ДОКУМЕНТУ, НАВІТЬ ЯКЩО ЦІ СТОРОНИ, МОЖЛИВО, БУЛИ ПРОІНФОРМОВАНІ ПРО МОЖЛИВІСТЬ ТАКИХ ЗБИТКІВ. - - - diff -Nru mate-utils-1.26.0/baobab/help/uk/uk.po mate-utils-1.26.1/baobab/help/uk/uk.po --- mate-utils-1.26.0/baobab/help/uk/uk.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/uk/uk.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Микола Ткач , 2018 -# dsafsadf , 2019 +# Stefano Karapetsas , 2021 +# Микола Ткач , 2021 +# dsafsadf , 2021 +# Wolfgang Ulbrich , 2021 +# Юрій Яновський , 2021 +# Sergiy , 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: dsafsadf , 2019\n" -"Language-Team: Ukrainian (https://www.transifex.com/mate/teams/13566/uk/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Sergiy , 2022\n" +"Language-Team: Ukrainian (https://app.transifex.com/mate/teams/13566/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,8 +25,9 @@ msgid "translator-credits" msgstr "" "Yarema aka Knedlyk ,\n" -"Микола Ткач ,\n" -"Oleh Tsyupka " +"Микола Ткач ,\n" +"Oleh Tsyupka \n" +"Юрій Яновський " #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -41,7 +44,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:30 msgid "2015-2021 MATE Documentation Project" -msgstr "" +msgstr "2015-2021 Проект документування MATE" #. (itstool) path: articleinfo/copyright #: C/index.docbook:34 @@ -58,7 +61,7 @@ #. (itstool) path: revdescription/para #: C/index.docbook:50 C/index.docbook:113 msgid "GNOME Documentation Project" -msgstr "Проєкт документації GNOME" +msgstr "Проєкт документування GNOME" #. (itstool) path: authorgroup/author #: C/index.docbook:56 @@ -125,8 +128,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -487,8 +491,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title @@ -690,12 +695,12 @@ " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" -"Дозволяється копіювати, розповсюджувати і / або змінювати цей документ у " -"відповідности з умовами ліцензії GNU Free Documentation License (GFDL), " -"версії 1.1 або будь-якої пізнішої версії, оголошеній Фундацією вільного " -"програмного забезпечення без будь-яких інваріянтних розділів, без додавання " -"тексту на початку або в кінці. Ви можете знайти копію GFDL тут <_:ulink-1/> " -"або у файлі COPYING-DOCS, розповсюджуваному разом з цим керівництвом." +"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-1/> or in the file COPYING-DOCS distributed " +"with this manual." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -705,8 +710,8 @@ "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. Якщо ви бажаєте розповсюджувати цей посібник окремо " +"Цей посібник є частиною збірки документації MATE, яка розповсюджується за " +"умовами ліцензії GFDL. Якщо ви бажаєте розповсюджувати цей посібник окремо " "від збірки, можете це зробити додавши до нього копію ліцензії, як описано в " "пункті 6 ліцензії." diff -Nru mate-utils-1.26.0/baobab/help/ur/index.docbook mate-utils-1.26.1/baobab/help/ur/index.docbook --- mate-utils-1.26.0/baobab/help/ur/index.docbook 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ur/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - تعارف - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - استعمال - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - ترجیحات - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/ur/legal.xml mate-utils-1.26.1/baobab/help/ur/legal.xml --- mate-utils-1.26.0/baobab/help/ur/legal.xml 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ur/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/ur/ur.po mate-utils-1.26.1/baobab/help/ur/ur.po --- mate-utils-1.26.0/baobab/help/ur/ur.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/ur/ur.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# mauron, 2018 +# mauron, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: mauron, 2018\n" -"Language-Team: Urdu (https://www.transifex.com/mate/teams/13566/ur/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: mauron, 2021\n" +"Language-Team: Urdu (https://app.transifex.com/mate/teams/13566/ur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -120,8 +120,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -482,8 +483,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/uz/index.docbook mate-utils-1.26.1/baobab/help/uz/index.docbook --- mate-utils-1.26.0/baobab/help/uz/index.docbook 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/uz/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Ishlatilishi - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Parametrlar - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/uz/legal.xml mate-utils-1.26.1/baobab/help/uz/legal.xml --- mate-utils-1.26.0/baobab/help/uz/legal.xml 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/uz/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/uz/uz.po mate-utils-1.26.1/baobab/help/uz/uz.po --- mate-utils-1.26.0/baobab/help/uz/uz.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/uz/uz.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Muzaffar Habibullayev , 2018 +# Stefano Karapetsas , 2021 +# Muzaffar Habibullayev , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Muzaffar Habibullayev , 2018\n" -"Language-Team: Uzbek (https://www.transifex.com/mate/teams/13566/uz/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Muzaffar Habibullayev , 2021\n" +"Language-Team: Uzbek (https://app.transifex.com/mate/teams/13566/uz/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -115,8 +115,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -477,8 +478,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/vi/index.docbook mate-utils-1.26.1/baobab/help/vi/index.docbook --- mate-utils-1.26.0/baobab/help/vi/index.docbook 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/vi/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Giới thiệu - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Sử dụng - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Tùy chỉnh - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/vi/legal.xml mate-utils-1.26.1/baobab/help/vi/legal.xml --- mate-utils-1.26.0/baobab/help/vi/legal.xml 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/vi/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/vi/vi.po mate-utils-1.26.1/baobab/help/vi/vi.po --- mate-utils-1.26.0/baobab/help/vi/vi.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/vi/vi.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Duy Truong Nguyen , 2018 -# Horazone Detex , 2018 +# Stefano Karapetsas , 2021 +# Duy Truong Nguyen , 2021 +# Horazone Detex , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: Horazone Detex , 2018\n" -"Language-Team: Vietnamese (https://www.transifex.com/mate/teams/13566/vi/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Horazone Detex , 2021\n" +"Language-Team: Vietnamese (https://app.transifex.com/mate/teams/13566/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -116,8 +116,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -478,8 +479,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/wa/index.docbook mate-utils-1.26.1/baobab/help/wa/index.docbook --- mate-utils-1.26.0/baobab/help/wa/index.docbook 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/wa/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferinces - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/wa/legal.xml mate-utils-1.26.1/baobab/help/wa/legal.xml --- mate-utils-1.26.0/baobab/help/wa/legal.xml 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/wa/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/wa/wa.po mate-utils-1.26.1/baobab/help/wa/wa.po --- mate-utils-1.26.0/baobab/help/wa/wa.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/wa/wa.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Walloon (https://www.transifex.com/mate/teams/13566/wa/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Walloon (https://app.transifex.com/mate/teams/13566/wa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/xh/index.docbook mate-utils-1.26.1/baobab/help/xh/index.docbook --- mate-utils-1.26.0/baobab/help/xh/index.docbook 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/xh/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Uluhlu lwezinto ezikhethwayo - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/xh/legal.xml mate-utils-1.26.1/baobab/help/xh/legal.xml --- mate-utils-1.26.0/baobab/help/xh/legal.xml 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/xh/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/xh/xh.po mate-utils-1.26.1/baobab/help/xh/xh.po --- mate-utils-1.26.0/baobab/help/xh/xh.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/xh/xh.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Xhosa (https://www.transifex.com/mate/teams/13566/xh/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Xhosa (https://app.transifex.com/mate/teams/13566/xh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/yo/index.docbook mate-utils-1.26.1/baobab/help/yo/index.docbook --- mate-utils-1.26.0/baobab/help/yo/index.docbook 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/yo/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Àwọn ìkúndùn - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/yo/legal.xml mate-utils-1.26.1/baobab/help/yo/legal.xml --- mate-utils-1.26.0/baobab/help/yo/legal.xml 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/yo/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/yo/yo.po mate-utils-1.26.1/baobab/help/yo/yo.po --- mate-utils-1.26.0/baobab/help/yo/yo.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/yo/yo.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Yoruba (https://www.transifex.com/mate/teams/13566/yo/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Yoruba (https://app.transifex.com/mate/teams/13566/yo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -114,8 +114,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -476,8 +477,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/zh_CN/index.docbook mate-utils-1.26.1/baobab/help/zh_CN/index.docbook --- mate-utils-1.26.0/baobab/help/zh_CN/index.docbook 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/zh_CN/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,591 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - 2015-2021 MATE 文档团队 - - 2006 - Fabio Marzocca - - - - MATE 文档项目 - - - GNOME 文档项目 - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - 反馈 - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Christopher Meng - - i@cicku.me - - - - 2012-2013 - - Christopher Meng - - - - - ravix - - dr.neemous@gmail.com - - - - 2013 - - ravix - - - - - Dianjin Wang - - 1132321739qq@gmail.com - - - - 2012 - - Dianjin Wang - - - - - Cravix - - dr.neemous@gmail.com - - - - 2013 - - Cravix - - - - - nyanyh - - rebuilty@gmail.com - - - - 2013 - - nyanyh - - - - - liulitchi - - xingzuo88@qq.com - - - - 2013 - - liulitchi - - - - - 玉堂白鹤 - - yjwork@qq.com - - - - 2015 - - 玉堂白鹤 - - - - - Mingye Wang - - arthur200126@gmail.com - - - - 2015-2016 - - Mingye Wang - - - - - 白铭骢 - - jeffbai@aosc.xyz - - - - 2015-2016 - - 白铭骢 - - - - - 刘子兴 - - liushuyu@aosc.xyz - - - - 2015-2016 - - 刘子兴 - -
- - - Disk Usage Analyzer - - - - - - - 介绍 - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - 入门 - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - 用法 - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - 首选项 - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/zh_CN/legal.xml mate-utils-1.26.1/baobab/help/zh_CN/legal.xml --- mate-utils-1.26.0/baobab/help/zh_CN/legal.xml 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/zh_CN/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 对于本文档的复制、分发和/或修改必须遵循自由软件基金会 (Free Software Foundation) 发布的 GNU 自由文档许可证 (GFDL) 版本 1.1 或更高版本,该许可证没有固定的部分、没有封面和背页文本。您可以在此 链接 或者随本文档一并发行的 COPYING-DOCS 中找到 GFDL 的副本。 - 本手册是在 GFDL 许可之下分发的 MATE 手册集合的一部分。如果想要单独分发此手册,可以在手册中添加该许可证的一份副本然后分发,如该许可证的第 6 部分所述。 - - 各个公司使用的许多用于区别它们产品和服务的名称都声明为商标。在所有的 MATE 文档以及 MATE 文档项目的成员中,这些名称都是以全大写字母或首字母大写显示,从而表明它们是商标。 - - 本文档和文档是根据 GNU 免费文档许可协议的条款提供的,并且还有进一步的阐述: - - 文档按“原样”提供,不提供任何明示或暗示的保证,包括但不限于:文档或文档的修改版本没有适销性方面的缺陷、适合特定目的的适用性,以及没有侵权行为。您将自行承担本文档以及文档修改版本的质量、准确性以及性能方面的风险。如果任何文档或文档修改版本存在缺陷,您(而不是最初的编写者、作者或撰写人)将承担所有必需的服务、维修或更正的费用。此免责声明是本许可证的重要组成部分。如果不接受此免责声明,那么您就没有权利使用任何文档或文档的修改版本;并且 - - - 无论在任何情况以及在任何法律理论下,本文档或文档修改版本的作者、最初的编写者、任何撰写人或任何分发者,或者任意这些方的任何提供者都不对任何人由于使用本文档或文档修改版本引起或带来的任何直接的、间接的、特殊的、偶然的或继发的损失承担任何民事(包括疏忽)、合同或其它方面的责任,这些损失包括但不限于信誉损失、工作停止、计算机失败或故障,或任何以及所有其它损失或由此引发的或与之相关的损失,即使这些方已被告知存在出现此类损失的可能性时也是如此。 - - - diff -Nru mate-utils-1.26.0/baobab/help/zh_CN/zh_CN.po mate-utils-1.26.1/baobab/help/zh_CN/zh_CN.po --- mate-utils-1.26.0/baobab/help/zh_CN/zh_CN.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/zh_CN/zh_CN.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,21 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Mingcong Bai , 2018 -# shuyu liu , 2018 -# Wolfgang Ulbrich , 2018 -# biqiu-ssw , 2018 -# zhineng404 , 2019 +# Stefano Karapetsas , 2021 +# Mingcong Bai , 2021 +# shuyu liu , 2021 +# Wolfgang Ulbrich , 2021 +# biqiu-ssw , 2021 +# zhineng404 , 2021 # OkayPJ <1535253694@qq.com>, 2021 +# Dasferco, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: OkayPJ <1535253694@qq.com>, 2021\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mate/teams/13566/zh_CN/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Dasferco, 2022\n" +"Language-Team: Chinese (China) (https://app.transifex.com/mate/teams/13566/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -25,17 +26,18 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"Christopher Meng , 2012-2013\n" -"ravix , 2013\n" +"Christopher Meng , 2012-2013\n" +"ravix , 2013\n" "Dianjin Wang <1132321739qq@gmail.com>, 2012\n" -"Cravix , 2013\n" -"nyanyh , 2013\n" -"liulitchi , 2013\n" -"玉堂白鹤 , 2015\n" -"Mingye Wang , 2015-2016\n" -"白铭骢 , 2015-2016\n" -"刘子兴 , 2015-2016\n" -"比丘,2018-2019" +"Cravix , 2013\n" +"nyanyh , 2013\n" +"liulitchi , 2013\n" +"玉堂白鹤 , 2015\n" +"Mingye Wang , 2015-2016\n" +"白铭骢 , 2015-2016\n" +"刘子兴 , 2015-2016\n" +"比丘 , 2018-2019\n" +"OkayPJ , 2020" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -131,14 +133,15 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm #: C/index.docbook:130 msgid "Disk Usage Analyzer" -msgstr "" +msgstr "磁盘使用情况分析器" #. (itstool) path: sect1/title #: C/index.docbook:138 @@ -456,7 +459,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:315 msgid "Select devices to be scanned" -msgstr "" +msgstr "选择要扫描的设备" #. (itstool) path: sect2/para #: C/index.docbook:316 @@ -493,8 +496,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/zh-Hans/zh-Hans.po mate-utils-1.26.1/baobab/help/zh-Hans/zh-Hans.po --- mate-utils-1.26.0/baobab/help/zh-Hans/zh-Hans.po 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/zh-Hans/zh-Hans.po 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,736 @@ +# +# Translators: +# Xiaoyuan Chen , 2021 +# 敏超 马 , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2021-06-04 20:34+0200\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: 敏超 马 , 2021\n" +"Language-Team: Chinese Simplified (https://app.transifex.com/mate/teams/13566/zh-Hans/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh-Hans\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Put one translator per line, in the form NAME , YEAR1, YEAR2 +msgctxt "_" +msgid "translator-credits" +msgstr "翻译人员-致谢" + +#. (itstool) path: articleinfo/title +#: C/index.docbook:23 +msgid "Disk Usage Analyzer Manual" +msgstr "" + +#. (itstool) path: abstract/para +#: C/index.docbook:26 +msgid "" +"Disk Usage Analyzer is a graphical, menu-driven viewer that you can use to " +"view and monitor your disk usage and folder structure." +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:30 +msgid "2015-2021 MATE Documentation Project" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:34 +msgid "2006 Fabio Marzocca" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:47 C/index.docbook:103 +msgid "MATE Documentation Project" +msgstr "MATE 文档项目" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:50 C/index.docbook:113 +msgid "GNOME Documentation Project" +msgstr "GNOME 文档项目" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:56 +msgid "" +"MATE Documentation Team MATE " +"Desktop " +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:62 +msgid "" +"Fabio Marzocca " +"GNOME Documentation Project
" +"thesaltydog@gmail.com
" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:71 +msgid "" +"Fabio Marzocca " +"
thesaltydog@gmail.com
" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:101 +msgid "Wolfgang Ulbrich" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:97 +msgid "" +"Disk Usage Analyzer Manual 1.10 July " +"2015 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:110 +msgid "Emmanuele Bassi ebassi@gmail.com" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:106 +msgid "" +"Disk Usage Analyzer Manual 1.0 April " +"2006 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: articleinfo/releaseinfo +#: C/index.docbook:118 +msgid "This manual describes version 1.10 of Disk Usage Analyzer." +msgstr "" + +#. (itstool) path: legalnotice/title +#: C/index.docbook:121 +msgid "Feedback" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/index.docbook:122 +msgid "" +"To report a bug or make a suggestion regarding the Disk Usage Analyzer " +"application or this manual, follow the directions in the MATE Feedback " +"Page." +msgstr "" + +#. (itstool) path: article/indexterm +#: C/index.docbook:130 +msgid "Disk Usage Analyzer" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:138 +msgid "Introduction" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:140 +msgid "" +"Disk Usage Analyzer is a graphical, menu-driven " +"application to analyze disk usage in any MATE environment. Disk" +" Usage Analyzer can easily scan either the whole filesystem " +"tree, or a specific user-requested directory branch (local or remote)." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:144 +msgid "" +"It also auto-detects in real-time any changes made to your home directory as" +" far as any mounted/unmounted device. Disk Usage " +"Analyzer also provides a full graphical treemap window for " +"each selected folder." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:153 +msgid "Getting Started" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:155 +msgid "" +"Disk Usage Analyzer can be started in three ways:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:157 +msgid "" +"from MATE menu " +"ApplicationsAccessories;" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:159 +msgid "from a terminal window;" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:161 +msgid "from Caja \"Open with...\" ;" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:166 +msgid "" +"If you want to start Disk Usage Analyzer from a " +"terminal window, just type:" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:168 +msgid "" +"mate-disk-usage-analyzer " +"<full_path_to_a_directory>, then press " +"Return." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:170 +msgid "" +"If launched from MATE menu, Disk Usage Analyzer " +"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 Disk Usage Analyzer from the MATE " +"Menu, the following window is displayed." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:175 +msgid "Disk Usage Analyzer Window" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:179 +msgctxt "_" +msgid "" +"external ref='figures/baobab_window.png' " +"md5='381c84c892310cbc49afc0d5e90ad555'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:177 +msgid "" +" Shows Disk Usage " +"Analyzer main window. Contains menubar, display area, scrollbars, and " +"statusbar. " +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:189 +msgid "The user can then:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:191 +msgid "start a full filesystem scan;" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:193 +msgid "select a specific local directory branch to scan" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:195 +msgid "select a remote server and folder to scan" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:197 +msgid "set preferences" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:207 +msgid "Usage" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:210 +msgid "Full filesystem scan" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:211 +msgid "" +"To start a full filesystem scan select " +"AnalyzerScan " +"Filesystem from the menu, or press on the " +"Scan Filesystem toolbar button." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:214 +msgid "" +"When the scanning process ends up, you will get the full tree of your " +"filesystem, like the one in the next Figure." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:219 +msgid "Disk Usage Analyzer Full filesystem scan" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:223 +msgctxt "_" +msgid "" +"external ref='figures/baobab_fullscan.png' " +"md5='c36d630b13ddb1e1712125dc34262229'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:221 +msgid "" +" Shows Disk Usage " +"Analyzer full filesystem scan window. Contains menubar, display area, " +"scrollbars, and statusbar. " +msgstr "" + +#. (itstool) path: note/para +#: C/index.docbook:233 +msgid "" +"When you run a full filesystem scan, Disk Usage " +"Analyzer 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." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:238 +msgid "" +"Disk Usage Analyzer 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 " +"ViewAllocated " +"Space ." +msgstr "" + +#. (itstool) path: warning/para +#: C/index.docbook:243 +msgid "" +"Disk Usage Analyzer 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." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:247 +msgid "" +"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." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:254 +msgid "Single folder scan" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:256 +msgid "" +"To start a single folder scan select " +"AnalyzerScan " +"Folder... from the menu, or press on the " +"Scan Folder toolbar button." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:263 +msgid "Remote scan" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:265 +msgid "" +"If you need to scan a remote server-folder, just click on the toolbar icon " +"Scan Remote Folder or select " +"AnalyzerScan Remote " +"Folder from the menu and you will get the " +"following dialog box. Disk Usage Analyzer can " +"connect to a server through ssh, ftp, smb, http and https." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:272 +msgid "Disk Usage Analyzer Remote folder scan" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:276 +msgctxt "_" +msgid "" +"external ref='figures/baobab_remote.png' " +"md5='b8d834a11cf8f227e1aefdee167a1a67'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:274 +msgid "" +" Shows Disk Usage " +"Analyzer remote folder dialog window. " +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:293 +msgid "Preferences" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:295 +msgid "" +"To change the Disk Usage Analyzer application " +"preferences, choose " +"EditPreferences." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:300 +msgid "Disk Usage Analyzer Preferences Window" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:304 +msgctxt "_" +msgid "" +"external ref='figures/baobab_prefs.png' " +"md5='64e7c2ce647708579f9cc749c63aeca5'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:302 +msgid "" +" Preferences window " +" " +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:315 +msgid "Select devices to be scanned" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:316 +msgid "" +"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." +msgstr "" + +#. (itstool) path: note/para +#: C/index.docbook:319 +msgid "The device mounted on \"/\" cannot be excluded from the scan." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:323 +msgid "Enable monitoring of home" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:324 +msgid "" +"If this option is checked, Disk Usage Analyzer " +"will constantly monitor any external changes to home directory and warn the " +"user if a file is added/removed." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:332 +msgid "Treemaps" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:334 +msgid "" +"Treemap concepts have been developed by Ben Shneiderman" +" in the '90s. Read his vision on " +"treemaps." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:339 +msgid "Disk Usage Analyzer Treemap Window" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:343 +msgctxt "_" +msgid "" +"external ref='figures/baobab_treemaps.png' " +"md5='b553b49db25f9d6b98efcc394a5d3689'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:341 +msgid "" +" Treemap's theory. Shows" +" 2 treemap diagrams " +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:354 +msgid "" +"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." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:359 +msgid "" +"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." +msgstr "" + +#. (itstool) path: note/para +#: C/index.docbook:368 +msgid "" +"Treemaps are very effective when size is the most important feature to be " +"displayed." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:374 +msgid "Ringschart" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:376 +msgid "" +"Ringschart 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:" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:383 +msgid "Disk Usage Analyzer showing a ringschart with the file system usage" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:387 +msgctxt "_" +msgid "" +"external ref='figures/baobab_ringschart1.png' " +"md5='84b2e52d360fbda7311ce59a9532be7a'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:385 +msgid "" +" After launching the " +"application, it is showed the file system usage. Graphical representation on" +" the right. " +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:398 +msgid "" +"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 Ringschart 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." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:411 +msgid "Disk Usage Analyzer showing a ringschart with the usage of a folder" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:415 +msgctxt "_" +msgid "" +"external ref='figures/baobab_ringschart2.png' " +"md5='d938ef7e9299de5b304c7654bf14e364'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:413 +msgid "" +" After scanning a " +"folder. " +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:425 +msgid "" +"The Ringschart 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." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:446 +msgid "" +"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 ringschart 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 " +"ringschart frame) you'll get the opposite behavior, " +"going back one step in the hierarchy." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:457 +msgid "" +"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." +msgstr "" + +#. (itstool) path: para/ulink +#: C/legal.xml:9 +msgid "link" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml: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-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 -Nru mate-utils-1.26.0/baobab/help/zh_HK/index.docbook mate-utils-1.26.1/baobab/help/zh_HK/index.docbook --- mate-utils-1.26.0/baobab/help/zh_HK/index.docbook 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/zh_HK/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - 導覽 - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - 用量 - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - 偏好設定 - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/zh_HK/legal.xml mate-utils-1.26.1/baobab/help/zh_HK/legal.xml --- mate-utils-1.26.0/baobab/help/zh_HK/legal.xml 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/zh_HK/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/zh_HK/zh_HK.po mate-utils-1.26.1/baobab/help/zh_HK/zh_HK.po --- mate-utils-1.26.0/baobab/help/zh_HK/zh_HK.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/zh_HK/zh_HK.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# tomoe_musashi , 2018 +# Stefano Karapetsas , 2021 +# tomoe_musashi , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: tomoe_musashi , 2018\n" -"Language-Team: Chinese (Hong Kong) (https://www.transifex.com/mate/teams/13566/zh_HK/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: tomoe_musashi , 2021\n" +"Language-Team: Chinese (Hong Kong) (https://app.transifex.com/mate/teams/13566/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -118,8 +118,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -480,8 +481,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/help/zh_TW/index.docbook mate-utils-1.26.1/baobab/help/zh_TW/index.docbook --- mate-utils-1.26.0/baobab/help/zh_TW/index.docbook 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/zh_TW/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,473 +0,0 @@ - - - - - - -]> - - -
- - - - 磁碟用量分析器手冊 - - - 磁碟用量分析器是一個讓您可以用來檢視與監視您的磁碟用量與資料夾結構的圖形化,選單驅動的檢視器。 - - - - 2015-2021 - MATE Documentation Project - - 2006 Fabio Marzocca - - - MATE文件專案 - - - GNOME文件專案 - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - 回饋 - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Walter Cheuk - - wwycheuk@gmail.com - - - - 2016. - - Walter Cheuk - -
- - - Disk Usage Analyzer - - - - - - - 導覽 - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - 用量 - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - 偏好設定 - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/zh_TW/legal.xml mate-utils-1.26.1/baobab/help/zh_TW/legal.xml --- mate-utils-1.26.0/baobab/help/zh_TW/legal.xml 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/zh_TW/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/zh_TW/zh_TW.po mate-utils-1.26.1/baobab/help/zh_TW/zh_TW.po --- mate-utils-1.26.0/baobab/help/zh_TW/zh_TW.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/zh_TW/zh_TW.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,17 @@ # # Translators: -# Walter Cheuk , 2018 -# Stefano Karapetsas , 2018 -# 趙惟倫 , 2018 -# lin feather , 2018 -# Woodman Tuen , 2018 -# 黃柏諺 , 2018 +# Stefano Karapetsas , 2021 +# 黃柏諺 , 2021 +# lin feather , 2021 +# Woodman Tuen , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 09:22+0000\n" -"Last-Translator: 黃柏諺 , 2018\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mate/teams/13566/zh_TW/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Woodman Tuen , 2021\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/mate/teams/13566/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,7 +22,7 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"黃柏諺 ,2013-14\n" +"Jeff Huang ,2013-2021\n" "Launchpad 貢獻者:\n" " Jose Sun https://launchpad.net/~josesun\n" " Toomore https://launchpad.net/~toomore\n" @@ -125,8 +123,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -487,8 +486,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title @@ -672,7 +672,7 @@ #. (itstool) path: para/ulink #: C/legal.xml:9 msgid "link" -msgstr "鏈結" +msgstr "連結" #. (itstool) path: legalnotice/para #: C/legal.xml:2 diff -Nru mate-utils-1.26.0/baobab/help/zu/index.docbook mate-utils-1.26.1/baobab/help/zu/index.docbook --- mate-utils-1.26.0/baobab/help/zu/index.docbook 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/zu/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - -]> - - -
- - - - Disk Usage Analyzer Manual - - - Disk Usage Analyzer is a graphical, menu-driven viewer that you can - use to view and monitor your disk usage and folder structure. - - - - 2015-2021 - MATE Documentation Project - - - 2006 - Fabio Marzocca - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - MATE Desktop - - - - Fabio - Marzocca - - GNOME Documentation Project -
thesaltydog@gmail.com
-
-
- - - Fabio - Marzocca - -
thesaltydog@gmail.com
-
-
- - -
- - - - - - - Disk Usage Analyzer Manual 1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Disk Usage Analyzer Manual 1.0 - April 2006 - - Emmanuele Bassi - ebassi@gmail.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Disk Usage Analyzer. - - - Feedback - To report a bug or make a suggestion regarding the Disk Usage Analyzer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - Disk Usage Analyzer - - - - - - - Introduction - - Disk Usage Analyzer is a graphical, menu-driven - application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan - either the whole filesystem tree, or a specific user-requested directory - branch (local or remote). - It also auto-detects in real-time any changes - made to your home directory as far as any mounted/unmounted device. - Disk Usage Analyzer also provides a full graphical treemap - window for each selected folder. - - - - - - Getting Started - - Disk Usage Analyzer can be started in three ways: - - from MATE menu ApplicationsAccessories; - - from a terminal window; - - from Caja "Open with..." ; - - - - -If you want to start Disk Usage Analyzer from a terminal window, just type: - -mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return. - - If launched from MATE menu, Disk Usage Analyzer starts and remains in a stand-by state, waiting for user action. - When you start Disk Usage Analyzer from the MATE Menu, the following window is displayed. - - -
- Disk Usage Analyzer Window - - - - - - - Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - -The user can then: - - start a full filesystem scan; - - select a specific local directory branch to scan - - select a remote server and folder to scan - - set preferences - - - - -
- - - - - Usage - - - Full filesystem scan - To start a full filesystem scan select AnalyzerScan Filesystem - from the menu, or press on the Scan Filesystem toolbar button. - - When the scanning process ends up, you will get the full tree of your filesystem, - like the one in the next Figure. - - -
- Disk Usage Analyzer Full filesystem scan - - - - - - - Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - - When you run a full filesystem scan, - Disk Usage Analyzer 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. - - Disk Usage Analyzer 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 ViewAllocated Space . - - Disk Usage Analyzer 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. - - 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. -
- - - Single folder scan - - To start a single folder scan select - AnalyzerScan Folder... - from the menu, or press on the Scan Folder toolbar button. - - - - - Remote scan - - If you need to scan a remote server-folder, just click on the toolbar - icon Scan Remote Folder or select AnalyzerScan Remote Folder - from the menu and you will get the following dialog box. Disk Usage Analyzer - can connect to a server through ssh, ftp, smb, http and https. - - -
- Disk Usage Analyzer Remote folder scan - - - - - - - Shows Disk Usage Analyzer remote folder dialog window. - - - -
- - -
- -
- - - - - Preferences - - To change the Disk Usage Analyzer application - preferences, choose EditPreferences. - - -
- Disk Usage Analyzer Preferences Window - - - - - - - Preferences window - - - -
- - - - Select devices to be scanned - 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. - The device mounted on "/" cannot be excluded from the scan. - - - - Enable monitoring of home - If this option is checked, Disk Usage Analyzer will - constantly monitor any external changes to home directory and warn - the user if a file is added/removed. - -
- - - - Treemaps - - Treemap concepts have been developed by Ben Shneiderman in the '90s. - Read his vision on treemaps. - - -
- Disk Usage Analyzer Treemap Window - - - - - - - Treemap's theory. Shows 2 treemap diagrams - - - -
- - - - 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. - - 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. - - Treemaps are very effective when size is the most important feature to be - displayed. -
- - - - Ringschart - - Ringschart 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: - - -
- Disk Usage Analyzer showing a ringschart with the file system usage - - - - - - - After launching the application, it is showed the - file system usage. Graphical representation on the right. - - - -
- - - 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 Ringschart 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. - - - -
- Disk Usage Analyzer showing a ringschart with the usage of a folder - - - - - - - After scanning a folder. - - - -
- - - The Ringschart 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. - - 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 - ringschart 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 - ringschart frame) you'll get the opposite - behavior, going back one step in the hierarchy. - - 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. -
-
diff -Nru mate-utils-1.26.0/baobab/help/zu/legal.xml mate-utils-1.26.1/baobab/help/zu/legal.xml --- mate-utils-1.26.0/baobab/help/zu/legal.xml 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/zu/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/baobab/help/zu/zu.po mate-utils-1.26.1/baobab/help/zu/zu.po --- mate-utils-1.26.0/baobab/help/zu/zu.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/baobab/help/zu/zu.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 , 2018\n" -"Language-Team: Zulu (https://www.transifex.com/mate/teams/13566/zu/)\n" +"PO-Revision-Date: 2021-09-21 19:05+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Zulu (https://app.transifex.com/mate/teams/13566/zu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -116,8 +116,9 @@ #: C/index.docbook:122 msgid "" "To report a bug or make a suggestion regarding the Disk Usage Analyzer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -478,8 +479,9 @@ #: C/index.docbook:334 msgid "" "Treemap concepts have been developed by Ben Shneiderman" -" in the '90s. Read his vision on treemaps." +" in the '90s. Read his vision on " +"treemaps." msgstr "" #. (itstool) path: figure/title diff -Nru mate-utils-1.26.0/baobab/Makefile.in mate-utils-1.26.1/baobab/Makefile.in --- mate-utils-1.26.0/baobab/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/baobab/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,728 +0,0 @@ -# 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 . -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 -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 = -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 = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir distdir-am -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in AUTHORS TODO -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -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@ -SUBDIRS = src data pixmaps help -EXTRA_DIST = AUTHORS README.md TODO -all: all-recursive - -.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/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign baobab/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): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -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: - -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-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ - check-am clean clean-generic clean-libtool cscopelist-am ctags \ - ctags-am distclean distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am 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-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - installdirs-am maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ - ps ps-am tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - --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 -Nru mate-utils-1.26.0/baobab/pixmaps/Makefile.in mate-utils-1.26.1/baobab/pixmaps/Makefile.in --- mate-utils-1.26.0/baobab/pixmaps/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/baobab/pixmaps/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,613 +0,0 @@ -# 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 . -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/pixmaps -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 = -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__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.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@ -png_icons = \ - hicolor_apps_16x16_mate-disk-usage-analyzer.png \ - hicolor_apps_22x22_mate-disk-usage-analyzer.png \ - hicolor_apps_24x24_mate-disk-usage-analyzer.png \ - hicolor_apps_32x32_mate-disk-usage-analyzer.png \ - hicolor_apps_48x48_mate-disk-usage-analyzer.png \ - hicolor_apps_128x128_mate-disk-usage-analyzer.png \ - $(NULL) - -public_icons = \ - $(png_icons) \ - hicolor_apps_scalable_mate-disk-usage-analyzer.svg \ - $(NULL) - -EXTRA_DIST = \ - $(public_icons) \ - $(NULL) - -gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor -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/pixmaps/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign baobab/pixmaps/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): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -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 -installdirs: -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: - -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-data-local - @$(NORMAL_INSTALL) - $(MAKE) $(AM_MAKEFLAGS) install-data-hook -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-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-local - @$(NORMAL_INSTALL) - $(MAKE) $(AM_MAKEFLAGS) uninstall-hook -.MAKE: install-am install-data-am install-strip uninstall-am - -.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-data install-data-am \ - install-data-hook install-data-local install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - 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-hook uninstall-local - -.PRECIOUS: Makefile - - -@HAVE_RSVG_CONVERT_TRUE@hicolor_apps_%.png: hicolor_apps_scalable_mate-disk-usage-analyzer.svg -@HAVE_RSVG_CONVERT_TRUE@ $(RSVG_CONVERT) -w $(word 1, $(subst x, ,$(word 1,$(subst _, ,$*)))) -h $(word 2, $(subst x, ,$(word 1,$(subst _, ,$*)))) $^ -o $@ - -############################################################################### - -install-icons: | $(public_icons) - for icon in $(public_icons); do \ - THEME=`echo $$icon | cut -d_ -f1`; \ - CONTEXT=`echo $$icon | cut -d_ -f2`; \ - SIZE=`echo $$icon | cut -d_ -f3`; \ - ICONFILE=`echo $$icon | cut -d_ -f4`; \ - mkdir -p $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \ - $(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \ - done - -uninstall-icons: - -for icon in $(public_icons); do \ - THEME=`echo $$icon | cut -d_ -f1`; \ - CONTEXT=`echo $$icon | cut -d_ -f2`; \ - SIZE=`echo $$icon | cut -d_ -f3`; \ - ICONFILE=`echo $$icon | cut -d_ -f4`; \ - rm -f $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \ - done - -install-data-local: install-icons - -uninstall-local: uninstall-icons - -install-data-hook: update-icon-cache -uninstall-hook: update-icon-cache -update-icon-cache: - @-if test -z "$(DESTDIR)"; then \ - echo "Updating Gtk icon cache."; \ - $(gtk_update_icon_cache); \ - else \ - echo "*** Icon cache not updated. After (un)install, run this:"; \ - echo "*** $(gtk_update_icon_cache)"; \ - fi - -.PHONY: build-png-icons clean-png-icons -build-png-icons: | $(png_icons) - -clean-png-icons: - rm -f $(png_icons) - --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 -Nru mate-utils-1.26.0/baobab/src/Makefile.in mate-utils-1.26.1/baobab/src/Makefile.in --- mate-utils-1.26.0/baobab/src/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/baobab/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,1044 +0,0 @@ -# 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 . - -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@ -bin_PROGRAMS = mate-disk-usage-analyzer$(EXEEXT) -subdir = baobab/src -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 = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am_mate_disk_usage_analyzer_OBJECTS = \ - mate_disk_usage_analyzer-baobab.$(OBJEXT) \ - mate_disk_usage_analyzer-baobab-cell-renderer-progress.$(OBJEXT) \ - mate_disk_usage_analyzer-baobab-ringschart.$(OBJEXT) \ - mate_disk_usage_analyzer-baobab-scan.$(OBJEXT) \ - mate_disk_usage_analyzer-baobab-treeview.$(OBJEXT) \ - mate_disk_usage_analyzer-baobab-utils.$(OBJEXT) \ - mate_disk_usage_analyzer-callbacks.$(OBJEXT) \ - mate_disk_usage_analyzer-baobab-prefs.$(OBJEXT) \ - mate_disk_usage_analyzer-baobab-remote-connect-dialog.$(OBJEXT) \ - mate_disk_usage_analyzer-baobab-chart.$(OBJEXT) \ - mate_disk_usage_analyzer-baobab-treemap.$(OBJEXT) -am__objects_1 = mate_disk_usage_analyzer-baobab-resources.$(OBJEXT) -nodist_mate_disk_usage_analyzer_OBJECTS = $(am__objects_1) -mate_disk_usage_analyzer_OBJECTS = \ - $(am_mate_disk_usage_analyzer_OBJECTS) \ - $(nodist_mate_disk_usage_analyzer_OBJECTS) -am__DEPENDENCIES_1 = -mate_disk_usage_analyzer_DEPENDENCIES = $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) -am__v_lt_0 = --silent -am__v_lt_1 = -mate_disk_usage_analyzer_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) \ - $(mate_disk_usage_analyzer_LDFLAGS) $(LDFLAGS) -o $@ -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 = -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__maybe_remake_depfiles = depfiles -am__depfiles_remade = ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-cell-renderer-progress.Po \ - ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-chart.Po \ - ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-prefs.Po \ - ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-remote-connect-dialog.Po \ - ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-resources.Po \ - ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-ringschart.Po \ - ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-scan.Po \ - ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-treemap.Po \ - ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-treeview.Po \ - ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-utils.Po \ - ./$(DEPDIR)/mate_disk_usage_analyzer-baobab.Po \ - ./$(DEPDIR)/mate_disk_usage_analyzer-callbacks.Po -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -SOURCES = $(mate_disk_usage_analyzer_SOURCES) \ - $(nodist_mate_disk_usage_analyzer_SOURCES) -DIST_SOURCES = $(mate_disk_usage_analyzer_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp -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@ -NULL = -AM_CPPFLAGS = \ - -DPREFIX=\""$(prefix)"\" \ - -DSYSCONFDIR=\""$(sysconfdir)"\" \ - -DLIBDIR=\""$(libdir)"\" \ - -DDATADIR=\""$(datadir)"\" \ - -DBAOBAB_PIX_DIR=\""$(datadir)/mate-disk-usage-analyzer/pixmaps/"\" \ - -DMATELOCALEDIR=\""$(datadir)/locale"\" \ - $(NULL) - -BUILT_SOURCES = baobab-resources.h baobab-resources.c -nodist_mate_disk_usage_analyzer_SOURCES = \ - $(BUILT_SOURCES) - -mate_disk_usage_analyzer_SOURCES = \ - baobab.c \ - baobab.h \ - baobab-cell-renderer-progress.c \ - baobab-cell-renderer-progress.h \ - baobab-ringschart.c \ - baobab-ringschart.h \ - baobab-scan.c \ - baobab-scan.h \ - baobab-treeview.c \ - baobab-treeview.h \ - baobab-utils.c \ - baobab-utils.h \ - callbacks.c \ - callbacks.h \ - baobab-prefs.c \ - baobab-prefs.h \ - baobab-remote-connect-dialog.c \ - baobab-remote-connect-dialog.h \ - baobab-chart.c \ - baobab-chart.h \ - baobab-treemap.c \ - baobab-treemap.h - -mate_disk_usage_analyzer_CFLAGS = \ - $(GLIB_CFLAGS) \ - $(GIO_CFLAGS) \ - $(GTK_CFLAGS) \ - $(LIBGTOP_CFLAGS) \ - $(WARN_CFLAGS) \ - $(NULL) - -mate_disk_usage_analyzer_LDFLAGS = -export-dynamic -mate_disk_usage_analyzer_LDADD = \ - -lm \ - $(GLIB_LIBS) \ - $(GIO_LIBS) \ - $(GTK_LIBS) \ - $(LIBGTOP_LIBS) \ - $(NULL) - -CLEANFILES = $(BUILT_SOURCES) -all: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(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/src/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign baobab/src/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): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ - fi; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p \ - || test -f $$p1 \ - ; then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' \ - -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' \ - `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list - -mate-disk-usage-analyzer$(EXEEXT): $(mate_disk_usage_analyzer_OBJECTS) $(mate_disk_usage_analyzer_DEPENDENCIES) $(EXTRA_mate_disk_usage_analyzer_DEPENDENCIES) - @rm -f mate-disk-usage-analyzer$(EXEEXT) - $(AM_V_CCLD)$(mate_disk_usage_analyzer_LINK) $(mate_disk_usage_analyzer_OBJECTS) $(mate_disk_usage_analyzer_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_disk_usage_analyzer-baobab-cell-renderer-progress.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_disk_usage_analyzer-baobab-chart.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_disk_usage_analyzer-baobab-prefs.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_disk_usage_analyzer-baobab-remote-connect-dialog.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_disk_usage_analyzer-baobab-resources.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_disk_usage_analyzer-baobab-ringschart.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_disk_usage_analyzer-baobab-scan.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_disk_usage_analyzer-baobab-treemap.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_disk_usage_analyzer-baobab-treeview.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_disk_usage_analyzer-baobab-utils.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_disk_usage_analyzer-baobab.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_disk_usage_analyzer-callbacks.Po@am__quote@ # am--include-marker - -$(am__depfiles_remade): - @$(MKDIR_P) $(@D) - @echo '# dummy' >$@-t && $(am__mv) $@-t $@ - -am--depfiles: $(am__depfiles_remade) - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< - -mate_disk_usage_analyzer-baobab.o: baobab.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab.o -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab.Tpo -c -o mate_disk_usage_analyzer-baobab.o `test -f 'baobab.c' || echo '$(srcdir)/'`baobab.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab.c' object='mate_disk_usage_analyzer-baobab.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab.o `test -f 'baobab.c' || echo '$(srcdir)/'`baobab.c - -mate_disk_usage_analyzer-baobab.obj: baobab.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab.obj -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab.Tpo -c -o mate_disk_usage_analyzer-baobab.obj `if test -f 'baobab.c'; then $(CYGPATH_W) 'baobab.c'; else $(CYGPATH_W) '$(srcdir)/baobab.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab.c' object='mate_disk_usage_analyzer-baobab.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab.obj `if test -f 'baobab.c'; then $(CYGPATH_W) 'baobab.c'; else $(CYGPATH_W) '$(srcdir)/baobab.c'; fi` - -mate_disk_usage_analyzer-baobab-cell-renderer-progress.o: baobab-cell-renderer-progress.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-cell-renderer-progress.o -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-cell-renderer-progress.Tpo -c -o mate_disk_usage_analyzer-baobab-cell-renderer-progress.o `test -f 'baobab-cell-renderer-progress.c' || echo '$(srcdir)/'`baobab-cell-renderer-progress.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-cell-renderer-progress.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-cell-renderer-progress.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-cell-renderer-progress.c' object='mate_disk_usage_analyzer-baobab-cell-renderer-progress.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-cell-renderer-progress.o `test -f 'baobab-cell-renderer-progress.c' || echo '$(srcdir)/'`baobab-cell-renderer-progress.c - -mate_disk_usage_analyzer-baobab-cell-renderer-progress.obj: baobab-cell-renderer-progress.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-cell-renderer-progress.obj -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-cell-renderer-progress.Tpo -c -o mate_disk_usage_analyzer-baobab-cell-renderer-progress.obj `if test -f 'baobab-cell-renderer-progress.c'; then $(CYGPATH_W) 'baobab-cell-renderer-progress.c'; else $(CYGPATH_W) '$(srcdir)/baobab-cell-renderer-progress.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-cell-renderer-progress.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-cell-renderer-progress.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-cell-renderer-progress.c' object='mate_disk_usage_analyzer-baobab-cell-renderer-progress.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-cell-renderer-progress.obj `if test -f 'baobab-cell-renderer-progress.c'; then $(CYGPATH_W) 'baobab-cell-renderer-progress.c'; else $(CYGPATH_W) '$(srcdir)/baobab-cell-renderer-progress.c'; fi` - -mate_disk_usage_analyzer-baobab-ringschart.o: baobab-ringschart.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-ringschart.o -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-ringschart.Tpo -c -o mate_disk_usage_analyzer-baobab-ringschart.o `test -f 'baobab-ringschart.c' || echo '$(srcdir)/'`baobab-ringschart.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-ringschart.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-ringschart.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-ringschart.c' object='mate_disk_usage_analyzer-baobab-ringschart.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-ringschart.o `test -f 'baobab-ringschart.c' || echo '$(srcdir)/'`baobab-ringschart.c - -mate_disk_usage_analyzer-baobab-ringschart.obj: baobab-ringschart.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-ringschart.obj -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-ringschart.Tpo -c -o mate_disk_usage_analyzer-baobab-ringschart.obj `if test -f 'baobab-ringschart.c'; then $(CYGPATH_W) 'baobab-ringschart.c'; else $(CYGPATH_W) '$(srcdir)/baobab-ringschart.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-ringschart.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-ringschart.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-ringschart.c' object='mate_disk_usage_analyzer-baobab-ringschart.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-ringschart.obj `if test -f 'baobab-ringschart.c'; then $(CYGPATH_W) 'baobab-ringschart.c'; else $(CYGPATH_W) '$(srcdir)/baobab-ringschart.c'; fi` - -mate_disk_usage_analyzer-baobab-scan.o: baobab-scan.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-scan.o -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-scan.Tpo -c -o mate_disk_usage_analyzer-baobab-scan.o `test -f 'baobab-scan.c' || echo '$(srcdir)/'`baobab-scan.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-scan.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-scan.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-scan.c' object='mate_disk_usage_analyzer-baobab-scan.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-scan.o `test -f 'baobab-scan.c' || echo '$(srcdir)/'`baobab-scan.c - -mate_disk_usage_analyzer-baobab-scan.obj: baobab-scan.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-scan.obj -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-scan.Tpo -c -o mate_disk_usage_analyzer-baobab-scan.obj `if test -f 'baobab-scan.c'; then $(CYGPATH_W) 'baobab-scan.c'; else $(CYGPATH_W) '$(srcdir)/baobab-scan.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-scan.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-scan.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-scan.c' object='mate_disk_usage_analyzer-baobab-scan.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-scan.obj `if test -f 'baobab-scan.c'; then $(CYGPATH_W) 'baobab-scan.c'; else $(CYGPATH_W) '$(srcdir)/baobab-scan.c'; fi` - -mate_disk_usage_analyzer-baobab-treeview.o: baobab-treeview.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-treeview.o -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-treeview.Tpo -c -o mate_disk_usage_analyzer-baobab-treeview.o `test -f 'baobab-treeview.c' || echo '$(srcdir)/'`baobab-treeview.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-treeview.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-treeview.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-treeview.c' object='mate_disk_usage_analyzer-baobab-treeview.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-treeview.o `test -f 'baobab-treeview.c' || echo '$(srcdir)/'`baobab-treeview.c - -mate_disk_usage_analyzer-baobab-treeview.obj: baobab-treeview.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-treeview.obj -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-treeview.Tpo -c -o mate_disk_usage_analyzer-baobab-treeview.obj `if test -f 'baobab-treeview.c'; then $(CYGPATH_W) 'baobab-treeview.c'; else $(CYGPATH_W) '$(srcdir)/baobab-treeview.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-treeview.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-treeview.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-treeview.c' object='mate_disk_usage_analyzer-baobab-treeview.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-treeview.obj `if test -f 'baobab-treeview.c'; then $(CYGPATH_W) 'baobab-treeview.c'; else $(CYGPATH_W) '$(srcdir)/baobab-treeview.c'; fi` - -mate_disk_usage_analyzer-baobab-utils.o: baobab-utils.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-utils.o -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-utils.Tpo -c -o mate_disk_usage_analyzer-baobab-utils.o `test -f 'baobab-utils.c' || echo '$(srcdir)/'`baobab-utils.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-utils.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-utils.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-utils.c' object='mate_disk_usage_analyzer-baobab-utils.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-utils.o `test -f 'baobab-utils.c' || echo '$(srcdir)/'`baobab-utils.c - -mate_disk_usage_analyzer-baobab-utils.obj: baobab-utils.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-utils.obj -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-utils.Tpo -c -o mate_disk_usage_analyzer-baobab-utils.obj `if test -f 'baobab-utils.c'; then $(CYGPATH_W) 'baobab-utils.c'; else $(CYGPATH_W) '$(srcdir)/baobab-utils.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-utils.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-utils.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-utils.c' object='mate_disk_usage_analyzer-baobab-utils.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-utils.obj `if test -f 'baobab-utils.c'; then $(CYGPATH_W) 'baobab-utils.c'; else $(CYGPATH_W) '$(srcdir)/baobab-utils.c'; fi` - -mate_disk_usage_analyzer-callbacks.o: callbacks.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-callbacks.o -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-callbacks.Tpo -c -o mate_disk_usage_analyzer-callbacks.o `test -f 'callbacks.c' || echo '$(srcdir)/'`callbacks.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-callbacks.Tpo $(DEPDIR)/mate_disk_usage_analyzer-callbacks.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='callbacks.c' object='mate_disk_usage_analyzer-callbacks.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-callbacks.o `test -f 'callbacks.c' || echo '$(srcdir)/'`callbacks.c - -mate_disk_usage_analyzer-callbacks.obj: callbacks.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-callbacks.obj -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-callbacks.Tpo -c -o mate_disk_usage_analyzer-callbacks.obj `if test -f 'callbacks.c'; then $(CYGPATH_W) 'callbacks.c'; else $(CYGPATH_W) '$(srcdir)/callbacks.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-callbacks.Tpo $(DEPDIR)/mate_disk_usage_analyzer-callbacks.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='callbacks.c' object='mate_disk_usage_analyzer-callbacks.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-callbacks.obj `if test -f 'callbacks.c'; then $(CYGPATH_W) 'callbacks.c'; else $(CYGPATH_W) '$(srcdir)/callbacks.c'; fi` - -mate_disk_usage_analyzer-baobab-prefs.o: baobab-prefs.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-prefs.o -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-prefs.Tpo -c -o mate_disk_usage_analyzer-baobab-prefs.o `test -f 'baobab-prefs.c' || echo '$(srcdir)/'`baobab-prefs.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-prefs.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-prefs.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-prefs.c' object='mate_disk_usage_analyzer-baobab-prefs.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-prefs.o `test -f 'baobab-prefs.c' || echo '$(srcdir)/'`baobab-prefs.c - -mate_disk_usage_analyzer-baobab-prefs.obj: baobab-prefs.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-prefs.obj -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-prefs.Tpo -c -o mate_disk_usage_analyzer-baobab-prefs.obj `if test -f 'baobab-prefs.c'; then $(CYGPATH_W) 'baobab-prefs.c'; else $(CYGPATH_W) '$(srcdir)/baobab-prefs.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-prefs.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-prefs.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-prefs.c' object='mate_disk_usage_analyzer-baobab-prefs.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-prefs.obj `if test -f 'baobab-prefs.c'; then $(CYGPATH_W) 'baobab-prefs.c'; else $(CYGPATH_W) '$(srcdir)/baobab-prefs.c'; fi` - -mate_disk_usage_analyzer-baobab-remote-connect-dialog.o: baobab-remote-connect-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-remote-connect-dialog.o -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-remote-connect-dialog.Tpo -c -o mate_disk_usage_analyzer-baobab-remote-connect-dialog.o `test -f 'baobab-remote-connect-dialog.c' || echo '$(srcdir)/'`baobab-remote-connect-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-remote-connect-dialog.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-remote-connect-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-remote-connect-dialog.c' object='mate_disk_usage_analyzer-baobab-remote-connect-dialog.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-remote-connect-dialog.o `test -f 'baobab-remote-connect-dialog.c' || echo '$(srcdir)/'`baobab-remote-connect-dialog.c - -mate_disk_usage_analyzer-baobab-remote-connect-dialog.obj: baobab-remote-connect-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-remote-connect-dialog.obj -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-remote-connect-dialog.Tpo -c -o mate_disk_usage_analyzer-baobab-remote-connect-dialog.obj `if test -f 'baobab-remote-connect-dialog.c'; then $(CYGPATH_W) 'baobab-remote-connect-dialog.c'; else $(CYGPATH_W) '$(srcdir)/baobab-remote-connect-dialog.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-remote-connect-dialog.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-remote-connect-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-remote-connect-dialog.c' object='mate_disk_usage_analyzer-baobab-remote-connect-dialog.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-remote-connect-dialog.obj `if test -f 'baobab-remote-connect-dialog.c'; then $(CYGPATH_W) 'baobab-remote-connect-dialog.c'; else $(CYGPATH_W) '$(srcdir)/baobab-remote-connect-dialog.c'; fi` - -mate_disk_usage_analyzer-baobab-chart.o: baobab-chart.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-chart.o -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-chart.Tpo -c -o mate_disk_usage_analyzer-baobab-chart.o `test -f 'baobab-chart.c' || echo '$(srcdir)/'`baobab-chart.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-chart.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-chart.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-chart.c' object='mate_disk_usage_analyzer-baobab-chart.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-chart.o `test -f 'baobab-chart.c' || echo '$(srcdir)/'`baobab-chart.c - -mate_disk_usage_analyzer-baobab-chart.obj: baobab-chart.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-chart.obj -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-chart.Tpo -c -o mate_disk_usage_analyzer-baobab-chart.obj `if test -f 'baobab-chart.c'; then $(CYGPATH_W) 'baobab-chart.c'; else $(CYGPATH_W) '$(srcdir)/baobab-chart.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-chart.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-chart.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-chart.c' object='mate_disk_usage_analyzer-baobab-chart.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-chart.obj `if test -f 'baobab-chart.c'; then $(CYGPATH_W) 'baobab-chart.c'; else $(CYGPATH_W) '$(srcdir)/baobab-chart.c'; fi` - -mate_disk_usage_analyzer-baobab-treemap.o: baobab-treemap.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-treemap.o -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-treemap.Tpo -c -o mate_disk_usage_analyzer-baobab-treemap.o `test -f 'baobab-treemap.c' || echo '$(srcdir)/'`baobab-treemap.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-treemap.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-treemap.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-treemap.c' object='mate_disk_usage_analyzer-baobab-treemap.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-treemap.o `test -f 'baobab-treemap.c' || echo '$(srcdir)/'`baobab-treemap.c - -mate_disk_usage_analyzer-baobab-treemap.obj: baobab-treemap.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-treemap.obj -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-treemap.Tpo -c -o mate_disk_usage_analyzer-baobab-treemap.obj `if test -f 'baobab-treemap.c'; then $(CYGPATH_W) 'baobab-treemap.c'; else $(CYGPATH_W) '$(srcdir)/baobab-treemap.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-treemap.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-treemap.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-treemap.c' object='mate_disk_usage_analyzer-baobab-treemap.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-treemap.obj `if test -f 'baobab-treemap.c'; then $(CYGPATH_W) 'baobab-treemap.c'; else $(CYGPATH_W) '$(srcdir)/baobab-treemap.c'; fi` - -mate_disk_usage_analyzer-baobab-resources.o: baobab-resources.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-resources.o -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-resources.Tpo -c -o mate_disk_usage_analyzer-baobab-resources.o `test -f 'baobab-resources.c' || echo '$(srcdir)/'`baobab-resources.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-resources.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-resources.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-resources.c' object='mate_disk_usage_analyzer-baobab-resources.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-resources.o `test -f 'baobab-resources.c' || echo '$(srcdir)/'`baobab-resources.c - -mate_disk_usage_analyzer-baobab-resources.obj: baobab-resources.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -MT mate_disk_usage_analyzer-baobab-resources.obj -MD -MP -MF $(DEPDIR)/mate_disk_usage_analyzer-baobab-resources.Tpo -c -o mate_disk_usage_analyzer-baobab-resources.obj `if test -f 'baobab-resources.c'; then $(CYGPATH_W) 'baobab-resources.c'; else $(CYGPATH_W) '$(srcdir)/baobab-resources.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_usage_analyzer-baobab-resources.Tpo $(DEPDIR)/mate_disk_usage_analyzer-baobab-resources.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='baobab-resources.c' object='mate_disk_usage_analyzer-baobab-resources.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_disk_usage_analyzer_CFLAGS) $(CFLAGS) -c -o mate_disk_usage_analyzer-baobab-resources.obj `if test -f 'baobab-resources.c'; then $(CYGPATH_W) 'baobab-resources.c'; else $(CYGPATH_W) '$(srcdir)/baobab-resources.c'; fi` - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) 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." - -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-cell-renderer-progress.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-chart.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-prefs.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-remote-connect-dialog.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-resources.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-ringschart.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-scan.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-treemap.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-treeview.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-utils.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-callbacks.Po - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -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 ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-cell-renderer-progress.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-chart.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-prefs.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-remote-connect-dialog.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-resources.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-ringschart.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-scan.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-treemap.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-treeview.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab-utils.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-baobab.Po - -rm -f ./$(DEPDIR)/mate_disk_usage_analyzer-callbacks.Po - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: all check install install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \ - ctags ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-binPROGRAMS \ - 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-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am uninstall-binPROGRAMS - -.PRECIOUS: Makefile - - -baobab-resources.h baobab-resources.c: $(srcdir)/../data/org.mate.disk-usage-analyzer.gresource.xml Makefile $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies --sourcedir $(srcdir)/../data $(srcdir)/../data/org.mate.disk-usage-analyzer.gresource.xml) - $(AM_V_GEN) XMLLINT=$(XMLLINT) $(GLIB_COMPILE_RESOURCES) --target $@ --sourcedir $(srcdir)/../data --generate --c-name baobab $< - --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 -Nru mate-utils-1.26.0/.build.yml mate-utils-1.26.1/.build.yml --- mate-utils-1.26.0/.build.yml 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/.build.yml 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,145 @@ +########################################################## +# THE FOLLOWING LINES IS USED BY docker-build +########################################################## +requires: + archlinux: + # Useful URL: https://git.archlinux.org/svntogit/community.git/tree/mate-utils + - autoconf-archive + - clang + - gcc + - git + - itstool + - libcanberra + - libgtop + - make + - mate-common + - mate-panel + - python + - udisks2 + - which + - yelp-tools + + debian: + # Useful URL: https://github.com/mate-desktop/debian-packages + # Useful URL: https://salsa.debian.org/debian-mate-team/mate-utils + - autoconf-archive + - autopoint + - clang + - clang-tools + - cppcheck + - gcc + - g++ + - git + - gtk-doc-tools + - libcanberra-gtk3-dev + - libglib2.0-dev + - libgtk-3-dev + - libgtop2-dev + - libmate-panel-applet-dev + - libudisks2-dev + - libx11-dev + - libxext-dev + - libxt-dev + - make + - mate-common + - x11proto-xext-dev + - xsltproc + - yelp-tools + - zlib1g-dev + + fedora: + # Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-utils.git + - autoconf-archive + - clang + - clang-analyzer + - desktop-file-utils + - e2fsprogs-devel + - gcc + - gcc-c++ + - git + - hardlink + - libX11-devel + - libXmu-devel + - libcanberra-devel + - libgtop2-devel + - libudisks2-devel + - make + - mate-common + - mate-panel-devel + - mesa-libGL-devel + - popt-devel + - redhat-rpm-config + - usermode + - yelp-tools + + ubuntu: + - autoconf-archive + - autopoint + - clang + - clang-tools + - g++ + - git + - gtk-doc-tools + - libcanberra-gtk3-dev + - libglib2.0-dev + - libgtk-3-dev + - libgtop2-dev + - libmate-panel-applet-dev + - libudisks2-dev + - libx11-dev + - libxext-dev + - libxt-dev + - make + - mate-common + - x11proto-xext-dev + - xsltproc + - yelp-tools + - zlib1g-dev + +variables: + - 'CHECKERS=" + -enable-checker deadcode.DeadStores + -enable-checker alpha.deadcode.UnreachableCode + -enable-checker alpha.core.CastSize + -enable-checker alpha.core.CastToStruct + -enable-checker alpha.core.IdenticalExpr + -enable-checker alpha.core.SizeofPtr + -enable-checker alpha.security.ArrayBoundV2 + -enable-checker alpha.security.MallocOverflow + -enable-checker alpha.security.ReturnPtrRange + -enable-checker alpha.unix.SimpleStream + -enable-checker alpha.unix.cstring.BufferOverlap + -enable-checker alpha.unix.cstring.NotNullTerminated + -enable-checker alpha.unix.cstring.OutOfBounds + -enable-checker alpha.core.FixedAddr + -enable-checker security.insecureAPI.strcpy"' + +before_scripts: + +build_scripts: + - NOCONFIGURE=1 ./autogen.sh + - scan-build $CHECKERS ./configure + - if [ $CPU_COUNT -gt 1 ]; then + - scan-build $CHECKERS --keep-cc -o html-report make -j $CPU_COUNT + - else + - scan-build $CHECKERS --keep-cc -o html-report make + - fi + - if [ ${DISTRO_NAME} == "debian" ];then + - cppcheck --enable=warning,style,performance,portability,information,missingInclude . + - fi + +after_scripts: + - make distcheck + +releases: + draft: false + prerelease: false + checksum: true + file_glob: true + files: mate-utils-*.tar.xz + github_release: + tags: true + overwrite: true + base_version: 1.20.0 + notify_servers: + - https://release.mate-desktop.org/release diff -Nru mate-utils-1.26.0/ChangeLog mate-utils-1.26.1/ChangeLog --- mate-utils-1.26.0/ChangeLog 2021-08-05 19:49:33.000000000 +0000 +++ mate-utils-1.26.1/ChangeLog 2023-05-09 13:31:58.000000000 +0000 @@ -1,3444 +1,2 @@ -commit e2bc7b040850a7c883fe318dfa1c8d69155914c8 -Author: raveit65 -Date: Thu Aug 5 21:37:45 2021 +0200 - - release 1.26.0 - - NEWS | 5 +++++ - configure.ac | 4 ++-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit 40c6869a4097e40d2945aac44f12c59ef60e4825 -Author: raveit65 -Date: Thu Aug 5 21:36:16 2021 +0200 - - tx: sync with transifex - - baobab/help/af/af.po | 129 +-- - baobab/help/am/am.po | 129 +-- - baobab/help/an/an.po | 129 +-- - baobab/help/ar/ar.po | 129 +-- - baobab/help/as/as.po | 129 +-- - baobab/help/ast/ast.po | 129 +-- - baobab/help/az/az.po | 129 +-- - baobab/help/be/be.po | 129 +-- - baobab/help/bg/bg.po | 129 +-- - baobab/help/bn/bn.po | 129 +-- - baobab/help/bn_IN/bn_IN.po | 129 +-- - baobab/help/br/br.po | 129 +-- - baobab/help/bs/bs.po | 129 +-- - baobab/help/ca/ca.po | 208 ++-- - baobab/help/ca@valencia/ca@valencia.po | 204 ++-- - baobab/help/cmn/cmn.po | 129 +-- - baobab/help/crh/crh.po | 129 +-- - baobab/help/cs/cs.po | 177 ++- - baobab/help/cy/cy.po | 129 +-- - baobab/help/da/da.po | 203 ++-- - baobab/help/de/de.po | 216 ++-- - baobab/help/dz/dz.po | 129 +-- - baobab/help/el/el.po | 192 ++-- - baobab/help/en_AU/en_AU.po | 129 +-- - baobab/help/en_CA/en_CA.po | 129 +-- - baobab/help/en_GB/en_GB.po | 201 ++-- - baobab/help/eo/eo.po | 153 ++- - baobab/help/es/es.po | 210 ++-- - baobab/help/es_AR/es_AR.po | 129 +-- - baobab/help/es_CL/es_CL.po | 129 +-- - baobab/help/es_CO/es_CO.po | 129 +-- - baobab/help/es_ES/es_ES.po | 129 +-- - baobab/help/es_MX/es_MX.po | 129 +-- - baobab/help/es_PR/es_PR.po | 129 +-- - baobab/help/et/et.po | 129 +-- - baobab/help/eu/eu.po | 202 ++-- - baobab/help/fa/fa.po | 129 +-- - baobab/help/fi/fi.po | 129 +-- - baobab/help/fr/fr.po | 209 ++-- - baobab/help/frp/frp.po | 129 +-- - baobab/help/fur/fur.po | 129 +-- - baobab/help/fy/fy.po | 129 +-- - baobab/help/ga/ga.po | 129 +-- - baobab/help/gl/gl.po | 208 ++-- - baobab/help/gu/gu.po | 129 +-- - baobab/help/ha/ha.po | 129 +-- - baobab/help/he/he.po | 129 +-- - baobab/help/hi/hi.po | 129 +-- - baobab/help/hr/hr.po | 149 ++- - baobab/help/hu/hu.po | 210 ++-- - baobab/help/hy/hy.po | 129 +-- - baobab/help/ia/ia.po | 129 +-- - baobab/help/id/id.po | 202 ++-- - baobab/help/ie/ie.po | 129 +-- - baobab/help/ig/ig.po | 129 +-- - baobab/help/is/is.po | 129 +-- - baobab/help/it/it.po | 208 ++-- - baobab/help/ja/ja.po | 360 ++++--- - baobab/help/jv/jv.po | 129 +-- - baobab/help/ka/ka.po | 129 +-- - baobab/help/kab/kab.po | 129 +-- - baobab/help/kk/kk.po | 129 +-- - baobab/help/km/km.po | 129 +-- - baobab/help/kn/kn.po | 129 +-- - baobab/help/ko/ko.po | 163 ++- - baobab/help/ku/ku.po | 129 +-- - baobab/help/ku_IQ/ku_IQ.po | 129 +-- - baobab/help/ky/ky.po | 129 +-- - baobab/help/la/la.po | 129 +-- - baobab/help/lt/lt.po | 189 ++-- - baobab/help/lv/lv.po | 129 +-- - baobab/help/mai/mai.po | 129 +-- - baobab/help/mg/mg.po | 129 +-- - baobab/help/mi/mi.po | 129 +-- - baobab/help/mk/mk.po | 129 +-- - baobab/help/ml/ml.po | 129 +-- - baobab/help/mn/mn.po | 129 +-- - baobab/help/mr/mr.po | 129 +-- - baobab/help/ms/ms.po | 206 ++-- - baobab/help/nb/nb.po | 129 +-- - baobab/help/nds/nds.po | 129 +-- - baobab/help/ne/ne.po | 129 +-- - baobab/help/nl/nl.po | 184 ++-- - baobab/help/nn/nn.po | 129 +-- - baobab/help/nso/nso.po | 129 +-- - baobab/help/oc/oc.po | 208 ++-- - baobab/help/or/or.po | 129 +-- - baobab/help/pa/pa.po | 193 ++-- - baobab/help/pl/pl.po | 184 ++-- - baobab/help/ps/ps.po | 129 +-- - baobab/help/pt/pt.po | 210 ++-- - baobab/help/pt_BR/pt_BR.po | 208 ++-- - baobab/help/ro/ro.po | 129 +-- - baobab/help/ru/ru.po | 196 ++-- - baobab/help/si/si.po | 129 +-- - baobab/help/sk/sk.po | 189 ++-- - baobab/help/sl/sl.po | 129 +-- - baobab/help/sq/sq.po | 144 ++- - baobab/help/sr/sr.po | 222 ++-- - baobab/help/sr@latin/sr@latin.po | 129 +-- - baobab/help/sv/sv.po | 203 ++-- - baobab/help/ta/ta.po | 129 +-- - baobab/help/te/te.po | 129 +-- - baobab/help/th/th.po | 199 ++-- - baobab/help/tk/tk.po | 129 +-- - baobab/help/tr/tr.po | 200 ++-- - baobab/help/ug/ug.po | 129 +-- - baobab/help/uk/uk.po | 202 ++-- - baobab/help/ur/ur.po | 129 +-- - baobab/help/uz/uz.po | 129 +-- - baobab/help/vi/vi.po | 129 +-- - baobab/help/wa/wa.po | 129 +-- - baobab/help/xh/xh.po | 129 +-- - baobab/help/yo/yo.po | 129 +-- - baobab/help/zh_CN/zh_CN.po | 149 ++- - baobab/help/zh_HK/zh_HK.po | 129 +-- - baobab/help/zh_TW/zh_TW.po | 129 +-- - baobab/help/zu/zu.po | 129 +-- - gsearchtool/help/af/af.po | 129 +-- - gsearchtool/help/am/am.po | 129 +-- - gsearchtool/help/ar/ar.po | 129 +-- - gsearchtool/help/as/as.po | 129 +-- - gsearchtool/help/ast/ast.po | 129 +-- - gsearchtool/help/az/az.po | 129 +-- - gsearchtool/help/be/be.po | 129 +-- - gsearchtool/help/bg/bg.po | 129 +-- - gsearchtool/help/bn/bn.po | 129 +-- - gsearchtool/help/bn_IN/bn_IN.po | 129 +-- - gsearchtool/help/br/br.po | 129 +-- - gsearchtool/help/bs/bs.po | 129 +-- - gsearchtool/help/ca/ca.po | 208 ++-- - gsearchtool/help/ca@valencia/ca@valencia.po | 204 ++-- - gsearchtool/help/cmn/cmn.po | 129 +-- - gsearchtool/help/crh/crh.po | 129 +-- - gsearchtool/help/cs/cs.po | 177 ++- - gsearchtool/help/cy/cy.po | 129 +-- - gsearchtool/help/da/da.po | 203 ++-- - gsearchtool/help/de/de.po | 216 ++-- - gsearchtool/help/dz/dz.po | 129 +-- - gsearchtool/help/el/el.po | 192 ++-- - gsearchtool/help/en_AU/en_AU.po | 129 +-- - gsearchtool/help/en_CA/en_CA.po | 129 +-- - gsearchtool/help/en_GB/en_GB.po | 201 ++-- - gsearchtool/help/eo/eo.po | 153 ++- - gsearchtool/help/es/es.po | 212 ++-- - gsearchtool/help/es_AR/es_AR.po | 129 +-- - gsearchtool/help/es_CL/es_CL.po | 129 +-- - gsearchtool/help/es_CO/es_CO.po | 129 +-- - gsearchtool/help/es_ES/es_ES.po | 129 +-- - gsearchtool/help/et/et.po | 129 +-- - gsearchtool/help/eu/eu.po | 202 ++-- - gsearchtool/help/fa/fa.po | 129 +-- - gsearchtool/help/fi/fi.po | 129 +-- - gsearchtool/help/fr/fr.po | 217 ++-- - gsearchtool/help/fur/fur.po | 129 +-- - gsearchtool/help/fy/fy.po | 129 +-- - gsearchtool/help/ga/ga.po | 129 +-- - gsearchtool/help/gl/gl.po | 208 ++-- - gsearchtool/help/gu/gu.po | 129 +-- - gsearchtool/help/ha/ha.po | 129 +-- - gsearchtool/help/he/he.po | 129 +-- - gsearchtool/help/hi/hi.po | 129 +-- - gsearchtool/help/hr/hr.po | 149 ++- - gsearchtool/help/hu/hu.po | 208 ++-- - gsearchtool/help/hy/hy.po | 129 +-- - gsearchtool/help/id/id.po | 209 ++-- - gsearchtool/help/ie/ie.po | 129 +-- - gsearchtool/help/ig/ig.po | 129 +-- - gsearchtool/help/is/is.po | 129 +-- - gsearchtool/help/it/it.po | 208 ++-- - gsearchtool/help/ja/ja.po | 235 ++-- - gsearchtool/help/ka/ka.po | 129 +-- - gsearchtool/help/kab/kab.po | 129 +-- - gsearchtool/help/kk/kk.po | 129 +-- - gsearchtool/help/kn/kn.po | 129 +-- - gsearchtool/help/ko/ko.po | 163 ++- - gsearchtool/help/ku/ku.po | 129 +-- - gsearchtool/help/ky/ky.po | 129 +-- - gsearchtool/help/lt/lt.po | 189 ++-- - gsearchtool/help/lv/lv.po | 129 +-- - gsearchtool/help/mai/mai.po | 129 +-- - gsearchtool/help/mg/mg.po | 129 +-- - gsearchtool/help/mk/mk.po | 129 +-- - gsearchtool/help/ml/ml.po | 129 +-- - gsearchtool/help/mn/mn.po | 129 +-- - gsearchtool/help/mr/mr.po | 129 +-- - gsearchtool/help/ms/ms.po | 206 ++-- - gsearchtool/help/nb/nb.po | 129 +-- - gsearchtool/help/nds/nds.po | 129 +-- - gsearchtool/help/ne/ne.po | 129 +-- - gsearchtool/help/nl/nl.po | 184 ++-- - gsearchtool/help/nn/nn.po | 129 +-- - gsearchtool/help/nso/nso.po | 129 +-- - gsearchtool/help/oc/oc.po | 214 ++-- - gsearchtool/help/or/or.po | 129 +-- - gsearchtool/help/pa/pa.po | 193 ++-- - gsearchtool/help/pl/pl.po | 184 ++-- - gsearchtool/help/ps/ps.po | 129 +-- - gsearchtool/help/pt/pt.po | 208 ++-- - gsearchtool/help/pt_BR/pt_BR.po | 208 ++-- - gsearchtool/help/ro/ro.po | 129 +-- - gsearchtool/help/ru/ru.po | 194 ++-- - gsearchtool/help/si/si.po | 129 +-- - gsearchtool/help/sk/sk.po | 189 ++-- - gsearchtool/help/sl/sl.po | 129 +-- - gsearchtool/help/sq/sq.po | 144 ++- - gsearchtool/help/sr/sr.po | 201 ++-- - gsearchtool/help/sr@latin/sr@latin.po | 129 +-- - gsearchtool/help/sv/sv.po | 209 ++-- - gsearchtool/help/ta/ta.po | 129 +-- - gsearchtool/help/te/te.po | 129 +-- - gsearchtool/help/th/th.po | 199 ++-- - gsearchtool/help/tr/tr.po | 200 ++-- - gsearchtool/help/ug/ug.po | 129 +-- - gsearchtool/help/uk/uk.po | 206 ++-- - gsearchtool/help/ur/ur.po | 129 +-- - gsearchtool/help/uz/uz.po | 129 +-- - gsearchtool/help/vi/vi.po | 129 +-- - gsearchtool/help/wa/wa.po | 129 +-- - gsearchtool/help/xh/xh.po | 129 +-- - gsearchtool/help/yo/yo.po | 129 +-- - gsearchtool/help/zh_CN/zh_CN.po | 149 ++- - gsearchtool/help/zh_HK/zh_HK.po | 129 +-- - gsearchtool/help/zh_TW/zh_TW.po | 129 +-- - gsearchtool/help/zu/zu.po | 129 +-- - logview/help/af/af.po | 129 +-- - logview/help/am/am.po | 129 +-- - logview/help/ar/ar.po | 129 +-- - logview/help/as/as.po | 129 +-- - logview/help/ast/ast.po | 129 +-- - logview/help/az/az.po | 129 +-- - logview/help/be/be.po | 129 +-- - logview/help/bg/bg.po | 129 +-- - logview/help/bn/bn.po | 129 +-- - logview/help/bn_IN/bn_IN.po | 129 +-- - logview/help/br/br.po | 129 +-- - logview/help/bs/bs.po | 129 +-- - logview/help/ca/ca.po | 208 ++-- - logview/help/ca@valencia/ca@valencia.po | 204 ++-- - logview/help/cmn/cmn.po | 129 +-- - logview/help/crh/crh.po | 129 +-- - logview/help/cs/cs.po | 177 ++- - logview/help/cy/cy.po | 129 +-- - logview/help/da/da.po | 203 ++-- - logview/help/de/de.po | 216 ++-- - logview/help/dz/dz.po | 129 +-- - logview/help/el/el.po | 192 ++-- - logview/help/en_AU/en_AU.po | 129 +-- - logview/help/en_CA/en_CA.po | 129 +-- - logview/help/en_GB/en_GB.po | 201 ++-- - logview/help/eo/eo.po | 153 ++- - logview/help/es/es.po | 210 ++-- - logview/help/es_AR/es_AR.po | 129 +-- - logview/help/es_CL/es_CL.po | 129 +-- - logview/help/es_CO/es_CO.po | 129 +-- - logview/help/es_CR/es_CR.po | 129 +-- - logview/help/es_DO/es_DO.po | 129 +-- - logview/help/es_EC/es_EC.po | 129 +-- - logview/help/es_ES/es_ES.po | 129 +-- - logview/help/es_MX/es_MX.po | 129 +-- - logview/help/es_NI/es_NI.po | 129 +-- - logview/help/es_PA/es_PA.po | 129 +-- - logview/help/es_PE/es_PE.po | 129 +-- - logview/help/es_PR/es_PR.po | 129 +-- - logview/help/es_SV/es_SV.po | 129 +-- - logview/help/es_UY/es_UY.po | 129 +-- - logview/help/es_VE/es_VE.po | 129 +-- - logview/help/et/et.po | 129 +-- - logview/help/eu/eu.po | 202 ++-- - logview/help/fa/fa.po | 129 +-- - logview/help/fi/fi.po | 129 +-- - logview/help/fr/fr.po | 226 ++-- - logview/help/fur/fur.po | 129 +-- - logview/help/fy/fy.po | 129 +-- - logview/help/ga/ga.po | 129 +-- - logview/help/gl/gl.po | 208 ++-- - logview/help/gu/gu.po | 129 +-- - logview/help/ha/ha.po | 129 +-- - logview/help/he/he.po | 129 +-- - logview/help/hi/hi.po | 129 +-- - logview/help/hr/hr.po | 149 ++- - logview/help/hu/hu.po | 210 ++-- - logview/help/hy/hy.po | 129 +-- - logview/help/ia/ia.po | 129 +-- - logview/help/id/id.po | 202 ++-- - logview/help/ie/ie.po | 129 +-- - logview/help/ig/ig.po | 129 +-- - logview/help/is/is.po | 129 +-- - logview/help/it/it.po | 208 ++-- - logview/help/ja/ja.po | 305 +++--- - logview/help/ka/ka.po | 129 +-- - logview/help/kab/kab.po | 129 +-- - logview/help/kk/kk.po | 129 +-- - logview/help/kn/kn.po | 129 +-- - logview/help/ko/ko.po | 163 ++- - logview/help/ku/ku.po | 129 +-- - logview/help/ky/ky.po | 129 +-- - logview/help/lt/lt.po | 189 ++-- - logview/help/lv/lv.po | 129 +-- - logview/help/mai/mai.po | 129 +-- - logview/help/mg/mg.po | 129 +-- - logview/help/mk/mk.po | 129 +-- - logview/help/ml/ml.po | 129 +-- - logview/help/mn/mn.po | 129 +-- - logview/help/mr/mr.po | 129 +-- - logview/help/ms/ms.po | 204 ++-- - logview/help/nb/nb.po | 129 +-- - logview/help/nds/nds.po | 129 +-- - logview/help/ne/ne.po | 129 +-- - logview/help/nl/nl.po | 186 ++-- - logview/help/nn/nn.po | 129 +-- - logview/help/nso/nso.po | 129 +-- - logview/help/oc/oc.po | 210 ++-- - logview/help/or/or.po | 129 +-- - logview/help/pa/pa.po | 193 ++-- - logview/help/pl/pl.po | 184 ++-- - logview/help/ps/ps.po | 129 +-- - logview/help/pt/pt.po | 208 ++-- - logview/help/pt_BR/pt_BR.po | 208 ++-- - logview/help/ro/ro.po | 129 +-- - logview/help/ru/ru.po | 196 ++-- - logview/help/si/si.po | 129 +-- - logview/help/sk/sk.po | 189 ++-- - logview/help/sl/sl.po | 129 +-- - logview/help/sq/sq.po | 144 ++- - logview/help/sr/sr.po | 199 ++-- - logview/help/sr@latin/sr@latin.po | 129 +-- - logview/help/sv/sv.po | 203 ++-- - logview/help/ta/ta.po | 129 +-- - logview/help/te/te.po | 129 +-- - logview/help/th/th.po | 199 ++-- - logview/help/tr/tr.po | 200 ++-- - logview/help/ug/ug.po | 129 +-- - logview/help/uk/uk.po | 204 ++-- - logview/help/ur/ur.po | 129 +-- - logview/help/uz/uz.po | 129 +-- - logview/help/vi/vi.po | 129 +-- - logview/help/wa/wa.po | 129 +-- - logview/help/xh/xh.po | 129 +-- - logview/help/yo/yo.po | 129 +-- - logview/help/zh_CN/zh_CN.po | 149 ++- - logview/help/zh_HK/zh_HK.po | 129 +-- - logview/help/zh_TW/zh_TW.po | 129 +-- - logview/help/zu/zu.po | 129 +-- - mate-dictionary/help/af/af.po | 129 +-- - mate-dictionary/help/am/am.po | 129 +-- - mate-dictionary/help/ar/ar.po | 129 +-- - mate-dictionary/help/as/as.po | 129 +-- - mate-dictionary/help/ast/ast.po | 129 +-- - mate-dictionary/help/az/az.po | 129 +-- - mate-dictionary/help/be/be.po | 129 +-- - mate-dictionary/help/bg/bg.po | 129 +-- - mate-dictionary/help/bn/bn.po | 129 +-- - mate-dictionary/help/bn_IN/bn_IN.po | 129 +-- - mate-dictionary/help/br/br.po | 129 +-- - mate-dictionary/help/bs/bs.po | 129 +-- - mate-dictionary/help/ca/ca.po | 208 ++-- - mate-dictionary/help/ca@valencia/ca@valencia.po | 204 ++-- - mate-dictionary/help/cmn/cmn.po | 129 +-- - mate-dictionary/help/crh/crh.po | 129 +-- - mate-dictionary/help/cs/cs.po | 177 ++- - mate-dictionary/help/cy/cy.po | 129 +-- - mate-dictionary/help/da/da.po | 203 ++-- - mate-dictionary/help/de/de.po | 216 ++-- - mate-dictionary/help/dz/dz.po | 129 +-- - mate-dictionary/help/el/el.po | 192 ++-- - mate-dictionary/help/en_AU/en_AU.po | 129 +-- - mate-dictionary/help/en_CA/en_CA.po | 129 +-- - mate-dictionary/help/en_GB/en_GB.po | 201 ++-- - mate-dictionary/help/eo/eo.po | 153 ++- - mate-dictionary/help/es/es.po | 210 ++-- - mate-dictionary/help/es_AR/es_AR.po | 129 +-- - mate-dictionary/help/es_CL/es_CL.po | 129 +-- - mate-dictionary/help/es_CO/es_CO.po | 129 +-- - mate-dictionary/help/es_ES/es_ES.po | 129 +-- - mate-dictionary/help/es_MX/es_MX.po | 129 +-- - mate-dictionary/help/es_PR/es_PR.po | 129 +-- - mate-dictionary/help/et/et.po | 129 +-- - mate-dictionary/help/eu/eu.po | 202 ++-- - mate-dictionary/help/fa/fa.po | 129 +-- - mate-dictionary/help/fi/fi.po | 129 +-- - mate-dictionary/help/fr/fr.po | 209 ++-- - mate-dictionary/help/fur/fur.po | 129 +-- - mate-dictionary/help/fy/fy.po | 129 +-- - mate-dictionary/help/ga/ga.po | 129 +-- - mate-dictionary/help/gl/gl.po | 208 ++-- - mate-dictionary/help/gu/gu.po | 129 +-- - mate-dictionary/help/ha/ha.po | 129 +-- - mate-dictionary/help/he/he.po | 129 +-- - mate-dictionary/help/hi/hi.po | 129 +-- - mate-dictionary/help/hr/hr.po | 149 ++- - mate-dictionary/help/hu/hu.po | 208 ++-- - mate-dictionary/help/hy/hy.po | 129 +-- - mate-dictionary/help/ia/ia.po | 129 +-- - mate-dictionary/help/id/id.po | 202 ++-- - mate-dictionary/help/ie/ie.po | 129 +-- - mate-dictionary/help/ig/ig.po | 129 +-- - mate-dictionary/help/is/is.po | 129 +-- - mate-dictionary/help/it/it.po | 208 ++-- - mate-dictionary/help/ja/ja.po | 189 ++-- - mate-dictionary/help/ka/ka.po | 129 +-- - mate-dictionary/help/kab/kab.po | 129 +-- - mate-dictionary/help/kk/kk.po | 129 +-- - mate-dictionary/help/kn/kn.po | 129 +-- - mate-dictionary/help/ko/ko.po | 165 ++- - mate-dictionary/help/ku/ku.po | 129 +-- - mate-dictionary/help/ku_IQ/ku_IQ.po | 129 +-- - mate-dictionary/help/ky/ky.po | 129 +-- - mate-dictionary/help/lt/lt.po | 189 ++-- - mate-dictionary/help/lv/lv.po | 129 +-- - mate-dictionary/help/mai/mai.po | 129 +-- - mate-dictionary/help/mg/mg.po | 129 +-- - mate-dictionary/help/mk/mk.po | 129 +-- - mate-dictionary/help/ml/ml.po | 129 +-- - mate-dictionary/help/mn/mn.po | 129 +-- - mate-dictionary/help/mr/mr.po | 129 +-- - mate-dictionary/help/ms/ms.po | 206 ++-- - mate-dictionary/help/nb/nb.po | 129 +-- - mate-dictionary/help/nds/nds.po | 129 +-- - mate-dictionary/help/ne/ne.po | 129 +-- - mate-dictionary/help/nl/nl.po | 184 ++-- - mate-dictionary/help/nn/nn.po | 129 +-- - mate-dictionary/help/oc/oc.po | 210 ++-- - mate-dictionary/help/or/or.po | 129 +-- - mate-dictionary/help/pa/pa.po | 193 ++-- - mate-dictionary/help/pl/pl.po | 184 ++-- - mate-dictionary/help/ps/ps.po | 129 +-- - mate-dictionary/help/pt/pt.po | 210 ++-- - mate-dictionary/help/pt_BR/pt_BR.po | 208 ++-- - mate-dictionary/help/ro/ro.po | 129 +-- - mate-dictionary/help/ru/ru.po | 196 ++-- - mate-dictionary/help/si/si.po | 129 +-- - mate-dictionary/help/sk/sk.po | 189 ++-- - mate-dictionary/help/sl/sl.po | 129 +-- - mate-dictionary/help/sq/sq.po | 144 ++- - mate-dictionary/help/sr/sr.po | 199 ++-- - mate-dictionary/help/sr@latin/sr@latin.po | 129 +-- - mate-dictionary/help/sv/sv.po | 203 ++-- - mate-dictionary/help/ta/ta.po | 129 +-- - mate-dictionary/help/te/te.po | 129 +-- - mate-dictionary/help/th/th.po | 199 ++-- - mate-dictionary/help/tr/tr.po | 200 ++-- - mate-dictionary/help/ug/ug.po | 129 +-- - mate-dictionary/help/uk/uk.po | 202 ++-- - mate-dictionary/help/ur/ur.po | 129 +-- - mate-dictionary/help/uz/uz.po | 129 +-- - mate-dictionary/help/vi/vi.po | 129 +-- - mate-dictionary/help/wa/wa.po | 129 +-- - mate-dictionary/help/xh/xh.po | 129 +-- - mate-dictionary/help/yo/yo.po | 129 +-- - mate-dictionary/help/zh_CN/zh_CN.po | 149 ++- - mate-dictionary/help/zh_HK/zh_HK.po | 129 +-- - mate-dictionary/help/zh_TW/zh_TW.po | 129 +-- - po/af.po | 1266 +++++++++++----------- - po/am.po | 1262 +++++++++++----------- - po/ar.po | 1268 +++++++++++----------- - po/as.po | 1266 +++++++++++----------- - po/ast.po | 1268 +++++++++++----------- - po/az.po | 1262 +++++++++++----------- - po/be.po | 1266 +++++++++++----------- - po/bg.po | 1268 +++++++++++----------- - po/bn.po | 1266 +++++++++++----------- - po/bn_IN.po | 1266 +++++++++++----------- - po/br.po | 1266 +++++++++++----------- - po/bs.po | 1262 +++++++++++----------- - po/ca.po | 1268 +++++++++++----------- - po/ca@valencia.po | 1268 +++++++++++----------- - po/cmn.po | 1266 +++++++++++----------- - po/crh.po | 1266 +++++++++++----------- - po/cs.po | 1270 +++++++++++----------- - po/cy.po | 1266 +++++++++++----------- - po/da.po | 1266 +++++++++++----------- - po/de.po | 1268 +++++++++++----------- - po/dz.po | 1266 +++++++++++----------- - po/el.po | 1270 +++++++++++----------- - po/en_AU.po | 1266 +++++++++++----------- - po/en_CA.po | 1266 +++++++++++----------- - po/en_GB.po | 1264 +++++++++++----------- - po/eo.po | 1262 +++++++++++----------- - po/es.po | 1270 +++++++++++----------- - po/es_AR.po | 1262 +++++++++++----------- - po/es_CL.po | 1262 +++++++++++----------- - po/es_CO.po | 1262 +++++++++++----------- - po/es_MX.po | 1262 +++++++++++----------- - po/et.po | 1268 +++++++++++----------- - po/eu.po | 1266 +++++++++++----------- - po/fa.po | 1266 +++++++++++----------- - po/fi.po | 1266 +++++++++++----------- - po/fr.po | 1281 +++++++++++----------- - po/frp.po | 1262 +++++++++++----------- - po/fur.po | 1262 +++++++++++----------- - po/fy.po | 1262 +++++++++++----------- - po/ga.po | 1266 +++++++++++----------- - po/gd.po | 1262 +++++++++++----------- - po/gl.po | 1266 +++++++++++----------- - po/gu.po | 1266 +++++++++++----------- - po/ha.po | 1262 +++++++++++----------- - po/he.po | 1266 +++++++++++----------- - po/hi.po | 1266 +++++++++++----------- - po/hr.po | 1268 +++++++++++----------- - po/hu.po | 1268 +++++++++++----------- - po/hy.po | 1266 +++++++++++----------- - po/ia.po | 1262 +++++++++++----------- - po/id.po | 1266 +++++++++++----------- - po/ie.po | 1266 +++++++++++----------- - po/ig.po | 1262 +++++++++++----------- - po/is.po | 1262 +++++++++++----------- - po/it.po | 1268 +++++++++++----------- - po/ja.po | 1283 +++++++++++----------- - po/ka.po | 1266 +++++++++++----------- - po/kab.po | 1262 +++++++++++----------- - po/kk.po | 1266 +++++++++++----------- - po/kn.po | 1266 +++++++++++----------- - po/ko.po | 1270 +++++++++++----------- - po/ks.po | 1262 +++++++++++----------- - po/ku.po | 1266 +++++++++++----------- - po/ku_IQ.po | 1262 +++++++++++----------- - po/ky.po | 1266 +++++++++++----------- - po/li.po | 1262 +++++++++++----------- - po/lt.po | 1268 +++++++++++----------- - po/lv.po | 1266 +++++++++++----------- - po/mai.po | 1266 +++++++++++----------- - po/mg.po | 1266 +++++++++++----------- - po/mi.po | 1262 +++++++++++----------- - po/mk.po | 1266 +++++++++++----------- - po/ml.po | 1266 +++++++++++----------- - po/mn.po | 1262 +++++++++++----------- - po/mr.po | 1266 +++++++++++----------- - po/ms.po | 1262 +++++++++++----------- - po/nb.po | 1268 +++++++++++----------- - po/nds.po | 1262 +++++++++++----------- - po/ne.po | 1266 +++++++++++----------- - po/nl.po | 1267 +++++++++++----------- - po/nn.po | 1266 +++++++++++----------- - po/nso.po | 1262 +++++++++++----------- - po/oc.po | 1318 ++++++++++++----------- - po/or.po | 1266 +++++++++++----------- - po/pa.po | 1266 +++++++++++----------- - po/pl.po | 1268 +++++++++++----------- - po/pms.po | 1262 +++++++++++----------- - po/ps.po | 1266 +++++++++++----------- - po/pt.po | 1270 +++++++++++----------- - po/pt_BR.po | 1268 +++++++++++----------- - po/ro.po | 1270 +++++++++++----------- - po/ru.po | 1268 +++++++++++----------- - po/rw.po | 1262 +++++++++++----------- - po/sc.po | 1262 +++++++++++----------- - po/si.po | 1266 +++++++++++----------- - po/sk.po | 1268 +++++++++++----------- - po/sl.po | 1268 +++++++++++----------- - po/sq.po | 1262 +++++++++++----------- - po/sr.po | 1268 +++++++++++----------- - po/sr@latin.po | 1266 +++++++++++----------- - po/sv.po | 1268 +++++++++++----------- - po/ta.po | 1266 +++++++++++----------- - po/te.po | 1266 +++++++++++----------- - po/th.po | 1268 +++++++++++----------- - po/tk.po | 1262 +++++++++++----------- - po/tr.po | 1268 +++++++++++----------- - po/tt.po | 1262 +++++++++++----------- - po/ug.po | 1266 +++++++++++----------- - po/uk.po | 1264 +++++++++++----------- - po/ur.po | 1266 +++++++++++----------- - po/uz.po | 1262 +++++++++++----------- - po/vi.po | 1266 +++++++++++----------- - po/wa.po | 1262 +++++++++++----------- - po/xh.po | 1262 +++++++++++----------- - po/yi.po | 1262 +++++++++++----------- - po/yo.po | 1262 +++++++++++----------- - po/zh_CN.po | 1297 +++++++++++----------- - po/zh_HK.po | 1266 +++++++++++----------- - po/zh_TW.po | 1264 +++++++++++----------- - po/zu.po | 1262 +++++++++++----------- - 573 files changed, 108100 insertions(+), 111699 deletions(-) - -commit b7fb99f4c051877ac003cbb23e4349c42575dd47 -Author: raveit65 -Date: Thu Aug 5 21:24:59 2021 +0200 - - travis-Ci: use libera.chat as notification server - - .travis.yml | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a39e540dbdff8ba90e5aaa7d50332f8108006dc5 -Author: raveit65 -Date: Fri Jun 25 18:05:22 2021 +0200 - - tx: update resource - - mate-utils.pot | 1230 ++++++++++++++++++++++++++++---------------------------- - 1 file changed, 615 insertions(+), 615 deletions(-) - -commit a389798a0ced24dfa1e164888878059f6bdf2457 -Author: raveit65 -Date: Fri Jun 25 17:58:34 2021 +0200 - - update copyright to 2021 - - baobab/src/baobab-cell-renderer-progress.c | 1 + - baobab/src/baobab-cell-renderer-progress.h | 1 + - baobab/src/baobab-chart.c | 1 + - baobab/src/baobab-chart.h | 1 + - baobab/src/baobab-prefs.c | 1 + - baobab/src/baobab-prefs.h | 1 + - baobab/src/baobab-remote-connect-dialog.c | 1 + - baobab/src/baobab-remote-connect-dialog.h | 1 + - baobab/src/baobab-ringschart.c | 1 + - baobab/src/baobab-ringschart.h | 1 + - baobab/src/baobab-scan.c | 1 + - baobab/src/baobab-scan.h | 1 + - baobab/src/baobab-treemap.c | 1 + - baobab/src/baobab-treemap.h | 1 + - baobab/src/baobab-treeview.c | 1 + - baobab/src/baobab-treeview.h | 1 + - baobab/src/baobab-utils.c | 1 + - baobab/src/baobab-utils.h | 1 + - baobab/src/baobab.c | 1 + - baobab/src/baobab.h | 1 + - baobab/src/callbacks.c | 1 + - baobab/src/callbacks.h | 1 + - gsearchtool/src/gsearchtool-callbacks.c | 1 + - gsearchtool/src/gsearchtool-callbacks.h | 1 + - gsearchtool/src/gsearchtool-support.c | 1 + - gsearchtool/src/gsearchtool-support.h | 1 + - gsearchtool/src/gsearchtool.c | 1 + - gsearchtool/src/gsearchtool.h | 1 + - logview/src/logview-about.h | 1 + - logview/src/logview-app.c | 1 + - logview/src/logview-app.h | 1 + - logview/src/logview-filter-manager.c | 1 + - logview/src/logview-filter-manager.h | 1 + - logview/src/logview-filter.c | 1 + - logview/src/logview-filter.h | 1 + - logview/src/logview-findbar.c | 1 + - logview/src/logview-findbar.h | 1 + - logview/src/logview-log.c | 1 + - logview/src/logview-log.h | 1 + - logview/src/logview-loglist.c | 1 + - logview/src/logview-loglist.h | 1 + - logview/src/logview-main.c | 1 + - logview/src/logview-manager.c | 1 + - logview/src/logview-manager.h | 1 + - logview/src/logview-prefs.c | 1 + - logview/src/logview-prefs.h | 1 + - logview/src/logview-utils.c | 1 + - logview/src/logview-utils.h | 1 + - logview/src/logview-window.c | 1 + - logview/src/logview-window.h | 1 + - mate-dictionary/libgdict/gdict-client-context.c | 1 + - mate-dictionary/libgdict/gdict-client-context.h | 1 + - mate-dictionary/libgdict/gdict-context-private.h | 1 + - mate-dictionary/libgdict/gdict-context.c | 1 + - mate-dictionary/libgdict/gdict-context.h | 1 + - mate-dictionary/libgdict/gdict-database-chooser.c | 1 + - mate-dictionary/libgdict/gdict-database-chooser.h | 1 + - mate-dictionary/libgdict/gdict-debug.h | 1 + - mate-dictionary/libgdict/gdict-defbox.c | 1 + - mate-dictionary/libgdict/gdict-defbox.h | 1 + - mate-dictionary/libgdict/gdict-private.h | 1 + - mate-dictionary/libgdict/gdict-source-chooser.c | 1 + - mate-dictionary/libgdict/gdict-source-chooser.h | 1 + - mate-dictionary/libgdict/gdict-source-loader.c | 1 + - mate-dictionary/libgdict/gdict-source-loader.h | 1 + - mate-dictionary/libgdict/gdict-source.c | 1 + - mate-dictionary/libgdict/gdict-source.h | 1 + - mate-dictionary/libgdict/gdict-speller.c | 1 + - mate-dictionary/libgdict/gdict-speller.h | 1 + - mate-dictionary/libgdict/gdict-strategy-chooser.c | 1 + - mate-dictionary/libgdict/gdict-strategy-chooser.h | 1 + - mate-dictionary/libgdict/gdict-utils.c | 1 + - mate-dictionary/libgdict/gdict-utils.h | 1 + - mate-dictionary/libgdict/gdict-version.h.in | 1 + - mate-dictionary/libgdict/gdict.h | 1 + - mate-dictionary/src/gdict-about.c | 1 + - mate-dictionary/src/gdict-about.h | 1 + - mate-dictionary/src/gdict-aligned-window.c | 1 + - mate-dictionary/src/gdict-aligned-window.h | 1 + - mate-dictionary/src/gdict-app.c | 1 + - mate-dictionary/src/gdict-app.h | 1 + - mate-dictionary/src/gdict-applet.c | 1 + - mate-dictionary/src/gdict-applet.h | 1 + - mate-dictionary/src/gdict-common.c | 1 + - mate-dictionary/src/gdict-common.h | 1 + - mate-dictionary/src/gdict-pref-dialog.c | 1 + - mate-dictionary/src/gdict-pref-dialog.h | 1 + - mate-dictionary/src/gdict-print.c | 1 + - mate-dictionary/src/gdict-print.h | 1 + - mate-dictionary/src/gdict-sidebar.c | 1 + - mate-dictionary/src/gdict-sidebar.h | 1 + - mate-dictionary/src/gdict-source-dialog.c | 1 + - mate-dictionary/src/gdict-source-dialog.h | 1 + - mate-dictionary/src/gdict-window.c | 1 + - mate-dictionary/src/gdict-window.h | 1 + - mate-dictionary/src/main.c | 1 + - mate-disk-image-mounter/src/main.c | 1 + - mate-screenshot/src/mate-screenshot.c | 1 + - mate-screenshot/src/screenshot-dialog.c | 1 + - mate-screenshot/src/screenshot-dialog.h | 1 + - mate-screenshot/src/screenshot-save.c | 1 + - mate-screenshot/src/screenshot-save.h | 1 + - mate-screenshot/src/screenshot-shadow.c | 1 + - mate-screenshot/src/screenshot-shadow.h | 1 + - mate-screenshot/src/screenshot-utils.c | 1 + - mate-screenshot/src/screenshot-utils.h | 1 + - mate-screenshot/src/screenshot-xfer.c | 1 + - mate-screenshot/src/screenshot-xfer.h | 1 + - 108 files changed, 108 insertions(+) - -commit 7f482f48b83db5dda184ae1081f88be1b83232f5 -Author: raveit65 -Date: Fri Jun 4 21:55:00 2021 +0200 - - release 1.25.1 - - NEWS | 30 ++++++++++++++++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 31 insertions(+), 1 deletion(-) - -commit 768fa45a1d9800b7da73d9a1935d7436ff3e1d67 -Author: raveit65 -Date: Fri Jun 4 20:50:19 2021 +0200 - - tx: pull from transifex - - baobab/help/af/af.po | 24 +- - baobab/help/am/am.po | 24 +- - baobab/help/an/an.po | 24 +- - baobab/help/ar/ar.po | 24 +- - baobab/help/as/as.po | 24 +- - baobab/help/ast/ast.po | 24 +- - baobab/help/az/az.po | 24 +- - baobab/help/be/be.po | 24 +- - baobab/help/bg/bg.po | 24 +- - baobab/help/bn/bn.po | 24 +- - baobab/help/bn_IN/bn_IN.po | 24 +- - baobab/help/br/br.po | 24 +- - baobab/help/bs/bs.po | 24 +- - baobab/help/ca/ca.po | 42 +- - baobab/help/ca@valencia/ca@valencia.po | 24 +- - baobab/help/cmn/cmn.po | 24 +- - baobab/help/crh/crh.po | 24 +- - baobab/help/cs/cs.po | 31 +- - baobab/help/cy/cy.po | 24 +- - baobab/help/da/da.po | 48 +- - baobab/help/de/de.po | 32 +- - baobab/help/dz/dz.po | 24 +- - baobab/help/el/el.po | 26 +- - baobab/help/en_AU/en_AU.po | 24 +- - baobab/help/en_CA/en_CA.po | 24 +- - baobab/help/en_GB/en_GB.po | 62 +- - baobab/help/eo/eo.po | 24 +- - baobab/help/es/es.po | 90 +- - baobab/help/es_AR/es_AR.po | 24 +- - baobab/help/es_CL/es_CL.po | 24 +- - baobab/help/es_CO/es_CO.po | 24 +- - baobab/help/es_ES/es_ES.po | 24 +- - baobab/help/es_MX/es_MX.po | 24 +- - baobab/help/es_PR/es_PR.po | 24 +- - baobab/help/et/et.po | 24 +- - baobab/help/eu/eu.po | 24 +- - baobab/help/fa/fa.po | 24 +- - baobab/help/fi/fi.po | 24 +- - baobab/help/fil/fil.po | 24 +- - baobab/help/fr/fr.po | 63 +- - baobab/help/frp/frp.po | 24 +- - baobab/help/fur/fur.po | 24 +- - baobab/help/fy/fy.po | 24 +- - baobab/help/ga/ga.po | 24 +- - baobab/help/gl/gl.po | 40 +- - baobab/help/gu/gu.po | 24 +- - baobab/help/ha/ha.po | 24 +- - baobab/help/he/he.po | 29 +- - baobab/help/hi/hi.po | 24 +- - baobab/help/hr/hr.po | 30 +- - baobab/help/hu/hu.po | 31 +- - baobab/help/hy/hy.po | 24 +- - baobab/help/ia/ia.po | 24 +- - baobab/help/id/id.po | 37 +- - baobab/help/ie/ie.po | 28 +- - baobab/help/ig/ig.po | 24 +- - baobab/help/is/is.po | 24 +- - baobab/help/it/it.po | 64 +- - baobab/help/ja/ja.po | 62 +- - baobab/help/jv/jv.po | 24 +- - baobab/help/ka/ka.po | 24 +- - baobab/help/kab/kab.po | 28 +- - baobab/help/kk/kk.po | 24 +- - baobab/help/km/km.po | 24 +- - baobab/help/kn/kn.po | 24 +- - baobab/help/ko/ko.po | 113 +- - baobab/help/ku/ku.po | 24 +- - baobab/help/ku_IQ/ku_IQ.po | 24 +- - baobab/help/ky/ky.po | 24 +- - baobab/help/la/la.po | 24 +- - baobab/help/lt/lt.po | 230 +++- - baobab/help/lv/lv.po | 24 +- - baobab/help/mai/mai.po | 24 +- - baobab/help/mg/mg.po | 24 +- - baobab/help/mi/mi.po | 24 +- - baobab/help/mk/mk.po | 24 +- - baobab/help/ml/ml.po | 24 +- - baobab/help/mn/mn.po | 24 +- - baobab/help/mr/mr.po | 24 +- - baobab/help/ms/ms.po | 63 +- - baobab/help/nb/nb.po | 35 +- - baobab/help/nds/nds.po | 24 +- - baobab/help/ne/ne.po | 24 +- - baobab/help/nl/nl.po | 49 +- - baobab/help/nn/nn.po | 33 +- - baobab/help/nso/nso.po | 24 +- - baobab/help/oc/oc.po | 86 +- - baobab/help/or/or.po | 24 +- - baobab/help/pa/pa.po | 24 +- - baobab/help/pl/pl.po | 32 +- - baobab/help/ps/ps.po | 24 +- - baobab/help/pt/pt.po | 55 +- - baobab/help/pt_BR/pt_BR.po | 27 +- - baobab/help/ro/ro.po | 24 +- - baobab/help/ru/ru.po | 29 +- - baobab/help/si/si.po | 24 +- - baobab/help/sk/sk.po | 24 +- - baobab/help/sl/sl.po | 26 +- - baobab/help/sq/sq.po | 39 +- - baobab/help/sr/sr.po | 293 +++- - baobab/help/sr@latin/sr@latin.po | 24 +- - baobab/help/sv/sv.po | 53 +- - baobab/help/ta/ta.po | 24 +- - baobab/help/te/te.po | 24 +- - baobab/help/th/th.po | 24 +- - baobab/help/tk/tk.po | 24 +- - baobab/help/tr/tr.po | 32 +- - baobab/help/ug/ug.po | 24 +- - baobab/help/uk/uk.po | 37 +- - baobab/help/ur/ur.po | 24 +- - baobab/help/uz/uz.po | 28 +- - baobab/help/vi/vi.po | 24 +- - baobab/help/wa/wa.po | 24 +- - baobab/help/xh/xh.po | 24 +- - baobab/help/yo/yo.po | 24 +- - baobab/help/zh_CN/zh_CN.po | 29 +- - baobab/help/zh_HK/zh_HK.po | 24 +- - baobab/help/zh_TW/zh_TW.po | 24 +- - baobab/help/zu/zu.po | 24 +- - gsearchtool/help/af/af.po | 6 +- - gsearchtool/help/am/am.po | 6 +- - gsearchtool/help/ar/ar.po | 6 +- - gsearchtool/help/as/as.po | 6 +- - gsearchtool/help/ast/ast.po | 6 +- - gsearchtool/help/az/az.po | 6 +- - gsearchtool/help/be/be.po | 6 +- - gsearchtool/help/bg/bg.po | 6 +- - gsearchtool/help/bn/bn.po | 6 +- - gsearchtool/help/bn_IN/bn_IN.po | 6 +- - gsearchtool/help/br/br.po | 6 +- - gsearchtool/help/bs/bs.po | 6 +- - gsearchtool/help/ca/ca.po | 12 +- - gsearchtool/help/ca@valencia/ca@valencia.po | 6 +- - gsearchtool/help/cmn/cmn.po | 6 +- - gsearchtool/help/crh/crh.po | 6 +- - gsearchtool/help/cs/cs.po | 15 +- - gsearchtool/help/cy/cy.po | 6 +- - gsearchtool/help/da/da.po | 14 +- - gsearchtool/help/de/de.po | 14 +- - gsearchtool/help/dz/dz.po | 6 +- - gsearchtool/help/el/el.po | 8 +- - gsearchtool/help/en_AU/en_AU.po | 6 +- - gsearchtool/help/en_CA/en_CA.po | 6 +- - gsearchtool/help/en_GB/en_GB.po | 46 +- - gsearchtool/help/eo/eo.po | 6 +- - gsearchtool/help/es/es.po | 15 +- - gsearchtool/help/es_AR/es_AR.po | 6 +- - gsearchtool/help/es_CL/es_CL.po | 6 +- - gsearchtool/help/es_CO/es_CO.po | 6 +- - gsearchtool/help/es_ES/es_ES.po | 6 +- - gsearchtool/help/et/et.po | 6 +- - gsearchtool/help/eu/eu.po | 6 +- - gsearchtool/help/fa/fa.po | 6 +- - gsearchtool/help/fi/fi.po | 6 +- - gsearchtool/help/fr/fr.po | 47 +- - gsearchtool/help/fur/fur.po | 6 +- - gsearchtool/help/fy/fy.po | 6 +- - gsearchtool/help/ga/ga.po | 6 +- - gsearchtool/help/gl/gl.po | 14 +- - gsearchtool/help/gu/gu.po | 6 +- - gsearchtool/help/ha/ha.po | 6 +- - gsearchtool/help/he/he.po | 11 +- - gsearchtool/help/hi/hi.po | 6 +- - gsearchtool/help/hr/hr.po | 8 +- - gsearchtool/help/hu/hu.po | 11 +- - gsearchtool/help/hy/hy.po | 6 +- - gsearchtool/help/id/id.po | 29 +- - gsearchtool/help/ie/ie.po | 10 +- - gsearchtool/help/ig/ig.po | 6 +- - gsearchtool/help/is/is.po | 6 +- - gsearchtool/help/it/it.po | 18 +- - gsearchtool/help/ja/ja.po | 276 ++-- - gsearchtool/help/ka/ka.po | 6 +- - gsearchtool/help/kab/kab.po | 13 +- - gsearchtool/help/kk/kk.po | 6 +- - gsearchtool/help/kn/kn.po | 6 +- - gsearchtool/help/ko/ko.po | 80 +- - gsearchtool/help/ku/ku.po | 6 +- - gsearchtool/help/ky/ky.po | 6 +- - gsearchtool/help/lt/lt.po | 8 +- - gsearchtool/help/lv/lv.po | 6 +- - gsearchtool/help/mai/mai.po | 6 +- - gsearchtool/help/mg/mg.po | 6 +- - gsearchtool/help/mk/mk.po | 6 +- - gsearchtool/help/ml/ml.po | 6 +- - gsearchtool/help/mn/mn.po | 6 +- - gsearchtool/help/mr/mr.po | 6 +- - gsearchtool/help/ms/ms.po | 16 +- - gsearchtool/help/nb/nb.po | 15 +- - gsearchtool/help/nds/nds.po | 6 +- - gsearchtool/help/ne/ne.po | 6 +- - gsearchtool/help/nl/nl.po | 35 +- - gsearchtool/help/nn/nn.po | 17 +- - gsearchtool/help/nso/nso.po | 6 +- - gsearchtool/help/oc/oc.po | 74 +- - gsearchtool/help/or/or.po | 6 +- - gsearchtool/help/pa/pa.po | 6 +- - gsearchtool/help/pl/pl.po | 14 +- - gsearchtool/help/ps/ps.po | 6 +- - gsearchtool/help/pt/pt.po | 16 +- - gsearchtool/help/pt_BR/pt_BR.po | 8 +- - gsearchtool/help/ro/ro.po | 6 +- - gsearchtool/help/ru/ru.po | 10 +- - gsearchtool/help/si/si.po | 6 +- - gsearchtool/help/sk/sk.po | 6 +- - gsearchtool/help/sl/sl.po | 8 +- - gsearchtool/help/sq/sq.po | 21 +- - gsearchtool/help/sr/sr.po | 346 ++++- - gsearchtool/help/sr@latin/sr@latin.po | 6 +- - gsearchtool/help/sv/sv.po | 39 +- - gsearchtool/help/ta/ta.po | 6 +- - gsearchtool/help/te/te.po | 6 +- - gsearchtool/help/th/th.po | 6 +- - gsearchtool/help/tr/tr.po | 12 +- - gsearchtool/help/ug/ug.po | 6 +- - gsearchtool/help/uk/uk.po | 6 +- - gsearchtool/help/ur/ur.po | 6 +- - gsearchtool/help/uz/uz.po | 10 +- - gsearchtool/help/vi/vi.po | 6 +- - gsearchtool/help/wa/wa.po | 6 +- - gsearchtool/help/xh/xh.po | 6 +- - gsearchtool/help/yo/yo.po | 6 +- - gsearchtool/help/zh_CN/zh_CN.po | 11 +- - gsearchtool/help/zh_HK/zh_HK.po | 6 +- - gsearchtool/help/zh_TW/zh_TW.po | 6 +- - gsearchtool/help/zu/zu.po | 6 +- - logview/help/af/af.po | 6 +- - logview/help/am/am.po | 6 +- - logview/help/ar/ar.po | 6 +- - logview/help/as/as.po | 6 +- - logview/help/ast/ast.po | 6 +- - logview/help/az/az.po | 6 +- - logview/help/be/be.po | 6 +- - logview/help/bg/bg.po | 6 +- - logview/help/bn/bn.po | 6 +- - logview/help/bn_IN/bn_IN.po | 6 +- - logview/help/br/br.po | 6 +- - logview/help/bs/bs.po | 6 +- - logview/help/ca/ca.po | 12 +- - logview/help/ca@valencia/ca@valencia.po | 6 +- - logview/help/cmn/cmn.po | 6 +- - logview/help/crh/crh.po | 6 +- - logview/help/cs/cs.po | 13 +- - logview/help/cy/cy.po | 6 +- - logview/help/da/da.po | 16 +- - logview/help/de/de.po | 17 +- - logview/help/dz/dz.po | 6 +- - logview/help/el/el.po | 8 +- - logview/help/en_AU/en_AU.po | 6 +- - logview/help/en_CA/en_CA.po | 6 +- - logview/help/en_GB/en_GB.po | 46 +- - logview/help/eo/eo.po | 6 +- - logview/help/es/es.po | 12 +- - logview/help/es_AR/es_AR.po | 6 +- - logview/help/es_CL/es_CL.po | 6 +- - logview/help/es_CO/es_CO.po | 6 +- - logview/help/es_CR/es_CR.po | 6 +- - logview/help/es_DO/es_DO.po | 6 +- - logview/help/es_EC/es_EC.po | 6 +- - logview/help/es_ES/es_ES.po | 6 +- - logview/help/es_MX/es_MX.po | 6 +- - logview/help/es_NI/es_NI.po | 6 +- - logview/help/es_PA/es_PA.po | 6 +- - logview/help/es_PE/es_PE.po | 6 +- - logview/help/es_PR/es_PR.po | 6 +- - logview/help/es_SV/es_SV.po | 6 +- - logview/help/es_UY/es_UY.po | 6 +- - logview/help/es_VE/es_VE.po | 6 +- - logview/help/et/et.po | 6 +- - logview/help/eu/eu.po | 6 +- - logview/help/fa/fa.po | 6 +- - logview/help/fi/fi.po | 6 +- - logview/help/fr/fr.po | 45 +- - logview/help/fur/fur.po | 6 +- - logview/help/fy/fy.po | 6 +- - logview/help/ga/ga.po | 6 +- - logview/help/gl/gl.po | 12 +- - logview/help/gu/gu.po | 6 +- - logview/help/ha/ha.po | 6 +- - logview/help/he/he.po | 6 +- - logview/help/hi/hi.po | 6 +- - logview/help/hr/hr.po | 12 +- - logview/help/hu/hu.po | 13 +- - logview/help/hy/hy.po | 6 +- - logview/help/ia/ia.po | 6 +- - logview/help/id/id.po | 183 ++- - logview/help/ie/ie.po | 10 +- - logview/help/ig/ig.po | 6 +- - logview/help/is/is.po | 6 +- - logview/help/it/it.po | 20 +- - logview/help/ja/ja.po | 48 +- - logview/help/ka/ka.po | 6 +- - logview/help/kab/kab.po | 10 +- - logview/help/kk/kk.po | 6 +- - logview/help/kn/kn.po | 6 +- - logview/help/ko/ko.po | 78 +- - logview/help/ku/ku.po | 6 +- - logview/help/ky/ky.po | 6 +- - logview/help/lt/lt.po | 143 +- - logview/help/lv/lv.po | 6 +- - logview/help/mai/mai.po | 6 +- - logview/help/mg/mg.po | 6 +- - logview/help/mk/mk.po | 6 +- - logview/help/ml/ml.po | 6 +- - logview/help/mn/mn.po | 6 +- - logview/help/mr/mr.po | 6 +- - logview/help/ms/ms.po | 16 +- - logview/help/nb/nb.po | 19 +- - logview/help/nds/nds.po | 6 +- - logview/help/ne/ne.po | 6 +- - logview/help/nl/nl.po | 33 +- - logview/help/nn/nn.po | 17 +- - logview/help/nso/nso.po | 6 +- - logview/help/oc/oc.po | 66 +- - logview/help/or/or.po | 6 +- - logview/help/pa/pa.po | 6 +- - logview/help/pl/pl.po | 14 +- - logview/help/ps/ps.po | 6 +- - logview/help/pt/pt.po | 20 +- - logview/help/pt_BR/pt_BR.po | 8 +- - logview/help/ro/ro.po | 6 +- - logview/help/ru/ru.po | 11 +- - logview/help/si/si.po | 6 +- - logview/help/sk/sk.po | 6 +- - logview/help/sl/sl.po | 8 +- - logview/help/sq/sq.po | 21 +- - logview/help/sr/sr.po | 221 ++- - logview/help/sr@latin/sr@latin.po | 6 +- - logview/help/sv/sv.po | 23 +- - logview/help/ta/ta.po | 6 +- - logview/help/te/te.po | 6 +- - logview/help/th/th.po | 6 +- - logview/help/tr/tr.po | 15 +- - logview/help/ug/ug.po | 6 +- - logview/help/uk/uk.po | 11 +- - logview/help/ur/ur.po | 6 +- - logview/help/uz/uz.po | 10 +- - logview/help/vi/vi.po | 6 +- - logview/help/wa/wa.po | 6 +- - logview/help/xh/xh.po | 6 +- - logview/help/yo/yo.po | 6 +- - logview/help/zh_CN/zh_CN.po | 11 +- - logview/help/zh_HK/zh_HK.po | 6 +- - logview/help/zh_TW/zh_TW.po | 6 +- - logview/help/zu/zu.po | 6 +- - mate-dictionary/help/af/af.po | 6 +- - mate-dictionary/help/am/am.po | 6 +- - mate-dictionary/help/ar/ar.po | 6 +- - mate-dictionary/help/as/as.po | 6 +- - mate-dictionary/help/ast/ast.po | 6 +- - mate-dictionary/help/az/az.po | 6 +- - mate-dictionary/help/be/be.po | 6 +- - mate-dictionary/help/bg/bg.po | 6 +- - mate-dictionary/help/bn/bn.po | 6 +- - mate-dictionary/help/bn_IN/bn_IN.po | 6 +- - mate-dictionary/help/br/br.po | 6 +- - mate-dictionary/help/bs/bs.po | 6 +- - mate-dictionary/help/ca/ca.po | 12 +- - mate-dictionary/help/ca@valencia/ca@valencia.po | 6 +- - mate-dictionary/help/cmn/cmn.po | 6 +- - mate-dictionary/help/crh/crh.po | 6 +- - mate-dictionary/help/cs/cs.po | 13 +- - mate-dictionary/help/cy/cy.po | 6 +- - mate-dictionary/help/da/da.po | 16 +- - mate-dictionary/help/de/de.po | 43 +- - mate-dictionary/help/dz/dz.po | 6 +- - mate-dictionary/help/el/el.po | 8 +- - mate-dictionary/help/en_AU/en_AU.po | 6 +- - mate-dictionary/help/en_CA/en_CA.po | 6 +- - mate-dictionary/help/en_GB/en_GB.po | 46 +- - mate-dictionary/help/eo/eo.po | 6 +- - mate-dictionary/help/es/es.po | 12 +- - mate-dictionary/help/es_AR/es_AR.po | 6 +- - mate-dictionary/help/es_CL/es_CL.po | 6 +- - mate-dictionary/help/es_CO/es_CO.po | 6 +- - mate-dictionary/help/es_ES/es_ES.po | 6 +- - mate-dictionary/help/es_MX/es_MX.po | 6 +- - mate-dictionary/help/es_PR/es_PR.po | 6 +- - mate-dictionary/help/et/et.po | 6 +- - mate-dictionary/help/eu/eu.po | 6 +- - mate-dictionary/help/fa/fa.po | 6 +- - mate-dictionary/help/fi/fi.po | 6 +- - mate-dictionary/help/fr/fr.po | 46 +- - mate-dictionary/help/fur/fur.po | 6 +- - mate-dictionary/help/fy/fy.po | 6 +- - mate-dictionary/help/ga/ga.po | 6 +- - mate-dictionary/help/gl/gl.po | 12 +- - mate-dictionary/help/gu/gu.po | 6 +- - mate-dictionary/help/ha/ha.po | 6 +- - mate-dictionary/help/he/he.po | 6 +- - mate-dictionary/help/hi/hi.po | 6 +- - mate-dictionary/help/hr/hr.po | 12 +- - mate-dictionary/help/hu/hu.po | 13 +- - mate-dictionary/help/hy/hy.po | 6 +- - mate-dictionary/help/ia/ia.po | 6 +- - mate-dictionary/help/id/id.po | 23 +- - mate-dictionary/help/ie/ie.po | 10 +- - mate-dictionary/help/ig/ig.po | 6 +- - mate-dictionary/help/is/is.po | 6 +- - mate-dictionary/help/it/it.po | 18 +- - mate-dictionary/help/ja/ja.po | 241 ++-- - mate-dictionary/help/ka/ka.po | 6 +- - mate-dictionary/help/kab/kab.po | 10 +- - mate-dictionary/help/kk/kk.po | 6 +- - mate-dictionary/help/kn/kn.po | 6 +- - mate-dictionary/help/ko/ko.po | 77 +- - mate-dictionary/help/ku/ku.po | 6 +- - mate-dictionary/help/ku_IQ/ku_IQ.po | 6 +- - mate-dictionary/help/ky/ky.po | 6 +- - mate-dictionary/help/lt/lt.po | 120 +- - mate-dictionary/help/lv/lv.po | 6 +- - mate-dictionary/help/mai/mai.po | 6 +- - mate-dictionary/help/mg/mg.po | 6 +- - mate-dictionary/help/mk/mk.po | 6 +- - mate-dictionary/help/ml/ml.po | 6 +- - mate-dictionary/help/mn/mn.po | 6 +- - mate-dictionary/help/mr/mr.po | 6 +- - mate-dictionary/help/ms/ms.po | 16 +- - mate-dictionary/help/nb/nb.po | 21 +- - mate-dictionary/help/nds/nds.po | 6 +- - mate-dictionary/help/ne/ne.po | 6 +- - mate-dictionary/help/nl/nl.po | 33 +- - mate-dictionary/help/nn/nn.po | 15 +- - mate-dictionary/help/oc/oc.po | 113 +- - mate-dictionary/help/or/or.po | 6 +- - mate-dictionary/help/pa/pa.po | 6 +- - mate-dictionary/help/pl/pl.po | 14 +- - mate-dictionary/help/ps/ps.po | 6 +- - mate-dictionary/help/pt/pt.po | 20 +- - mate-dictionary/help/pt_BR/pt_BR.po | 12 +- - mate-dictionary/help/ro/ro.po | 6 +- - mate-dictionary/help/ru/ru.po | 11 +- - mate-dictionary/help/si/si.po | 6 +- - mate-dictionary/help/sk/sk.po | 6 +- - mate-dictionary/help/sl/sl.po | 8 +- - mate-dictionary/help/sq/sq.po | 21 +- - mate-dictionary/help/sr/sr.po | 259 +++- - mate-dictionary/help/sr@latin/sr@latin.po | 6 +- - mate-dictionary/help/sv/sv.po | 39 +- - mate-dictionary/help/ta/ta.po | 6 +- - mate-dictionary/help/te/te.po | 6 +- - mate-dictionary/help/th/th.po | 6 +- - mate-dictionary/help/tr/tr.po | 14 +- - mate-dictionary/help/ug/ug.po | 6 +- - mate-dictionary/help/uk/uk.po | 20 +- - mate-dictionary/help/ur/ur.po | 6 +- - mate-dictionary/help/uz/uz.po | 10 +- - mate-dictionary/help/vi/vi.po | 6 +- - mate-dictionary/help/wa/wa.po | 6 +- - mate-dictionary/help/xh/xh.po | 6 +- - mate-dictionary/help/yo/yo.po | 6 +- - mate-dictionary/help/zh_CN/zh_CN.po | 12 +- - mate-dictionary/help/zh_HK/zh_HK.po | 6 +- - mate-dictionary/help/zh_TW/zh_TW.po | 6 +- - po/af.po | 1354 +++++++++--------- - po/am.po | 1363 +++++++++--------- - po/ar.po | 1360 +++++++++--------- - po/as.po | 1356 +++++++++--------- - po/ast.po | 1356 +++++++++--------- - po/az.po | 1354 +++++++++--------- - po/be.po | 1359 +++++++++--------- - po/bg.po | 1361 +++++++++--------- - po/bn.po | 1356 +++++++++--------- - po/bn_IN.po | 1356 +++++++++--------- - po/br.po | 1359 +++++++++--------- - po/bs.po | 1354 +++++++++--------- - po/ca.po | 1385 +++++++++---------- - po/ca@valencia.po | 1360 +++++++++--------- - po/cmn.po | 1356 +++++++++--------- - po/crh.po | 1356 +++++++++--------- - po/cs.po | 1386 +++++++++---------- - po/cy.po | 1354 +++++++++--------- - po/da.po | 1377 +++++++++---------- - po/de.po | 1360 +++++++++--------- - po/dz.po | 1356 +++++++++--------- - po/el.po | 1369 +++++++++---------- - po/en_AU.po | 1359 +++++++++--------- - po/en_CA.po | 1354 +++++++++--------- - po/en_GB.po | 1367 +++++++++---------- - po/eo.po | 1352 +++++++++--------- - po/es.po | 1395 ++++++++++--------- - po/es_AR.po | 1352 +++++++++--------- - po/es_CL.po | 1352 +++++++++--------- - po/es_CO.po | 1357 +++++++++--------- - po/es_MX.po | 1352 +++++++++--------- - po/et.po | 1362 +++++++++--------- - po/eu.po | 1373 +++++++++---------- - po/fa.po | 1354 +++++++++--------- - po/fi.po | 1366 +++++++++---------- - po/fr.po | 1405 ++++++++++--------- - po/frp.po | 1352 +++++++++--------- - po/fur.po | 1352 +++++++++--------- - po/fy.po | 1352 +++++++++--------- - po/ga.po | 1354 +++++++++--------- - po/gd.po | 1352 +++++++++--------- - po/gl.po | 1460 ++++++++++---------- - po/gu.po | 1356 +++++++++--------- - po/ha.po | 1352 +++++++++--------- - po/he.po | 1377 +++++++++---------- - po/hi.po | 1356 +++++++++--------- - po/hr.po | 1356 +++++++++--------- - po/hu.po | 1366 +++++++++---------- - po/hy.po | 1359 +++++++++--------- - po/ia.po | 1352 +++++++++--------- - po/id.po | 1381 +++++++++---------- - po/ie.po | 1363 +++++++++--------- - po/ig.po | 1352 +++++++++--------- - po/is.po | 1356 +++++++++--------- - po/it.po | 1387 +++++++++---------- - po/ja.po | 1487 ++++++++++---------- - po/ka.po | 1354 +++++++++--------- - po/kab.po | 1368 +++++++++---------- - po/kk.po | 1357 +++++++++--------- - po/kn.po | 1356 +++++++++--------- - po/ko.po | 1428 ++++++++++--------- - po/ks.po | 1352 +++++++++--------- - po/ku.po | 1352 +++++++++--------- - po/ku_IQ.po | 1352 +++++++++--------- - po/ky.po | 1356 +++++++++--------- - po/li.po | 1352 +++++++++--------- - po/lt.po | 1370 +++++++++---------- - po/lv.po | 1356 +++++++++--------- - po/mai.po | 1356 +++++++++--------- - po/mg.po | 1354 +++++++++--------- - po/mi.po | 1352 +++++++++--------- - po/mk.po | 1356 +++++++++--------- - po/ml.po | 1356 +++++++++--------- - po/mn.po | 1354 +++++++++--------- - po/mr.po | 1359 +++++++++--------- - po/ms.po | 1397 ++++++++++--------- - po/nb.po | 1380 +++++++++---------- - po/nds.po | 1352 +++++++++--------- - po/ne.po | 1356 +++++++++--------- - po/nl.po | 1385 +++++++++---------- - po/nn.po | 1361 +++++++++--------- - po/nso.po | 1352 +++++++++--------- - po/oc.po | 1669 ++++++++++++----------- - po/or.po | 1356 +++++++++--------- - po/pa.po | 1356 +++++++++--------- - po/pl.po | 1411 ++++++++++--------- - po/pms.po | 1352 +++++++++--------- - po/ps.po | 1356 +++++++++--------- - po/pt.po | 1361 +++++++++--------- - po/pt_BR.po | 1370 +++++++++---------- - po/ro.po | 1356 +++++++++--------- - po/ru.po | 1372 +++++++++---------- - po/rw.po | 1352 +++++++++--------- - po/sc.po | 1352 +++++++++--------- - po/si.po | 1354 +++++++++--------- - po/sk.po | 1359 +++++++++--------- - po/sl.po | 1361 +++++++++--------- - po/sq.po | 1357 +++++++++--------- - po/sr.po | 1418 ++++++++++--------- - po/sr@latin.po | 1356 +++++++++--------- - po/sv.po | 1377 +++++++++---------- - po/ta.po | 1356 +++++++++--------- - po/te.po | 1356 +++++++++--------- - po/th.po | 1361 +++++++++--------- - po/tk.po | 1352 +++++++++--------- - po/tr.po | 1368 +++++++++---------- - po/tt.po | 1352 +++++++++--------- - po/ug.po | 1356 +++++++++--------- - po/uk.po | 1592 +++++++++++---------- - po/ur.po | 1354 +++++++++--------- - po/uz.po | 1358 +++++++++--------- - po/vi.po | 1356 +++++++++--------- - po/wa.po | 1352 +++++++++--------- - po/xh.po | 1354 +++++++++--------- - po/yi.po | 1352 +++++++++--------- - po/yo.po | 1352 +++++++++--------- - po/zh_CN.po | 1364 +++++++++--------- - po/zh_HK.po | 1356 +++++++++--------- - po/zh_TW.po | 1378 +++++++++---------- - po/zu.po | 1352 +++++++++--------- - 574 files changed, 86302 insertions(+), 87153 deletions(-) - -commit 4db195a66efc58984c229569957ec7fca22494c8 -Author: raveit65 -Date: Fri Jun 4 20:40:59 2021 +0200 - - tx: update resource - - mate-dictionary.pot | 62 ++++----- - mate-disk-usage-analyzer.pot | 62 ++++----- - mate-search-tool.pot | 62 ++++----- - mate-system-log.pot | 62 ++++----- - mate-utils.pot | 302 +++++++++++++++++++++++-------------------- - 5 files changed, 263 insertions(+), 287 deletions(-) - -commit 4e993d6fb9fd024a8c7395c61f20aa00d546ca54 -Author: raveit65 -Date: Sun May 30 18:43:25 2021 +0200 - - travis-ci: use ubuntu focal as host system - - fixes build issues with fedora:latest (f34) tag. - - .travis.yml | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6ee23e2481bc08b9b42932931f162e07e39fc3e6 -Author: raveit65 -Date: Sun Apr 25 16:25:46 2021 +0200 - - travis: disable travis builds for ubuntu - - Sadly, there is a limit for free builds at docker.com - See discussion - https://github.com/orgs/mate-desktop/teams/core-team/discussions/25 - - .travis.yml | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 3b61d747f8e7f5e92912e45dc5827909f8b98ed0 -Author: rbuj -Date: Mon Mar 8 13:08:33 2021 +0100 - - Remove warnings about missing prototypes - - baobab/src/baobab-chart.c | 2 +- - baobab/src/baobab-ringschart.c | 4 ++-- - baobab/src/baobab-scan.c | 2 +- - baobab/src/baobab-utils.c | 2 +- - mate-dictionary/src/gdict-sidebar.c | 4 ++-- - 5 files changed, 7 insertions(+), 7 deletions(-) - -commit 0a908588f0612d3fc26e79c454253e80dc8c9e10 -Author: raveit65 -Date: Tue Mar 9 23:38:15 2021 +0100 - - travis: build with mate-common-1.24.2 from repos - - .build.yml | 11 ----------- - 1 file changed, 11 deletions(-) - -commit 768071911a44b7460105a27192ebcc92a9af8dda -Author: rbuj -Date: Sun Jan 31 22:51:13 2021 +0100 - - i18n: Do not collect the translation for Icon - - baobab/data/Makefile.am | 2 +- - gsearchtool/data/Makefile.am | 2 +- - logview/data/Makefile.am | 2 +- - mate-dictionary/data/Makefile.am | 11 +++++++++-- - mate-disk-image-mounter/data/Makefile.am | 2 +- - mate-screenshot/data/Makefile.am | 2 +- - po/Makevars | 2 +- - 7 files changed, 15 insertions(+), 8 deletions(-) - -commit a876b88b5b5e16031ea86b49d63b955271a671cb -Author: rbuj -Date: Fri Feb 26 20:06:48 2021 +0100 - - mate-screenshot: fix the order of the buttons at the bottom - - mate-screenshot/data/mate-screenshot.ui | 205 +++++++++++++++++--------------- - 1 file changed, 109 insertions(+), 96 deletions(-) - -commit 398289a12443e71978fdc08809231dbd10d8a86f -Author: raveit65 -Date: Tue Feb 23 08:26:42 2021 +0100 - - travis: temporarily disable build for ArchLinux - - .travis.yml | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5af31646583faedf3d16746f19e4d7d679852ac4 -Author: rbuj -Date: Wed Jan 27 18:03:29 2021 +0100 - - build: allow users to disable gettext support (--disable-nls) - - Makefile.am | 6 +++++- - baobab/data/Makefile.am | 9 +++++++++ - baobab/help/Makefile.am | 4 ++++ - baobab/src/baobab.c | 2 ++ - configure.ac | 5 ++++- - gsearchtool/data/Makefile.am | 10 ++++++++++ - gsearchtool/help/Makefile.am | 4 ++++ - gsearchtool/src/gsearchtool.c | 7 +++++++ - logview/data/Makefile.am | 6 ++++++ - logview/help/Makefile.am | 4 ++++ - logview/src/logview-main.c | 4 ++++ - mate-dictionary/data/Makefile.am | 13 +++++++++++++ - mate-dictionary/help/Makefile.am | 4 ++++ - mate-dictionary/libgdict/gdict-utils.c | 2 ++ - mate-dictionary/src/gdict-app.c | 2 ++ - mate-dictionary/src/gdict-applet.c | 2 ++ - mate-dictionary/src/main.c | 2 ++ - mate-disk-image-mounter/data/Makefile.am | 5 +++++ - mate-disk-image-mounter/src/main.c | 2 ++ - mate-screenshot/data/Makefile.am | 9 +++++++++ - mate-screenshot/src/mate-screenshot.c | 4 ++++ - 21 files changed, 104 insertions(+), 2 deletions(-) - -commit 1397f530214fe111405d98687d4b50b4ad23da45 -Author: rbuj -Date: Wed Jan 27 18:48:56 2021 +0100 - - build: set GETTEXT_PACKAGE=AC_PACKAGE_NAME - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a3766cc73c9720e4dd03447c9a1d302dc9a57a1c -Author: rbuj -Date: Sat Jan 16 19:58:51 2021 +0100 - - help: Dokumentationsteam -> Documentation Team - - gsearchtool/help/C/index.docbook | 2 +- - logview/help/C/index.docbook | 2 +- - mate-dictionary.pot | 4 ++-- - mate-dictionary/help/C/index.docbook | 2 +- - mate-search-tool.pot | 4 ++-- - mate-system-log.pot | 4 ++-- - 6 files changed, 9 insertions(+), 9 deletions(-) - -commit 8cbefce8d5a6c60e95a95515fa00ed929d1864f0 -Author: rbuj -Date: Sat Jan 16 19:36:47 2021 +0100 - - baobab: Dokumentationsteam -> Documentation Team - - baobab/help/C/index.docbook | 2 +- - mate-disk-usage-analyzer.pot | 4 ++-- - 2 files changed, 3 insertions(+), 3 deletions(-) - -commit 6fc72a5dc46fe64803b761fae9f503d6f14243fb -Author: rbuj -Date: Sat Jan 16 13:59:29 2021 +0100 - - update resource for transifex - - mate-dictionary.pot | 4 +- - mate-disk-usage-analyzer.pot | 4 +- - mate-search-tool.pot | 4 +- - mate-system-log.pot | 4 +- - mate-utils.pot | 1183 +++++++++++++++++++++--------------------- - 5 files changed, 600 insertions(+), 599 deletions(-) - -commit d8a4295fe7858d7c99c9e4c1dfc54bfe2d1b3ca6 -Author: rbuj -Date: Sat Jan 16 13:51:43 2021 +0100 - - Update copyright to 2021 - - baobab/help/C/index.docbook | 2 +- - baobab/src/callbacks.c | 2 +- - gsearchtool/help/C/index.docbook | 2 +- - logview/help/C/index.docbook | 4 ++-- - logview/src/logview-main.c | 5 +++-- - logview/src/logview-window.c | 2 +- - mate-dictionary/help/C/index.docbook | 2 +- - mate-dictionary/src/gdict-about.c | 2 +- - 8 files changed, 11 insertions(+), 10 deletions(-) - -commit 8f52f1a355ccff983fa2542266abe374d305e8fe -Author: rbuj -Date: Sun Dec 20 21:02:16 2020 +0100 - - baobab: remove warning -Wunused-value - - baobab/src/baobab-ringschart.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d1ebacdf62beecf6ed77f09419351ede82f9a6a1 -Author: raveit65 -Date: Tue Dec 8 18:23:39 2020 +0100 - - update issue template - - .github/issue_template.md | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 38ab3e1e7bac25950df0d0125b6b5fd219577891 -Author: rbuj -Date: Sat Nov 28 10:03:01 2020 +0100 - - Add legal notice in configure.ac - - configure.ac | 15 +++++++++++++++ - 1 file changed, 15 insertions(+) - -commit c37a23cc3a6ee35c525d7c548ad7b27e7a73048a -Author: rbuj -Date: Sat Nov 28 09:49:14 2020 +0100 - - Add legal notice in Makefile.am files - - Makefile.am | 15 +++++++++++++++ - baobab/Makefile.am | 15 +++++++++++++++ - baobab/data/Makefile.am | 15 +++++++++++++++ - baobab/help/Makefile.am | 15 +++++++++++++++ - baobab/pixmaps/Makefile.am | 15 +++++++++++++++ - baobab/src/Makefile.am | 15 +++++++++++++++ - gsearchtool/Makefile.am | 15 +++++++++++++++ - gsearchtool/data/Makefile.am | 15 +++++++++++++++ - gsearchtool/help/Makefile.am | 15 +++++++++++++++ - gsearchtool/libmateui-deprecated/Makefile.am | 15 +++++++++++++++ - gsearchtool/src/Makefile.am | 15 +++++++++++++++ - logview/Makefile.am | 15 +++++++++++++++ - logview/data/Makefile.am | 15 +++++++++++++++ - logview/data/icons/Makefile.am | 15 +++++++++++++++ - logview/help/Makefile.am | 15 +++++++++++++++ - logview/src/Makefile.am | 15 +++++++++++++++ - logview/src/tests/Makefile.am | 15 +++++++++++++++ - mate-dictionary/Makefile.am | 15 +++++++++++++++ - mate-dictionary/data/Makefile.am | 15 +++++++++++++++ - mate-dictionary/docs/Makefile.am | 15 +++++++++++++++ - mate-dictionary/docs/reference/Makefile.am | 15 +++++++++++++++ - mate-dictionary/docs/reference/gdict/Makefile.am | 15 +++++++++++++++ - mate-dictionary/help/Makefile.am | 15 +++++++++++++++ - mate-dictionary/libgdict/Makefile.am | 15 +++++++++++++++ - mate-dictionary/src/Makefile.am | 15 +++++++++++++++ - mate-disk-image-mounter/Makefile.am | 15 +++++++++++++++ - mate-disk-image-mounter/data/Makefile.am | 15 +++++++++++++++ - mate-disk-image-mounter/src/Makefile.am | 15 +++++++++++++++ - mate-screenshot/Makefile.am | 15 +++++++++++++++ - mate-screenshot/data/Makefile.am | 15 +++++++++++++++ - mate-screenshot/src/Makefile.am | 15 +++++++++++++++ - 31 files changed, 465 insertions(+) - -commit c32d63f3386e84dba031d2947f2cb1d01af6b0c4 -Author: rbuj -Date: Sat Nov 28 08:43:02 2020 +0100 - - COPYING.docs from https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt - - COPYING.docs | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 14f1acfb754d3fd40de0bf4851678a9aafcc097b -Author: rbuj -Date: Sat Nov 28 08:39:57 2020 +0100 - - COPYING.libs from https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt - - COPYING.libs | 20 +++++++++----------- - 1 file changed, 9 insertions(+), 11 deletions(-) - -commit 3f6f15c08f51a2d60fa9ab80095804b22e2a7c21 -Author: rbuj -Date: Sat Nov 28 08:33:37 2020 +0100 - - COPYING from https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt - - COPYING | 39 +++++++++++++++++++-------------------- - 1 file changed, 19 insertions(+), 20 deletions(-) - -commit 930e1e9881e8aa3191899e82d3cc613fa12b9dc8 -Author: rbuj -Date: Fri Nov 27 19:37:37 2020 +0100 - - GNU GPL 2 license notice without post box, after copyright notice - - Use always the same code snippet for including the top-level config.h - - baobab/src/baobab-cell-renderer-progress.c | 29 +++++++++-------- - baobab/src/baobab-cell-renderer-progress.h | 24 +++++++------- - baobab/src/baobab-chart.c | 18 +++++----- - baobab/src/baobab-chart.h | 15 ++++----- - baobab/src/baobab-prefs.c | 19 +++++------ - baobab/src/baobab-prefs.h | 16 ++++----- - baobab/src/baobab-remote-connect-dialog.c | 37 ++++++++++----------- - baobab/src/baobab-remote-connect-dialog.h | 35 ++++++++------------ - baobab/src/baobab-ringschart.c | 15 ++++----- - baobab/src/baobab-ringschart.h | 15 ++++----- - baobab/src/baobab-scan.c | 19 +++++------ - baobab/src/baobab-scan.h | 16 ++++----- - baobab/src/baobab-treemap.c | 15 ++++----- - baobab/src/baobab-treemap.h | 15 ++++----- - baobab/src/baobab-treeview.c | 18 +++++----- - baobab/src/baobab-treeview.h | 16 ++++----- - baobab/src/baobab-utils.c | 18 +++++----- - baobab/src/baobab-utils.h | 16 ++++----- - baobab/src/baobab.c | 18 +++++----- - baobab/src/baobab.h | 16 ++++----- - baobab/src/callbacks.c | 21 +++++------- - baobab/src/callbacks.h | 16 ++++----- - .../libmateui-deprecated/gsearchtool-entry.c | 22 +++++-------- - .../libmateui-deprecated/gsearchtool-entry.h | 22 ++++--------- - gsearchtool/src/gsearchtool-callbacks.c | 36 +++++++++----------- - gsearchtool/src/gsearchtool-callbacks.h | 34 +++++++++---------- - gsearchtool/src/gsearchtool-support.c | 36 +++++++++----------- - gsearchtool/src/gsearchtool-support.h | 34 +++++++++---------- - gsearchtool/src/gsearchtool.c | 38 ++++++++++------------ - gsearchtool/src/gsearchtool.h | 34 +++++++++---------- - logview/src/logview-about.h | 27 +++++++-------- - logview/src/logview-app.c | 23 ++++++------- - logview/src/logview-app.h | 21 ++++++------ - logview/src/logview-filter-manager.c | 24 +++++++------- - logview/src/logview-filter-manager.h | 24 +++++++------- - logview/src/logview-filter.c | 24 +++++++------- - logview/src/logview-filter.h | 24 +++++++------- - logview/src/logview-findbar.c | 23 +++++++------ - logview/src/logview-findbar.h | 23 +++++++------ - logview/src/logview-log.c | 24 +++++++------- - logview/src/logview-log.h | 20 +++++------- - logview/src/logview-loglist.c | 23 +++++++------ - logview/src/logview-loglist.h | 23 +++++++------ - logview/src/logview-main.c | 27 +++++++-------- - logview/src/logview-manager.c | 20 +++++------- - logview/src/logview-manager.h | 18 +++++----- - logview/src/logview-prefs.c | 21 ++++++------ - logview/src/logview-prefs.h | 23 +++++++------ - logview/src/logview-utils.c | 19 +++++------ - logview/src/logview-utils.h | 21 ++++++------ - logview/src/logview-window.c | 18 +++++----- - logview/src/logview-window.h | 15 ++++----- - logview/src/tests/test-reader.c | 16 +++++++++ - mate-dictionary/libgdict/gdict-client-context.c | 25 +++++++------- - mate-dictionary/libgdict/gdict-client-context.h | 23 +++++++------ - mate-dictionary/libgdict/gdict-context-private.h | 23 +++++++------ - mate-dictionary/libgdict/gdict-context.c | 27 +++++++-------- - mate-dictionary/libgdict/gdict-context.h | 23 +++++++------ - mate-dictionary/libgdict/gdict-database-chooser.c | 25 +++++++------- - mate-dictionary/libgdict/gdict-database-chooser.h | 23 +++++++------ - mate-dictionary/libgdict/gdict-debug.h | 23 +++++++------ - mate-dictionary/libgdict/gdict-defbox.c | 25 +++++++------- - mate-dictionary/libgdict/gdict-defbox.h | 23 +++++++------ - mate-dictionary/libgdict/gdict-private.h | 23 +++++++------ - mate-dictionary/libgdict/gdict-source-chooser.c | 25 +++++++------- - mate-dictionary/libgdict/gdict-source-chooser.h | 23 +++++++------ - mate-dictionary/libgdict/gdict-source-loader.c | 25 +++++++------- - mate-dictionary/libgdict/gdict-source-loader.h | 23 +++++++------ - mate-dictionary/libgdict/gdict-source.c | 25 +++++++------- - mate-dictionary/libgdict/gdict-source.h | 23 +++++++------ - mate-dictionary/libgdict/gdict-speller.c | 25 +++++++------- - mate-dictionary/libgdict/gdict-speller.h | 23 +++++++------ - mate-dictionary/libgdict/gdict-strategy-chooser.c | 25 +++++++------- - mate-dictionary/libgdict/gdict-strategy-chooser.h | 24 +++++++------- - mate-dictionary/libgdict/gdict-utils.c | 25 +++++++------- - mate-dictionary/libgdict/gdict-utils.h | 23 +++++++------ - mate-dictionary/libgdict/gdict-version.h.in | 24 +++++++------- - mate-dictionary/libgdict/gdict.h | 23 +++++++------ - mate-dictionary/src/gdict-about.c | 30 +++++++---------- - mate-dictionary/src/gdict-about.h | 24 ++++++-------- - mate-dictionary/src/gdict-aligned-window.c | 27 ++++++++------- - mate-dictionary/src/gdict-aligned-window.h | 25 +++++++------- - mate-dictionary/src/gdict-app.c | 26 +++++++-------- - mate-dictionary/src/gdict-app.h | 24 ++++++-------- - mate-dictionary/src/gdict-applet.c | 19 +++++------ - mate-dictionary/src/gdict-applet.h | 17 +++++----- - mate-dictionary/src/gdict-common.c | 26 +++++++-------- - mate-dictionary/src/gdict-common.h | 24 ++++++-------- - mate-dictionary/src/gdict-pref-dialog.c | 26 +++++++-------- - mate-dictionary/src/gdict-pref-dialog.h | 24 ++++++-------- - mate-dictionary/src/gdict-print.c | 26 +++++++-------- - mate-dictionary/src/gdict-print.h | 24 ++++++-------- - mate-dictionary/src/gdict-sidebar.c | 32 +++++++++--------- - mate-dictionary/src/gdict-sidebar.h | 30 ++++++++--------- - mate-dictionary/src/gdict-source-dialog.c | 26 +++++++-------- - mate-dictionary/src/gdict-source-dialog.h | 24 ++++++-------- - mate-dictionary/src/gdict-window.c | 26 +++++++-------- - mate-dictionary/src/gdict-window.h | 24 ++++++-------- - mate-dictionary/src/main.c | 18 +++++++++- - mate-disk-image-mounter/src/main.c | 30 +++++++++-------- - mate-screenshot/src/mate-screenshot.c | 27 +++++++-------- - mate-screenshot/src/screenshot-dialog.c | 26 ++++++++------- - mate-screenshot/src/screenshot-dialog.h | 23 +++++++------ - mate-screenshot/src/screenshot-save.c | 26 ++++++++------- - mate-screenshot/src/screenshot-save.h | 23 +++++++------ - mate-screenshot/src/screenshot-shadow.c | 25 +++++++------- - mate-screenshot/src/screenshot-shadow.h | 23 +++++++------ - mate-screenshot/src/screenshot-utils.c | 30 +++++++++-------- - mate-screenshot/src/screenshot-utils.h | 23 +++++++------ - mate-screenshot/src/screenshot-xfer.c | 29 +++++++++-------- - mate-screenshot/src/screenshot-xfer.h | 25 +++++++------- - 111 files changed, 1214 insertions(+), 1401 deletions(-) - -commit 274ca0c1b8b68eee37205f8faae00295a07b5984 -Author: rbuj -Date: Sun Nov 22 10:21:45 2020 +0100 - - screenshot-save: warning -Wdangling-else - - mate-screenshot/src/screenshot-save.c | 44 +++++++++++++++++++---------------- - 1 file changed, 24 insertions(+), 20 deletions(-) - -commit e0922b5bff84b4e14685afc01d1747d05c6d8f4b -Author: rbuj -Date: Mon Nov 16 07:32:43 2020 +0100 - - gdict-utils: Fix comment - - mate-dictionary/libgdict/gdict-utils.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a911f11a25ef44cf90e7fce08470724068a5a8a2 -Author: rbuj -Date: Mon Nov 16 07:13:16 2020 +0100 - - gdict-utils: variable 'env_string' set but not used - - mate-dictionary/libgdict/gdict-utils.c | 6 +----- - 1 file changed, 1 insertion(+), 5 deletions(-) - -commit 4de3e8ae87463027e5365018505748353dc44125 -Author: rbuj -Date: Mon Nov 16 12:56:57 2020 +0100 - - baobab: Fix conversion warnings - - baobab/src/baobab-cell-renderer-progress.c | 6 +++--- - baobab/src/baobab-chart.c | 26 +++++++++++++++++--------- - baobab/src/baobab-chart.h | 2 +- - baobab/src/baobab-remote-connect-dialog.c | 4 ---- - baobab/src/baobab-ringschart.c | 26 +++++++++++++------------- - baobab/src/baobab-scan.c | 26 ++++++++++++++------------ - baobab/src/baobab-treemap.c | 12 ++++++------ - baobab/src/baobab-treeview.c | 4 ++-- - baobab/src/baobab.c | 4 ++-- - baobab/src/baobab.h | 4 ++-- - 10 files changed, 60 insertions(+), 54 deletions(-) - -commit afec076d38599ecf8005a0e645d65f532dad720e -Author: rbuj -Date: Mon Nov 16 07:46:17 2020 +0100 - - gdict-window: Remove warnings about missing initializer for field - - mate-dictionary/src/gdict-window.c | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 9bb3c5992710ce93e81384e5b21fc992a3d1a20d -Author: rbuj -Date: Mon Nov 16 08:58:14 2020 +0100 - - Remove USE_MATE2_MACROS from autogen.sh (legacy) - - autogen.sh | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 4a0c328ad5076f8e26ef73ae64db09b9721c28dc -Author: rbuj -Date: Mon Nov 16 07:00:39 2020 +0100 - - configure: remove warning about option 'subdir-objects' is disabled - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f57284dde86487adcf1240e19b1f07fa231d8573 -Author: raveit65 -Date: Mon Nov 16 12:49:06 2020 +0100 - - travis CI: fix build issue of gtk-doc module - - mate-dictionary/docs/reference/gdict/Makefile.am | 2 ++ - 1 file changed, 2 insertions(+) - -commit 96ad5a5abd7301fc189daebb416780a28784d800 -Author: raveit65 -Date: Mon Nov 16 12:45:24 2020 +0100 - - travis CI: use `rolling` tag for ubuntu - - .travis.yml | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 88ac43d1e046f7b50ea0d7060d192d68b07f6ea4 -Author: rbuj -Date: Fri Aug 7 15:56:59 2020 +0200 - - Warn about accessing an undefined property of the object - - logview/src/logview-filter.c | 3 +++ - mate-dictionary/src/gdict-pref-dialog.c | 2 ++ - mate-dictionary/src/gdict-source-dialog.c | 2 ++ - 3 files changed, 7 insertions(+) - -commit 6244782e8b8311a6fb63a10893ecd1699ca9ad44 -Author: Pablo Barciela -Date: Mon Aug 3 02:30:45 2020 +0200 - - Travis CI: enable irc notifications with broken builds - - .travis.yml | 12 ++++++++++++ - 1 file changed, 12 insertions(+) - -commit 779217a812e3e706d9e2df97f8888e8b09d05d32 -Author: Pablo Barciela -Date: Mon Aug 3 02:25:46 2020 +0200 - - Travis CI: debian build: add clang compiler - - .build.yml | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit a45c425578743af51ce700f7306518984cf4c538 -Author: Pablo Barciela -Date: Mon Aug 3 02:22:18 2020 +0200 - - Travis CI: debian build: add -Wsign-compare -Wunused-parameter to CFLAGS - - .build.yml | 8 +++++--- - 1 file changed, 5 insertions(+), 3 deletions(-) - -commit 3e6ecc3ba9c1d7a2fe8501e6e95aa793f274a120 -Author: Pablo Barciela -Date: Wed Jul 8 11:55:00 2020 +0200 - - gsearchtool: Fix "open with" behavior - - Fixes https://github.com/mate-desktop/mate-utils/issues/298 - - gsearchtool/src/gsearchtool-callbacks.c | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit 382eb97c5371b4b01f20bb7443e990760ec2fb04 -Author: raveit65 -Date: Mon Jul 6 16:05:50 2020 +0200 - - release 1.25.0 - - NEWS | 34 ++++++++++++++++++++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 35 insertions(+), 1 deletion(-) - -commit f875a886c2a2ad479ad35fba0bd8e67a200020d5 -Author: raveit65 -Date: Mon Jul 6 16:00:19 2020 +0200 - - sync with transifex - - baobab/help/af/af.po | 1 + - baobab/help/am/am.po | 1 + - baobab/help/an/an.po | 1 + - baobab/help/ar/ar.po | 1 + - baobab/help/as/as.po | 1 + - baobab/help/ast/ast.po | 5 +- - baobab/help/az/az.po | 1 + - baobab/help/be/be.po | 1 + - baobab/help/bg/bg.po | 1 + - baobab/help/bn/bn.po | 1 + - baobab/help/bn_IN/bn_IN.po | 1 + - baobab/help/br/br.po | 1 + - baobab/help/bs/bs.po | 1 + - baobab/help/ca/ca.po | 8 +- - baobab/help/ca@valencia/ca@valencia.po | 1 + - baobab/help/cmn/cmn.po | 1 + - baobab/help/crh/crh.po | 1 + - baobab/help/cs/cs.po | 11 +- - baobab/help/cy/cy.po | 1 + - baobab/help/da/da.po | 1 + - baobab/help/de/de.po | 1 + - baobab/help/dz/dz.po | 1 + - baobab/help/el/el.po | 5 +- - baobab/help/en_AU/en_AU.po | 1 + - baobab/help/en_CA/en_CA.po | 1 + - baobab/help/en_GB/en_GB.po | 1 + - baobab/help/eo/eo.po | 1 + - baobab/help/es/es.po | 12 +- - baobab/help/es_AR/es_AR.po | 1 + - baobab/help/es_CL/es_CL.po | 1 + - baobab/help/es_CO/es_CO.po | 1 + - baobab/help/es_ES/es_ES.po | 1 + - baobab/help/es_MX/es_MX.po | 1 + - baobab/help/es_PR/es_PR.po | 1 + - baobab/help/et/et.po | 1 + - baobab/help/eu/eu.po | 1 + - baobab/help/fa/fa.po | 1 + - baobab/help/fi/fi.po | 1 + - baobab/help/fil/fil.po | 1 + - baobab/help/fr/fr.po | 10 +- - baobab/help/frp/frp.po | 1 + - baobab/help/fur/fur.po | 1 + - baobab/help/fy/fy.po | 1 + - baobab/help/ga/ga.po | 1 + - baobab/help/gl/gl.po | 1 + - baobab/help/gu/gu.po | 1 + - baobab/help/ha/ha.po | 1 + - baobab/help/he/he.po | 10 +- - baobab/help/hi/hi.po | 1 + - baobab/help/hr/hr.po | 18 +- - baobab/help/hu/hu.po | 8 +- - baobab/help/hy/hy.po | 10 +- - baobab/help/ia/ia.po | 6 +- - baobab/help/id/id.po | 6 +- - baobab/help/ie/ie.po | 5 +- - baobab/help/ig/ig.po | 1 + - baobab/help/is/is.po | 1 + - baobab/help/it/it.po | 132 +- - baobab/help/ja/ja.po | 3 +- - baobab/help/jv/jv.po | 1 + - baobab/help/ka/ka.po | 1 + - baobab/help/kab/kab.po | 10 +- - baobab/help/kk/kk.po | 1 + - baobab/help/km/km.po | 1 + - baobab/help/kn/kn.po | 1 + - baobab/help/ko/ko.po | 1 + - baobab/help/ku/ku.po | 1 + - baobab/help/ku_IQ/ku_IQ.po | 1 + - baobab/help/ky/ky.po | 5 +- - baobab/help/la/la.po | 1 + - baobab/help/lt/lt.po | 13 +- - baobab/help/lv/lv.po | 5 +- - baobab/help/mai/mai.po | 1 + - baobab/help/mg/mg.po | 1 + - baobab/help/mi/mi.po | 1 + - baobab/help/mk/mk.po | 1 + - baobab/help/ml/ml.po | 1 + - baobab/help/mn/mn.po | 1 + - baobab/help/mr/mr.po | 1 + - baobab/help/ms/ms.po | 7 +- - baobab/help/nb/nb.po | 1 + - baobab/help/nds/nds.po | 1 + - baobab/help/ne/ne.po | 1 + - baobab/help/nl/nl.po | 1 + - baobab/help/nn/nn.po | 5 +- - baobab/help/nso/nso.po | 1 + - baobab/help/oc/oc.po | 37 +- - baobab/help/or/or.po | 1 + - baobab/help/pa/pa.po | 1 + - baobab/help/pl/pl.po | 6 +- - baobab/help/ps/ps.po | 1 + - baobab/help/pt/pt.po | 10 +- - baobab/help/pt_BR/pt_BR.po | 9 +- - baobab/help/ro/ro.po | 1 + - baobab/help/ru/ru.po | 1 + - baobab/help/si/si.po | 1 + - baobab/help/sk/sk.po | 15 +- - baobab/help/sl/sl.po | 8 +- - baobab/help/sq/sq.po | 1 + - baobab/help/sr/sr.po | 1 + - baobab/help/sr@latin/sr@latin.po | 1 + - baobab/help/sv/sv.po | 5 +- - baobab/help/ta/ta.po | 1 + - baobab/help/te/te.po | 1 + - baobab/help/th/th.po | 1 + - baobab/help/tk/tk.po | 1 + - baobab/help/tr/tr.po | 9 +- - baobab/help/ug/ug.po | 5 +- - baobab/help/uk/uk.po | 1 + - baobab/help/ur/ur.po | 1 + - baobab/help/uz/uz.po | 1 + - baobab/help/vi/vi.po | 1 + - baobab/help/wa/wa.po | 1 + - baobab/help/xh/xh.po | 1 + - baobab/help/yo/yo.po | 1 + - baobab/help/zh_CN/zh_CN.po | 8 +- - baobab/help/zh_HK/zh_HK.po | 1 + - baobab/help/zh_TW/zh_TW.po | 1 + - baobab/help/zu/zu.po | 1 + - gsearchtool/help/af/af.po | 1 + - gsearchtool/help/am/am.po | 1 + - gsearchtool/help/ar/ar.po | 1 + - gsearchtool/help/as/as.po | 1 + - gsearchtool/help/ast/ast.po | 3 +- - gsearchtool/help/az/az.po | 1 + - gsearchtool/help/be/be.po | 1 + - gsearchtool/help/bg/bg.po | 1 + - gsearchtool/help/bn/bn.po | 1 + - gsearchtool/help/bn_IN/bn_IN.po | 1 + - gsearchtool/help/br/br.po | 1 + - gsearchtool/help/bs/bs.po | 1 + - gsearchtool/help/ca/ca.po | 6 +- - gsearchtool/help/ca@valencia/ca@valencia.po | 1 + - gsearchtool/help/cmn/cmn.po | 1 + - gsearchtool/help/crh/crh.po | 1 + - gsearchtool/help/cs/cs.po | 18 +- - gsearchtool/help/cy/cy.po | 1 + - gsearchtool/help/da/da.po | 1 + - gsearchtool/help/de/de.po | 1 + - gsearchtool/help/dz/dz.po | 1 + - gsearchtool/help/el/el.po | 3 +- - gsearchtool/help/en_AU/en_AU.po | 1 + - gsearchtool/help/en_CA/en_CA.po | 1 + - gsearchtool/help/en_GB/en_GB.po | 1 + - gsearchtool/help/eo/eo.po | 1 + - gsearchtool/help/es/es.po | 1 + - gsearchtool/help/es_AR/es_AR.po | 1 + - gsearchtool/help/es_CL/es_CL.po | 1 + - gsearchtool/help/es_CO/es_CO.po | 1 + - gsearchtool/help/es_ES/es_ES.po | 1 + - gsearchtool/help/et/et.po | 1 + - gsearchtool/help/eu/eu.po | 1 + - gsearchtool/help/fa/fa.po | 1 + - gsearchtool/help/fi/fi.po | 1 + - gsearchtool/help/fr/fr.po | 42 +- - gsearchtool/help/fur/fur.po | 1 + - gsearchtool/help/fy/fy.po | 1 + - gsearchtool/help/ga/ga.po | 1 + - gsearchtool/help/gl/gl.po | 1 + - gsearchtool/help/gu/gu.po | 1 + - gsearchtool/help/ha/ha.po | 1 + - gsearchtool/help/he/he.po | 10 +- - gsearchtool/help/hi/hi.po | 1 + - gsearchtool/help/hr/hr.po | 20 +- - gsearchtool/help/hu/hu.po | 8 +- - gsearchtool/help/hy/hy.po | 12 +- - gsearchtool/help/id/id.po | 8 +- - gsearchtool/help/ie/ie.po | 5 +- - gsearchtool/help/ig/ig.po | 1 + - gsearchtool/help/is/is.po | 1 + - gsearchtool/help/it/it.po | 238 +- - gsearchtool/help/ja/ja.po | 3 +- - gsearchtool/help/ka/ka.po | 1 + - gsearchtool/help/kab/kab.po | 12 +- - gsearchtool/help/kk/kk.po | 1 + - gsearchtool/help/kn/kn.po | 1 + - gsearchtool/help/ko/ko.po | 1 + - gsearchtool/help/ku/ku.po | 1 + - gsearchtool/help/ky/ky.po | 5 +- - gsearchtool/help/lt/lt.po | 20 +- - gsearchtool/help/lv/lv.po | 1 + - gsearchtool/help/mai/mai.po | 1 + - gsearchtool/help/mg/mg.po | 1 + - gsearchtool/help/mk/mk.po | 1 + - gsearchtool/help/ml/ml.po | 1 + - gsearchtool/help/mn/mn.po | 1 + - gsearchtool/help/mr/mr.po | 1 + - gsearchtool/help/ms/ms.po | 7 +- - gsearchtool/help/nb/nb.po | 1 + - gsearchtool/help/nds/nds.po | 1 + - gsearchtool/help/ne/ne.po | 1 + - gsearchtool/help/nl/nl.po | 1 + - gsearchtool/help/nn/nn.po | 5 +- - gsearchtool/help/nso/nso.po | 1 + - gsearchtool/help/oc/oc.po | 56 +- - gsearchtool/help/or/or.po | 1 + - gsearchtool/help/pa/pa.po | 1 + - gsearchtool/help/pl/pl.po | 6 +- - gsearchtool/help/ps/ps.po | 1 + - gsearchtool/help/pt/pt.po | 10 +- - gsearchtool/help/pt_BR/pt_BR.po | 9 +- - gsearchtool/help/ro/ro.po | 1 + - gsearchtool/help/ru/ru.po | 1 + - gsearchtool/help/si/si.po | 1 + - gsearchtool/help/sk/sk.po | 15 +- - gsearchtool/help/sl/sl.po | 8 +- - gsearchtool/help/sq/sq.po | 1 + - gsearchtool/help/sr/sr.po | 1 + - gsearchtool/help/sr@latin/sr@latin.po | 1 + - gsearchtool/help/sv/sv.po | 10 +- - gsearchtool/help/ta/ta.po | 1 + - gsearchtool/help/te/te.po | 1 + - gsearchtool/help/th/th.po | 1 + - gsearchtool/help/tr/tr.po | 7 +- - gsearchtool/help/ug/ug.po | 5 +- - gsearchtool/help/uk/uk.po | 1 + - gsearchtool/help/ur/ur.po | 1 + - gsearchtool/help/uz/uz.po | 1 + - gsearchtool/help/vi/vi.po | 1 + - gsearchtool/help/wa/wa.po | 1 + - gsearchtool/help/xh/xh.po | 1 + - gsearchtool/help/yo/yo.po | 1 + - gsearchtool/help/zh_CN/zh_CN.po | 8 +- - gsearchtool/help/zh_HK/zh_HK.po | 1 + - gsearchtool/help/zh_TW/zh_TW.po | 1 + - gsearchtool/help/zu/zu.po | 1 + - logview/help/af/af.po | 1 + - logview/help/am/am.po | 1 + - logview/help/ar/ar.po | 1 + - logview/help/as/as.po | 1 + - logview/help/ast/ast.po | 5 +- - logview/help/az/az.po | 1 + - logview/help/be/be.po | 1 + - logview/help/bg/bg.po | 1 + - logview/help/bn/bn.po | 1 + - logview/help/bn_IN/bn_IN.po | 1 + - logview/help/br/br.po | 1 + - logview/help/bs/bs.po | 1 + - logview/help/ca/ca.po | 6 +- - logview/help/ca@valencia/ca@valencia.po | 1 + - logview/help/cmn/cmn.po | 1 + - logview/help/crh/crh.po | 1 + - logview/help/cs/cs.po | 103 +- - logview/help/cy/cy.po | 1 + - logview/help/da/da.po | 1 + - logview/help/de/de.po | 1 + - logview/help/dz/dz.po | 1 + - logview/help/el/el.po | 3 +- - logview/help/en_AU/en_AU.po | 1 + - logview/help/en_CA/en_CA.po | 1 + - logview/help/en_GB/en_GB.po | 1 + - logview/help/eo/eo.po | 1 + - logview/help/es/es.po | 1 + - logview/help/es_AR/es_AR.po | 1 + - logview/help/es_CL/es_CL.po | 1 + - logview/help/es_CO/es_CO.po | 1 + - logview/help/es_CR/es_CR.po | 1 + - logview/help/es_DO/es_DO.po | 1 + - logview/help/es_EC/es_EC.po | 1 + - logview/help/es_ES/es_ES.po | 1 + - logview/help/es_MX/es_MX.po | 1 + - logview/help/es_NI/es_NI.po | 1 + - logview/help/es_PA/es_PA.po | 1 + - logview/help/es_PE/es_PE.po | 1 + - logview/help/es_PR/es_PR.po | 1 + - logview/help/es_SV/es_SV.po | 1 + - logview/help/es_UY/es_UY.po | 1 + - logview/help/es_VE/es_VE.po | 1 + - logview/help/et/et.po | 1 + - logview/help/eu/eu.po | 1 + - logview/help/fa/fa.po | 1 + - logview/help/fi/fi.po | 1 + - logview/help/fr/fr.po | 6 +- - logview/help/fur/fur.po | 1 + - logview/help/fy/fy.po | 1 + - logview/help/ga/ga.po | 1 + - logview/help/gl/gl.po | 34 +- - logview/help/gu/gu.po | 1 + - logview/help/ha/ha.po | 1 + - logview/help/he/he.po | 10 +- - logview/help/hi/hi.po | 1 + - logview/help/hr/hr.po | 18 +- - logview/help/hu/hu.po | 8 +- - logview/help/hy/hy.po | 12 +- - logview/help/ia/ia.po | 1 + - logview/help/id/id.po | 6 +- - logview/help/ie/ie.po | 5 +- - logview/help/ig/ig.po | 1 + - logview/help/is/is.po | 1 + - logview/help/it/it.po | 159 +- - logview/help/ja/ja.po | 3 +- - logview/help/ka/ka.po | 1 + - logview/help/kab/kab.po | 10 +- - logview/help/kk/kk.po | 1 + - logview/help/kn/kn.po | 1 + - logview/help/ko/ko.po | 1 + - logview/help/ku/ku.po | 1 + - logview/help/ky/ky.po | 5 +- - logview/help/lt/lt.po | 13 +- - logview/help/lv/lv.po | 1 + - logview/help/mai/mai.po | 1 + - logview/help/mg/mg.po | 1 + - logview/help/mk/mk.po | 1 + - logview/help/ml/ml.po | 1 + - logview/help/mn/mn.po | 1 + - logview/help/mr/mr.po | 1 + - logview/help/ms/ms.po | 7 +- - logview/help/nb/nb.po | 1 + - logview/help/nds/nds.po | 1 + - logview/help/ne/ne.po | 1 + - logview/help/nl/nl.po | 1 + - logview/help/nn/nn.po | 5 +- - logview/help/nso/nso.po | 1 + - logview/help/oc/oc.po | 67 +- - logview/help/or/or.po | 1 + - logview/help/pa/pa.po | 1 + - logview/help/pl/pl.po | 6 +- - logview/help/ps/ps.po | 1 + - logview/help/pt/pt.po | 10 +- - logview/help/pt_BR/pt_BR.po | 11 +- - logview/help/ro/ro.po | 1 + - logview/help/ru/ru.po | 1 + - logview/help/si/si.po | 1 + - logview/help/sk/sk.po | 15 +- - logview/help/sl/sl.po | 8 +- - logview/help/sq/sq.po | 1 + - logview/help/sr/sr.po | 1 + - logview/help/sr@latin/sr@latin.po | 1 + - logview/help/sv/sv.po | 10 +- - logview/help/ta/ta.po | 1 + - logview/help/te/te.po | 1 + - logview/help/th/th.po | 1 + - logview/help/tr/tr.po | 9 +- - logview/help/ug/ug.po | 5 +- - logview/help/uk/uk.po | 1 + - logview/help/ur/ur.po | 1 + - logview/help/uz/uz.po | 1 + - logview/help/vi/vi.po | 1 + - logview/help/wa/wa.po | 1 + - logview/help/xh/xh.po | 1 + - logview/help/yo/yo.po | 1 + - logview/help/zh_CN/zh_CN.po | 6 +- - logview/help/zh_HK/zh_HK.po | 1 + - logview/help/zh_TW/zh_TW.po | 1 + - logview/help/zu/zu.po | 1 + - mate-dictionary/help/af/af.po | 1 + - mate-dictionary/help/am/am.po | 1 + - mate-dictionary/help/ar/ar.po | 1 + - mate-dictionary/help/as/as.po | 1 + - mate-dictionary/help/ast/ast.po | 5 +- - mate-dictionary/help/az/az.po | 1 + - mate-dictionary/help/be/be.po | 1 + - mate-dictionary/help/bg/bg.po | 1 + - mate-dictionary/help/bn/bn.po | 1 + - mate-dictionary/help/bn_IN/bn_IN.po | 1 + - mate-dictionary/help/br/br.po | 1 + - mate-dictionary/help/bs/bs.po | 1 + - mate-dictionary/help/ca/ca.po | 8 +- - mate-dictionary/help/ca@valencia/ca@valencia.po | 1 + - mate-dictionary/help/cmn/cmn.po | 1 + - mate-dictionary/help/crh/crh.po | 1 + - mate-dictionary/help/cs/cs.po | 11 +- - mate-dictionary/help/cy/cy.po | 1 + - mate-dictionary/help/da/da.po | 1 + - mate-dictionary/help/de/de.po | 21 +- - mate-dictionary/help/dz/dz.po | 1 + - mate-dictionary/help/el/el.po | 5 +- - mate-dictionary/help/en_AU/en_AU.po | 1 + - mate-dictionary/help/en_CA/en_CA.po | 1 + - mate-dictionary/help/en_GB/en_GB.po | 1 + - mate-dictionary/help/eo/eo.po | 1 + - mate-dictionary/help/es/es.po | 1 + - mate-dictionary/help/es_AR/es_AR.po | 1 + - mate-dictionary/help/es_CL/es_CL.po | 1 + - mate-dictionary/help/es_CO/es_CO.po | 1 + - mate-dictionary/help/es_ES/es_ES.po | 1 + - mate-dictionary/help/es_MX/es_MX.po | 1 + - mate-dictionary/help/es_PR/es_PR.po | 1 + - mate-dictionary/help/et/et.po | 1 + - mate-dictionary/help/eu/eu.po | 1 + - mate-dictionary/help/fa/fa.po | 1 + - mate-dictionary/help/fi/fi.po | 1 + - mate-dictionary/help/fr/fr.po | 6 +- - mate-dictionary/help/fur/fur.po | 1 + - mate-dictionary/help/fy/fy.po | 1 + - mate-dictionary/help/ga/ga.po | 1 + - mate-dictionary/help/gl/gl.po | 1 + - mate-dictionary/help/gu/gu.po | 1 + - mate-dictionary/help/ha/ha.po | 1 + - mate-dictionary/help/he/he.po | 10 +- - mate-dictionary/help/hi/hi.po | 1 + - mate-dictionary/help/hr/hr.po | 18 +- - mate-dictionary/help/hu/hu.po | 8 +- - mate-dictionary/help/hy/hy.po | 10 +- - mate-dictionary/help/ia/ia.po | 12 +- - mate-dictionary/help/id/id.po | 6 +- - mate-dictionary/help/ie/ie.po | 5 +- - mate-dictionary/help/ig/ig.po | 1 + - mate-dictionary/help/is/is.po | 1 + - mate-dictionary/help/it/it.po | 173 +- - mate-dictionary/help/ja/ja.po | 3 +- - mate-dictionary/help/ka/ka.po | 1 + - mate-dictionary/help/kab/kab.po | 10 +- - mate-dictionary/help/kk/kk.po | 1 + - mate-dictionary/help/kn/kn.po | 1 + - mate-dictionary/help/ko/ko.po | 1 + - mate-dictionary/help/ku/ku.po | 1 + - mate-dictionary/help/ku_IQ/ku_IQ.po | 1 + - mate-dictionary/help/ky/ky.po | 5 +- - mate-dictionary/help/lt/lt.po | 13 +- - mate-dictionary/help/lv/lv.po | 5 +- - mate-dictionary/help/mai/mai.po | 1 + - mate-dictionary/help/mg/mg.po | 1 + - mate-dictionary/help/mk/mk.po | 1 + - mate-dictionary/help/ml/ml.po | 1 + - mate-dictionary/help/mn/mn.po | 1 + - mate-dictionary/help/mr/mr.po | 1 + - mate-dictionary/help/ms/ms.po | 7 +- - mate-dictionary/help/nb/nb.po | 1 + - mate-dictionary/help/nds/nds.po | 1 + - mate-dictionary/help/ne/ne.po | 1 + - mate-dictionary/help/nl/nl.po | 1 + - mate-dictionary/help/nn/nn.po | 5 +- - mate-dictionary/help/oc/oc.po | 18 +- - mate-dictionary/help/or/or.po | 1 + - mate-dictionary/help/pa/pa.po | 1 + - mate-dictionary/help/pl/pl.po | 6 +- - mate-dictionary/help/ps/ps.po | 1 + - mate-dictionary/help/pt/pt.po | 10 +- - mate-dictionary/help/pt_BR/pt_BR.po | 7 +- - mate-dictionary/help/ro/ro.po | 1 + - mate-dictionary/help/ru/ru.po | 1 + - mate-dictionary/help/si/si.po | 1 + - mate-dictionary/help/sk/sk.po | 15 +- - mate-dictionary/help/sl/sl.po | 8 +- - mate-dictionary/help/sq/sq.po | 1 + - mate-dictionary/help/sr/sr.po | 1 + - mate-dictionary/help/sr@latin/sr@latin.po | 1 + - mate-dictionary/help/sv/sv.po | 5 +- - mate-dictionary/help/ta/ta.po | 1 + - mate-dictionary/help/te/te.po | 1 + - mate-dictionary/help/th/th.po | 1 + - mate-dictionary/help/tr/tr.po | 9 +- - mate-dictionary/help/ug/ug.po | 5 +- - mate-dictionary/help/uk/uk.po | 1 + - mate-dictionary/help/ur/ur.po | 1 + - mate-dictionary/help/uz/uz.po | 1 + - mate-dictionary/help/vi/vi.po | 1 + - mate-dictionary/help/wa/wa.po | 1 + - mate-dictionary/help/xh/xh.po | 1 + - mate-dictionary/help/yo/yo.po | 1 + - mate-dictionary/help/zh_CN/zh_CN.po | 12 +- - mate-dictionary/help/zh_HK/zh_HK.po | 1 + - mate-dictionary/help/zh_TW/zh_TW.po | 1 + - po/LINGUAS | 1 + - po/ast.po | 2 +- - po/bg.po | 5 +- - po/ca.po | 2 +- - po/cs.po | 81 +- - po/el.po | 2 +- - po/eo.po | 7 +- - po/es.po | 8 +- - po/eu.po | 6 +- - po/fa.po | 2 +- - po/fi.po | 30 +- - po/fr.po | 86 +- - po/he.po | 8 +- - po/hu.po | 2 +- - po/hy.po | 5 +- - po/ia.po | 5 +- - po/id.po | 106 +- - po/ie.po | 4 +- - po/it.po | 324 +-- - po/ja.po | 2 +- - po/kab.po | 3195 +++++++++++++++++++++++ - po/ky.po | 4 +- - po/lt.po | 73 +- - po/lv.po | 2 +- - po/ms.po | 55 +- - po/nb.po | 21 +- - po/nds.po | 6 +- - po/nl.po | 2 +- - po/nn.po | 2 +- - po/oc.po | 46 +- - po/pl.po | 81 +- - po/pt.po | 21 +- - po/pt_BR.po | 16 +- - po/ru.po | 77 +- - po/sk.po | 39 +- - po/sl.po | 18 +- - po/sr.po | 96 +- - po/sv.po | 11 +- - po/tr.po | 82 +- - po/ug.po | 11 +- - po/uk.po | 156 +- - po/zh_CN.po | 40 +- - 496 files changed, 5693 insertions(+), 1355 deletions(-) - -commit 2cc74d21ccc5126dfd50a16d40a9db42256ee93a -Author: raveit65 -Date: Mon Jul 6 15:38:48 2020 +0200 - - update resource for transifex - - mate-disk-usage-analyzer.pot | 20 +- - mate-utils.pot | 701 +++++++++++++++++++++---------------------- - 2 files changed, 351 insertions(+), 370 deletions(-) - -commit f4559021fe2bbb58382b5407a8bf51304aae3580 -Author: rbuj -Date: Mon Jun 29 14:03:02 2020 +0200 - - gdict-pref-dialog: Simplify notebook scroll event - - mate-dictionary/src/gdict-pref-dialog.c | 58 ++++++++++++++++++--------------- - 1 file changed, 31 insertions(+), 27 deletions(-) - -commit 002874662a6b4e9df4087301f902ae2610e041e2 -Author: tamplan -Date: Sun Jun 21 17:26:16 2020 +0200 - - gdict-applet.c: change "Preferences" menu icon for harmonization - - mate-dictionary/src/gdict-applet.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a1a778e29ed63bc3216b8063d80c0e919307f0db -Author: Wu Xiaotian -Date: Thu Jun 18 14:29:11 2020 +0800 - - use libegg submodules - - .gitmodules | 4 + - configure.ac | 9 +- - gsearchtool/Makefile.am | 2 +- - gsearchtool/libeggsmclient/Makefile.am | 16 - - gsearchtool/libeggsmclient/eggdesktopfile.c | 1468 ---------------------- - gsearchtool/libeggsmclient/eggdesktopfile.h | 159 --- - gsearchtool/libeggsmclient/eggsmclient-private.h | 46 - - gsearchtool/libeggsmclient/eggsmclient-xsmp.c | 1364 -------------------- - gsearchtool/libeggsmclient/eggsmclient.c | 579 --------- - gsearchtool/libeggsmclient/eggsmclient.h | 117 -- - gsearchtool/mate-submodules | 1 + - gsearchtool/src/Makefile.am | 4 +- - po/POTFILES.in | 4 +- - 13 files changed, 15 insertions(+), 3758 deletions(-) - -commit a0a12954de26996f93249556c346c11b19efa20d -Author: Wu Xiaotian -Date: Mon Jun 22 22:14:54 2020 +0000 - - [ci] fix release tarball on travis CI failed - - .build.yml | 164 + - .github/FUNDING.yml | 9 + - .github/issue_template.md | 19 + - .travis.yml | 63 + - .tx/config | 38 + - AUTHORS | 3 + - COPYING | 340 + - COPYING.docs | 355 + - COPYING.libs | 504 + - ChangeLog | 2 + - Makefile.am | 48 + - NEWS | 233 + - README.md | 31 + - THANKS | 91 + - autogen.sh | 30 + - baobab/AUTHORS | 16 + - baobab/Makefile.am | 5 + - baobab/README.md | 11 + - baobab/TODO | 3 + - baobab/data/Makefile.am | 36 + - baobab/data/baobab-dialog-scan-props.ui | 150 + - baobab/data/baobab-main-window.ui | 456 + - baobab/data/mate-disk-usage-analyzer.1 | 150 + - .../data/mate-disk-usage-analyzer.appdata.xml.in | 36 + - baobab/data/mate-disk-usage-analyzer.desktop.in.in | 18 + - .../org.mate.disk-usage-analyzer.gresource.xml | 23 + - .../org.mate.disk-usage-analyzer.gschema.xml.in | 40 + - baobab/help/C/figures/baobab_fullscan.png | Bin 0 -> 95198 bytes - baobab/help/C/figures/baobab_prefs.png | Bin 0 -> 36562 bytes - baobab/help/C/figures/baobab_remote.png | Bin 0 -> 18178 bytes - baobab/help/C/figures/baobab_ringschart1.png | Bin 0 -> 32914 bytes - baobab/help/C/figures/baobab_ringschart2.png | Bin 0 -> 40062 bytes - baobab/help/C/figures/baobab_treemaps.png | Bin 0 -> 7174 bytes - baobab/help/C/figures/baobab_window.png | Bin 0 -> 42723 bytes - baobab/help/C/index.docbook | 465 + - baobab/help/C/legal.xml | 76 + - baobab/help/Makefile.am | 21 + - baobab/help/af/af.po | 746 + - baobab/help/am/am.po | 743 + - baobab/help/an/an.po | 746 + - baobab/help/ar/ar.po | 749 + - baobab/help/as/as.po | 743 + - baobab/help/ast/ast.po | 744 + - baobab/help/az/az.po | 747 + - baobab/help/be/be.po | 746 + - baobab/help/bg/bg.po | 754 + - baobab/help/bn/bn.po | 748 + - baobab/help/bn_IN/bn_IN.po | 747 + - baobab/help/br/br.po | 744 + - baobab/help/bs/bs.po | 744 + - baobab/help/ca/ca.po | 995 + - baobab/help/ca/figures/baobab_fullscan.png | Bin 0 -> 102505 bytes - baobab/help/ca/figures/baobab_prefs.png | Bin 0 -> 31878 bytes - baobab/help/ca/figures/baobab_remote.png | Bin 0 -> 21659 bytes - baobab/help/ca/figures/baobab_ringschart1.png | Bin 0 -> 33373 bytes - baobab/help/ca/figures/baobab_ringschart2.png | Bin 0 -> 40460 bytes - baobab/help/ca/figures/baobab_treemaps.png | Bin 0 -> 7174 bytes - baobab/help/ca/figures/baobab_window.png | Bin 0 -> 48953 bytes - baobab/help/ca@valencia/ca@valencia.po | 799 + - baobab/help/cmn/cmn.po | 746 + - baobab/help/crh/crh.po | 745 + - baobab/help/cs/cs.po | 782 + - baobab/help/cy/cy.po | 746 + - baobab/help/da/da.po | 975 + - baobab/help/de/de.po | 809 + - baobab/help/de/figures/baobab_fullscan.png | Bin 0 -> 119303 bytes - baobab/help/de/figures/baobab_prefs.png | Bin 0 -> 26847 bytes - baobab/help/de/figures/baobab_remote.png | Bin 0 -> 16584 bytes - baobab/help/de/figures/baobab_window.png | Bin 0 -> 32487 bytes - baobab/help/dz/dz.po | 746 + - baobab/help/el/el.po | 794 + - baobab/help/el/figures/baobab_fullscan.png | Bin 0 -> 87254 bytes - baobab/help/el/figures/baobab_prefs.png | Bin 0 -> 30495 bytes - baobab/help/el/figures/baobab_remote.png | Bin 0 -> 20926 bytes - baobab/help/el/figures/baobab_window.png | Bin 0 -> 31848 bytes - baobab/help/en_AU/en_AU.po | 743 + - baobab/help/en_CA/en_CA.po | 743 + - baobab/help/en_GB/en_GB.po | 760 + - baobab/help/eo/eo.po | 775 + - baobab/help/es/es.po | 881 + - baobab/help/es/figures/baobab_fullscan.png | Bin 0 -> 123172 bytes - baobab/help/es/figures/baobab_prefs.png | Bin 0 -> 50834 bytes - baobab/help/es/figures/baobab_remote.png | Bin 0 -> 21182 bytes - baobab/help/es/figures/baobab_ringschart2.png | Bin 0 -> 20761 bytes - baobab/help/es/figures/baobab_treemaps.png | Bin 0 -> 9344 bytes - baobab/help/es/figures/baobab_window.png | Bin 0 -> 75401 bytes - baobab/help/es_AR/es_AR.po | 747 + - baobab/help/es_CL/es_CL.po | 745 + - baobab/help/es_CO/es_CO.po | 744 + - baobab/help/es_ES/es_ES.po | 746 + - baobab/help/es_MX/es_MX.po | 751 + - baobab/help/es_PR/es_PR.po | 746 + - baobab/help/et/et.po | 749 + - baobab/help/eu/eu.po | 788 + - baobab/help/eu/figures/baobab_fullscan.png | Bin 0 -> 132650 bytes - baobab/help/eu/figures/baobab_prefs.png | Bin 0 -> 26364 bytes - baobab/help/eu/figures/baobab_remote.png | Bin 0 -> 20167 bytes - baobab/help/eu/figures/baobab_treemaps.png | Bin 0 -> 8181 bytes - baobab/help/eu/figures/baobab_window.png | Bin 0 -> 32571 bytes - baobab/help/fa/fa.po | 745 + - baobab/help/fi/fi.po | 752 + - baobab/help/fi/figures/baobab_fullscan.png | Bin 0 -> 104996 bytes - baobab/help/fi/figures/baobab_prefs.png | Bin 0 -> 23327 bytes - baobab/help/fi/figures/baobab_remote.png | Bin 0 -> 18608 bytes - baobab/help/fi/figures/baobab_treemaps.png | Bin 0 -> 8135 bytes - baobab/help/fi/figures/baobab_window.png | Bin 0 -> 33130 bytes - baobab/help/fil/fil.po | 747 + - baobab/help/fr/figures/baobab_fullscan.png | Bin 0 -> 120338 bytes - baobab/help/fr/figures/baobab_prefs.png | Bin 0 -> 28097 bytes - baobab/help/fr/figures/baobab_remote.png | Bin 0 -> 21827 bytes - baobab/help/fr/figures/baobab_ringschart2.png | Bin 0 -> 40353 bytes - baobab/help/fr/figures/baobab_treemaps.png | Bin 0 -> 8214 bytes - baobab/help/fr/figures/baobab_window.png | Bin 0 -> 37767 bytes - baobab/help/fr/fr.po | 815 + - baobab/help/frp/frp.po | 743 + - baobab/help/fur/fur.po | 743 + - baobab/help/fy/fy.po | 746 + - baobab/help/ga/ga.po | 746 + - baobab/help/gl/gl.po | 813 + - baobab/help/gu/gu.po | 744 + - baobab/help/ha/ha.po | 743 + - baobab/help/he/he.po | 745 + - baobab/help/hi/hi.po | 749 + - baobab/help/hr/hr.po | 782 + - baobab/help/hu/hu.po | 807 + - baobab/help/hy/hy.po | 744 + - baobab/help/ia/ia.po | 743 + - baobab/help/id/id.po | 792 + - baobab/help/ie/ie.po | 743 + - baobab/help/ig/ig.po | 743 + - baobab/help/is/is.po | 747 + - baobab/help/it/it.po | 995 + - baobab/help/ja/ja.po | 790 + - baobab/help/jv/jv.po | 743 + - baobab/help/ka/ka.po | 743 + - baobab/help/kab/kab.po | 743 + - baobab/help/kk/kk.po | 744 + - baobab/help/km/km.po | 743 + - baobab/help/kn/kn.po | 746 + - baobab/help/ko/ko.po | 769 + - baobab/help/ku/ku.po | 743 + - baobab/help/ku_IQ/ku_IQ.po | 743 + - baobab/help/ky/ky.po | 743 + - baobab/help/la/la.po | 744 + - baobab/help/lt/lt.po | 809 + - baobab/help/lv/lv.po | 746 + - baobab/help/mai/mai.po | 743 + - baobab/help/mate-disk-usage-analyzer.omf.in | 9 + - baobab/help/mg/mg.po | 743 + - baobab/help/mi/mi.po | 743 + - baobab/help/mk/mk.po | 744 + - baobab/help/ml/ml.po | 745 + - baobab/help/mn/mn.po | 745 + - baobab/help/mr/mr.po | 744 + - baobab/help/ms/ms.po | 975 + - baobab/help/nb/nb.po | 755 + - baobab/help/nds/nds.po | 746 + - baobab/help/ne/ne.po | 747 + - baobab/help/nl/nl.po | 769 + - baobab/help/nn/nn.po | 746 + - baobab/help/nso/nso.po | 745 + - baobab/help/oc/oc.po | 747 + - baobab/help/or/or.po | 743 + - baobab/help/pa/pa.po | 783 + - baobab/help/pl/pl.po | 779 + - baobab/help/ps/ps.po | 745 + - baobab/help/pt/pt.po | 910 + - baobab/help/pt_BR/pt_BR.po | 820 + - baobab/help/ro/ro.po | 744 + - baobab/help/ru/figures/baobab_fullscan.png | Bin 0 -> 106557 bytes - baobab/help/ru/figures/baobab_prefs.png | Bin 0 -> 30185 bytes - baobab/help/ru/figures/baobab_remote.png | Bin 0 -> 19732 bytes - baobab/help/ru/figures/baobab_window.png | Bin 0 -> 34045 bytes - baobab/help/ru/ru.po | 825 + - baobab/help/si/si.po | 743 + - baobab/help/sk/sk.po | 787 + - baobab/help/sl/sl.po | 746 + - baobab/help/sq/sq.po | 749 + - baobab/help/sr/sr.po | 744 + - baobab/help/sr@latin/sr@latin.po | 747 + - baobab/help/sv/figures/baobab_fullscan.png | Bin 0 -> 139412 bytes - baobab/help/sv/figures/baobab_prefs.png | Bin 0 -> 20155 bytes - baobab/help/sv/figures/baobab_remote.png | Bin 0 -> 18122 bytes - baobab/help/sv/figures/baobab_window.png | Bin 0 -> 33250 bytes - baobab/help/sv/sv.po | 788 + - baobab/help/ta/ta.po | 747 + - baobab/help/te/te.po | 744 + - baobab/help/th/th.po | 784 + - baobab/help/tk/tk.po | 743 + - baobab/help/tr/tr.po | 813 + - baobab/help/ug/ug.po | 752 + - baobab/help/uk/figures/baobab_fullscan.png | Bin 0 -> 108876 bytes - baobab/help/uk/figures/baobab_prefs.png | Bin 0 -> 30551 bytes - baobab/help/uk/figures/baobab_remote.png | Bin 0 -> 15171 bytes - baobab/help/uk/figures/baobab_ringschart1.png | Bin 0 -> 32914 bytes - baobab/help/uk/figures/baobab_ringschart2.png | Bin 0 -> 40062 bytes - baobab/help/uk/figures/baobab_treemaps.png | Bin 0 -> 7187 bytes - baobab/help/uk/figures/baobab_window.png | Bin 0 -> 43064 bytes - baobab/help/uk/uk.po | 817 + - baobab/help/ur/ur.po | 749 + - baobab/help/uz/uz.po | 744 + - baobab/help/vi/vi.po | 745 + - baobab/help/wa/wa.po | 743 + - baobab/help/xh/xh.po | 743 + - baobab/help/yo/yo.po | 743 + - baobab/help/zh_CN/zh_CN.po | 771 + - baobab/help/zh_HK/zh_HK.po | 747 + - baobab/help/zh_TW/zh_TW.po | 754 + - baobab/help/zu/zu.po | 745 + - baobab/pixmaps/Makefile.am | 68 + - ...color_apps_128x128_mate-disk-usage-analyzer.png | Bin 0 -> 7812 bytes - ...hicolor_apps_16x16_mate-disk-usage-analyzer.png | Bin 0 -> 562 bytes - ...hicolor_apps_22x22_mate-disk-usage-analyzer.png | Bin 0 -> 853 bytes - ...hicolor_apps_24x24_mate-disk-usage-analyzer.png | Bin 0 -> 933 bytes - ...hicolor_apps_32x32_mate-disk-usage-analyzer.png | Bin 0 -> 1333 bytes - ...hicolor_apps_48x48_mate-disk-usage-analyzer.png | Bin 0 -> 2275 bytes - ...olor_apps_scalable_mate-disk-usage-analyzer.svg | 1292 ++ - baobab/src/Makefile.am | 64 + - baobab/src/baobab-cell-renderer-progress.c | 252 + - baobab/src/baobab-cell-renderer-progress.h | 57 + - baobab/src/baobab-chart.c | 1868 ++ - baobab/src/baobab-chart.h | 159 + - baobab/src/baobab-prefs.c | 327 + - baobab/src/baobab-prefs.h | 28 + - baobab/src/baobab-remote-connect-dialog.c | 758 + - baobab/src/baobab-remote-connect-dialog.h | 59 + - baobab/src/baobab-ringschart.c | 669 + - baobab/src/baobab-ringschart.h | 72 + - baobab/src/baobab-scan.c | 381 + - baobab/src/baobab-scan.h | 30 + - baobab/src/baobab-treemap.c | 336 + - baobab/src/baobab-treemap.h | 64 + - baobab/src/baobab-treeview.c | 336 + - baobab/src/baobab-treeview.h | 47 + - baobab/src/baobab-utils.c | 531 + - baobab/src/baobab-utils.h | 46 + - baobab/src/baobab.c | 1326 ++ - baobab/src/baobab.h | 128 + - baobab/src/callbacks.c | 343 + - baobab/src/callbacks.h | 59 + - configure.ac | 396 + - git.mk | 400 + - gsearchtool/AUTHORS | 2 + - gsearchtool/Makefile.am | 3 + - gsearchtool/data/Makefile.am | 39 + - gsearchtool/data/mate-search-tool.1 | 110 + - gsearchtool/data/mate-search-tool.appdata.xml.in | 33 + - gsearchtool/data/mate-search-tool.desktop.in | 17 + - .../data/org.mate.search-tool.gschema.xml.in | 117 + - gsearchtool/data/thumbnail_frame.png | Bin 0 -> 908 bytes - .../help/C/figures/mate-search-tool_window.png | Bin 0 -> 19067 bytes - gsearchtool/help/C/index.docbook | 558 + - gsearchtool/help/C/legal.xml | 76 + - gsearchtool/help/Makefile.am | 14 + - gsearchtool/help/af/af.po | 980 + - gsearchtool/help/am/am.po | 978 + - gsearchtool/help/ar/ar.po | 983 + - gsearchtool/help/as/as.po | 977 + - gsearchtool/help/ast/ast.po | 979 + - gsearchtool/help/az/az.po | 981 + - gsearchtool/help/be/be.po | 980 + - gsearchtool/help/bg/bg.po | 987 + - gsearchtool/help/bn/bn.po | 982 + - gsearchtool/help/bn_IN/bn_IN.po | 980 + - gsearchtool/help/br/br.po | 978 + - gsearchtool/help/bs/bs.po | 978 + - gsearchtool/help/ca/ca.po | 1199 ++ - .../help/ca/figures/mate-search-tool_window.png | Bin 0 -> 21477 bytes - gsearchtool/help/ca@valencia/ca@valencia.po | 1032 + - gsearchtool/help/cmn/cmn.po | 980 + - gsearchtool/help/crh/crh.po | 979 + - gsearchtool/help/cs/cs.po | 1014 + - .../help/cs/figures/mate-search-tool_window.png | Bin 0 -> 23802 bytes - gsearchtool/help/cy/cy.po | 980 + - gsearchtool/help/da/da.po | 1189 ++ - gsearchtool/help/de/de.po | 1049 + - .../help/de/figures/mate-search-tool_window.png | Bin 0 -> 23984 bytes - gsearchtool/help/dz/dz.po | 980 + - gsearchtool/help/el/el.po | 1028 + - .../help/el/figures/mate-search-tool_window.png | Bin 0 -> 22819 bytes - gsearchtool/help/en_AU/en_AU.po | 977 + - gsearchtool/help/en_CA/en_CA.po | 977 + - gsearchtool/help/en_GB/en_GB.po | 1001 + - gsearchtool/help/eo/eo.po | 1008 + - gsearchtool/help/es/es.po | 1049 + - .../help/es/figures/mate-search-tool_window.png | Bin 0 -> 24824 bytes - gsearchtool/help/es_AR/es_AR.po | 981 + - gsearchtool/help/es_CL/es_CL.po | 979 + - gsearchtool/help/es_CO/es_CO.po | 980 + - gsearchtool/help/es_ES/es_ES.po | 980 + - gsearchtool/help/et/et.po | 983 + - gsearchtool/help/eu/eu.po | 1039 + - .../help/eu/figures/mate-search-tool_window.png | Bin 0 -> 22069 bytes - gsearchtool/help/fa/fa.po | 978 + - gsearchtool/help/fi/fi.po | 986 + - .../help/fi/figures/mate-search-tool_window.png | Bin 0 -> 13366 bytes - .../help/fr/figures/mate-search-tool_window.png | Bin 0 -> 22194 bytes - gsearchtool/help/fr/fr.po | 1208 ++ - gsearchtool/help/fur/fur.po | 977 + - gsearchtool/help/fy/fy.po | 980 + - gsearchtool/help/ga/ga.po | 980 + - gsearchtool/help/gl/gl.po | 1068 + - gsearchtool/help/gu/gu.po | 978 + - gsearchtool/help/ha/ha.po | 977 + - gsearchtool/help/he/he.po | 978 + - gsearchtool/help/hi/hi.po | 983 + - gsearchtool/help/hr/hr.po | 1011 + - gsearchtool/help/hu/hu.po | 1039 + - gsearchtool/help/hy/hy.po | 978 + - gsearchtool/help/id/id.po | 1025 + - gsearchtool/help/ie/ie.po | 977 + - gsearchtool/help/ig/ig.po | 977 + - gsearchtool/help/is/is.po | 981 + - .../help/it/figures/mate-search-tool_window.png | Bin 0 -> 14731 bytes - gsearchtool/help/it/it.po | 1202 ++ - gsearchtool/help/ja/ja.po | 1025 + - gsearchtool/help/ka/ka.po | 977 + - gsearchtool/help/kab/kab.po | 977 + - gsearchtool/help/kk/kk.po | 978 + - gsearchtool/help/kn/kn.po | 979 + - .../help/ko/figures/mate-search-tool_window.png | Bin 0 -> 14731 bytes - gsearchtool/help/ko/ko.po | 1002 + - gsearchtool/help/ku/ku.po | 977 + - gsearchtool/help/ky/ky.po | 977 + - gsearchtool/help/lt/lt.po | 1028 + - gsearchtool/help/lv/lv.po | 979 + - gsearchtool/help/mai/mai.po | 977 + - gsearchtool/help/mate-search-tool.omf.in | 9 + - gsearchtool/help/mg/mg.po | 977 + - gsearchtool/help/mk/mk.po | 978 + - gsearchtool/help/ml/ml.po | 981 + - gsearchtool/help/mn/mn.po | 979 + - gsearchtool/help/mr/mr.po | 978 + - gsearchtool/help/ms/ms.po | 1191 ++ - gsearchtool/help/nb/nb.po | 991 + - gsearchtool/help/nds/nds.po | 980 + - gsearchtool/help/ne/ne.po | 980 + - gsearchtool/help/nl/nl.po | 1008 + - gsearchtool/help/nn/nn.po | 980 + - gsearchtool/help/nso/nso.po | 979 + - gsearchtool/help/oc/oc.po | 982 + - gsearchtool/help/or/or.po | 977 + - gsearchtool/help/pa/pa.po | 1017 + - gsearchtool/help/pl/pl.po | 1024 + - gsearchtool/help/ps/ps.po | 979 + - gsearchtool/help/pt/pt.po | 1050 + - gsearchtool/help/pt_BR/pt_BR.po | 1062 + - gsearchtool/help/ro/ro.po | 978 + - gsearchtool/help/ru/ru.po | 1230 ++ - gsearchtool/help/si/si.po | 977 + - gsearchtool/help/sk/sk.po | 1026 + - gsearchtool/help/sl/sl.po | 980 + - gsearchtool/help/sq/sq.po | 983 + - gsearchtool/help/sr/sr.po | 978 + - gsearchtool/help/sr@latin/sr@latin.po | 981 + - .../help/sv/figures/mate-search-tool_window.png | Bin 0 -> 23663 bytes - gsearchtool/help/sv/sv.po | 1022 + - gsearchtool/help/ta/ta.po | 980 + - gsearchtool/help/te/te.po | 978 + - gsearchtool/help/th/th.po | 1018 + - gsearchtool/help/tr/tr.po | 1041 + - gsearchtool/help/ug/ug.po | 986 + - .../help/uk/figures/mate-search-tool_window.png | Bin 0 -> 15630 bytes - gsearchtool/help/uk/uk.po | 1065 + - gsearchtool/help/ur/ur.po | 983 + - gsearchtool/help/uz/uz.po | 978 + - gsearchtool/help/vi/vi.po | 978 + - gsearchtool/help/wa/wa.po | 977 + - gsearchtool/help/xh/xh.po | 978 + - gsearchtool/help/yo/yo.po | 977 + - gsearchtool/help/zh_CN/zh_CN.po | 1006 + - gsearchtool/help/zh_HK/zh_HK.po | 980 + - gsearchtool/help/zh_TW/zh_TW.po | 988 + - gsearchtool/help/zu/zu.po | 979 + - gsearchtool/libeggsmclient/Makefile.am | 16 + - gsearchtool/libeggsmclient/eggdesktopfile.c | 1468 ++ - gsearchtool/libeggsmclient/eggdesktopfile.h | 159 + - gsearchtool/libeggsmclient/eggsmclient-private.h | 46 + - gsearchtool/libeggsmclient/eggsmclient-xsmp.c | 1364 ++ - gsearchtool/libeggsmclient/eggsmclient.c | 579 + - gsearchtool/libeggsmclient/eggsmclient.h | 117 + - gsearchtool/libmateui-deprecated/Makefile.am | 16 + - .../libmateui-deprecated/gsearchtool-entry.c | 653 + - .../libmateui-deprecated/gsearchtool-entry.h | 80 + - gsearchtool/src/Makefile.am | 40 + - gsearchtool/src/gsearchtool-callbacks.c | 2064 ++ - gsearchtool/src/gsearchtool-callbacks.h | 183 + - gsearchtool/src/gsearchtool-support.c | 1435 ++ - gsearchtool/src/gsearchtool-support.h | 111 + - gsearchtool/src/gsearchtool.c | 3113 +++ - gsearchtool/src/gsearchtool.h | 243 + - logview/Makefile.am | 3 + - logview/TODO | 4 + - logview/data/Makefile.am | 28 + - logview/data/icons/Makefile.am | 112 + - .../icons/hicolor_apps_16x16_mate-system-log.png | Bin 0 -> 713 bytes - .../icons/hicolor_apps_22x22_mate-system-log.png | Bin 0 -> 1335 bytes - .../icons/hicolor_apps_24x24_mate-system-log.png | Bin 0 -> 1358 bytes - .../icons/hicolor_apps_256x256_mate-system-log.png | Bin 0 -> 59882 bytes - .../icons/hicolor_apps_32x32_mate-system-log.png | Bin 0 -> 1910 bytes - .../icons/hicolor_apps_48x48_mate-system-log.png | Bin 0 -> 3996 bytes - ...olor_apps_scalable_mate-system-log-symbolic.svg | 23 + - logview/data/icons/logview.svg | 19237 +++++++++++++++++++ - logview/data/logview-filter.ui | 323 + - logview/data/logview-toolbar.xml | 33 + - logview/data/mate-system-log.1 | 37 + - logview/data/mate-system-log.desktop.in.in | 18 + - logview/data/org.mate.system-log.gresource.xml | 23 + - logview/data/org.mate.system-log.gschema.xml.in | 34 + - logview/help/C/figures/syslog_window.png | Bin 0 -> 198892 bytes - logview/help/C/index.docbook | 387 + - logview/help/C/legal.xml | 76 + - logview/help/Makefile.am | 14 + - logview/help/af/af.po | 552 + - logview/help/am/am.po | 549 + - logview/help/ar/ar.po | 554 + - logview/help/as/as.po | 549 + - logview/help/ast/ast.po | 550 + - logview/help/az/az.po | 553 + - logview/help/be/be.po | 552 + - logview/help/bg/bg.po | 559 + - logview/help/bn/bn.po | 554 + - logview/help/bn_IN/bn_IN.po | 552 + - logview/help/br/br.po | 550 + - logview/help/bs/bs.po | 550 + - logview/help/ca/ca.po | 722 + - logview/help/ca/figures/syslog_window.png | Bin 0 -> 182999 bytes - logview/help/ca@valencia/ca@valencia.po | 604 + - logview/help/cmn/cmn.po | 552 + - logview/help/crh/crh.po | 551 + - logview/help/cs/cs.po | 587 + - logview/help/cs/figures/syslog_window.png | Bin 0 -> 163710 bytes - logview/help/cy/cy.po | 552 + - logview/help/da/da.po | 705 + - logview/help/de/de.po | 615 + - logview/help/de/figures/syslog_window.png | Bin 0 -> 172272 bytes - logview/help/dz/dz.po | 552 + - logview/help/el/el.po | 600 + - logview/help/en_AU/en_AU.po | 549 + - logview/help/en_CA/en_CA.po | 549 + - logview/help/en_GB/en_GB.po | 566 + - logview/help/eo/eo.po | 580 + - logview/help/es/es.po | 613 + - logview/help/es/figures/syslog_window.png | Bin 0 -> 77181 bytes - logview/help/es_AR/es_AR.po | 552 + - logview/help/es_CL/es_CL.po | 551 + - logview/help/es_CO/es_CO.po | 551 + - logview/help/es_CR/es_CR.po | 551 + - logview/help/es_DO/es_DO.po | 551 + - logview/help/es_EC/es_EC.po | 551 + - logview/help/es_ES/es_ES.po | 551 + - logview/help/es_MX/es_MX.po | 557 + - logview/help/es_NI/es_NI.po | 551 + - logview/help/es_PA/es_PA.po | 551 + - logview/help/es_PE/es_PE.po | 551 + - logview/help/es_PR/es_PR.po | 551 + - logview/help/es_SV/es_SV.po | 551 + - logview/help/es_UY/es_UY.po | 551 + - logview/help/es_VE/es_VE.po | 551 + - logview/help/et/et.po | 555 + - logview/help/eu/eu.po | 594 + - logview/help/eu/figures/syslog_window.png | Bin 0 -> 71265 bytes - logview/help/fa/fa.po | 550 + - logview/help/fi/fi.po | 557 + - logview/help/fi/figures/syslog_window.png | Bin 0 -> 117444 bytes - logview/help/fr/figures/syslog_window.png | Bin 0 -> 121127 bytes - logview/help/fr/fr.po | 663 + - logview/help/fur/fur.po | 549 + - logview/help/fy/fy.po | 552 + - logview/help/ga/ga.po | 552 + - logview/help/gl/gl.po | 723 + - logview/help/gu/gu.po | 550 + - logview/help/ha/ha.po | 549 + - logview/help/he/he.po | 550 + - logview/help/hi/hi.po | 555 + - logview/help/hr/hr.po | 575 + - logview/help/hu/hu.po | 612 + - logview/help/hy/hy.po | 550 + - logview/help/ia/ia.po | 549 + - logview/help/id/id.po | 597 + - logview/help/ie/ie.po | 549 + - logview/help/ig/ig.po | 549 + - logview/help/is/is.po | 553 + - logview/help/it/figures/syslog_window.png | Bin 0 -> 61928 bytes - logview/help/it/it.po | 721 + - logview/help/ja/ja.po | 596 + - logview/help/ka/ka.po | 549 + - logview/help/kab/kab.po | 549 + - logview/help/kk/kk.po | 550 + - logview/help/kn/kn.po | 551 + - logview/help/ko/figures/syslog_window.png | Bin 0 -> 34365 bytes - logview/help/ko/ko.po | 574 + - logview/help/ku/ku.po | 549 + - logview/help/ky/ky.po | 549 + - logview/help/lt/lt.po | 605 + - logview/help/lv/lv.po | 551 + - logview/help/mai/mai.po | 549 + - logview/help/mate-system-log.omf.in | 9 + - logview/help/mg/mg.po | 549 + - logview/help/mk/mk.po | 550 + - logview/help/ml/ml.po | 551 + - logview/help/mn/mn.po | 551 + - logview/help/mr/mr.po | 550 + - logview/help/ms/ms.po | 708 + - logview/help/nb/nb.po | 562 + - logview/help/nds/nds.po | 552 + - logview/help/ne/ne.po | 552 + - logview/help/nl/nl.po | 576 + - logview/help/nn/nn.po | 552 + - logview/help/nso/nso.po | 551 + - logview/help/oc/oc.po | 553 + - logview/help/or/or.po | 549 + - logview/help/pa/pa.po | 589 + - logview/help/pl/pl.po | 583 + - logview/help/ps/ps.po | 551 + - logview/help/pt/pt.po | 622 + - logview/help/pt_BR/pt_BR.po | 626 + - logview/help/ro/ro.po | 550 + - logview/help/ru/ru.po | 690 + - logview/help/si/si.po | 549 + - logview/help/sk/sk.po | 593 + - logview/help/sl/sl.po | 551 + - logview/help/sq/sq.po | 555 + - logview/help/sr/sr.po | 550 + - logview/help/sr@latin/sr@latin.po | 553 + - logview/help/sv/figures/syslog_window.png | Bin 0 -> 59929 bytes - logview/help/sv/sv.po | 593 + - logview/help/ta/ta.po | 552 + - logview/help/te/te.po | 550 + - logview/help/th/th.po | 590 + - logview/help/tr/tr.po | 613 + - logview/help/ug/ug.po | 558 + - logview/help/uk/figures/syslog_window.png | Bin 0 -> 69988 bytes - logview/help/uk/uk.po | 685 + - logview/help/ur/ur.po | 555 + - logview/help/uz/uz.po | 550 + - logview/help/vi/vi.po | 550 + - logview/help/wa/wa.po | 549 + - logview/help/xh/xh.po | 549 + - logview/help/yo/yo.po | 549 + - logview/help/zh_CN/zh_CN.po | 576 + - logview/help/zh_HK/zh_HK.po | 552 + - logview/help/zh_TW/zh_TW.po | 561 + - logview/help/zu/zu.po | 551 + - logview/src/Makefile.am | 79 + - logview/src/logview-about.h | 68 + - logview/src/logview-app.c | 414 + - logview/src/logview-app.h | 71 + - logview/src/logview-filter-manager.c | 530 + - logview/src/logview-filter-manager.h | 54 + - logview/src/logview-filter.c | 194 + - logview/src/logview-filter.h | 59 + - logview/src/logview-findbar.c | 347 + - logview/src/logview-findbar.h | 72 + - logview/src/logview-log.c | 935 + - logview/src/logview-log.h | 110 + - logview/src/logview-loglist.c | 496 + - logview/src/logview-loglist.h | 68 + - logview/src/logview-main.c | 120 + - logview/src/logview-manager.c | 426 + - logview/src/logview-manager.h | 90 + - logview/src/logview-marshal.list | 1 + - logview/src/logview-prefs.c | 540 + - logview/src/logview-prefs.h | 89 + - logview/src/logview-utils.c | 281 + - logview/src/logview-utils.h | 40 + - logview/src/logview-window.c | 1546 ++ - logview/src/logview-window.h | 56 + - logview/src/tests/Makefile.am | 11 + - logview/src/tests/test-reader.c | 99 + - makepot | 23 + - mate-dictionary.pot | 604 + - mate-dictionary/AUTHORS | 11 + - mate-dictionary/Makefile.am | 5 + - mate-dictionary/README.md | 17 + - mate-dictionary/TODO | 39 + - mate-dictionary/data/Makefile.am | 92 + - mate-dictionary/data/default.desktop.in | 6 + - mate-dictionary/data/dictionary-applet-menu.xml | 9 + - .../data/mate-dictionary-preferences.ui | 241 + - mate-dictionary/data/mate-dictionary-source.ui | 215 + - mate-dictionary/data/mate-dictionary-ui.xml | 48 + - mate-dictionary/data/mate-dictionary.1 | 66 + - .../data/mate-dictionary.appdata.xml.in | 32 + - mate-dictionary/data/mate-dictionary.desktop.in.in | 18 + - ...ictionaryApplet.mate-panel-applet.desktop.in.in | 12 + - .../data/org.mate.dictionary.gschema.xml.in | 25 + - ...panel.applet.DictionaryAppletFactory.service.in | 3 + - mate-dictionary/data/thai.desktop.in | 6 + - mate-dictionary/docs/Makefile.am | 5 + - mate-dictionary/docs/reference/Makefile.am | 3 + - mate-dictionary/docs/reference/gdict/Makefile.am | 77 + - .../docs/reference/gdict/gdict-docs.sgml | 159 + - .../docs/reference/gdict/gdict-overrides.txt | 0 - .../docs/reference/gdict/gdict-sections.txt | 336 + - mate-dictionary/docs/reference/gdict/gdict.types | 9 + - .../docs/reference/gdict/version.xml.in | 1 + - mate-dictionary/docs/source-configuration.txt | 65 + - .../help/C/figures/mate-dictionary-add-source.png | Bin 0 -> 21202 bytes - .../C/figures/mate-dictionary-applet-window.png | Bin 0 -> 16287 bytes - .../help/C/figures/mate-dictionary-applet.png | Bin 0 -> 1294 bytes - .../help/C/figures/mate-dictionary-application.png | Bin 0 -> 7560 bytes - .../help/C/figures/mate-dictionary-find.png | Bin 0 -> 34985 bytes - .../help/C/figures/mate-dictionary-lookup.png | Bin 0 -> 30889 bytes - .../figures/mate-dictionary-preferences-print.png | Bin 0 -> 13078 bytes - .../figures/mate-dictionary-preferences-source.png | Bin 0 -> 18529 bytes - mate-dictionary/help/C/index.docbook | 472 + - mate-dictionary/help/C/legal.xml | 76 + - mate-dictionary/help/Makefile.am | 22 + - mate-dictionary/help/af/af.po | 763 + - mate-dictionary/help/am/am.po | 760 + - mate-dictionary/help/an/an.po | 763 + - mate-dictionary/help/ar/ar.po | 766 + - mate-dictionary/help/as/as.po | 760 + - mate-dictionary/help/ast/ast.po | 761 + - mate-dictionary/help/az/az.po | 764 + - mate-dictionary/help/be/be.po | 763 + - mate-dictionary/help/bg/bg.po | 771 + - mate-dictionary/help/bn/bn.po | 765 + - mate-dictionary/help/bn_IN/bn_IN.po | 764 + - mate-dictionary/help/br/br.po | 761 + - mate-dictionary/help/bs/bs.po | 761 + - mate-dictionary/help/ca/ca.po | 940 + - .../help/ca/figures/mate-dictionary-add-source.png | Bin 0 -> 25504 bytes - .../ca/figures/mate-dictionary-applet-window.png | Bin 0 -> 38908 bytes - .../help/ca/figures/mate-dictionary-applet.png | Bin 0 -> 1311 bytes - .../ca/figures/mate-dictionary-application.png | Bin 0 -> 10343 bytes - .../help/ca/figures/mate-dictionary-find.png | Bin 0 -> 41612 bytes - .../help/ca/figures/mate-dictionary-lookup.png | Bin 0 -> 42049 bytes - .../figures/mate-dictionary-preferences-print.png | Bin 0 -> 15021 bytes - .../figures/mate-dictionary-preferences-source.png | Bin 0 -> 25021 bytes - mate-dictionary/help/ca@valencia/ca@valencia.po | 816 + - mate-dictionary/help/cmn/cmn.po | 763 + - mate-dictionary/help/crh/crh.po | 762 + - mate-dictionary/help/cs/cs.po | 798 + - .../help/cs/figures/mate-dictionary-add-source.png | Bin 0 -> 20901 bytes - .../cs/figures/mate-dictionary-applet-window.png | Bin 0 -> 18769 bytes - .../help/cs/figures/mate-dictionary-applet.png | Bin 0 -> 1537 bytes - .../cs/figures/mate-dictionary-application.png | Bin 0 -> 10052 bytes - .../help/cs/figures/mate-dictionary-find.png | Bin 0 -> 49147 bytes - .../help/cs/figures/mate-dictionary-lookup.png | Bin 0 -> 38183 bytes - .../figures/mate-dictionary-preferences-print.png | Bin 0 -> 17278 bytes - .../figures/mate-dictionary-preferences-source.png | Bin 0 -> 25837 bytes - mate-dictionary/help/cy/cy.po | 763 + - mate-dictionary/help/da/da.po | 927 + - mate-dictionary/help/de/de.po | 828 + - .../help/de/figures/mate-dictionary-add-source.png | Bin 0 -> 21727 bytes - .../de/figures/mate-dictionary-applet-window.png | Bin 0 -> 17402 bytes - .../de/figures/mate-dictionary-application.png | Bin 0 -> 13159 bytes - .../help/de/figures/mate-dictionary-find.png | Bin 0 -> 38669 bytes - .../help/de/figures/mate-dictionary-lookup.png | Bin 0 -> 39386 bytes - .../figures/mate-dictionary-preferences-print.png | Bin 0 -> 13715 bytes - .../figures/mate-dictionary-preferences-source.png | Bin 0 -> 20471 bytes - mate-dictionary/help/dz/dz.po | 763 + - mate-dictionary/help/el/el.po | 811 + - .../el/figures/mate-dictionary-application.png | Bin 0 -> 9973 bytes - .../help/el/figures/mate-dictionary-find.png | Bin 0 -> 33757 bytes - .../help/el/figures/mate-dictionary-lookup.png | Bin 0 -> 30493 bytes - .../figures/mate-dictionary-preferences-print.png | Bin 0 -> 15369 bytes - mate-dictionary/help/en_AU/en_AU.po | 760 + - mate-dictionary/help/en_CA/en_CA.po | 760 + - mate-dictionary/help/en_GB/en_GB.po | 777 + - mate-dictionary/help/eo/eo.po | 792 + - mate-dictionary/help/es/es.po | 838 + - .../help/es/figures/mate-dictionary-add-source.png | Bin 0 -> 25904 bytes - .../es/figures/mate-dictionary-applet-window.png | Bin 0 -> 26946 bytes - .../es/figures/mate-dictionary-application.png | Bin 0 -> 8654 bytes - .../help/es/figures/mate-dictionary-find.png | Bin 0 -> 41948 bytes - .../help/es/figures/mate-dictionary-lookup.png | Bin 0 -> 43585 bytes - .../figures/mate-dictionary-preferences-print.png | Bin 0 -> 15875 bytes - .../figures/mate-dictionary-preferences-source.png | Bin 0 -> 26438 bytes - mate-dictionary/help/es_AR/es_AR.po | 764 + - mate-dictionary/help/es_CL/es_CL.po | 763 + - mate-dictionary/help/es_CO/es_CO.po | 762 + - mate-dictionary/help/es_CR/es_CR.po | 762 + - mate-dictionary/help/es_DO/es_DO.po | 762 + - mate-dictionary/help/es_EC/es_EC.po | 762 + - mate-dictionary/help/es_ES/es_ES.po | 763 + - mate-dictionary/help/es_MX/es_MX.po | 769 + - mate-dictionary/help/es_NI/es_NI.po | 762 + - mate-dictionary/help/es_PA/es_PA.po | 762 + - mate-dictionary/help/es_PE/es_PE.po | 762 + - mate-dictionary/help/es_PR/es_PR.po | 763 + - mate-dictionary/help/es_SV/es_SV.po | 762 + - mate-dictionary/help/es_UY/es_UY.po | 762 + - mate-dictionary/help/es_VE/es_VE.po | 762 + - mate-dictionary/help/et/et.po | 766 + - mate-dictionary/help/eu/eu.po | 805 + - .../help/eu/figures/mate-dictionary-add-source.png | Bin 0 -> 21646 bytes - .../eu/figures/mate-dictionary-applet-window.png | Bin 0 -> 20340 bytes - .../help/eu/figures/mate-dictionary-applet.png | Bin 0 -> 1140 bytes - .../eu/figures/mate-dictionary-application.png | Bin 0 -> 7750 bytes - .../help/eu/figures/mate-dictionary-find.png | Bin 0 -> 27646 bytes - .../help/eu/figures/mate-dictionary-lookup.png | Bin 0 -> 26436 bytes - .../figures/mate-dictionary-preferences-print.png | Bin 0 -> 14667 bytes - .../figures/mate-dictionary-preferences-source.png | Bin 0 -> 21701 bytes - mate-dictionary/help/fa/fa.po | 762 + - mate-dictionary/help/fi/fi.po | 769 + - .../help/fi/figures/mate-dictionary-add-source.png | Bin 0 -> 20407 bytes - .../fi/figures/mate-dictionary-applet-window.png | Bin 0 -> 19877 bytes - .../help/fi/figures/mate-dictionary-applet.png | Bin 0 -> 1041 bytes - .../fi/figures/mate-dictionary-application.png | Bin 0 -> 8976 bytes - .../help/fi/figures/mate-dictionary-find.png | Bin 0 -> 40335 bytes - .../help/fi/figures/mate-dictionary-lookup.png | Bin 0 -> 38755 bytes - .../figures/mate-dictionary-preferences-print.png | Bin 0 -> 14169 bytes - .../figures/mate-dictionary-preferences-source.png | Bin 0 -> 21788 bytes - .../help/fr/figures/mate-dictionary-add-source.png | Bin 0 -> 20823 bytes - .../fr/figures/mate-dictionary-applet-window.png | Bin 0 -> 14783 bytes - .../help/fr/figures/mate-dictionary-applet.png | Bin 0 -> 1252 bytes - .../fr/figures/mate-dictionary-application.png | Bin 0 -> 8771 bytes - .../help/fr/figures/mate-dictionary-find.png | Bin 0 -> 39151 bytes - .../help/fr/figures/mate-dictionary-lookup.png | Bin 0 -> 32013 bytes - .../figures/mate-dictionary-preferences-print.png | Bin 0 -> 14870 bytes - .../figures/mate-dictionary-preferences-source.png | Bin 0 -> 23961 bytes - mate-dictionary/help/fr/fr.po | 863 + - mate-dictionary/help/frp/frp.po | 760 + - mate-dictionary/help/fur/fur.po | 760 + - mate-dictionary/help/fy/fy.po | 763 + - mate-dictionary/help/ga/ga.po | 763 + - mate-dictionary/help/gl/gl.po | 832 + - mate-dictionary/help/gu/gu.po | 761 + - mate-dictionary/help/ha/ha.po | 760 + - mate-dictionary/help/he/he.po | 762 + - mate-dictionary/help/hi/hi.po | 766 + - mate-dictionary/help/hr/hr.po | 795 + - mate-dictionary/help/hu/hu.po | 885 + - mate-dictionary/help/hy/hy.po | 761 + - mate-dictionary/help/ia/ia.po | 760 + - mate-dictionary/help/id/id.po | 809 + - mate-dictionary/help/ie/ie.po | 760 + - mate-dictionary/help/ig/ig.po | 760 + - mate-dictionary/help/is/is.po | 764 + - .../help/it/figures/mate-dictionary-add-source.png | Bin 0 -> 22840 bytes - .../it/figures/mate-dictionary-application.png | Bin 0 -> 8132 bytes - .../help/it/figures/mate-dictionary-find.png | Bin 0 -> 37576 bytes - .../help/it/figures/mate-dictionary-lookup.png | Bin 0 -> 35456 bytes - .../figures/mate-dictionary-preferences-print.png | Bin 0 -> 14953 bytes - .../figures/mate-dictionary-preferences-source.png | Bin 0 -> 23054 bytes - mate-dictionary/help/it/it.po | 940 + - mate-dictionary/help/ja/ja.po | 807 + - mate-dictionary/help/jv/jv.po | 760 + - mate-dictionary/help/ka/ka.po | 760 + - mate-dictionary/help/kab/kab.po | 760 + - mate-dictionary/help/kk/kk.po | 761 + - mate-dictionary/help/km/km.po | 760 + - mate-dictionary/help/kn/kn.po | 763 + - mate-dictionary/help/ko/ko.po | 786 + - mate-dictionary/help/ku/ku.po | 760 + - mate-dictionary/help/ku_IQ/ku_IQ.po | 760 + - mate-dictionary/help/ky/ky.po | 760 + - mate-dictionary/help/la/la.po | 761 + - mate-dictionary/help/lt/lt.po | 859 + - mate-dictionary/help/lv/lv.po | 763 + - mate-dictionary/help/mai/mai.po | 760 + - mate-dictionary/help/mate-dictionary.omf.in | 9 + - mate-dictionary/help/mg/mg.po | 760 + - mate-dictionary/help/mi/mi.po | 760 + - mate-dictionary/help/mk/mk.po | 761 + - mate-dictionary/help/ml/ml.po | 762 + - mate-dictionary/help/mn/mn.po | 762 + - mate-dictionary/help/mr/mr.po | 761 + - mate-dictionary/help/ms/ms.po | 921 + - mate-dictionary/help/nb/nb.po | 772 + - mate-dictionary/help/nds/nds.po | 763 + - mate-dictionary/help/ne/ne.po | 764 + - mate-dictionary/help/nl/nl.po | 788 + - mate-dictionary/help/nn/nn.po | 763 + - mate-dictionary/help/nso/nso.po | 762 + - mate-dictionary/help/oc/oc.po | 765 + - mate-dictionary/help/or/or.po | 760 + - mate-dictionary/help/pa/pa.po | 800 + - mate-dictionary/help/pl/pl.po | 797 + - mate-dictionary/help/ps/ps.po | 762 + - mate-dictionary/help/pt/pt.po | 946 + - mate-dictionary/help/pt_BR/pt_BR.po | 856 + - mate-dictionary/help/ro/ro.po | 761 + - mate-dictionary/help/ru/ru.po | 842 + - mate-dictionary/help/si/si.po | 760 + - mate-dictionary/help/sk/sk.po | 811 + - mate-dictionary/help/sl/sl.po | 763 + - mate-dictionary/help/sq/sq.po | 766 + - mate-dictionary/help/sr/sr.po | 761 + - mate-dictionary/help/sr@latin/sr@latin.po | 764 + - .../help/sv/figures/mate-dictionary-add-source.png | Bin 0 -> 20649 bytes - .../sv/figures/mate-dictionary-application.png | Bin 0 -> 9349 bytes - .../figures/mate-dictionary-preferences-print.png | Bin 0 -> 14843 bytes - .../figures/mate-dictionary-preferences-source.png | Bin 0 -> 21033 bytes - mate-dictionary/help/sv/sv.po | 805 + - mate-dictionary/help/ta/ta.po | 764 + - mate-dictionary/help/te/te.po | 761 + - mate-dictionary/help/th/th.po | 801 + - mate-dictionary/help/tk/tk.po | 760 + - mate-dictionary/help/tr/tr.po | 846 + - mate-dictionary/help/ug/ug.po | 769 + - .../help/uk/figures/mate-dictionary-add-source.png | Bin 0 -> 19621 bytes - .../uk/figures/mate-dictionary-applet-window.png | Bin 0 -> 29424 bytes - .../help/uk/figures/mate-dictionary-applet.png | Bin 0 -> 1307 bytes - .../uk/figures/mate-dictionary-application.png | Bin 0 -> 7948 bytes - .../help/uk/figures/mate-dictionary-find.png | Bin 0 -> 29191 bytes - .../help/uk/figures/mate-dictionary-lookup.png | Bin 0 -> 28107 bytes - .../figures/mate-dictionary-preferences-print.png | Bin 0 -> 13947 bytes - .../figures/mate-dictionary-preferences-source.png | Bin 0 -> 21958 bytes - mate-dictionary/help/uk/uk.po | 845 + - mate-dictionary/help/ur/ur.po | 766 + - mate-dictionary/help/uz/uz.po | 761 + - mate-dictionary/help/vi/vi.po | 762 + - mate-dictionary/help/wa/wa.po | 760 + - mate-dictionary/help/xh/xh.po | 760 + - mate-dictionary/help/yo/yo.po | 760 + - mate-dictionary/help/zh_CN/zh_CN.po | 788 + - mate-dictionary/help/zh_HK/zh_HK.po | 764 + - mate-dictionary/help/zh_TW/zh_TW.po | 771 + - mate-dictionary/help/zu/zu.po | 762 + - mate-dictionary/libgdict/Makefile.am | 130 + - mate-dictionary/libgdict/gdict-client-context.c | 2162 +++ - mate-dictionary/libgdict/gdict-client-context.h | 98 + - mate-dictionary/libgdict/gdict-context-private.h | 107 + - mate-dictionary/libgdict/gdict-context.c | 892 + - mate-dictionary/libgdict/gdict-context.h | 204 + - mate-dictionary/libgdict/gdict-database-chooser.c | 1141 ++ - mate-dictionary/libgdict/gdict-database-chooser.h | 99 + - mate-dictionary/libgdict/gdict-debug.h | 55 + - mate-dictionary/libgdict/gdict-defbox.c | 2878 +++ - mate-dictionary/libgdict/gdict-defbox.h | 102 + - mate-dictionary/libgdict/gdict-enum-types.c.in | 33 + - mate-dictionary/libgdict/gdict-enum-types.h.in | 26 + - mate-dictionary/libgdict/gdict-marshal.list | 7 + - mate-dictionary/libgdict/gdict-private.h | 34 + - mate-dictionary/libgdict/gdict-source-chooser.c | 901 + - mate-dictionary/libgdict/gdict-source-chooser.h | 93 + - mate-dictionary/libgdict/gdict-source-loader.c | 585 + - mate-dictionary/libgdict/gdict-source-loader.h | 81 + - mate-dictionary/libgdict/gdict-source.c | 1190 ++ - mate-dictionary/libgdict/gdict-source.h | 115 + - mate-dictionary/libgdict/gdict-speller.c | 821 + - mate-dictionary/libgdict/gdict-speller.h | 87 + - mate-dictionary/libgdict/gdict-strategy-chooser.c | 1090 ++ - mate-dictionary/libgdict/gdict-strategy-chooser.h | 94 + - mate-dictionary/libgdict/gdict-utils.c | 333 + - mate-dictionary/libgdict/gdict-utils.h | 85 + - mate-dictionary/libgdict/gdict-version.h.in | 93 + - mate-dictionary/libgdict/gdict.h | 36 + - mate-dictionary/libgdict/mate-dict.pc.in | 12 + - mate-dictionary/src/Makefile.am | 97 + - mate-dictionary/src/gdict-about.c | 103 + - mate-dictionary/src/gdict-about.h | 30 + - mate-dictionary/src/gdict-aligned-window.c | 337 + - mate-dictionary/src/gdict-aligned-window.h | 69 + - mate-dictionary/src/gdict-app.c | 439 + - mate-dictionary/src/gdict-app.h | 71 + - mate-dictionary/src/gdict-applet.c | 1223 ++ - mate-dictionary/src/gdict-applet.h | 48 + - mate-dictionary/src/gdict-common.c | 189 + - mate-dictionary/src/gdict-common.h | 42 + - mate-dictionary/src/gdict-pref-dialog.c | 788 + - mate-dictionary/src/gdict-pref-dialog.h | 59 + - mate-dictionary/src/gdict-print.c | 314 + - mate-dictionary/src/gdict-print.h | 38 + - mate-dictionary/src/gdict-sidebar.c | 548 + - mate-dictionary/src/gdict-sidebar.h | 75 + - mate-dictionary/src/gdict-source-dialog.c | 750 + - mate-dictionary/src/gdict-source-dialog.h | 54 + - mate-dictionary/src/gdict-window.c | 2120 ++ - mate-dictionary/src/gdict-window.h | 133 + - mate-dictionary/src/main.c | 24 + - mate-disk-image-mounter/Makefile.am | 3 + - mate-disk-image-mounter/data/Makefile.am | 17 + - .../data/mate-disk-image-mounter.desktop.in | 13 + - mate-disk-image-mounter/src/Makefile.am | 29 + - mate-disk-image-mounter/src/main.c | 283 + - mate-disk-usage-analyzer.pot | 525 + - mate-screenshot/Makefile.am | 3 + - mate-screenshot/data/Makefile.am | 37 + - mate-screenshot/data/mate-screenshot.1 | 58 + - .../data/mate-screenshot.appdata.xml.in | 27 + - mate-screenshot/data/mate-screenshot.desktop.in | 17 + - mate-screenshot/data/mate-screenshot.ui | 270 + - .../data/org.mate.screenshot.gresource.xml | 22 + - .../data/org.mate.screenshot.gschema.xml.in | 29 + - mate-screenshot/src/Makefile.am | 64 + - mate-screenshot/src/mate-screenshot.c | 1396 ++ - mate-screenshot/src/screenshot-dialog.c | 376 + - mate-screenshot/src/screenshot-dialog.h | 43 + - mate-screenshot/src/screenshot-save.c | 267 + - mate-screenshot/src/screenshot-save.h | 33 + - mate-screenshot/src/screenshot-shadow.c | 235 + - mate-screenshot/src/screenshot-shadow.h | 28 + - mate-screenshot/src/screenshot-utils.c | 878 + - mate-screenshot/src/screenshot-utils.h | 49 + - mate-screenshot/src/screenshot-xfer.c | 393 + - mate-screenshot/src/screenshot-xfer.h | 45 + - mate-search-tool.pot | 788 + - mate-system-log.pot | 409 + - mate-utils.pot | 3178 +++ - po/LINGUAS | 125 + - po/Makevars | 79 + - po/POTFILES.in | 77 + - po/POTFILES.skip | 6 + - po/af.po | 3222 ++++ - po/am.po | 3237 ++++ - po/ar.po | 3321 ++++ - po/as.po | 3292 ++++ - po/ast.po | 3338 ++++ - po/az.po | 3202 +++ - po/be.po | 3278 ++++ - po/bg.po | 3339 ++++ - po/bn.po | 3322 ++++ - po/bn_IN.po | 3326 ++++ - po/br.po | 3364 ++++ - po/bs.po | 3207 ++++ - po/ca.po | 3387 ++++ - po/ca@valencia.po | 3350 ++++ - po/cmn.po | 3212 ++++ - po/crh.po | 3299 ++++ - po/cs.po | 3355 ++++ - po/cy.po | 3302 ++++ - po/da.po | 3349 ++++ - po/de.po | 3385 ++++ - po/dz.po | 3326 ++++ - po/el.po | 3375 ++++ - po/en_AU.po | 3302 ++++ - po/en_CA.po | 3269 ++++ - po/en_GB.po | 3305 ++++ - po/eo.po | 3212 ++++ - po/es.po | 3402 ++++ - po/es_AR.po | 3200 +++ - po/es_CL.po | 3195 +++ - po/es_CO.po | 3199 +++ - po/es_ES.po | 3085 +++ - po/es_MX.po | 3208 ++++ - po/es_PR.po | 3084 +++ - po/et.po | 3307 ++++ - po/eu.po | 3319 ++++ - po/fa.po | 3284 ++++ - po/fi.po | 3310 ++++ - po/fr.po | 3385 ++++ - po/fr_CA.po | 3047 +++ - po/frp.po | 3192 +++ - po/fur.po | 3192 +++ - po/fy.po | 3196 +++ - po/ga.po | 3230 ++++ - po/gd.po | 3206 +++ - po/gl.po | 3382 ++++ - po/gnome-copyrights.txt | 1230 ++ - po/gu.po | 3288 ++++ - po/ha.po | 3192 +++ - po/he.po | 3306 ++++ - po/hi.po | 3302 ++++ - po/hr.po | 3319 ++++ - po/hu.po | 3337 ++++ - po/hy.po | 3325 ++++ - po/ia.po | 3194 +++ - po/id.po | 3313 ++++ - po/ie.po | 3222 ++++ - po/ig.po | 3185 +++ - po/is.po | 3200 +++ - po/it.po | 3390 ++++ - po/ja.po | 3247 ++++ - po/jv.po | 3047 +++ - po/ka.po | 3276 ++++ - po/kk.po | 3233 ++++ - po/kn.po | 3322 ++++ - po/ko.po | 3237 ++++ - po/ks.po | 3192 +++ - po/ku.po | 3197 +++ - po/ku_IQ.po | 3193 +++ - po/ky.po | 3190 +++ - po/li.po | 3192 +++ - po/lt.po | 3343 ++++ - po/lv.po | 3302 ++++ - po/mai.po | 3271 ++++ - po/mg.po | 3310 ++++ - po/mi.po | 3192 +++ - po/mk.po | 3301 ++++ - po/ml.po | 3364 ++++ - po/mn.po | 3200 +++ - po/mr.po | 3295 ++++ - po/ms.po | 3305 ++++ - po/nb.po | 3345 ++++ - po/nds.po | 3196 +++ - po/ne.po | 3285 ++++ - po/nl.po | 3403 ++++ - po/nn.po | 3286 ++++ - po/nso.po | 3194 +++ - po/oc.po | 3205 +++ - po/or.po | 3319 ++++ - po/pa.po | 3291 ++++ - po/pl.po | 3369 ++++ - po/pms.po | 3192 +++ - po/ps.po | 3195 +++ - po/pt.po | 3334 ++++ - po/pt_BR.po | 3379 ++++ - po/ro.po | 3331 ++++ - po/ru.po | 3394 ++++ - po/rw.po | 3192 +++ - po/sc.po | 3197 +++ - po/si.po | 3233 ++++ - po/sk.po | 3336 ++++ - po/sl.po | 3328 ++++ - po/sq.po | 3263 ++++ - po/sr.po | 3317 ++++ - po/sr@latin.po | 3313 ++++ - po/sv.po | 3322 ++++ - po/ta.po | 3308 ++++ - po/te.po | 3314 ++++ - po/th.po | 3268 ++++ - po/tk.po | 3192 +++ - po/tr.po | 3329 ++++ - po/tt.po | 3185 +++ - po/ug.po | 3307 ++++ - po/uk.po | 3332 ++++ - po/ur.po | 3216 ++++ - po/uz.po | 3188 +++ - po/vi.po | 3299 ++++ - po/wa.po | 3194 +++ - po/xh.po | 3251 ++++ - po/yi.po | 3192 +++ - po/yo.po | 3185 +++ - po/zh_CN.po | 3240 ++++ - po/zh_HK.po | 3213 ++++ - po/zh_TW.po | 3243 ++++ - po/zu.po | 3194 +++ - 1022 files changed, 855894 insertions(+) +The ChangeLog is auto-generated when releasing. If you are seeing this, use +'git log' for a detailed list of changes. diff -Nru mate-utils-1.26.0/compile mate-utils-1.26.1/compile --- mate-utils-1.26.0/compile 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/compile 1970-01-01 00:00:00.000000000 +0000 @@ -1,348 +0,0 @@ -#! /bin/sh -# Wrapper for compilers which do not understand '-c -o'. - -scriptversion=2018-03-07.03; # UTC - -# Copyright (C) 1999-2020 Free Software Foundation, Inc. -# Written by Tom Tromey . -# -# 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 2, 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 . - -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# This file is maintained in Automake, please report -# bugs to or send patches to -# . - -nl=' -' - -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent tools from complaining about whitespace usage. -IFS=" "" $nl" - -file_conv= - -# func_file_conv build_file lazy -# Convert a $build file to $host form and store it in $file -# Currently only supports Windows hosts. If the determined conversion -# type is listed in (the comma separated) LAZY, no conversion will -# take place. -func_file_conv () -{ - file=$1 - case $file in - / | /[!/]*) # absolute file, and not a UNC file - if test -z "$file_conv"; then - # lazily determine how to convert abs files - case `uname -s` in - MINGW*) - file_conv=mingw - ;; - CYGWIN* | MSYS*) - file_conv=cygwin - ;; - *) - file_conv=wine - ;; - esac - fi - case $file_conv/,$2, in - *,$file_conv,*) - ;; - mingw/*) - file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` - ;; - cygwin/* | msys/*) - file=`cygpath -m "$file" || echo "$file"` - ;; - wine/*) - file=`winepath -w "$file" || echo "$file"` - ;; - esac - ;; - esac -} - -# func_cl_dashL linkdir -# Make cl look for libraries in LINKDIR -func_cl_dashL () -{ - func_file_conv "$1" - if test -z "$lib_path"; then - lib_path=$file - else - lib_path="$lib_path;$file" - fi - linker_opts="$linker_opts -LIBPATH:$file" -} - -# func_cl_dashl library -# Do a library search-path lookup for cl -func_cl_dashl () -{ - lib=$1 - found=no - save_IFS=$IFS - IFS=';' - for dir in $lib_path $LIB - do - IFS=$save_IFS - if $shared && test -f "$dir/$lib.dll.lib"; then - found=yes - lib=$dir/$lib.dll.lib - break - fi - if test -f "$dir/$lib.lib"; then - found=yes - lib=$dir/$lib.lib - break - fi - if test -f "$dir/lib$lib.a"; then - found=yes - lib=$dir/lib$lib.a - break - fi - done - IFS=$save_IFS - - if test "$found" != yes; then - lib=$lib.lib - fi -} - -# func_cl_wrapper cl arg... -# Adjust compile command to suit cl -func_cl_wrapper () -{ - # Assume a capable shell - lib_path= - shared=: - linker_opts= - for arg - do - if test -n "$eat"; then - eat= - else - case $1 in - -o) - # configure might choose to run compile as 'compile cc -o foo foo.c'. - eat=1 - case $2 in - *.o | *.[oO][bB][jJ]) - func_file_conv "$2" - set x "$@" -Fo"$file" - shift - ;; - *) - func_file_conv "$2" - set x "$@" -Fe"$file" - shift - ;; - esac - ;; - -I) - eat=1 - func_file_conv "$2" mingw - set x "$@" -I"$file" - shift - ;; - -I*) - func_file_conv "${1#-I}" mingw - set x "$@" -I"$file" - shift - ;; - -l) - eat=1 - func_cl_dashl "$2" - set x "$@" "$lib" - shift - ;; - -l*) - func_cl_dashl "${1#-l}" - set x "$@" "$lib" - shift - ;; - -L) - eat=1 - func_cl_dashL "$2" - ;; - -L*) - func_cl_dashL "${1#-L}" - ;; - -static) - shared=false - ;; - -Wl,*) - arg=${1#-Wl,} - save_ifs="$IFS"; IFS=',' - for flag in $arg; do - IFS="$save_ifs" - linker_opts="$linker_opts $flag" - done - IFS="$save_ifs" - ;; - -Xlinker) - eat=1 - linker_opts="$linker_opts $2" - ;; - -*) - set x "$@" "$1" - shift - ;; - *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) - func_file_conv "$1" - set x "$@" -Tp"$file" - shift - ;; - *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) - func_file_conv "$1" mingw - set x "$@" "$file" - shift - ;; - *) - set x "$@" "$1" - shift - ;; - esac - fi - shift - done - if test -n "$linker_opts"; then - linker_opts="-link$linker_opts" - fi - exec "$@" $linker_opts - exit 1 -} - -eat= - -case $1 in - '') - echo "$0: No command. Try '$0 --help' for more information." 1>&2 - exit 1; - ;; - -h | --h*) - cat <<\EOF -Usage: compile [--help] [--version] PROGRAM [ARGS] - -Wrapper for compilers which do not understand '-c -o'. -Remove '-o dest.o' from ARGS, run PROGRAM with the remaining -arguments, and rename the output as expected. - -If you are trying to build a whole package this is not the -right script to run: please start by reading the file 'INSTALL'. - -Report bugs to . -EOF - exit $? - ;; - -v | --v*) - echo "compile $scriptversion" - exit $? - ;; - cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ - icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) - func_cl_wrapper "$@" # Doesn't return... - ;; -esac - -ofile= -cfile= - -for arg -do - if test -n "$eat"; then - eat= - else - case $1 in - -o) - # configure might choose to run compile as 'compile cc -o foo foo.c'. - # So we strip '-o arg' only if arg is an object. - eat=1 - case $2 in - *.o | *.obj) - ofile=$2 - ;; - *) - set x "$@" -o "$2" - shift - ;; - esac - ;; - *.c) - cfile=$1 - set x "$@" "$1" - shift - ;; - *) - set x "$@" "$1" - shift - ;; - esac - fi - shift -done - -if test -z "$ofile" || test -z "$cfile"; then - # If no '-o' option was seen then we might have been invoked from a - # pattern rule where we don't need one. That is ok -- this is a - # normal compilation that the losing compiler can handle. If no - # '.c' file was seen then we are probably linking. That is also - # ok. - exec "$@" -fi - -# Name of file we expect compiler to create. -cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` - -# Create the lock directory. -# Note: use '[/\\:.-]' here to ensure that we don't use the same name -# that we are using for the .o file. Also, base the name on the expected -# object file name, since that is what matters with a parallel build. -lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d -while true; do - if mkdir "$lockdir" >/dev/null 2>&1; then - break - fi - sleep 1 -done -# FIXME: race condition here if user kills between mkdir and trap. -trap "rmdir '$lockdir'; exit 1" 1 2 15 - -# Run the compile. -"$@" -ret=$? - -if test -f "$cofile"; then - test "$cofile" = "$ofile" || mv "$cofile" "$ofile" -elif test -f "${cofile}bj"; then - test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" -fi - -rmdir "$lockdir" -exit $ret - -# Local Variables: -# mode: shell-script -# sh-indentation: 2 -# eval: (add-hook 'before-save-hook 'time-stamp) -# time-stamp-start: "scriptversion=" -# time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC0" -# time-stamp-end: "; # UTC" -# End: diff -Nru mate-utils-1.26.0/config.guess mate-utils-1.26.1/config.guess --- mate-utils-1.26.0/config.guess 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/config.guess 1970-01-01 00:00:00.000000000 +0000 @@ -1,1486 +0,0 @@ -#! /bin/sh -# Attempt to guess a canonical system name. -# Copyright 1992-2018 Free Software Foundation, Inc. - -timestamp='2018-08-29' - -# This file 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 . -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that -# program. This Exception is an additional permission under section 7 -# of the GNU General Public License, version 3 ("GPLv3"). -# -# Originally written by Per Bothner; maintained since 2000 by Ben Elliston. -# -# You can get the latest version of this script from: -# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess -# -# Please send patches to . - - -me=`echo "$0" | sed -e 's,.*/,,'` - -usage="\ -Usage: $0 [OPTION] - -Output the configuration name of the system \`$me' is run on. - -Options: - -h, --help print this help, then exit - -t, --time-stamp print date of last modification, then exit - -v, --version print version number, then exit - -Report bugs and patches to ." - -version="\ -GNU config.guess ($timestamp) - -Originally written by Per Bothner. -Copyright 1992-2018 Free Software Foundation, Inc. - -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - -help=" -Try \`$me --help' for more information." - -# Parse command line -while test $# -gt 0 ; do - case $1 in - --time-stamp | --time* | -t ) - echo "$timestamp" ; exit ;; - --version | -v ) - echo "$version" ; exit ;; - --help | --h* | -h ) - echo "$usage"; exit ;; - -- ) # Stop option processing - shift; break ;; - - ) # Use stdin as input. - break ;; - -* ) - echo "$me: invalid option $1$help" >&2 - exit 1 ;; - * ) - break ;; - esac -done - -if test $# != 0; then - echo "$me: too many arguments$help" >&2 - exit 1 -fi - -# CC_FOR_BUILD -- compiler used by this script. Note that the use of a -# compiler to aid in system detection is discouraged as it requires -# temporary files to be created and, as you can see below, it is a -# headache to deal with in a portable fashion. - -# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still -# use `HOST_CC' if defined, but it is deprecated. - -# Portable tmp directory creation inspired by the Autoconf team. - -tmp= -# shellcheck disable=SC2172 -trap 'test -z "$tmp" || rm -fr "$tmp"' 1 2 13 15 -trap 'exitcode=$?; test -z "$tmp" || rm -fr "$tmp"; exit $exitcode' 0 - -set_cc_for_build() { - : "${TMPDIR=/tmp}" - # shellcheck disable=SC2039 - { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || - { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir "$tmp" 2>/dev/null) ; } || - { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir "$tmp" 2>/dev/null) && echo "Warning: creating insecure temp directory" >&2 ; } || - { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } - dummy=$tmp/dummy - case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in - ,,) echo "int x;" > "$dummy.c" - for driver in cc gcc c89 c99 ; do - if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then - CC_FOR_BUILD="$driver" - break - fi - done - if test x"$CC_FOR_BUILD" = x ; then - CC_FOR_BUILD=no_compiler_found - fi - ;; - ,,*) CC_FOR_BUILD=$CC ;; - ,*,*) CC_FOR_BUILD=$HOST_CC ;; - esac -} - -# This is needed to find uname on a Pyramid OSx when run in the BSD universe. -# (ghazi@noc.rutgers.edu 1994-08-24) -if test -f /.attbin/uname ; then - PATH=$PATH:/.attbin ; export PATH -fi - -UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown -UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown -UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown -UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown - -case "$UNAME_SYSTEM" in -Linux|GNU|GNU/*) - # If the system lacks a compiler, then just pick glibc. - # We could probably try harder. - LIBC=gnu - - set_cc_for_build - cat <<-EOF > "$dummy.c" - #include - #if defined(__UCLIBC__) - LIBC=uclibc - #elif defined(__dietlibc__) - LIBC=dietlibc - #else - LIBC=gnu - #endif - EOF - eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`" - - # If ldd exists, use it to detect musl libc. - if command -v ldd >/dev/null && \ - ldd --version 2>&1 | grep -q ^musl - then - LIBC=musl - fi - ;; -esac - -# Note: order is significant - the case branches are not exclusive. - -case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in - *:NetBSD:*:*) - # NetBSD (nbsd) targets should (where applicable) match one or - # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, - # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently - # switched to ELF, *-*-netbsd* would select the old - # object file format. This provides both forward - # compatibility and a consistent mechanism for selecting the - # object file format. - # - # Note: NetBSD doesn't particularly care about the vendor - # portion of the name. We always set it to "unknown". - sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ - "/sbin/$sysctl" 2>/dev/null || \ - "/usr/sbin/$sysctl" 2>/dev/null || \ - echo unknown)` - case "$UNAME_MACHINE_ARCH" in - armeb) machine=armeb-unknown ;; - arm*) machine=arm-unknown ;; - sh3el) machine=shl-unknown ;; - sh3eb) machine=sh-unknown ;; - sh5el) machine=sh5le-unknown ;; - earmv*) - arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` - endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` - machine="${arch}${endian}"-unknown - ;; - *) machine="$UNAME_MACHINE_ARCH"-unknown ;; - esac - # The Operating System including object format, if it has switched - # to ELF recently (or will in the future) and ABI. - case "$UNAME_MACHINE_ARCH" in - earm*) - os=netbsdelf - ;; - arm*|i386|m68k|ns32k|sh3*|sparc|vax) - set_cc_for_build - if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep -q __ELF__ - then - # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). - # Return netbsd for either. FIX? - os=netbsd - else - os=netbsdelf - fi - ;; - *) - os=netbsd - ;; - esac - # Determine ABI tags. - case "$UNAME_MACHINE_ARCH" in - earm*) - expr='s/^earmv[0-9]/-eabi/;s/eb$//' - abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"` - ;; - esac - # The OS release - # Debian GNU/NetBSD machines have a different userland, and - # thus, need a distinct triplet. However, they do not need - # kernel version information, so it can be replaced with a - # suitable tag, in the style of linux-gnu. - case "$UNAME_VERSION" in - Debian*) - release='-gnu' - ;; - *) - release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2` - ;; - esac - # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: - # contains redundant information, the shorter form: - # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "$machine-${os}${release}${abi-}" - exit ;; - *:Bitrig:*:*) - UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` - echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE" - exit ;; - *:OpenBSD:*:*) - UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` - echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE" - exit ;; - *:LibertyBSD:*:*) - UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` - echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE" - exit ;; - *:MidnightBSD:*:*) - echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE" - exit ;; - *:ekkoBSD:*:*) - echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE" - exit ;; - *:SolidBSD:*:*) - echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE" - exit ;; - macppc:MirBSD:*:*) - echo powerpc-unknown-mirbsd"$UNAME_RELEASE" - exit ;; - *:MirBSD:*:*) - echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE" - exit ;; - *:Sortix:*:*) - echo "$UNAME_MACHINE"-unknown-sortix - exit ;; - *:Redox:*:*) - echo "$UNAME_MACHINE"-unknown-redox - exit ;; - mips:OSF1:*.*) - echo mips-dec-osf1 - exit ;; - alpha:OSF1:*:*) - case $UNAME_RELEASE in - *4.0) - UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` - ;; - *5.*) - UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` - ;; - esac - # According to Compaq, /usr/sbin/psrinfo has been available on - # OSF/1 and Tru64 systems produced since 1995. I hope that - # covers most systems running today. This code pipes the CPU - # types through head -n 1, so we only detect the type of CPU 0. - ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` - case "$ALPHA_CPU_TYPE" in - "EV4 (21064)") - UNAME_MACHINE=alpha ;; - "EV4.5 (21064)") - UNAME_MACHINE=alpha ;; - "LCA4 (21066/21068)") - UNAME_MACHINE=alpha ;; - "EV5 (21164)") - UNAME_MACHINE=alphaev5 ;; - "EV5.6 (21164A)") - UNAME_MACHINE=alphaev56 ;; - "EV5.6 (21164PC)") - UNAME_MACHINE=alphapca56 ;; - "EV5.7 (21164PC)") - UNAME_MACHINE=alphapca57 ;; - "EV6 (21264)") - UNAME_MACHINE=alphaev6 ;; - "EV6.7 (21264A)") - UNAME_MACHINE=alphaev67 ;; - "EV6.8CB (21264C)") - UNAME_MACHINE=alphaev68 ;; - "EV6.8AL (21264B)") - UNAME_MACHINE=alphaev68 ;; - "EV6.8CX (21264D)") - UNAME_MACHINE=alphaev68 ;; - "EV6.9A (21264/EV69A)") - UNAME_MACHINE=alphaev69 ;; - "EV7 (21364)") - UNAME_MACHINE=alphaev7 ;; - "EV7.9 (21364A)") - UNAME_MACHINE=alphaev79 ;; - esac - # A Pn.n version is a patched version. - # A Vn.n version is a released version. - # A Tn.n version is a released field test version. - # A Xn.n version is an unreleased experimental baselevel. - # 1.2 uses "1.2" for uname -r. - echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`" - # Reset EXIT trap before exiting to avoid spurious non-zero exit code. - exitcode=$? - trap '' 0 - exit $exitcode ;; - Amiga*:UNIX_System_V:4.0:*) - echo m68k-unknown-sysv4 - exit ;; - *:[Aa]miga[Oo][Ss]:*:*) - echo "$UNAME_MACHINE"-unknown-amigaos - exit ;; - *:[Mm]orph[Oo][Ss]:*:*) - echo "$UNAME_MACHINE"-unknown-morphos - exit ;; - *:OS/390:*:*) - echo i370-ibm-openedition - exit ;; - *:z/VM:*:*) - echo s390-ibm-zvmoe - exit ;; - *:OS400:*:*) - echo powerpc-ibm-os400 - exit ;; - arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) - echo arm-acorn-riscix"$UNAME_RELEASE" - exit ;; - arm*:riscos:*:*|arm*:RISCOS:*:*) - echo arm-unknown-riscos - exit ;; - SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) - echo hppa1.1-hitachi-hiuxmpp - exit ;; - Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) - # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. - if test "`(/bin/universe) 2>/dev/null`" = att ; then - echo pyramid-pyramid-sysv3 - else - echo pyramid-pyramid-bsd - fi - exit ;; - NILE*:*:*:dcosx) - echo pyramid-pyramid-svr4 - exit ;; - DRS?6000:unix:4.0:6*) - echo sparc-icl-nx6 - exit ;; - DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) - case `/usr/bin/uname -p` in - sparc) echo sparc-icl-nx7; exit ;; - esac ;; - s390x:SunOS:*:*) - echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" - exit ;; - sun4H:SunOS:5.*:*) - echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" - exit ;; - sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) - echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" - exit ;; - i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) - echo i386-pc-auroraux"$UNAME_RELEASE" - exit ;; - i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) - UNAME_REL="`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" - case `isainfo -b` in - 32) - echo i386-pc-solaris2"$UNAME_REL" - ;; - 64) - echo x86_64-pc-solaris2"$UNAME_REL" - ;; - esac - exit ;; - sun4*:SunOS:6*:*) - # According to config.sub, this is the proper way to canonicalize - # SunOS6. Hard to guess exactly what SunOS6 will be like, but - # it's likely to be more like Solaris than SunOS4. - echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" - exit ;; - sun4*:SunOS:*:*) - case "`/usr/bin/arch -k`" in - Series*|S4*) - UNAME_RELEASE=`uname -v` - ;; - esac - # Japanese Language versions have a version number like `4.1.3-JL'. - echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`" - exit ;; - sun3*:SunOS:*:*) - echo m68k-sun-sunos"$UNAME_RELEASE" - exit ;; - sun*:*:4.2BSD:*) - UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` - test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3 - case "`/bin/arch`" in - sun3) - echo m68k-sun-sunos"$UNAME_RELEASE" - ;; - sun4) - echo sparc-sun-sunos"$UNAME_RELEASE" - ;; - esac - exit ;; - aushp:SunOS:*:*) - echo sparc-auspex-sunos"$UNAME_RELEASE" - exit ;; - # The situation for MiNT is a little confusing. The machine name - # can be virtually everything (everything which is not - # "atarist" or "atariste" at least should have a processor - # > m68000). The system name ranges from "MiNT" over "FreeMiNT" - # to the lowercase version "mint" (or "freemint"). Finally - # the system name "TOS" denotes a system which is actually not - # MiNT. But MiNT is downward compatible to TOS, so this should - # be no problem. - atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint"$UNAME_RELEASE" - exit ;; - atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint"$UNAME_RELEASE" - exit ;; - *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint"$UNAME_RELEASE" - exit ;; - milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint"$UNAME_RELEASE" - exit ;; - hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint"$UNAME_RELEASE" - exit ;; - *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint"$UNAME_RELEASE" - exit ;; - m68k:machten:*:*) - echo m68k-apple-machten"$UNAME_RELEASE" - exit ;; - powerpc:machten:*:*) - echo powerpc-apple-machten"$UNAME_RELEASE" - exit ;; - RISC*:Mach:*:*) - echo mips-dec-mach_bsd4.3 - exit ;; - RISC*:ULTRIX:*:*) - echo mips-dec-ultrix"$UNAME_RELEASE" - exit ;; - VAX*:ULTRIX*:*:*) - echo vax-dec-ultrix"$UNAME_RELEASE" - exit ;; - 2020:CLIX:*:* | 2430:CLIX:*:*) - echo clipper-intergraph-clix"$UNAME_RELEASE" - exit ;; - mips:*:*:UMIPS | mips:*:*:RISCos) - set_cc_for_build - sed 's/^ //' << EOF > "$dummy.c" -#ifdef __cplusplus -#include /* for printf() prototype */ - int main (int argc, char *argv[]) { -#else - int main (argc, argv) int argc; char *argv[]; { -#endif - #if defined (host_mips) && defined (MIPSEB) - #if defined (SYSTYPE_SYSV) - printf ("mips-mips-riscos%ssysv\\n", argv[1]); exit (0); - #endif - #if defined (SYSTYPE_SVR4) - printf ("mips-mips-riscos%ssvr4\\n", argv[1]); exit (0); - #endif - #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) - printf ("mips-mips-riscos%sbsd\\n", argv[1]); exit (0); - #endif - #endif - exit (-1); - } -EOF - $CC_FOR_BUILD -o "$dummy" "$dummy.c" && - dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` && - SYSTEM_NAME=`"$dummy" "$dummyarg"` && - { echo "$SYSTEM_NAME"; exit; } - echo mips-mips-riscos"$UNAME_RELEASE" - exit ;; - Motorola:PowerMAX_OS:*:*) - echo powerpc-motorola-powermax - exit ;; - Motorola:*:4.3:PL8-*) - echo powerpc-harris-powermax - exit ;; - Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) - echo powerpc-harris-powermax - exit ;; - Night_Hawk:Power_UNIX:*:*) - echo powerpc-harris-powerunix - exit ;; - m88k:CX/UX:7*:*) - echo m88k-harris-cxux7 - exit ;; - m88k:*:4*:R4*) - echo m88k-motorola-sysv4 - exit ;; - m88k:*:3*:R3*) - echo m88k-motorola-sysv3 - exit ;; - AViiON:dgux:*:*) - # DG/UX returns AViiON for all architectures - UNAME_PROCESSOR=`/usr/bin/uname -p` - if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ] - then - if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \ - [ "$TARGET_BINARY_INTERFACE"x = x ] - then - echo m88k-dg-dgux"$UNAME_RELEASE" - else - echo m88k-dg-dguxbcs"$UNAME_RELEASE" - fi - else - echo i586-dg-dgux"$UNAME_RELEASE" - fi - exit ;; - M88*:DolphinOS:*:*) # DolphinOS (SVR3) - echo m88k-dolphin-sysv3 - exit ;; - M88*:*:R3*:*) - # Delta 88k system running SVR3 - echo m88k-motorola-sysv3 - exit ;; - XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) - echo m88k-tektronix-sysv3 - exit ;; - Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) - echo m68k-tektronix-bsd - exit ;; - *:IRIX*:*:*) - echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`" - exit ;; - ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. - echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id - exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' - i*86:AIX:*:*) - echo i386-ibm-aix - exit ;; - ia64:AIX:*:*) - if [ -x /usr/bin/oslevel ] ; then - IBM_REV=`/usr/bin/oslevel` - else - IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" - fi - echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV" - exit ;; - *:AIX:2:3) - if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then - set_cc_for_build - sed 's/^ //' << EOF > "$dummy.c" - #include - - main() - { - if (!__power_pc()) - exit(1); - puts("powerpc-ibm-aix3.2.5"); - exit(0); - } -EOF - if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` - then - echo "$SYSTEM_NAME" - else - echo rs6000-ibm-aix3.2.5 - fi - elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then - echo rs6000-ibm-aix3.2.4 - else - echo rs6000-ibm-aix3.2 - fi - exit ;; - *:AIX:*:[4567]) - IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` - if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then - IBM_ARCH=rs6000 - else - IBM_ARCH=powerpc - fi - if [ -x /usr/bin/lslpp ] ; then - IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | - awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` - else - IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" - fi - echo "$IBM_ARCH"-ibm-aix"$IBM_REV" - exit ;; - *:AIX:*:*) - echo rs6000-ibm-aix - exit ;; - ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*) - echo romp-ibm-bsd4.4 - exit ;; - ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and - echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to - exit ;; # report: romp-ibm BSD 4.3 - *:BOSX:*:*) - echo rs6000-bull-bosx - exit ;; - DPX/2?00:B.O.S.:*:*) - echo m68k-bull-sysv3 - exit ;; - 9000/[34]??:4.3bsd:1.*:*) - echo m68k-hp-bsd - exit ;; - hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) - echo m68k-hp-bsd4.4 - exit ;; - 9000/[34678]??:HP-UX:*:*) - HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` - case "$UNAME_MACHINE" in - 9000/31?) HP_ARCH=m68000 ;; - 9000/[34]??) HP_ARCH=m68k ;; - 9000/[678][0-9][0-9]) - if [ -x /usr/bin/getconf ]; then - sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` - sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` - case "$sc_cpu_version" in - 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0 - 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1 - 532) # CPU_PA_RISC2_0 - case "$sc_kernel_bits" in - 32) HP_ARCH=hppa2.0n ;; - 64) HP_ARCH=hppa2.0w ;; - '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20 - esac ;; - esac - fi - if [ "$HP_ARCH" = "" ]; then - set_cc_for_build - sed 's/^ //' << EOF > "$dummy.c" - - #define _HPUX_SOURCE - #include - #include - - int main () - { - #if defined(_SC_KERNEL_BITS) - long bits = sysconf(_SC_KERNEL_BITS); - #endif - long cpu = sysconf (_SC_CPU_VERSION); - - switch (cpu) - { - case CPU_PA_RISC1_0: puts ("hppa1.0"); break; - case CPU_PA_RISC1_1: puts ("hppa1.1"); break; - case CPU_PA_RISC2_0: - #if defined(_SC_KERNEL_BITS) - switch (bits) - { - case 64: puts ("hppa2.0w"); break; - case 32: puts ("hppa2.0n"); break; - default: puts ("hppa2.0"); break; - } break; - #else /* !defined(_SC_KERNEL_BITS) */ - puts ("hppa2.0"); break; - #endif - default: puts ("hppa1.0"); break; - } - exit (0); - } -EOF - (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"` - test -z "$HP_ARCH" && HP_ARCH=hppa - fi ;; - esac - if [ "$HP_ARCH" = hppa2.0w ] - then - set_cc_for_build - - # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating - # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler - # generating 64-bit code. GNU and HP use different nomenclature: - # - # $ CC_FOR_BUILD=cc ./config.guess - # => hppa2.0w-hp-hpux11.23 - # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess - # => hppa64-hp-hpux11.23 - - if echo __LP64__ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | - grep -q __LP64__ - then - HP_ARCH=hppa2.0w - else - HP_ARCH=hppa64 - fi - fi - echo "$HP_ARCH"-hp-hpux"$HPUX_REV" - exit ;; - ia64:HP-UX:*:*) - HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` - echo ia64-hp-hpux"$HPUX_REV" - exit ;; - 3050*:HI-UX:*:*) - set_cc_for_build - sed 's/^ //' << EOF > "$dummy.c" - #include - int - main () - { - long cpu = sysconf (_SC_CPU_VERSION); - /* The order matters, because CPU_IS_HP_MC68K erroneously returns - true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct - results, however. */ - if (CPU_IS_PA_RISC (cpu)) - { - switch (cpu) - { - case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; - case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; - case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; - default: puts ("hppa-hitachi-hiuxwe2"); break; - } - } - else if (CPU_IS_HP_MC68K (cpu)) - puts ("m68k-hitachi-hiuxwe2"); - else puts ("unknown-hitachi-hiuxwe2"); - exit (0); - } -EOF - $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` && - { echo "$SYSTEM_NAME"; exit; } - echo unknown-hitachi-hiuxwe2 - exit ;; - 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*) - echo hppa1.1-hp-bsd - exit ;; - 9000/8??:4.3bsd:*:*) - echo hppa1.0-hp-bsd - exit ;; - *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) - echo hppa1.0-hp-mpeix - exit ;; - hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*) - echo hppa1.1-hp-osf - exit ;; - hp8??:OSF1:*:*) - echo hppa1.0-hp-osf - exit ;; - i*86:OSF1:*:*) - if [ -x /usr/sbin/sysversion ] ; then - echo "$UNAME_MACHINE"-unknown-osf1mk - else - echo "$UNAME_MACHINE"-unknown-osf1 - fi - exit ;; - parisc*:Lites*:*:*) - echo hppa1.1-hp-lites - exit ;; - C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) - echo c1-convex-bsd - exit ;; - C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) - if getsysinfo -f scalar_acc - then echo c32-convex-bsd - else echo c2-convex-bsd - fi - exit ;; - C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) - echo c34-convex-bsd - exit ;; - C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) - echo c38-convex-bsd - exit ;; - C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) - echo c4-convex-bsd - exit ;; - CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*[A-Z]90:*:*:*) - echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \ - | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ - -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ - -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*TS:*:*:*) - echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*T3E:*:*:*) - echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*SV1:*:*:*) - echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' - exit ;; - *:UNICOS/mp:*:*) - echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' - exit ;; - F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) - FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` - FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` - FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'` - echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit ;; - 5000:UNIX_System_V:4.*:*) - FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` - FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` - echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit ;; - i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) - echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE" - exit ;; - sparc*:BSD/OS:*:*) - echo sparc-unknown-bsdi"$UNAME_RELEASE" - exit ;; - *:BSD/OS:*:*) - echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE" - exit ;; - arm:FreeBSD:*:*) - UNAME_PROCESSOR=`uname -p` - set_cc_for_build - if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep -q __ARM_PCS_VFP - then - echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabi - else - echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabihf - fi - exit ;; - *:FreeBSD:*:*) - UNAME_PROCESSOR=`/usr/bin/uname -p` - case "$UNAME_PROCESSOR" in - amd64) - UNAME_PROCESSOR=x86_64 ;; - i386) - UNAME_PROCESSOR=i586 ;; - esac - echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" - exit ;; - i*:CYGWIN*:*) - echo "$UNAME_MACHINE"-pc-cygwin - exit ;; - *:MINGW64*:*) - echo "$UNAME_MACHINE"-pc-mingw64 - exit ;; - *:MINGW*:*) - echo "$UNAME_MACHINE"-pc-mingw32 - exit ;; - *:MSYS*:*) - echo "$UNAME_MACHINE"-pc-msys - exit ;; - i*:PW*:*) - echo "$UNAME_MACHINE"-pc-pw32 - exit ;; - *:Interix*:*) - case "$UNAME_MACHINE" in - x86) - echo i586-pc-interix"$UNAME_RELEASE" - exit ;; - authenticamd | genuineintel | EM64T) - echo x86_64-unknown-interix"$UNAME_RELEASE" - exit ;; - IA64) - echo ia64-unknown-interix"$UNAME_RELEASE" - exit ;; - esac ;; - i*:UWIN*:*) - echo "$UNAME_MACHINE"-pc-uwin - exit ;; - amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) - echo x86_64-unknown-cygwin - exit ;; - prep*:SunOS:5.*:*) - echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" - exit ;; - *:GNU:*:*) - # the GNU system - echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`" - exit ;; - *:GNU/*:*:*) - # other systems with GNU libc and userland - echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC" - exit ;; - *:Minix:*:*) - echo "$UNAME_MACHINE"-unknown-minix - exit ;; - aarch64:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - aarch64_be:Linux:*:*) - UNAME_MACHINE=aarch64_be - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - alpha:Linux:*:*) - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in - EV5) UNAME_MACHINE=alphaev5 ;; - EV56) UNAME_MACHINE=alphaev56 ;; - PCA56) UNAME_MACHINE=alphapca56 ;; - PCA57) UNAME_MACHINE=alphapca56 ;; - EV6) UNAME_MACHINE=alphaev6 ;; - EV67) UNAME_MACHINE=alphaev67 ;; - EV68*) UNAME_MACHINE=alphaev68 ;; - esac - objdump --private-headers /bin/sh | grep -q ld.so.1 - if test "$?" = 0 ; then LIBC=gnulibc1 ; fi - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - arc:Linux:*:* | arceb:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - arm*:Linux:*:*) - set_cc_for_build - if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep -q __ARM_EABI__ - then - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - else - if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep -q __ARM_PCS_VFP - then - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi - else - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf - fi - fi - exit ;; - avr32*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - cris:Linux:*:*) - echo "$UNAME_MACHINE"-axis-linux-"$LIBC" - exit ;; - crisv32:Linux:*:*) - echo "$UNAME_MACHINE"-axis-linux-"$LIBC" - exit ;; - e2k:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - frv:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - hexagon:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - i*86:Linux:*:*) - echo "$UNAME_MACHINE"-pc-linux-"$LIBC" - exit ;; - ia64:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - k1om:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - m32r*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - m68*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - mips:Linux:*:* | mips64:Linux:*:*) - set_cc_for_build - sed 's/^ //' << EOF > "$dummy.c" - #undef CPU - #undef ${UNAME_MACHINE} - #undef ${UNAME_MACHINE}el - #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=${UNAME_MACHINE}el - #else - #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=${UNAME_MACHINE} - #else - CPU= - #endif - #endif -EOF - eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`" - test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; } - ;; - mips64el:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - openrisc*:Linux:*:*) - echo or1k-unknown-linux-"$LIBC" - exit ;; - or32:Linux:*:* | or1k*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - padre:Linux:*:*) - echo sparc-unknown-linux-"$LIBC" - exit ;; - parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-"$LIBC" - exit ;; - parisc:Linux:*:* | hppa:Linux:*:*) - # Look for CPU level - case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;; - PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;; - *) echo hppa-unknown-linux-"$LIBC" ;; - esac - exit ;; - ppc64:Linux:*:*) - echo powerpc64-unknown-linux-"$LIBC" - exit ;; - ppc:Linux:*:*) - echo powerpc-unknown-linux-"$LIBC" - exit ;; - ppc64le:Linux:*:*) - echo powerpc64le-unknown-linux-"$LIBC" - exit ;; - ppcle:Linux:*:*) - echo powerpcle-unknown-linux-"$LIBC" - exit ;; - riscv32:Linux:*:* | riscv64:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - s390:Linux:*:* | s390x:Linux:*:*) - echo "$UNAME_MACHINE"-ibm-linux-"$LIBC" - exit ;; - sh64*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - sh*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - sparc:Linux:*:* | sparc64:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - tile*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - vax:Linux:*:*) - echo "$UNAME_MACHINE"-dec-linux-"$LIBC" - exit ;; - x86_64:Linux:*:*) - echo "$UNAME_MACHINE"-pc-linux-"$LIBC" - exit ;; - xtensa*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - i*86:DYNIX/ptx:4*:*) - # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. - # earlier versions are messed up and put the nodename in both - # sysname and nodename. - echo i386-sequent-sysv4 - exit ;; - i*86:UNIX_SV:4.2MP:2.*) - # Unixware is an offshoot of SVR4, but it has its own version - # number series starting with 2... - # I am not positive that other SVR4 systems won't match this, - # I just have to hope. -- rms. - # Use sysv4.2uw... so that sysv4* matches it. - echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION" - exit ;; - i*86:OS/2:*:*) - # If we were able to find `uname', then EMX Unix compatibility - # is probably installed. - echo "$UNAME_MACHINE"-pc-os2-emx - exit ;; - i*86:XTS-300:*:STOP) - echo "$UNAME_MACHINE"-unknown-stop - exit ;; - i*86:atheos:*:*) - echo "$UNAME_MACHINE"-unknown-atheos - exit ;; - i*86:syllable:*:*) - echo "$UNAME_MACHINE"-pc-syllable - exit ;; - i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) - echo i386-unknown-lynxos"$UNAME_RELEASE" - exit ;; - i*86:*DOS:*:*) - echo "$UNAME_MACHINE"-pc-msdosdjgpp - exit ;; - i*86:*:4.*:*) - UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'` - if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then - echo "$UNAME_MACHINE"-univel-sysv"$UNAME_REL" - else - echo "$UNAME_MACHINE"-pc-sysv"$UNAME_REL" - fi - exit ;; - i*86:*:5:[678]*) - # UnixWare 7.x, OpenUNIX and OpenServer 6. - case `/bin/uname -X | grep "^Machine"` in - *486*) UNAME_MACHINE=i486 ;; - *Pentium) UNAME_MACHINE=i586 ;; - *Pent*|*Celeron) UNAME_MACHINE=i686 ;; - esac - echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}{$UNAME_VERSION}" - exit ;; - i*86:*:3.2:*) - if test -f /usr/options/cb.name; then - UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then - UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` - (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 - (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ - && UNAME_MACHINE=i586 - (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ - && UNAME_MACHINE=i686 - (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ - && UNAME_MACHINE=i686 - echo "$UNAME_MACHINE"-pc-sco"$UNAME_REL" - else - echo "$UNAME_MACHINE"-pc-sysv32 - fi - exit ;; - pc:*:*:*) - # Left here for compatibility: - # uname -m prints for DJGPP always 'pc', but it prints nothing about - # the processor, so we play safe by assuming i586. - # Note: whatever this is, it MUST be the same as what config.sub - # prints for the "djgpp" host, or else GDB configure will decide that - # this is a cross-build. - echo i586-pc-msdosdjgpp - exit ;; - Intel:Mach:3*:*) - echo i386-pc-mach3 - exit ;; - paragon:*:*:*) - echo i860-intel-osf1 - exit ;; - i860:*:4.*:*) # i860-SVR4 - if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then - echo i860-stardent-sysv"$UNAME_RELEASE" # Stardent Vistra i860-SVR4 - else # Add other i860-SVR4 vendors below as they are discovered. - echo i860-unknown-sysv"$UNAME_RELEASE" # Unknown i860-SVR4 - fi - exit ;; - mini*:CTIX:SYS*5:*) - # "miniframe" - echo m68010-convergent-sysv - exit ;; - mc68k:UNIX:SYSTEM5:3.51m) - echo m68k-convergent-sysv - exit ;; - M680?0:D-NIX:5.3:*) - echo m68k-diab-dnix - exit ;; - M68*:*:R3V[5678]*:*) - test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; - 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) - OS_REL='' - test -r /etc/.relid \ - && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` - /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } - /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; - 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) - /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4; exit; } ;; - NCR*:*:4.2:* | MPRAS*:*:4.2:*) - OS_REL='.3' - test -r /etc/.relid \ - && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` - /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } - /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } - /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ - && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; - m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) - echo m68k-unknown-lynxos"$UNAME_RELEASE" - exit ;; - mc68030:UNIX_System_V:4.*:*) - echo m68k-atari-sysv4 - exit ;; - TSUNAMI:LynxOS:2.*:*) - echo sparc-unknown-lynxos"$UNAME_RELEASE" - exit ;; - rs6000:LynxOS:2.*:*) - echo rs6000-unknown-lynxos"$UNAME_RELEASE" - exit ;; - PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) - echo powerpc-unknown-lynxos"$UNAME_RELEASE" - exit ;; - SM[BE]S:UNIX_SV:*:*) - echo mips-dde-sysv"$UNAME_RELEASE" - exit ;; - RM*:ReliantUNIX-*:*:*) - echo mips-sni-sysv4 - exit ;; - RM*:SINIX-*:*:*) - echo mips-sni-sysv4 - exit ;; - *:SINIX-*:*:*) - if uname -p 2>/dev/null >/dev/null ; then - UNAME_MACHINE=`(uname -p) 2>/dev/null` - echo "$UNAME_MACHINE"-sni-sysv4 - else - echo ns32k-sni-sysv - fi - exit ;; - PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort - # says - echo i586-unisys-sysv4 - exit ;; - *:UNIX_System_V:4*:FTX*) - # From Gerald Hewes . - # How about differentiating between stratus architectures? -djm - echo hppa1.1-stratus-sysv4 - exit ;; - *:*:*:FTX*) - # From seanf@swdc.stratus.com. - echo i860-stratus-sysv4 - exit ;; - i*86:VOS:*:*) - # From Paul.Green@stratus.com. - echo "$UNAME_MACHINE"-stratus-vos - exit ;; - *:VOS:*:*) - # From Paul.Green@stratus.com. - echo hppa1.1-stratus-vos - exit ;; - mc68*:A/UX:*:*) - echo m68k-apple-aux"$UNAME_RELEASE" - exit ;; - news*:NEWS-OS:6*:*) - echo mips-sony-newsos6 - exit ;; - R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) - if [ -d /usr/nec ]; then - echo mips-nec-sysv"$UNAME_RELEASE" - else - echo mips-unknown-sysv"$UNAME_RELEASE" - fi - exit ;; - BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. - echo powerpc-be-beos - exit ;; - BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. - echo powerpc-apple-beos - exit ;; - BePC:BeOS:*:*) # BeOS running on Intel PC compatible. - echo i586-pc-beos - exit ;; - BePC:Haiku:*:*) # Haiku running on Intel PC compatible. - echo i586-pc-haiku - exit ;; - x86_64:Haiku:*:*) - echo x86_64-unknown-haiku - exit ;; - SX-4:SUPER-UX:*:*) - echo sx4-nec-superux"$UNAME_RELEASE" - exit ;; - SX-5:SUPER-UX:*:*) - echo sx5-nec-superux"$UNAME_RELEASE" - exit ;; - SX-6:SUPER-UX:*:*) - echo sx6-nec-superux"$UNAME_RELEASE" - exit ;; - SX-7:SUPER-UX:*:*) - echo sx7-nec-superux"$UNAME_RELEASE" - exit ;; - SX-8:SUPER-UX:*:*) - echo sx8-nec-superux"$UNAME_RELEASE" - exit ;; - SX-8R:SUPER-UX:*:*) - echo sx8r-nec-superux"$UNAME_RELEASE" - exit ;; - SX-ACE:SUPER-UX:*:*) - echo sxace-nec-superux"$UNAME_RELEASE" - exit ;; - Power*:Rhapsody:*:*) - echo powerpc-apple-rhapsody"$UNAME_RELEASE" - exit ;; - *:Rhapsody:*:*) - echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE" - exit ;; - *:Darwin:*:*) - UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown - set_cc_for_build - if test "$UNAME_PROCESSOR" = unknown ; then - UNAME_PROCESSOR=powerpc - fi - if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then - if [ "$CC_FOR_BUILD" != no_compiler_found ]; then - if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ - grep IS_64BIT_ARCH >/dev/null - then - case $UNAME_PROCESSOR in - i386) UNAME_PROCESSOR=x86_64 ;; - powerpc) UNAME_PROCESSOR=powerpc64 ;; - esac - fi - # On 10.4-10.6 one might compile for PowerPC via gcc -arch ppc - if (echo '#ifdef __POWERPC__'; echo IS_PPC; echo '#endif') | \ - (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ - grep IS_PPC >/dev/null - then - UNAME_PROCESSOR=powerpc - fi - fi - elif test "$UNAME_PROCESSOR" = i386 ; then - # Avoid executing cc on OS X 10.9, as it ships with a stub - # that puts up a graphical alert prompting to install - # developer tools. Any system running Mac OS X 10.7 or - # later (Darwin 11 and later) is required to have a 64-bit - # processor. This is not true of the ARM version of Darwin - # that Apple uses in portable devices. - UNAME_PROCESSOR=x86_64 - fi - echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE" - exit ;; - *:procnto*:*:* | *:QNX:[0123456789]*:*) - UNAME_PROCESSOR=`uname -p` - if test "$UNAME_PROCESSOR" = x86; then - UNAME_PROCESSOR=i386 - UNAME_MACHINE=pc - fi - echo "$UNAME_PROCESSOR"-"$UNAME_MACHINE"-nto-qnx"$UNAME_RELEASE" - exit ;; - *:QNX:*:4*) - echo i386-pc-qnx - exit ;; - NEO-*:NONSTOP_KERNEL:*:*) - echo neo-tandem-nsk"$UNAME_RELEASE" - exit ;; - NSE-*:NONSTOP_KERNEL:*:*) - echo nse-tandem-nsk"$UNAME_RELEASE" - exit ;; - NSR-*:NONSTOP_KERNEL:*:*) - echo nsr-tandem-nsk"$UNAME_RELEASE" - exit ;; - NSV-*:NONSTOP_KERNEL:*:*) - echo nsv-tandem-nsk"$UNAME_RELEASE" - exit ;; - NSX-*:NONSTOP_KERNEL:*:*) - echo nsx-tandem-nsk"$UNAME_RELEASE" - exit ;; - *:NonStop-UX:*:*) - echo mips-compaq-nonstopux - exit ;; - BS2000:POSIX*:*:*) - echo bs2000-siemens-sysv - exit ;; - DS/*:UNIX_System_V:*:*) - echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-"$UNAME_RELEASE" - exit ;; - *:Plan9:*:*) - # "uname -m" is not consistent, so use $cputype instead. 386 - # is converted to i386 for consistency with other x86 - # operating systems. - # shellcheck disable=SC2154 - if test "$cputype" = 386; then - UNAME_MACHINE=i386 - else - UNAME_MACHINE="$cputype" - fi - echo "$UNAME_MACHINE"-unknown-plan9 - exit ;; - *:TOPS-10:*:*) - echo pdp10-unknown-tops10 - exit ;; - *:TENEX:*:*) - echo pdp10-unknown-tenex - exit ;; - KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) - echo pdp10-dec-tops20 - exit ;; - XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) - echo pdp10-xkl-tops20 - exit ;; - *:TOPS-20:*:*) - echo pdp10-unknown-tops20 - exit ;; - *:ITS:*:*) - echo pdp10-unknown-its - exit ;; - SEI:*:*:SEIUX) - echo mips-sei-seiux"$UNAME_RELEASE" - exit ;; - *:DragonFly:*:*) - echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" - exit ;; - *:*VMS:*:*) - UNAME_MACHINE=`(uname -p) 2>/dev/null` - case "$UNAME_MACHINE" in - A*) echo alpha-dec-vms ; exit ;; - I*) echo ia64-dec-vms ; exit ;; - V*) echo vax-dec-vms ; exit ;; - esac ;; - *:XENIX:*:SysV) - echo i386-pc-xenix - exit ;; - i*86:skyos:*:*) - echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`" - exit ;; - i*86:rdos:*:*) - echo "$UNAME_MACHINE"-pc-rdos - exit ;; - i*86:AROS:*:*) - echo "$UNAME_MACHINE"-pc-aros - exit ;; - x86_64:VMkernel:*:*) - echo "$UNAME_MACHINE"-unknown-esx - exit ;; - amd64:Isilon\ OneFS:*:*) - echo x86_64-unknown-onefs - exit ;; -esac - -echo "$0: unable to guess system type" >&2 - -case "$UNAME_MACHINE:$UNAME_SYSTEM" in - mips:Linux | mips64:Linux) - # If we got here on MIPS GNU/Linux, output extra information. - cat >&2 <&2 </dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null` - -hostinfo = `(hostinfo) 2>/dev/null` -/bin/universe = `(/bin/universe) 2>/dev/null` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` -/bin/arch = `(/bin/arch) 2>/dev/null` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` - -UNAME_MACHINE = "$UNAME_MACHINE" -UNAME_RELEASE = "$UNAME_RELEASE" -UNAME_SYSTEM = "$UNAME_SYSTEM" -UNAME_VERSION = "$UNAME_VERSION" -EOF - -exit 1 - -# Local variables: -# eval: (add-hook 'before-save-hook 'time-stamp) -# time-stamp-start: "timestamp='" -# time-stamp-format: "%:y-%02m-%02d" -# time-stamp-end: "'" -# End: diff -Nru mate-utils-1.26.0/config.h.in mate-utils-1.26.1/config.h.in --- mate-utils-1.26.0/config.h.in 2021-08-05 19:45:27.000000000 +0000 +++ mate-utils-1.26.1/config.h.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,144 +0,0 @@ -/* config.h.in. Generated from configure.ac by autoheader. */ - -/* Define whether IPv6 support is enabled */ -#undef ENABLE_IPV6 - -/* Define to 1 if translation of program messages to the user's native - language is requested. */ -#undef ENABLE_NLS - -/* Define the gettext package to use */ -#undef GETTEXT_PACKAGE - -/* Define to 1 if you have the Mac OS X function - CFLocaleCopyPreferredLanguages in the CoreFoundation framework. */ -#undef HAVE_CFLOCALECOPYPREFERREDLANGUAGES - -/* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in - the CoreFoundation framework. */ -#undef HAVE_CFPREFERENCESCOPYAPPVALUE - -/* Define if the GNU dcgettext() function is already present or preinstalled. - */ -#undef HAVE_DCGETTEXT - -/* Define to 1 if you have the header file. */ -#undef HAVE_DLFCN_H - -/* Define to 1 if you have the `getpgid' function. */ -#undef HAVE_GETPGID - -/* Define if the GNU gettext() function is already present or preinstalled. */ -#undef HAVE_GETTEXT - -/* Define if you have the iconv() function and it works. */ -#undef HAVE_ICONV - -/* Define to 1 if you have the header file. */ -#undef HAVE_INTTYPES_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_MEMORY_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDINT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDLIB_H - -/* Define to 1 if you have the `strftime' function. */ -#undef HAVE_STRFTIME - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRINGS_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRING_H - -/* Define to 1 if `st_rdev' is a member of `struct stat'. */ -#undef HAVE_STRUCT_STAT_ST_RDEV - -/* Define to 1 if your `struct stat' has `st_rdev'. Deprecated, use - `HAVE_STRUCT_STAT_ST_RDEV' instead. */ -#undef HAVE_ST_RDEV - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_STAT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_TYPES_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_UNISTD_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_X11_EXTENSIONS_SHAPE_H - -/* Define to 1 if we're building with ZLib support */ -#undef HAVE_ZLIB - -/* Define to the sub-directory where libtool stores uninstalled libraries. */ -#undef LT_OBJDIR - -/* Define if debugging is enabled */ -#undef MATE_ENABLE_DEBUG - -/* Define if debugging is disabled */ -#undef NDEBUG - -/* Name of package */ -#undef PACKAGE - -/* Define to the address where bug reports for this package should be sent. */ -#undef PACKAGE_BUGREPORT - -/* Define to the full name of this package. */ -#undef PACKAGE_NAME - -/* Define to the full name and version of this package. */ -#undef PACKAGE_STRING - -/* Define to the one symbol short name of this package. */ -#undef PACKAGE_TARNAME - -/* Define to the home page for this package. */ -#undef PACKAGE_URL - -/* Define to the version of this package. */ -#undef PACKAGE_VERSION - -/* Define as the return type of signal handlers (`int' or `void'). */ -#undef RETSIGTYPE - -/* Define to 1 if you have the ANSI C header files. */ -#undef STDC_HEADERS - -/* Define to 1 if you can safely include both and . */ -#undef TIME_WITH_SYS_TIME - -/* Define to 1 if your declares `struct tm'. */ -#undef TM_IN_SYS_TIME - -/* Version number of package */ -#undef VERSION - -/* Define to 1 if the X Window System is missing or not being used. */ -#undef X_DISPLAY_MISSING - -/* Define to empty if `const' does not conform to ANSI C. */ -#undef const - -/* Define to `__inline__' or `__inline' if that's what the C compiler - calls it, or to nothing if 'inline' is not supported under any name. */ -#ifndef __cplusplus -#undef inline -#endif - -/* Define to `long int' if does not define. */ -#undef off_t - -/* Define to `int' if does not define. */ -#undef pid_t - -/* Define to `unsigned int' if does not define. */ -#undef size_t diff -Nru mate-utils-1.26.0/config.rpath mate-utils-1.26.1/config.rpath --- mate-utils-1.26.0/config.rpath 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/config.rpath 1970-01-01 00:00:00.000000000 +0000 @@ -1,684 +0,0 @@ -#! /bin/sh -# Output a system dependent set of variables, describing how to set the -# run time search path of shared libraries in an executable. -# -# Copyright 1996-2020 Free Software Foundation, Inc. -# Taken from GNU libtool, 2001 -# Originally by Gordon Matzigkeit , 1996 -# -# 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. -# -# The first argument passed to this file is the canonical host specification, -# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM -# or -# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM -# The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld -# should be set by the caller. -# -# The set of defined variables is at the end of this script. - -# Known limitations: -# - On IRIX 6.5 with CC="cc", the run time search patch must not be longer -# than 256 bytes, otherwise the compiler driver will dump core. The only -# known workaround is to choose shorter directory names for the build -# directory and/or the installation directory. - -# All known linkers require a '.a' archive for static linking (except MSVC, -# which needs '.lib'). -libext=a -shrext=.so - -host="$1" -host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` -host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` -host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` - -# Code taken from libtool.m4's _LT_CC_BASENAME. - -for cc_temp in $CC""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'` - -# Code taken from libtool.m4's _LT_COMPILER_PIC. - -wl= -if test "$GCC" = yes; then - wl='-Wl,' -else - case "$host_os" in - aix*) - wl='-Wl,' - ;; - mingw* | cygwin* | pw32* | os2* | cegcc*) - ;; - hpux9* | hpux10* | hpux11*) - wl='-Wl,' - ;; - irix5* | irix6* | nonstopux*) - wl='-Wl,' - ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) - case $cc_basename in - ecc*) - wl='-Wl,' - ;; - icc* | ifort*) - wl='-Wl,' - ;; - lf95*) - wl='-Wl,' - ;; - nagfor*) - wl='-Wl,-Wl,,' - ;; - pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) - wl='-Wl,' - ;; - ccc*) - wl='-Wl,' - ;; - xl* | bgxl* | bgf* | mpixl*) - wl='-Wl,' - ;; - como) - wl='-lopt=' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ F* | *Sun*Fortran*) - wl= - ;; - *Sun\ C*) - wl='-Wl,' - ;; - esac - ;; - esac - ;; - newsos6) - ;; - *nto* | *qnx*) - ;; - osf3* | osf4* | osf5*) - wl='-Wl,' - ;; - rdos*) - ;; - solaris*) - case $cc_basename in - f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) - wl='-Qoption ld ' - ;; - *) - wl='-Wl,' - ;; - esac - ;; - sunos4*) - wl='-Qoption ld ' - ;; - sysv4 | sysv4.2uw2* | sysv4.3*) - wl='-Wl,' - ;; - sysv4*MP*) - ;; - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - wl='-Wl,' - ;; - unicos*) - wl='-Wl,' - ;; - uts4*) - ;; - esac -fi - -# Code taken from libtool.m4's _LT_LINKER_SHLIBS. - -hardcode_libdir_flag_spec= -hardcode_libdir_separator= -hardcode_direct=no -hardcode_minus_L=no - -case "$host_os" in - cygwin* | mingw* | pw32* | cegcc*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test "$GCC" != yes; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd*) - with_gnu_ld=no - ;; -esac - -ld_shlibs=yes -if test "$with_gnu_ld" = yes; then - # Set some defaults for GNU ld with shared library support. These - # are reset later if shared libraries are not supported. Putting them - # here allows them to be overridden if necessary. - # Unlike libtool, we use -rpath here, not --rpath, since the documented - # option of GNU ld is called -rpath, not --rpath. - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - case "$host_os" in - aix[3-9]*) - # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then - ld_shlibs=no - fi - ;; - amigaos*) - case "$host_cpu" in - powerpc) - ;; - m68k) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - ;; - esac - ;; - beos*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - : - else - ld_shlibs=no - fi - ;; - cygwin* | mingw* | pw32* | cegcc*) - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - hardcode_libdir_flag_spec='-L$libdir' - if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then - : - else - ld_shlibs=no - fi - ;; - haiku*) - ;; - interix[3-9]*) - hardcode_direct=no - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - ;; - gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - : - else - ld_shlibs=no - fi - ;; - netbsd*) - ;; - solaris*) - if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then - ld_shlibs=no - elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - : - else - ld_shlibs=no - fi - ;; - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) - ld_shlibs=no - ;; - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' - else - ld_shlibs=no - fi - ;; - esac - ;; - sunos4*) - hardcode_direct=yes - ;; - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - : - else - ld_shlibs=no - fi - ;; - esac - if test "$ld_shlibs" = no; then - hardcode_libdir_flag_spec= - fi -else - case "$host_os" in - aix3*) - # Note: this linker hardcodes the directories in LIBPATH if there - # are no directories specified by -L. - hardcode_minus_L=yes - if test "$GCC" = yes; then - # Neither direct hardcoding nor static linking is supported with a - # broken collect2. - hardcode_direct=unsupported - fi - ;; - aix[4-9]*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - else - aix_use_runtimelinking=no - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) - for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then - aix_use_runtimelinking=yes - break - fi - done - ;; - esac - fi - hardcode_direct=yes - hardcode_libdir_separator=':' - if test "$GCC" = yes; then - case $host_os in aix4.[012]|aix4.[012].*) - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && \ - strings "$collect2name" | grep resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - hardcode_direct=unsupported - hardcode_minus_L=yes - hardcode_libdir_flag_spec='-L$libdir' - hardcode_libdir_separator= - fi - ;; - esac - fi - # Begin _LT_AC_SYS_LIBPATH_AIX. - echo 'int main () { return 0; }' > conftest.c - ${CC} ${LDFLAGS} conftest.c -o conftest - aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } -}'` - if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } -}'` - fi - if test -z "$aix_libpath"; then - aix_libpath="/usr/lib:/lib" - fi - rm -f conftest.c conftest - # End _LT_AC_SYS_LIBPATH_AIX. - if test "$aix_use_runtimelinking" = yes; then - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" - else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' - else - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" - fi - fi - ;; - amigaos*) - case "$host_cpu" in - powerpc) - ;; - m68k) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - ;; - esac - ;; - bsdi[45]*) - ;; - cygwin* | mingw* | pw32* | cegcc*) - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - hardcode_libdir_flag_spec=' ' - libext=lib - ;; - darwin* | rhapsody*) - hardcode_direct=no - if { case $cc_basename in ifort*) true;; *) test "$GCC" = yes;; esac; }; then - : - else - ld_shlibs=no - fi - ;; - dgux*) - hardcode_libdir_flag_spec='-L$libdir' - ;; - freebsd2.[01]*) - hardcode_direct=yes - hardcode_minus_L=yes - ;; - freebsd* | dragonfly*) - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - ;; - hpux9*) - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_separator=: - hardcode_direct=yes - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - ;; - hpux10*) - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_separator=: - hardcode_direct=yes - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - fi - ;; - hpux11*) - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_separator=: - case $host_cpu in - hppa*64*|ia64*) - hardcode_direct=no - ;; - *) - hardcode_direct=yes - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - ;; - esac - fi - ;; - irix5* | irix6* | nonstopux*) - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - ;; - netbsd*) - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - ;; - newsos6) - hardcode_direct=yes - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - ;; - *nto* | *qnx*) - ;; - openbsd*) - if test -f /usr/libexec/ld.so; then - hardcode_direct=yes - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - else - case "$host_os" in - openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) - hardcode_libdir_flag_spec='-R$libdir' - ;; - *) - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - ;; - esac - fi - else - ld_shlibs=no - fi - ;; - os2*) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - ;; - osf3*) - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - ;; - osf4* | osf5*) - if test "$GCC" = yes; then - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - else - # Both cc and cxx compiler support -rpath directly - hardcode_libdir_flag_spec='-rpath $libdir' - fi - hardcode_libdir_separator=: - ;; - solaris*) - hardcode_libdir_flag_spec='-R$libdir' - ;; - sunos4*) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_direct=yes - hardcode_minus_L=yes - ;; - sysv4) - case $host_vendor in - sni) - hardcode_direct=yes # is this really true??? - ;; - siemens) - hardcode_direct=no - ;; - motorola) - hardcode_direct=no #Motorola manual says yes, but my tests say they lie - ;; - esac - ;; - sysv4.3*) - ;; - sysv4*MP*) - if test -d /usr/nec; then - ld_shlibs=yes - fi - ;; - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - ;; - sysv5* | sco3.2v5* | sco5v6*) - hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' - hardcode_libdir_separator=':' - ;; - uts4*) - hardcode_libdir_flag_spec='-L$libdir' - ;; - *) - ld_shlibs=no - ;; - esac -fi - -# Check dynamic linker characteristics -# Code taken from libtool.m4's _LT_SYS_DYNAMIC_LINKER. -# Unlike libtool.m4, here we don't care about _all_ names of the library, but -# only about the one the linker finds when passed -lNAME. This is the last -# element of library_names_spec in libtool.m4, or possibly two of them if the -# linker has special search rules. -library_names_spec= # the last element of library_names_spec in libtool.m4 -libname_spec='lib$name' -case "$host_os" in - aix3*) - library_names_spec='$libname.a' - ;; - aix[4-9]*) - library_names_spec='$libname$shrext' - ;; - amigaos*) - case "$host_cpu" in - powerpc*) - library_names_spec='$libname$shrext' ;; - m68k) - library_names_spec='$libname.a' ;; - esac - ;; - beos*) - library_names_spec='$libname$shrext' - ;; - bsdi[45]*) - library_names_spec='$libname$shrext' - ;; - cygwin* | mingw* | pw32* | cegcc*) - shrext=.dll - library_names_spec='$libname.dll.a $libname.lib' - ;; - darwin* | rhapsody*) - shrext=.dylib - library_names_spec='$libname$shrext' - ;; - dgux*) - library_names_spec='$libname$shrext' - ;; - freebsd[23].*) - library_names_spec='$libname$shrext$versuffix' - ;; - freebsd* | dragonfly*) - library_names_spec='$libname$shrext' - ;; - gnu*) - library_names_spec='$libname$shrext' - ;; - haiku*) - library_names_spec='$libname$shrext' - ;; - hpux9* | hpux10* | hpux11*) - case $host_cpu in - ia64*) - shrext=.so - ;; - hppa*64*) - shrext=.sl - ;; - *) - shrext=.sl - ;; - esac - library_names_spec='$libname$shrext' - ;; - interix[3-9]*) - library_names_spec='$libname$shrext' - ;; - irix5* | irix6* | nonstopux*) - library_names_spec='$libname$shrext' - case "$host_os" in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; - *) libsuff= shlibsuff= ;; - esac - ;; - esac - ;; - linux*oldld* | linux*aout* | linux*coff*) - ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) - library_names_spec='$libname$shrext' - ;; - knetbsd*-gnu) - library_names_spec='$libname$shrext' - ;; - netbsd*) - library_names_spec='$libname$shrext' - ;; - newsos6) - library_names_spec='$libname$shrext' - ;; - *nto* | *qnx*) - library_names_spec='$libname$shrext' - ;; - openbsd*) - library_names_spec='$libname$shrext$versuffix' - ;; - os2*) - libname_spec='$name' - shrext=.dll - library_names_spec='$libname.a' - ;; - osf3* | osf4* | osf5*) - library_names_spec='$libname$shrext' - ;; - rdos*) - ;; - solaris*) - library_names_spec='$libname$shrext' - ;; - sunos4*) - library_names_spec='$libname$shrext$versuffix' - ;; - sysv4 | sysv4.3*) - library_names_spec='$libname$shrext' - ;; - sysv4*MP*) - library_names_spec='$libname$shrext' - ;; - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - library_names_spec='$libname$shrext' - ;; - tpf*) - library_names_spec='$libname$shrext' - ;; - uts4*) - library_names_spec='$libname$shrext' - ;; -esac - -sed_quote_subst='s/\(["`$\\]\)/\\\1/g' -escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"` -shlibext=`echo "$shrext" | sed -e 's,^\.,,'` -escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` -escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` -escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` - -LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that -# program. This Exception is an additional permission under section 7 -# of the GNU General Public License, version 3 ("GPLv3"). - - -# Please send patches to . -# -# Configuration subroutine to validate and canonicalize a configuration type. -# Supply the specified configuration type as an argument. -# If it is invalid, we print an error message on stderr and exit with code 1. -# Otherwise, we print the canonical config type on stdout and succeed. - -# You can get the latest version of this script from: -# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub - -# This file is supposed to be the same for all GNU packages -# and recognize all the CPU types, system types and aliases -# that are meaningful with *any* GNU software. -# Each package is responsible for reporting which valid configurations -# it does not support. The user should be able to distinguish -# a failure to support a valid configuration from a meaningless -# configuration. - -# The goal of this file is to map all the various variations of a given -# machine specification into a single specification in the form: -# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM -# or in some cases, the newer four-part form: -# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM -# It is wrong to echo any other type of specification. - -me=`echo "$0" | sed -e 's,.*/,,'` - -usage="\ -Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS - -Canonicalize a configuration name. - -Options: - -h, --help print this help, then exit - -t, --time-stamp print date of last modification, then exit - -v, --version print version number, then exit - -Report bugs and patches to ." - -version="\ -GNU config.sub ($timestamp) - -Copyright 1992-2018 Free Software Foundation, Inc. - -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - -help=" -Try \`$me --help' for more information." - -# Parse command line -while test $# -gt 0 ; do - case $1 in - --time-stamp | --time* | -t ) - echo "$timestamp" ; exit ;; - --version | -v ) - echo "$version" ; exit ;; - --help | --h* | -h ) - echo "$usage"; exit ;; - -- ) # Stop option processing - shift; break ;; - - ) # Use stdin as input. - break ;; - -* ) - echo "$me: invalid option $1$help" - exit 1 ;; - - *local*) - # First pass through any local machine types. - echo "$1" - exit ;; - - * ) - break ;; - esac -done - -case $# in - 0) echo "$me: missing argument$help" >&2 - exit 1;; - 1) ;; - *) echo "$me: too many arguments$help" >&2 - exit 1;; -esac - -# Split fields of configuration type -IFS="-" read -r field1 field2 field3 field4 <&2 - exit 1 - ;; - *-*-*-*) - basic_machine=$field1-$field2 - os=$field3-$field4 - ;; - *-*-*) - # Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two - # parts - maybe_os=$field2-$field3 - case $maybe_os in - nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc \ - | linux-newlib* | linux-musl* | linux-uclibc* | uclinux-uclibc* \ - | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \ - | netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \ - | storm-chaos* | os2-emx* | rtmk-nova*) - basic_machine=$field1 - os=$maybe_os - ;; - android-linux) - basic_machine=$field1-unknown - os=linux-android - ;; - *) - basic_machine=$field1-$field2 - os=$field3 - ;; - esac - ;; - *-*) - # A lone config we happen to match not fitting any patern - case $field1-$field2 in - decstation-3100) - basic_machine=mips-dec - os= - ;; - *-*) - # Second component is usually, but not always the OS - case $field2 in - # Prevent following clause from handling this valid os - sun*os*) - basic_machine=$field1 - os=$field2 - ;; - # Manufacturers - dec* | mips* | sequent* | encore* | pc533* | sgi* | sony* \ - | att* | 7300* | 3300* | delta* | motorola* | sun[234]* \ - | unicom* | ibm* | next | hp | isi* | apollo | altos* \ - | convergent* | ncr* | news | 32* | 3600* | 3100* \ - | hitachi* | c[123]* | convex* | sun | crds | omron* | dg \ - | ultra | tti* | harris | dolphin | highlevel | gould \ - | cbm | ns | masscomp | apple | axis | knuth | cray \ - | microblaze* | sim | cisco \ - | oki | wec | wrs | winbond) - basic_machine=$field1-$field2 - os= - ;; - *) - basic_machine=$field1 - os=$field2 - ;; - esac - ;; - esac - ;; - *) - # Convert single-component short-hands not valid as part of - # multi-component configurations. - case $field1 in - 386bsd) - basic_machine=i386-pc - os=bsd - ;; - a29khif) - basic_machine=a29k-amd - os=udi - ;; - adobe68k) - basic_machine=m68010-adobe - os=scout - ;; - alliant) - basic_machine=fx80-alliant - os= - ;; - altos | altos3068) - basic_machine=m68k-altos - os= - ;; - am29k) - basic_machine=a29k-none - os=bsd - ;; - amdahl) - basic_machine=580-amdahl - os=sysv - ;; - amiga) - basic_machine=m68k-unknown - os= - ;; - amigaos | amigados) - basic_machine=m68k-unknown - os=amigaos - ;; - amigaunix | amix) - basic_machine=m68k-unknown - os=sysv4 - ;; - apollo68) - basic_machine=m68k-apollo - os=sysv - ;; - apollo68bsd) - basic_machine=m68k-apollo - os=bsd - ;; - aros) - basic_machine=i386-pc - os=aros - ;; - aux) - basic_machine=m68k-apple - os=aux - ;; - balance) - basic_machine=ns32k-sequent - os=dynix - ;; - blackfin) - basic_machine=bfin-unknown - os=linux - ;; - cegcc) - basic_machine=arm-unknown - os=cegcc - ;; - convex-c1) - basic_machine=c1-convex - os=bsd - ;; - convex-c2) - basic_machine=c2-convex - os=bsd - ;; - convex-c32) - basic_machine=c32-convex - os=bsd - ;; - convex-c34) - basic_machine=c34-convex - os=bsd - ;; - convex-c38) - basic_machine=c38-convex - os=bsd - ;; - cray) - basic_machine=j90-cray - os=unicos - ;; - crds | unos) - basic_machine=m68k-crds - os= - ;; - da30) - basic_machine=m68k-da30 - os= - ;; - decstation | pmax | pmin | dec3100 | decstatn) - basic_machine=mips-dec - os= - ;; - delta88) - basic_machine=m88k-motorola - os=sysv3 - ;; - dicos) - basic_machine=i686-pc - os=dicos - ;; - djgpp) - basic_machine=i586-pc - os=msdosdjgpp - ;; - ebmon29k) - basic_machine=a29k-amd - os=ebmon - ;; - es1800 | OSE68k | ose68k | ose | OSE) - basic_machine=m68k-ericsson - os=ose - ;; - gmicro) - basic_machine=tron-gmicro - os=sysv - ;; - go32) - basic_machine=i386-pc - os=go32 - ;; - h8300hms) - basic_machine=h8300-hitachi - os=hms - ;; - h8300xray) - basic_machine=h8300-hitachi - os=xray - ;; - h8500hms) - basic_machine=h8500-hitachi - os=hms - ;; - harris) - basic_machine=m88k-harris - os=sysv3 - ;; - hp300) - basic_machine=m68k-hp - ;; - hp300bsd) - basic_machine=m68k-hp - os=bsd - ;; - hp300hpux) - basic_machine=m68k-hp - os=hpux - ;; - hppaosf) - basic_machine=hppa1.1-hp - os=osf - ;; - hppro) - basic_machine=hppa1.1-hp - os=proelf - ;; - i386mach) - basic_machine=i386-mach - os=mach - ;; - vsta) - basic_machine=i386-pc - os=vsta - ;; - isi68 | isi) - basic_machine=m68k-isi - os=sysv - ;; - m68knommu) - basic_machine=m68k-unknown - os=linux - ;; - magnum | m3230) - basic_machine=mips-mips - os=sysv - ;; - merlin) - basic_machine=ns32k-utek - os=sysv - ;; - mingw64) - basic_machine=x86_64-pc - os=mingw64 - ;; - mingw32) - basic_machine=i686-pc - os=mingw32 - ;; - mingw32ce) - basic_machine=arm-unknown - os=mingw32ce - ;; - monitor) - basic_machine=m68k-rom68k - os=coff - ;; - morphos) - basic_machine=powerpc-unknown - os=morphos - ;; - moxiebox) - basic_machine=moxie-unknown - os=moxiebox - ;; - msdos) - basic_machine=i386-pc - os=msdos - ;; - msys) - basic_machine=i686-pc - os=msys - ;; - mvs) - basic_machine=i370-ibm - os=mvs - ;; - nacl) - basic_machine=le32-unknown - os=nacl - ;; - ncr3000) - basic_machine=i486-ncr - os=sysv4 - ;; - netbsd386) - basic_machine=i386-pc - os=netbsd - ;; - netwinder) - basic_machine=armv4l-rebel - os=linux - ;; - news | news700 | news800 | news900) - basic_machine=m68k-sony - os=newsos - ;; - news1000) - basic_machine=m68030-sony - os=newsos - ;; - necv70) - basic_machine=v70-nec - os=sysv - ;; - nh3000) - basic_machine=m68k-harris - os=cxux - ;; - nh[45]000) - basic_machine=m88k-harris - os=cxux - ;; - nindy960) - basic_machine=i960-intel - os=nindy - ;; - mon960) - basic_machine=i960-intel - os=mon960 - ;; - nonstopux) - basic_machine=mips-compaq - os=nonstopux - ;; - os400) - basic_machine=powerpc-ibm - os=os400 - ;; - OSE68000 | ose68000) - basic_machine=m68000-ericsson - os=ose - ;; - os68k) - basic_machine=m68k-none - os=os68k - ;; - paragon) - basic_machine=i860-intel - os=osf - ;; - parisc) - basic_machine=hppa-unknown - os=linux - ;; - pw32) - basic_machine=i586-unknown - os=pw32 - ;; - rdos | rdos64) - basic_machine=x86_64-pc - os=rdos - ;; - rdos32) - basic_machine=i386-pc - os=rdos - ;; - rom68k) - basic_machine=m68k-rom68k - os=coff - ;; - sa29200) - basic_machine=a29k-amd - os=udi - ;; - sei) - basic_machine=mips-sei - os=seiux - ;; - sequent) - basic_machine=i386-sequent - os= - ;; - sps7) - basic_machine=m68k-bull - os=sysv2 - ;; - st2000) - basic_machine=m68k-tandem - os= - ;; - stratus) - basic_machine=i860-stratus - os=sysv4 - ;; - sun2) - basic_machine=m68000-sun - os= - ;; - sun2os3) - basic_machine=m68000-sun - os=sunos3 - ;; - sun2os4) - basic_machine=m68000-sun - os=sunos4 - ;; - sun3) - basic_machine=m68k-sun - os= - ;; - sun3os3) - basic_machine=m68k-sun - os=sunos3 - ;; - sun3os4) - basic_machine=m68k-sun - os=sunos4 - ;; - sun4) - basic_machine=sparc-sun - os= - ;; - sun4os3) - basic_machine=sparc-sun - os=sunos3 - ;; - sun4os4) - basic_machine=sparc-sun - os=sunos4 - ;; - sun4sol2) - basic_machine=sparc-sun - os=solaris2 - ;; - sun386 | sun386i | roadrunner) - basic_machine=i386-sun - os= - ;; - sv1) - basic_machine=sv1-cray - os=unicos - ;; - symmetry) - basic_machine=i386-sequent - os=dynix - ;; - t3e) - basic_machine=alphaev5-cray - os=unicos - ;; - t90) - basic_machine=t90-cray - os=unicos - ;; - toad1) - basic_machine=pdp10-xkl - os=tops20 - ;; - tpf) - basic_machine=s390x-ibm - os=tpf - ;; - udi29k) - basic_machine=a29k-amd - os=udi - ;; - ultra3) - basic_machine=a29k-nyu - os=sym1 - ;; - v810 | necv810) - basic_machine=v810-nec - os=none - ;; - vaxv) - basic_machine=vax-dec - os=sysv - ;; - vms) - basic_machine=vax-dec - os=vms - ;; - vxworks960) - basic_machine=i960-wrs - os=vxworks - ;; - vxworks68) - basic_machine=m68k-wrs - os=vxworks - ;; - vxworks29k) - basic_machine=a29k-wrs - os=vxworks - ;; - xbox) - basic_machine=i686-pc - os=mingw32 - ;; - ymp) - basic_machine=ymp-cray - os=unicos - ;; - *) - basic_machine=$1 - os= - ;; - esac - ;; -esac - -# Decode 1-component or ad-hoc basic machines -case $basic_machine in - # Here we handle the default manufacturer of certain CPU types. It is in - # some cases the only manufacturer, in others, it is the most popular. - w89k) - cpu=hppa1.1 - vendor=winbond - ;; - op50n) - cpu=hppa1.1 - vendor=oki - ;; - op60c) - cpu=hppa1.1 - vendor=oki - ;; - ibm*) - cpu=i370 - vendor=ibm - ;; - orion105) - cpu=clipper - vendor=highlevel - ;; - mac | mpw | mac-mpw) - cpu=m68k - vendor=apple - ;; - pmac | pmac-mpw) - cpu=powerpc - vendor=apple - ;; - - # Recognize the various machine names and aliases which stand - # for a CPU type and a company and sometimes even an OS. - 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) - cpu=m68000 - vendor=att - ;; - 3b*) - cpu=we32k - vendor=att - ;; - bluegene*) - cpu=powerpc - vendor=ibm - os=cnk - ;; - decsystem10* | dec10*) - cpu=pdp10 - vendor=dec - os=tops10 - ;; - decsystem20* | dec20*) - cpu=pdp10 - vendor=dec - os=tops20 - ;; - delta | 3300 | motorola-3300 | motorola-delta \ - | 3300-motorola | delta-motorola) - cpu=m68k - vendor=motorola - ;; - dpx2*) - cpu=m68k - vendor=bull - os=sysv3 - ;; - encore | umax | mmax) - cpu=ns32k - vendor=encore - ;; - elxsi) - cpu=elxsi - vendor=elxsi - os=${os:-bsd} - ;; - fx2800) - cpu=i860 - vendor=alliant - ;; - genix) - cpu=ns32k - vendor=ns - ;; - h3050r* | hiux*) - cpu=hppa1.1 - vendor=hitachi - os=hiuxwe2 - ;; - hp3k9[0-9][0-9] | hp9[0-9][0-9]) - cpu=hppa1.0 - vendor=hp - ;; - hp9k2[0-9][0-9] | hp9k31[0-9]) - cpu=m68000 - vendor=hp - ;; - hp9k3[2-9][0-9]) - cpu=m68k - vendor=hp - ;; - hp9k6[0-9][0-9] | hp6[0-9][0-9]) - cpu=hppa1.0 - vendor=hp - ;; - hp9k7[0-79][0-9] | hp7[0-79][0-9]) - cpu=hppa1.1 - vendor=hp - ;; - hp9k78[0-9] | hp78[0-9]) - # FIXME: really hppa2.0-hp - cpu=hppa1.1 - vendor=hp - ;; - hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) - # FIXME: really hppa2.0-hp - cpu=hppa1.1 - vendor=hp - ;; - hp9k8[0-9][13679] | hp8[0-9][13679]) - cpu=hppa1.1 - vendor=hp - ;; - hp9k8[0-9][0-9] | hp8[0-9][0-9]) - cpu=hppa1.0 - vendor=hp - ;; - i*86v32) - cpu=`echo "$1" | sed -e 's/86.*/86/'` - vendor=pc - os=sysv32 - ;; - i*86v4*) - cpu=`echo "$1" | sed -e 's/86.*/86/'` - vendor=pc - os=sysv4 - ;; - i*86v) - cpu=`echo "$1" | sed -e 's/86.*/86/'` - vendor=pc - os=sysv - ;; - i*86sol2) - cpu=`echo "$1" | sed -e 's/86.*/86/'` - vendor=pc - os=solaris2 - ;; - j90 | j90-cray) - cpu=j90 - vendor=cray - os=${os:-unicos} - ;; - iris | iris4d) - cpu=mips - vendor=sgi - case $os in - irix*) - ;; - *) - os=irix4 - ;; - esac - ;; - miniframe) - cpu=m68000 - vendor=convergent - ;; - *mint | mint[0-9]* | *MiNT | *MiNT[0-9]*) - cpu=m68k - vendor=atari - os=mint - ;; - news-3600 | risc-news) - cpu=mips - vendor=sony - os=newsos - ;; - next | m*-next) - cpu=m68k - vendor=next - case $os in - nextstep* ) - ;; - ns2*) - os=nextstep2 - ;; - *) - os=nextstep3 - ;; - esac - ;; - np1) - cpu=np1 - vendor=gould - ;; - op50n-* | op60c-*) - cpu=hppa1.1 - vendor=oki - os=proelf - ;; - pa-hitachi) - cpu=hppa1.1 - vendor=hitachi - os=hiuxwe2 - ;; - pbd) - cpu=sparc - vendor=tti - ;; - pbb) - cpu=m68k - vendor=tti - ;; - pc532) - cpu=ns32k - vendor=pc532 - ;; - pn) - cpu=pn - vendor=gould - ;; - power) - cpu=power - vendor=ibm - ;; - ps2) - cpu=i386 - vendor=ibm - ;; - rm[46]00) - cpu=mips - vendor=siemens - ;; - rtpc | rtpc-*) - cpu=romp - vendor=ibm - ;; - sde) - cpu=mipsisa32 - vendor=sde - os=${os:-elf} - ;; - simso-wrs) - cpu=sparclite - vendor=wrs - os=vxworks - ;; - tower | tower-32) - cpu=m68k - vendor=ncr - ;; - vpp*|vx|vx-*) - cpu=f301 - vendor=fujitsu - ;; - w65) - cpu=w65 - vendor=wdc - ;; - w89k-*) - cpu=hppa1.1 - vendor=winbond - os=proelf - ;; - none) - cpu=none - vendor=none - ;; - leon|leon[3-9]) - cpu=sparc - vendor=$basic_machine - ;; - leon-*|leon[3-9]-*) - cpu=sparc - vendor=`echo "$basic_machine" | sed 's/-.*//'` - ;; - - *-*) - IFS="-" read -r cpu vendor <&2 - exit 1 - ;; - esac - ;; -esac - -# Here we canonicalize certain aliases for manufacturers. -case $vendor in - digital*) - vendor=dec - ;; - commodore*) - vendor=cbm - ;; - *) - ;; -esac - -# Decode manufacturer-specific aliases for certain operating systems. - -if [ x$os != x ] -then -case $os in - # First match some system type aliases that might get confused - # with valid system types. - # solaris* is a basic system type, with this one exception. - auroraux) - os=auroraux - ;; - bluegene*) - os=cnk - ;; - solaris1 | solaris1.*) - os=`echo $os | sed -e 's|solaris1|sunos4|'` - ;; - solaris) - os=solaris2 - ;; - unixware*) - os=sysv4.2uw - ;; - gnu/linux*) - os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` - ;; - # es1800 is here to avoid being matched by es* (a different OS) - es1800*) - os=ose - ;; - # Some version numbers need modification - chorusos*) - os=chorusos - ;; - isc) - os=isc2.2 - ;; - sco6) - os=sco5v6 - ;; - sco5) - os=sco3.2v5 - ;; - sco4) - os=sco3.2v4 - ;; - sco3.2.[4-9]*) - os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` - ;; - sco3.2v[4-9]* | sco5v6*) - # Don't forget version if it is 3.2v4 or newer. - ;; - scout) - # Don't match below - ;; - sco*) - os=sco3.2v2 - ;; - psos*) - os=psos - ;; - # Now accept the basic system types. - # The portable systems comes first. - # Each alternative MUST end in a * to match a version number. - # sysv* is not here because it comes later, after sysvr4. - gnu* | bsd* | mach* | minix* | genix* | ultrix* | irix* \ - | *vms* | esix* | aix* | cnk* | sunos | sunos[34]*\ - | hpux* | unos* | osf* | luna* | dgux* | auroraux* | solaris* \ - | sym* | kopensolaris* | plan9* \ - | amigaos* | amigados* | msdos* | newsos* | unicos* | aof* \ - | aos* | aros* | cloudabi* | sortix* \ - | nindy* | vxsim* | vxworks* | ebmon* | hms* | mvs* \ - | clix* | riscos* | uniplus* | iris* | isc* | rtu* | xenix* \ - | knetbsd* | mirbsd* | netbsd* \ - | bitrig* | openbsd* | solidbsd* | libertybsd* \ - | ekkobsd* | kfreebsd* | freebsd* | riscix* | lynxos* \ - | bosx* | nextstep* | cxux* | aout* | elf* | oabi* \ - | ptx* | coff* | ecoff* | winnt* | domain* | vsta* \ - | udi* | eabi* | lites* | ieee* | go32* | aux* | hcos* \ - | chorusrdb* | cegcc* | glidix* \ - | cygwin* | msys* | pe* | moss* | proelf* | rtems* \ - | midipix* | mingw32* | mingw64* | linux-gnu* | linux-android* \ - | linux-newlib* | linux-musl* | linux-uclibc* \ - | uxpv* | beos* | mpeix* | udk* | moxiebox* \ - | interix* | uwin* | mks* | rhapsody* | darwin* \ - | openstep* | oskit* | conix* | pw32* | nonstopux* \ - | storm-chaos* | tops10* | tenex* | tops20* | its* \ - | os2* | vos* | palmos* | uclinux* | nucleus* \ - | morphos* | superux* | rtmk* | windiss* \ - | powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \ - | skyos* | haiku* | rdos* | toppers* | drops* | es* \ - | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \ - | midnightbsd*) - # Remember, each alternative MUST END IN *, to match a version number. - ;; - qnx*) - case $cpu in - x86 | i*86) - ;; - *) - os=nto-$os - ;; - esac - ;; - hiux*) - os=hiuxwe2 - ;; - nto-qnx*) - ;; - nto*) - os=`echo $os | sed -e 's|nto|nto-qnx|'` - ;; - sim | xray | os68k* | v88r* \ - | windows* | osx | abug | netware* | os9* \ - | macos* | mpw* | magic* | mmixware* | mon960* | lnews*) - ;; - linux-dietlibc) - os=linux-dietlibc - ;; - linux*) - os=`echo $os | sed -e 's|linux|linux-gnu|'` - ;; - lynx*178) - os=lynxos178 - ;; - lynx*5) - os=lynxos5 - ;; - lynx*) - os=lynxos - ;; - mac*) - os=`echo "$os" | sed -e 's|mac|macos|'` - ;; - opened*) - os=openedition - ;; - os400*) - os=os400 - ;; - sunos5*) - os=`echo "$os" | sed -e 's|sunos5|solaris2|'` - ;; - sunos6*) - os=`echo "$os" | sed -e 's|sunos6|solaris3|'` - ;; - wince*) - os=wince - ;; - utek*) - os=bsd - ;; - dynix*) - os=bsd - ;; - acis*) - os=aos - ;; - atheos*) - os=atheos - ;; - syllable*) - os=syllable - ;; - 386bsd) - os=bsd - ;; - ctix* | uts*) - os=sysv - ;; - nova*) - os=rtmk-nova - ;; - ns2) - os=nextstep2 - ;; - nsk*) - os=nsk - ;; - # Preserve the version number of sinix5. - sinix5.*) - os=`echo $os | sed -e 's|sinix|sysv|'` - ;; - sinix*) - os=sysv4 - ;; - tpf*) - os=tpf - ;; - triton*) - os=sysv3 - ;; - oss*) - os=sysv3 - ;; - svr4*) - os=sysv4 - ;; - svr3) - os=sysv3 - ;; - sysvr4) - os=sysv4 - ;; - # This must come after sysvr4. - sysv*) - ;; - ose*) - os=ose - ;; - *mint | mint[0-9]* | *MiNT | MiNT[0-9]*) - os=mint - ;; - zvmoe) - os=zvmoe - ;; - dicos*) - os=dicos - ;; - pikeos*) - # Until real need of OS specific support for - # particular features comes up, bare metal - # configurations are quite functional. - case $cpu in - arm*) - os=eabi - ;; - *) - os=elf - ;; - esac - ;; - nacl*) - ;; - ios) - ;; - none) - ;; - *-eabi) - ;; - *) - echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2 - exit 1 - ;; -esac -else - -# Here we handle the default operating systems that come with various machines. -# The value should be what the vendor currently ships out the door with their -# machine or put another way, the most popular os provided with the machine. - -# Note that if you're going to try to match "-MANUFACTURER" here (say, -# "-sun"), then you have to tell the case statement up towards the top -# that MANUFACTURER isn't an operating system. Otherwise, code above -# will signal an error saying that MANUFACTURER isn't an operating -# system, and we'll never get to this point. - -case $cpu-$vendor in - score-*) - os=elf - ;; - spu-*) - os=elf - ;; - *-acorn) - os=riscix1.2 - ;; - arm*-rebel) - os=linux - ;; - arm*-semi) - os=aout - ;; - c4x-* | tic4x-*) - os=coff - ;; - c8051-*) - os=elf - ;; - clipper-intergraph) - os=clix - ;; - hexagon-*) - os=elf - ;; - tic54x-*) - os=coff - ;; - tic55x-*) - os=coff - ;; - tic6x-*) - os=coff - ;; - # This must come before the *-dec entry. - pdp10-*) - os=tops20 - ;; - pdp11-*) - os=none - ;; - *-dec | vax-*) - os=ultrix4.2 - ;; - m68*-apollo) - os=domain - ;; - i386-sun) - os=sunos4.0.2 - ;; - m68000-sun) - os=sunos3 - ;; - m68*-cisco) - os=aout - ;; - mep-*) - os=elf - ;; - mips*-cisco) - os=elf - ;; - mips*-*) - os=elf - ;; - or32-*) - os=coff - ;; - *-tti) # must be before sparc entry or we get the wrong os. - os=sysv3 - ;; - sparc-* | *-sun) - os=sunos4.1.1 - ;; - pru-*) - os=elf - ;; - *-be) - os=beos - ;; - *-ibm) - os=aix - ;; - *-knuth) - os=mmixware - ;; - *-wec) - os=proelf - ;; - *-winbond) - os=proelf - ;; - *-oki) - os=proelf - ;; - *-hp) - os=hpux - ;; - *-hitachi) - os=hiux - ;; - i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) - os=sysv - ;; - *-cbm) - os=amigaos - ;; - *-dg) - os=dgux - ;; - *-dolphin) - os=sysv3 - ;; - m68k-ccur) - os=rtu - ;; - m88k-omron*) - os=luna - ;; - *-next) - os=nextstep - ;; - *-sequent) - os=ptx - ;; - *-crds) - os=unos - ;; - *-ns) - os=genix - ;; - i370-*) - os=mvs - ;; - *-gould) - os=sysv - ;; - *-highlevel) - os=bsd - ;; - *-encore) - os=bsd - ;; - *-sgi) - os=irix - ;; - *-siemens) - os=sysv4 - ;; - *-masscomp) - os=rtu - ;; - f30[01]-fujitsu | f700-fujitsu) - os=uxpv - ;; - *-rom68k) - os=coff - ;; - *-*bug) - os=coff - ;; - *-apple) - os=macos - ;; - *-atari*) - os=mint - ;; - *-wrs) - os=vxworks - ;; - *) - os=none - ;; -esac -fi - -# Here we handle the case where we know the os, and the CPU type, but not the -# manufacturer. We pick the logical manufacturer. -case $vendor in - unknown) - case $os in - riscix*) - vendor=acorn - ;; - sunos*) - vendor=sun - ;; - cnk*|-aix*) - vendor=ibm - ;; - beos*) - vendor=be - ;; - hpux*) - vendor=hp - ;; - mpeix*) - vendor=hp - ;; - hiux*) - vendor=hitachi - ;; - unos*) - vendor=crds - ;; - dgux*) - vendor=dg - ;; - luna*) - vendor=omron - ;; - genix*) - vendor=ns - ;; - clix*) - vendor=intergraph - ;; - mvs* | opened*) - vendor=ibm - ;; - os400*) - vendor=ibm - ;; - ptx*) - vendor=sequent - ;; - tpf*) - vendor=ibm - ;; - vxsim* | vxworks* | windiss*) - vendor=wrs - ;; - aux*) - vendor=apple - ;; - hms*) - vendor=hitachi - ;; - mpw* | macos*) - vendor=apple - ;; - *mint | mint[0-9]* | *MiNT | MiNT[0-9]*) - vendor=atari - ;; - vos*) - vendor=stratus - ;; - esac - ;; -esac - -echo "$cpu-$vendor-$os" -exit - -# Local variables: -# eval: (add-hook 'before-save-hook 'time-stamp) -# time-stamp-start: "timestamp='" -# time-stamp-format: "%:y-%02m-%02d" -# time-stamp-end: "'" -# End: diff -Nru mate-utils-1.26.0/configure mate-utils-1.26.1/configure --- mate-utils-1.26.0/configure 2021-08-05 19:45:27.000000000 +0000 +++ mate-utils-1.26.1/configure 1970-01-01 00:00:00.000000000 +0000 @@ -1,26390 +0,0 @@ -#! /bin/sh -# Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for mate-utils 1.26.0. -# -# Report bugs to . -# -# -# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. -# -# -# This configure script is free software; the Free Software Foundation -# gives unlimited permission to copy, distribute and modify it. -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in #( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -as_myself= -case $0 in #(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -# Use a proper internal environment variable to ensure we don't fall - # into an infinite loop, continuously re-executing ourselves. - if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then - _as_can_reexec=no; export _as_can_reexec; - # We cannot yet assume a decent shell, so we have to provide a -# neutralization value for shells without unset; and this also -# works around shells that cannot unset nonexistent variables. -# Preserve -v and -x to the replacement shell. -BASH_ENV=/dev/null -ENV=/dev/null -(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -case $- in # (((( - *v*x* | *x*v* ) as_opts=-vx ;; - *v* ) as_opts=-v ;; - *x* ) as_opts=-x ;; - * ) as_opts= ;; -esac -exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} -# Admittedly, this is quite paranoid, since all the known shells bail -# out after a failed `exec'. -$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -as_fn_exit 255 - fi - # We don't want this to propagate to other subprocesses. - { _as_can_reexec=; unset _as_can_reexec;} -if test "x$CONFIG_SHELL" = x; then - as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which - # is contrary to our usage. Disable this feature. - alias -g '\${1+\"\$@\"}'='\"\$@\"' - setopt NO_GLOB_SUBST -else - case \`(set -o) 2>/dev/null\` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi -" - as_required="as_fn_return () { (exit \$1); } -as_fn_success () { as_fn_return 0; } -as_fn_failure () { as_fn_return 1; } -as_fn_ret_success () { return 0; } -as_fn_ret_failure () { return 1; } - -exitcode=0 -as_fn_success || { exitcode=1; echo as_fn_success failed.; } -as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } -as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } -as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } -if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : - -else - exitcode=1; echo positional parameters were not saved. -fi -test x\$exitcode = x0 || exit 1 -test -x / || exit 1" - as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO - as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO - eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && - test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 -test \$(( 1 + 1 )) = 2 || exit 1 - - test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( - ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' - ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO - ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO - PATH=/empty FPATH=/empty; export PATH FPATH - test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ - || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1" - if (eval "$as_required") 2>/dev/null; then : - as_have_required=yes -else - as_have_required=no -fi - if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : - -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -as_found=false -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - as_found=: - case $as_dir in #( - /*) - for as_base in sh bash ksh sh5; do - # Try only shells that exist, to save several forks. - as_shell=$as_dir/$as_base - if { test -f "$as_shell" || test -f "$as_shell.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : - CONFIG_SHELL=$as_shell as_have_required=yes - if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : - break 2 -fi -fi - done;; - esac - as_found=false -done -$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : - CONFIG_SHELL=$SHELL as_have_required=yes -fi; } -IFS=$as_save_IFS - - - if test "x$CONFIG_SHELL" != x; then : - export CONFIG_SHELL - # We cannot yet assume a decent shell, so we have to provide a -# neutralization value for shells without unset; and this also -# works around shells that cannot unset nonexistent variables. -# Preserve -v and -x to the replacement shell. -BASH_ENV=/dev/null -ENV=/dev/null -(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -case $- in # (((( - *v*x* | *x*v* ) as_opts=-vx ;; - *v* ) as_opts=-v ;; - *x* ) as_opts=-x ;; - * ) as_opts= ;; -esac -exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} -# Admittedly, this is quite paranoid, since all the known shells bail -# out after a failed `exec'. -$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -exit 255 -fi - - if test x$as_have_required = xno; then : - $as_echo "$0: This script requires a shell more modern than all" - $as_echo "$0: the shells that I found on your system." - if test x${ZSH_VERSION+set} = xset ; then - $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" - $as_echo "$0: be upgraded to zsh 4.3.4 or later." - else - $as_echo "$0: Please tell bug-autoconf@gnu.org and -$0: https://mate-desktop.org/ about your system, including -$0: any error possibly output before this message. Then -$0: install a modern shell, or manually run the script -$0: under such a shell if you do have one." - fi - exit 1 -fi -fi -fi -SHELL=${CONFIG_SHELL-/bin/sh} -export SHELL -# Unset more variables known to interfere with behavior of common tools. -CLICOLOR_FORCE= GREP_OPTIONS= -unset CLICOLOR_FORCE GREP_OPTIONS - -## --------------------- ## -## M4sh Shell Functions. ## -## --------------------- ## -# as_fn_unset VAR -# --------------- -# Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset - -# as_fn_set_status STATUS -# ----------------------- -# Set $? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} # as_fn_set_status - -# as_fn_exit STATUS -# ----------------- -# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} # as_fn_exit - -# as_fn_mkdir_p -# ------------- -# Create "$as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" - - -} # as_fn_mkdir_p - -# as_fn_executable_p FILE -# ----------------------- -# Test if FILE is an executable regular file. -as_fn_executable_p () -{ - test -f "$1" && test -x "$1" -} # as_fn_executable_p -# as_fn_append VAR VALUE -# ---------------------- -# Append the text in VALUE to the end of the definition contained in VAR. Take -# advantage of any shell optimizations that allow amortized linear growth over -# repeated appends, instead of the typical quadratic growth present in naive -# implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -# as_fn_arith ARG... -# ------------------ -# Perform arithmetic evaluation on the ARGs, and store the result in the -# global $as_val. Take advantage of shells that can avoid forks. The arguments -# must be portable across $(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -# as_fn_error STATUS ERROR [LINENO LOG_FD] -# ---------------------------------------- -# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are -# provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with STATUS, using 1 if that was 0. -as_fn_error () -{ - as_status=$1; test $as_status -eq 0 && as_status=1 - if test "$4"; then - as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 - fi - $as_echo "$as_me: error: $2" >&2 - as_fn_exit $as_status -} # as_fn_error - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - - - as_lineno_1=$LINENO as_lineno_1a=$LINENO - as_lineno_2=$LINENO as_lineno_2a=$LINENO - eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && - test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { - # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) - sed -n ' - p - /[$]LINENO/= - ' <$as_myself | - sed ' - s/[$]LINENO.*/&-/ - t lineno - b - :lineno - N - :loop - s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ - t loop - s/-\n.*// - ' >$as_me.lineno && - chmod +x "$as_me.lineno" || - { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } - - # If we had to re-execute with $CONFIG_SHELL, we're ensured to have - # already done that, so ensure we don't try to do so again and fall - # in an infinite loop. This has already happened in practice. - _as_can_reexec=no; export _as_can_reexec - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensitive to this). - . "./$as_me.lineno" - # Exit status is that of the last command. - exit -} - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in #((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -pR'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -pR' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -pR' - fi -else - as_ln_s='cp -pR' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -as_test_x='test -x' -as_executable_p=as_fn_executable_p - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - -SHELL=${CONFIG_SHELL-/bin/sh} - - -test -n "$DJDIR" || exec 7<&0 &1 - -# Name of the host. -# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, -# so uname gets run too. -ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` - -# -# Initializations. -# -ac_default_prefix=/usr/local -ac_clean_files= -ac_config_libobj_dir=. -LIBOBJS= -cross_compiling=no -subdirs= -MFLAGS= -MAKEFLAGS= - -# Identity of this package. -PACKAGE_NAME='mate-utils' -PACKAGE_TARNAME='mate-utils' -PACKAGE_VERSION='1.26.0' -PACKAGE_STRING='mate-utils 1.26.0' -PACKAGE_BUGREPORT='https://mate-desktop.org/' -PACKAGE_URL='' - -# Factoring default headers for most tests. -ac_includes_default="\ -#include -#ifdef HAVE_SYS_TYPES_H -# include -#endif -#ifdef HAVE_SYS_STAT_H -# include -#endif -#ifdef STDC_HEADERS -# include -# include -#else -# ifdef HAVE_STDLIB_H -# include -# endif -#endif -#ifdef HAVE_STRING_H -# if !defined STDC_HEADERS && defined HAVE_MEMORY_H -# include -# endif -# include -#endif -#ifdef HAVE_STRINGS_H -# include -#endif -#ifdef HAVE_INTTYPES_H -# include -#endif -#ifdef HAVE_STDINT_H -# include -#endif -#ifdef HAVE_UNISTD_H -# include -#endif" - -gt_needs= -ac_subst_vars='am__EXEEXT_FALSE -am__EXEEXT_TRUE -LTLIBOBJS -LIBOBJS -YELP_HELP_RULES -ITSTOOL -HELP_DIR -YELP_LC_DIST -YELP_LC_MEDIA_LINKS -GTK_DOC_USE_REBASE_FALSE -GTK_DOC_USE_REBASE_TRUE -GTK_DOC_USE_LIBTOOL_FALSE -GTK_DOC_USE_LIBTOOL_TRUE -GTK_DOC_BUILD_PDF_FALSE -GTK_DOC_BUILD_PDF_TRUE -GTK_DOC_BUILD_HTML_FALSE -GTK_DOC_BUILD_HTML_TRUE -ENABLE_GTK_DOC_FALSE -ENABLE_GTK_DOC_TRUE -HAVE_GTK_DOC_FALSE -HAVE_GTK_DOC_TRUE -GTKDOC_DEPS_LIBS -GTKDOC_DEPS_CFLAGS -HTML_DIR -GTKDOC_MKPDF -GTKDOC_REBASE -GTKDOC_CHECK_PATH -GTKDOC_CHECK -GSETTINGS_RULES -GLIB_COMPILE_SCHEMAS -gsettingsschemadir -GSETTINGS_DISABLE_SCHEMAS_COMPILE -GETTEXT_PACKAGE -USE_NLS_FALSE -USE_NLS_TRUE -POSUB -LTLIBINTL -LIBINTL -INTLLIBS -LTLIBICONV -LIBICONV -INTL_MACOSX_LIBS -XGETTEXT_EXTRA_OPTIONS -MSGMERGE_FOR_MSGFMT_OPTION -MSGMERGE -XGETTEXT_015 -XGETTEXT -GMSGFMT_015 -GMSGFMT -MSGFMT -GETTEXT_MACRO_VERSION -USE_NLS -Z_LIBS -GREP_COMMAND -GDICT_DEBUG_CFLAGS -LIBCANBERRA_GTK_LIBS -LIBCANBERRA_GTK_CFLAGS -LIBGTOP_LIBS -LIBGTOP_CFLAGS -BUILD_GDICT_APPLET_FALSE -BUILD_GDICT_APPLET_TRUE -APPLET_LIBS -APPLET_CFLAGS -XSHAPE_LIBS -XSHAPE_CFLAGS -GDICT_VERSION -GDICT_MICRO_VERSION -GDICT_MINOR_VERSION -GDICT_MAJOR_VERSION -LIBGDICT_LIBS -LIBGDICT_CFLAGS -LIBEGG_LIBS -LIBEGG_CFLAGS -BUILD_DISK_IMAGE_MOUNTER_FALSE -BUILD_DISK_IMAGE_MOUNTER_TRUE -UDISKS2_LIBS -UDISKS2_CFLAGS -GTK_LIBS -GTK_CFLAGS -GIO_UNIX_LIBS -GIO_UNIX_CFLAGS -GIO_LIBS -GIO_CFLAGS -GTHREAD_LIBS -GTHREAD_CFLAGS -GLIB_LIBS -GLIB_CFLAGS -PKG_CONFIG_LIBDIR -PKG_CONFIG_PATH -PKG_CONFIG -GTK_REQUIRED -LIBGDICT_LT_VERSION -X_EXTRA_LIBS -X_LIBS -X_PRE_LIBS -X_CFLAGS -XMKMF -XMLLINT -GLIB_COMPILE_RESOURCES -HAVE_INKSCAPE_FALSE -HAVE_INKSCAPE_TRUE -INKSCAPE -HAVE_RSVG_CONVERT_FALSE -HAVE_RSVG_CONVERT_TRUE -RSVG_CONVERT -GLIB_MKENUMS -GLIB_GENMARSHAL -CXXCPP -LT_SYS_LIBRARY_PATH -OTOOL64 -OTOOL -LIPO -NMEDIT -DSYMUTIL -MANIFEST_TOOL -RANLIB -ac_ct_AR -AR -DLLTOOL -OBJDUMP -NM -ac_ct_DUMPBIN -DUMPBIN -LD -FGREP -SED -host_os -host_vendor -host_cpu -host -build_os -build_vendor -build_cpu -build -LIBTOOL -LN_S -EGREP -GREP -CPP -am__fastdepCXX_FALSE -am__fastdepCXX_TRUE -CXXDEPMODE -ac_ct_CXX -CXXFLAGS -CXX -WARN_CFLAGS -am__fastdepCC_FALSE -am__fastdepCC_TRUE -CCDEPMODE -am__nodep -AMDEPBACKSLASH -AMDEP_FALSE -AMDEP_TRUE -am__include -DEPDIR -OBJEXT -EXEEXT -ac_ct_CC -CPPFLAGS -LDFLAGS -CFLAGS -CC -ACLOCAL_AMFLAGS -AM_BACKSLASH -AM_DEFAULT_VERBOSITY -AM_DEFAULT_V -AM_V -am__untar -am__tar -AMTAR -am__leading_dot -SET_MAKE -AWK -mkdir_p -MKDIR_P -INSTALL_STRIP_PROGRAM -STRIP -install_sh -MAKEINFO -AUTOHEADER -AUTOMAKE -AUTOCONF -ACLOCAL -VERSION -PACKAGE -CYGPATH_W -am__isrc -INSTALL_DATA -INSTALL_SCRIPT -INSTALL_PROGRAM -target_alias -host_alias -build_alias -LIBS -ECHO_T -ECHO_N -ECHO_C -DEFS -mandir -localedir -libdir -psdir -pdfdir -dvidir -htmldir -infodir -docdir -oldincludedir -includedir -runstatedir -localstatedir -sharedstatedir -sysconfdir -datadir -datarootdir -libexecdir -sbindir -bindir -program_transform_name -prefix -exec_prefix -PACKAGE_URL -PACKAGE_BUGREPORT -PACKAGE_STRING -PACKAGE_VERSION -PACKAGE_TARNAME -PACKAGE_NAME -PATH_SEPARATOR -SHELL -am__quote' -ac_subst_files='' -ac_user_opts=' -enable_option_checking -enable_silent_rules -enable_debug -enable_compile_warnings -enable_dependency_tracking -enable_shared -enable_static -with_pic -enable_fast_install -with_aix_soname -with_gnu_ld -with_sysroot -enable_libtool_lock -with_x -enable_disk_image_mounter -enable_gdict_applet -enable_ipv6 -with_grep -enable_zlib -enable_nls -enable_rpath -with_libiconv_prefix -with_libintl_prefix -enable_schemas_compile -with_html_dir -enable_gtk_doc -enable_gtk_doc_html -enable_gtk_doc_pdf -with_help_dir -' - ac_precious_vars='build_alias -host_alias -target_alias -CC -CFLAGS -LDFLAGS -LIBS -CPPFLAGS -CXX -CXXFLAGS -CCC -CPP -LT_SYS_LIBRARY_PATH -CXXCPP -GLIB_COMPILE_RESOURCES -XMLLINT -XMKMF -PKG_CONFIG -PKG_CONFIG_PATH -PKG_CONFIG_LIBDIR -GLIB_CFLAGS -GLIB_LIBS -GTHREAD_CFLAGS -GTHREAD_LIBS -GIO_CFLAGS -GIO_LIBS -GIO_UNIX_CFLAGS -GIO_UNIX_LIBS -GTK_CFLAGS -GTK_LIBS -UDISKS2_CFLAGS -UDISKS2_LIBS -LIBEGG_CFLAGS -LIBEGG_LIBS -LIBGDICT_CFLAGS -LIBGDICT_LIBS -XSHAPE_CFLAGS -XSHAPE_LIBS -APPLET_CFLAGS -APPLET_LIBS -LIBGTOP_CFLAGS -LIBGTOP_LIBS -LIBCANBERRA_GTK_CFLAGS -LIBCANBERRA_GTK_LIBS -GLIB_COMPILE_SCHEMAS -GTKDOC_DEPS_CFLAGS -GTKDOC_DEPS_LIBS -ITSTOOL' - - -# Initialize some variables set by options. -ac_init_help= -ac_init_version=false -ac_unrecognized_opts= -ac_unrecognized_sep= -# The variables have the same names as the options, with -# dashes changed to underlines. -cache_file=/dev/null -exec_prefix=NONE -no_create= -no_recursion= -prefix=NONE -program_prefix=NONE -program_suffix=NONE -program_transform_name=s,x,x, -silent= -site= -srcdir= -verbose= -x_includes=NONE -x_libraries=NONE - -# Installation directory options. -# These are left unexpanded so users can "make install exec_prefix=/foo" -# and all the variables that are supposed to be based on exec_prefix -# by default will actually change. -# Use braces instead of parens because sh, perl, etc. also accept them. -# (The list follows the same order as the GNU Coding Standards.) -bindir='${exec_prefix}/bin' -sbindir='${exec_prefix}/sbin' -libexecdir='${exec_prefix}/libexec' -datarootdir='${prefix}/share' -datadir='${datarootdir}' -sysconfdir='${prefix}/etc' -sharedstatedir='${prefix}/com' -localstatedir='${prefix}/var' -runstatedir='${localstatedir}/run' -includedir='${prefix}/include' -oldincludedir='/usr/include' -docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' -infodir='${datarootdir}/info' -htmldir='${docdir}' -dvidir='${docdir}' -pdfdir='${docdir}' -psdir='${docdir}' -libdir='${exec_prefix}/lib' -localedir='${datarootdir}/locale' -mandir='${datarootdir}/man' - -ac_prev= -ac_dashdash= -for ac_option -do - # If the previous option needs an argument, assign it. - if test -n "$ac_prev"; then - eval $ac_prev=\$ac_option - ac_prev= - continue - fi - - case $ac_option in - *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; - *=) ac_optarg= ;; - *) ac_optarg=yes ;; - esac - - # Accept the important Cygnus configure options, so we can diagnose typos. - - case $ac_dashdash$ac_option in - --) - ac_dashdash=yes ;; - - -bindir | --bindir | --bindi | --bind | --bin | --bi) - ac_prev=bindir ;; - -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) - bindir=$ac_optarg ;; - - -build | --build | --buil | --bui | --bu) - ac_prev=build_alias ;; - -build=* | --build=* | --buil=* | --bui=* | --bu=*) - build_alias=$ac_optarg ;; - - -cache-file | --cache-file | --cache-fil | --cache-fi \ - | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) - ac_prev=cache_file ;; - -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ - | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) - cache_file=$ac_optarg ;; - - --config-cache | -C) - cache_file=config.cache ;; - - -datadir | --datadir | --datadi | --datad) - ac_prev=datadir ;; - -datadir=* | --datadir=* | --datadi=* | --datad=*) - datadir=$ac_optarg ;; - - -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ - | --dataroo | --dataro | --datar) - ac_prev=datarootdir ;; - -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ - | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) - datarootdir=$ac_optarg ;; - - -disable-* | --disable-*) - ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid feature name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"enable_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval enable_$ac_useropt=no ;; - - -docdir | --docdir | --docdi | --doc | --do) - ac_prev=docdir ;; - -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) - docdir=$ac_optarg ;; - - -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) - ac_prev=dvidir ;; - -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) - dvidir=$ac_optarg ;; - - -enable-* | --enable-*) - ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid feature name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"enable_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval enable_$ac_useropt=\$ac_optarg ;; - - -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ - | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ - | --exec | --exe | --ex) - ac_prev=exec_prefix ;; - -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ - | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ - | --exec=* | --exe=* | --ex=*) - exec_prefix=$ac_optarg ;; - - -gas | --gas | --ga | --g) - # Obsolete; use --with-gas. - with_gas=yes ;; - - -help | --help | --hel | --he | -h) - ac_init_help=long ;; - -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) - ac_init_help=recursive ;; - -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) - ac_init_help=short ;; - - -host | --host | --hos | --ho) - ac_prev=host_alias ;; - -host=* | --host=* | --hos=* | --ho=*) - host_alias=$ac_optarg ;; - - -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) - ac_prev=htmldir ;; - -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ - | --ht=*) - htmldir=$ac_optarg ;; - - -includedir | --includedir | --includedi | --included | --include \ - | --includ | --inclu | --incl | --inc) - ac_prev=includedir ;; - -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ - | --includ=* | --inclu=* | --incl=* | --inc=*) - includedir=$ac_optarg ;; - - -infodir | --infodir | --infodi | --infod | --info | --inf) - ac_prev=infodir ;; - -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) - infodir=$ac_optarg ;; - - -libdir | --libdir | --libdi | --libd) - ac_prev=libdir ;; - -libdir=* | --libdir=* | --libdi=* | --libd=*) - libdir=$ac_optarg ;; - - -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ - | --libexe | --libex | --libe) - ac_prev=libexecdir ;; - -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ - | --libexe=* | --libex=* | --libe=*) - libexecdir=$ac_optarg ;; - - -localedir | --localedir | --localedi | --localed | --locale) - ac_prev=localedir ;; - -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) - localedir=$ac_optarg ;; - - -localstatedir | --localstatedir | --localstatedi | --localstated \ - | --localstate | --localstat | --localsta | --localst | --locals) - ac_prev=localstatedir ;; - -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ - | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) - localstatedir=$ac_optarg ;; - - -mandir | --mandir | --mandi | --mand | --man | --ma | --m) - ac_prev=mandir ;; - -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) - mandir=$ac_optarg ;; - - -nfp | --nfp | --nf) - # Obsolete; use --without-fp. - with_fp=no ;; - - -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c | -n) - no_create=yes ;; - - -no-recursion | --no-recursion | --no-recursio | --no-recursi \ - | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) - no_recursion=yes ;; - - -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ - | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ - | --oldin | --oldi | --old | --ol | --o) - ac_prev=oldincludedir ;; - -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ - | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ - | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) - oldincludedir=$ac_optarg ;; - - -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) - ac_prev=prefix ;; - -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) - prefix=$ac_optarg ;; - - -program-prefix | --program-prefix | --program-prefi | --program-pref \ - | --program-pre | --program-pr | --program-p) - ac_prev=program_prefix ;; - -program-prefix=* | --program-prefix=* | --program-prefi=* \ - | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) - program_prefix=$ac_optarg ;; - - -program-suffix | --program-suffix | --program-suffi | --program-suff \ - | --program-suf | --program-su | --program-s) - ac_prev=program_suffix ;; - -program-suffix=* | --program-suffix=* | --program-suffi=* \ - | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) - program_suffix=$ac_optarg ;; - - -program-transform-name | --program-transform-name \ - | --program-transform-nam | --program-transform-na \ - | --program-transform-n | --program-transform- \ - | --program-transform | --program-transfor \ - | --program-transfo | --program-transf \ - | --program-trans | --program-tran \ - | --progr-tra | --program-tr | --program-t) - ac_prev=program_transform_name ;; - -program-transform-name=* | --program-transform-name=* \ - | --program-transform-nam=* | --program-transform-na=* \ - | --program-transform-n=* | --program-transform-=* \ - | --program-transform=* | --program-transfor=* \ - | --program-transfo=* | --program-transf=* \ - | --program-trans=* | --program-tran=* \ - | --progr-tra=* | --program-tr=* | --program-t=*) - program_transform_name=$ac_optarg ;; - - -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) - ac_prev=pdfdir ;; - -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) - pdfdir=$ac_optarg ;; - - -psdir | --psdir | --psdi | --psd | --ps) - ac_prev=psdir ;; - -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) - psdir=$ac_optarg ;; - - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - silent=yes ;; - - -runstatedir | --runstatedir | --runstatedi | --runstated \ - | --runstate | --runstat | --runsta | --runst | --runs \ - | --run | --ru | --r) - ac_prev=runstatedir ;; - -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ - | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ - | --run=* | --ru=* | --r=*) - runstatedir=$ac_optarg ;; - - -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) - ac_prev=sbindir ;; - -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ - | --sbi=* | --sb=*) - sbindir=$ac_optarg ;; - - -sharedstatedir | --sharedstatedir | --sharedstatedi \ - | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ - | --sharedst | --shareds | --shared | --share | --shar \ - | --sha | --sh) - ac_prev=sharedstatedir ;; - -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ - | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ - | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ - | --sha=* | --sh=*) - sharedstatedir=$ac_optarg ;; - - -site | --site | --sit) - ac_prev=site ;; - -site=* | --site=* | --sit=*) - site=$ac_optarg ;; - - -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) - ac_prev=srcdir ;; - -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) - srcdir=$ac_optarg ;; - - -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ - | --syscon | --sysco | --sysc | --sys | --sy) - ac_prev=sysconfdir ;; - -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ - | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) - sysconfdir=$ac_optarg ;; - - -target | --target | --targe | --targ | --tar | --ta | --t) - ac_prev=target_alias ;; - -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) - target_alias=$ac_optarg ;; - - -v | -verbose | --verbose | --verbos | --verbo | --verb) - verbose=yes ;; - - -version | --version | --versio | --versi | --vers | -V) - ac_init_version=: ;; - - -with-* | --with-*) - ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid package name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"with_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval with_$ac_useropt=\$ac_optarg ;; - - -without-* | --without-*) - ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid package name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"with_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval with_$ac_useropt=no ;; - - --x) - # Obsolete; use --with-x. - with_x=yes ;; - - -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ - | --x-incl | --x-inc | --x-in | --x-i) - ac_prev=x_includes ;; - -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ - | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) - x_includes=$ac_optarg ;; - - -x-libraries | --x-libraries | --x-librarie | --x-librari \ - | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) - ac_prev=x_libraries ;; - -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ - | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) - x_libraries=$ac_optarg ;; - - -*) as_fn_error $? "unrecognized option: \`$ac_option' -Try \`$0 --help' for more information" - ;; - - *=*) - ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` - # Reject names that are not valid shell variable names. - case $ac_envvar in #( - '' | [0-9]* | *[!_$as_cr_alnum]* ) - as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; - esac - eval $ac_envvar=\$ac_optarg - export $ac_envvar ;; - - *) - # FIXME: should be removed in autoconf 3.0. - $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 - expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && - $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 - : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" - ;; - - esac -done - -if test -n "$ac_prev"; then - ac_option=--`echo $ac_prev | sed 's/_/-/g'` - as_fn_error $? "missing argument to $ac_option" -fi - -if test -n "$ac_unrecognized_opts"; then - case $enable_option_checking in - no) ;; - fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; - *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; - esac -fi - -# Check all directory arguments for consistency. -for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ - datadir sysconfdir sharedstatedir localstatedir includedir \ - oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir runstatedir -do - eval ac_val=\$$ac_var - # Remove trailing slashes. - case $ac_val in - */ ) - ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` - eval $ac_var=\$ac_val;; - esac - # Be sure to have absolute directory names. - case $ac_val in - [\\/$]* | ?:[\\/]* ) continue;; - NONE | '' ) case $ac_var in *prefix ) continue;; esac;; - esac - as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" -done - -# There might be people who depend on the old broken behavior: `$host' -# used to hold the argument of --host etc. -# FIXME: To remove some day. -build=$build_alias -host=$host_alias -target=$target_alias - -# FIXME: To remove some day. -if test "x$host_alias" != x; then - if test "x$build_alias" = x; then - cross_compiling=maybe - elif test "x$build_alias" != "x$host_alias"; then - cross_compiling=yes - fi -fi - -ac_tool_prefix= -test -n "$host_alias" && ac_tool_prefix=$host_alias- - -test "$silent" = yes && exec 6>/dev/null - - -ac_pwd=`pwd` && test -n "$ac_pwd" && -ac_ls_di=`ls -di .` && -ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - as_fn_error $? "working directory cannot be determined" -test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - as_fn_error $? "pwd does not report name of working directory" - - -# Find the source files, if location was not specified. -if test -z "$srcdir"; then - ac_srcdir_defaulted=yes - # Try the directory containing this script, then the parent directory. - ac_confdir=`$as_dirname -- "$as_myself" || -$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_myself" : 'X\(//\)[^/]' \| \ - X"$as_myself" : 'X\(//\)$' \| \ - X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_myself" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - srcdir=$ac_confdir - if test ! -r "$srcdir/$ac_unique_file"; then - srcdir=.. - fi -else - ac_srcdir_defaulted=no -fi -if test ! -r "$srcdir/$ac_unique_file"; then - test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" -fi -ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" -ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" - pwd)` -# When building in place, set srcdir=. -if test "$ac_abs_confdir" = "$ac_pwd"; then - srcdir=. -fi -# Remove unnecessary trailing slashes from srcdir. -# Double slashes in file names in object file debugging info -# mess up M-x gdb in Emacs. -case $srcdir in -*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; -esac -for ac_var in $ac_precious_vars; do - eval ac_env_${ac_var}_set=\${${ac_var}+set} - eval ac_env_${ac_var}_value=\$${ac_var} - eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} - eval ac_cv_env_${ac_var}_value=\$${ac_var} -done - -# -# Report the --help message. -# -if test "$ac_init_help" = "long"; then - # Omit some internal or obsolete options to make the list less imposing. - # This message is too long to be a string in the A/UX 3.1 sh. - cat <<_ACEOF -\`configure' configures mate-utils 1.26.0 to adapt to many kinds of systems. - -Usage: $0 [OPTION]... [VAR=VALUE]... - -To assign environment variables (e.g., CC, CFLAGS...), specify them as -VAR=VALUE. See below for descriptions of some of the useful variables. - -Defaults for the options are specified in brackets. - -Configuration: - -h, --help display this help and exit - --help=short display options specific to this package - --help=recursive display the short help of all the included packages - -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking ...' messages - --cache-file=FILE cache test results in FILE [disabled] - -C, --config-cache alias for \`--cache-file=config.cache' - -n, --no-create do not create output files - --srcdir=DIR find the sources in DIR [configure dir or \`..'] - -Installation directories: - --prefix=PREFIX install architecture-independent files in PREFIX - [$ac_default_prefix] - --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX - [PREFIX] - -By default, \`make install' will install all the files in -\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify -an installation prefix other than \`$ac_default_prefix' using \`--prefix', -for instance \`--prefix=\$HOME'. - -For better control, use the options below. - -Fine tuning of the installation directories: - --bindir=DIR user executables [EPREFIX/bin] - --sbindir=DIR system admin executables [EPREFIX/sbin] - --libexecdir=DIR program executables [EPREFIX/libexec] - --sysconfdir=DIR read-only single-machine data [PREFIX/etc] - --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] - --localstatedir=DIR modifiable single-machine data [PREFIX/var] - --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] - --libdir=DIR object code libraries [EPREFIX/lib] - --includedir=DIR C header files [PREFIX/include] - --oldincludedir=DIR C header files for non-gcc [/usr/include] - --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] - --datadir=DIR read-only architecture-independent data [DATAROOTDIR] - --infodir=DIR info documentation [DATAROOTDIR/info] - --localedir=DIR locale-dependent data [DATAROOTDIR/locale] - --mandir=DIR man documentation [DATAROOTDIR/man] - --docdir=DIR documentation root [DATAROOTDIR/doc/mate-utils] - --htmldir=DIR html documentation [DOCDIR] - --dvidir=DIR dvi documentation [DOCDIR] - --pdfdir=DIR pdf documentation [DOCDIR] - --psdir=DIR ps documentation [DOCDIR] -_ACEOF - - cat <<\_ACEOF - -Program names: - --program-prefix=PREFIX prepend PREFIX to installed program names - --program-suffix=SUFFIX append SUFFIX to installed program names - --program-transform-name=PROGRAM run sed PROGRAM on installed program names - -X features: - --x-includes=DIR X include files are in DIR - --x-libraries=DIR X library files are in DIR - -System types: - --build=BUILD configure for building on BUILD [guessed] - --host=HOST cross-compile to build programs to run on HOST [BUILD] -_ACEOF -fi - -if test -n "$ac_init_help"; then - case $ac_init_help in - short | recursive ) echo "Configuration of mate-utils 1.26.0:";; - esac - cat <<\_ACEOF - -Optional Features: - --disable-option-checking ignore unrecognized --enable/--with options - --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) - --enable-FEATURE[=ARG] include FEATURE [ARG=yes] - --enable-silent-rules less verbose build output (undo: "make V=1") - --disable-silent-rules verbose build output (undo: "make V=0") - --enable-debug=[yes/info/profile/no] - compile with debugging - --enable-compile-warnings=[no/minimum/yes/maximum/error] - Turn on compiler warnings - --enable-dependency-tracking - do not reject slow dependency extractors - --disable-dependency-tracking - speeds up one-time build - --enable-shared[=PKGS] build shared libraries [default=yes] - --enable-static[=PKGS] build static libraries [default=yes] - --enable-fast-install[=PKGS] - optimize for fast installation [default=yes] - --disable-libtool-lock avoid locking (might break parallel builds) - --enable-disk-image-mounter=[yes/no] - Whether to build the Disk Image Mounter utility - --enable-gdict-applet=[yes/no] - Whether to build the Dictionary mate-panel applet - --enable-ipv6=[yes/no] Enables compilation of IPv6 code - --disable-zlib disable zlib support - --disable-nls do not use Native Language Support - --disable-rpath do not hardcode runtime library paths - --disable-schemas-compile - Disable regeneration of gschemas.compiled on install - --enable-gtk-doc use gtk-doc to build documentation [[default=no]] - --enable-gtk-doc-html build documentation in html format [[default=yes]] - --enable-gtk-doc-pdf build documentation in pdf format [[default=no]] - -Optional Packages: - --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] - --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) - --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use - both] - --with-aix-soname=aix|svr4|both - shared library versioning (aka "SONAME") variant to - provide on AIX, [default=aix]. - --with-gnu-ld assume the C compiler uses GNU ld [default=no] - --with-sysroot[=DIR] Search for dependent libraries within DIR (or the - compiler's sysroot if not specified). - --with-x use the X Window System - --with-grep=[grep command] - Specify where to find the grep binary - - --with-gnu-ld assume the C compiler uses GNU ld [default=no] - --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib - --without-libiconv-prefix don't search for libiconv in includedir and libdir - --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib - --without-libintl-prefix don't search for libintl in includedir and libdir - --with-html-dir=PATH path to installed docs - --with-help-dir=DIR path where help files are installed - -Some influential environment variables: - CC C compiler command - CFLAGS C compiler flags - LDFLAGS linker flags, e.g. -L if you have libraries in a - nonstandard directory - LIBS libraries to pass to the linker, e.g. -l - CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if - you have headers in a nonstandard directory - CXX C++ compiler command - CXXFLAGS C++ compiler flags - CPP C preprocessor - LT_SYS_LIBRARY_PATH - User-defined run-time library search path. - CXXCPP C++ preprocessor - GLIB_COMPILE_RESOURCES - glib-compile-resources bin - XMLLINT xmllint bin - XMKMF Path to xmkmf, Makefile generator for X Window System - PKG_CONFIG path to pkg-config utility - PKG_CONFIG_PATH - directories to add to pkg-config's search path - PKG_CONFIG_LIBDIR - path overriding pkg-config's built-in search path - GLIB_CFLAGS C compiler flags for GLIB, overriding pkg-config - GLIB_LIBS linker flags for GLIB, overriding pkg-config - GTHREAD_CFLAGS - C compiler flags for GTHREAD, overriding pkg-config - GTHREAD_LIBS - linker flags for GTHREAD, overriding pkg-config - GIO_CFLAGS C compiler flags for GIO, overriding pkg-config - GIO_LIBS linker flags for GIO, overriding pkg-config - GIO_UNIX_CFLAGS - C compiler flags for GIO_UNIX, overriding pkg-config - GIO_UNIX_LIBS - linker flags for GIO_UNIX, overriding pkg-config - GTK_CFLAGS C compiler flags for GTK, overriding pkg-config - GTK_LIBS linker flags for GTK, overriding pkg-config - UDISKS2_CFLAGS - C compiler flags for UDISKS2, overriding pkg-config - UDISKS2_LIBS - linker flags for UDISKS2, overriding pkg-config - LIBEGG_CFLAGS - C compiler flags for LIBEGG, overriding pkg-config - LIBEGG_LIBS linker flags for LIBEGG, overriding pkg-config - LIBGDICT_CFLAGS - C compiler flags for LIBGDICT, overriding pkg-config - LIBGDICT_LIBS - linker flags for LIBGDICT, overriding pkg-config - XSHAPE_CFLAGS - C compiler flags for XSHAPE, overriding pkg-config - XSHAPE_LIBS linker flags for XSHAPE, overriding pkg-config - APPLET_CFLAGS - C compiler flags for APPLET, overriding pkg-config - APPLET_LIBS linker flags for APPLET, overriding pkg-config - LIBGTOP_CFLAGS - C compiler flags for LIBGTOP, overriding pkg-config - LIBGTOP_LIBS - linker flags for LIBGTOP, overriding pkg-config - LIBCANBERRA_GTK_CFLAGS - C compiler flags for LIBCANBERRA_GTK, overriding pkg-config - LIBCANBERRA_GTK_LIBS - linker flags for LIBCANBERRA_GTK, overriding pkg-config - GLIB_COMPILE_SCHEMAS - value of glib_compile_schemas for gio-2.0, overriding pkg-config - GTKDOC_DEPS_CFLAGS - C compiler flags for GTKDOC_DEPS, overriding pkg-config - GTKDOC_DEPS_LIBS - linker flags for GTKDOC_DEPS, overriding pkg-config - ITSTOOL Path to the `itstool` command - -Use these variables to override the choices made by `configure' or to help -it to find libraries and programs with nonstandard names/locations. - -Report bugs to . -_ACEOF -ac_status=$? -fi - -if test "$ac_init_help" = "recursive"; then - # If there are subdirs, report their specific --help. - for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue - test -d "$ac_dir" || - { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || - continue - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - cd "$ac_dir" || { ac_status=$?; continue; } - # Check for guested configure. - if test -f "$ac_srcdir/configure.gnu"; then - echo && - $SHELL "$ac_srcdir/configure.gnu" --help=recursive - elif test -f "$ac_srcdir/configure"; then - echo && - $SHELL "$ac_srcdir/configure" --help=recursive - else - $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 - fi || ac_status=$? - cd "$ac_pwd" || { ac_status=$?; break; } - done -fi - -test -n "$ac_init_help" && exit $ac_status -if $ac_init_version; then - cat <<\_ACEOF -mate-utils configure 1.26.0 -generated by GNU Autoconf 2.69 - -Copyright (C) 2012 Free Software Foundation, Inc. -This configure script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it. -_ACEOF - exit -fi - -## ------------------------ ## -## Autoconf initialization. ## -## ------------------------ ## - -# ac_fn_c_try_compile LINENO -# -------------------------- -# Try to compile conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_c_try_compile - -# ac_fn_cxx_try_compile LINENO -# ---------------------------- -# Try to compile conftest.$ac_ext, and return whether this succeeded. -ac_fn_cxx_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_cxx_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_cxx_try_compile - -# ac_fn_c_try_cpp LINENO -# ---------------------- -# Try to preprocess conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_cpp () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } > conftest.i && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_c_try_cpp - -# ac_fn_c_try_run LINENO -# ---------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes -# that executables *can* be run. -ac_fn_c_try_run () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then : - ac_retval=0 -else - $as_echo "$as_me: program exited with status $ac_status" >&5 - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=$ac_status -fi - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_c_try_run - -# ac_fn_c_try_link LINENO -# ----------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_link () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || - test -x conftest$ac_exeext - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information - # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would - # interfere with the next link command; also delete a directory that is - # left behind by Apple's compiler. We do this before executing the actions. - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_c_try_link - -# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES -# ------------------------------------------------------- -# Tests whether HEADER exists and can be compiled using the include files in -# INCLUDES, setting the cache variable VAR accordingly. -ac_fn_c_check_header_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -#include <$2> -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - eval "$3=yes" -else - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} # ac_fn_c_check_header_compile - -# ac_fn_c_check_func LINENO FUNC VAR -# ---------------------------------- -# Tests whether FUNC exists, setting the cache variable VAR accordingly -ac_fn_c_check_func () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -/* Define $2 to an innocuous variant, in case declares $2. - For example, HP-UX 11i declares gettimeofday. */ -#define $2 innocuous_$2 - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $2 (); below. - Prefer to if __STDC__ is defined, since - exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include -#else -# include -#endif - -#undef $2 - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char $2 (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_$2 || defined __stub___$2 -choke me -#endif - -int -main () -{ -return $2 (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - eval "$3=yes" -else - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} # ac_fn_c_check_func - -# ac_fn_cxx_try_cpp LINENO -# ------------------------ -# Try to preprocess conftest.$ac_ext, and return whether this succeeded. -ac_fn_cxx_try_cpp () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } > conftest.i && { - test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || - test ! -s conftest.err - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_cxx_try_cpp - -# ac_fn_cxx_try_link LINENO -# ------------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. -ac_fn_cxx_try_link () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_cxx_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || - test -x conftest$ac_exeext - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information - # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would - # interfere with the next link command; also delete a directory that is - # left behind by Apple's compiler. We do this before executing the actions. - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_cxx_try_link - -# ac_fn_c_check_type LINENO TYPE VAR INCLUDES -# ------------------------------------------- -# Tests whether TYPE exists after having included INCLUDES, setting cache -# variable VAR accordingly. -ac_fn_c_check_type () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - eval "$3=no" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -int -main () -{ -if (sizeof ($2)) - return 0; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -int -main () -{ -if (sizeof (($2))) - return 0; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - -else - eval "$3=yes" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} # ac_fn_c_check_type - -# ac_fn_c_check_member LINENO AGGR MEMBER VAR INCLUDES -# ---------------------------------------------------- -# Tries to find if the field MEMBER exists in type AGGR, after including -# INCLUDES, setting cache variable VAR accordingly. -ac_fn_c_check_member () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5 -$as_echo_n "checking for $2.$3... " >&6; } -if eval \${$4+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$5 -int -main () -{ -static $2 ac_aggr; -if (ac_aggr.$3) -return 0; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - eval "$4=yes" -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$5 -int -main () -{ -static $2 ac_aggr; -if (sizeof ac_aggr.$3) -return 0; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - eval "$4=yes" -else - eval "$4=no" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -eval ac_res=\$$4 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} # ac_fn_c_check_member - -# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES -# ------------------------------------------------------- -# Tests whether HEADER exists, giving a warning if it cannot be compiled using -# the include files in INCLUDES and setting the cache variable VAR -# accordingly. -ac_fn_c_check_header_mongrel () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if eval \${$3+:} false; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -else - # Is the header compilable? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 -$as_echo_n "checking $2 usability... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -#include <$2> -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_header_compiler=yes -else - ac_header_compiler=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 -$as_echo "$ac_header_compiler" >&6; } - -# Is the header present? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 -$as_echo_n "checking $2 presence... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <$2> -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - ac_header_preproc=yes -else - ac_header_preproc=no -fi -rm -f conftest.err conftest.i conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 -$as_echo "$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( - yes:no: ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 -$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} - ;; - no:yes:* ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 -$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 -$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 -$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 -$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -( $as_echo "## ---------------------------------------- ## -## Report this to https://mate-desktop.org/ ## -## ---------------------------------------- ##" - ) | sed "s/^/$as_me: WARNING: /" >&2 - ;; -esac - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - eval "$3=\$ac_header_compiler" -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} # ac_fn_c_check_header_mongrel -cat >config.log <<_ACEOF -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by mate-utils $as_me 1.26.0, which was -generated by GNU Autoconf 2.69. Invocation command line was - - $ $0 $@ - -_ACEOF -exec 5>>config.log -{ -cat <<_ASUNAME -## --------- ## -## Platform. ## -## --------- ## - -hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` - -/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` -/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` -/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` - -_ASUNAME - -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - $as_echo "PATH: $as_dir" - done -IFS=$as_save_IFS - -} >&5 - -cat >&5 <<_ACEOF - - -## ----------- ## -## Core tests. ## -## ----------- ## - -_ACEOF - - -# Keep a trace of the command line. -# Strip out --no-create and --no-recursion so they do not pile up. -# Strip out --silent because we don't want to record it for future runs. -# Also quote any args containing shell meta-characters. -# Make two passes to allow for proper duplicate-argument suppression. -ac_configure_args= -ac_configure_args0= -ac_configure_args1= -ac_must_keep_next=false -for ac_pass in 1 2 -do - for ac_arg - do - case $ac_arg in - -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - continue ;; - *\'*) - ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - case $ac_pass in - 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; - 2) - as_fn_append ac_configure_args1 " '$ac_arg'" - if test $ac_must_keep_next = true; then - ac_must_keep_next=false # Got value, back to normal. - else - case $ac_arg in - *=* | --config-cache | -C | -disable-* | --disable-* \ - | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ - | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ - | -with-* | --with-* | -without-* | --without-* | --x) - case "$ac_configure_args0 " in - "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; - esac - ;; - -* ) ac_must_keep_next=true ;; - esac - fi - as_fn_append ac_configure_args " '$ac_arg'" - ;; - esac - done -done -{ ac_configure_args0=; unset ac_configure_args0;} -{ ac_configure_args1=; unset ac_configure_args1;} - -# When interrupted or exit'd, cleanup temporary files, and complete -# config.log. We remove comments because anyway the quotes in there -# would cause problems or look ugly. -# WARNING: Use '\'' to represent an apostrophe within the trap. -# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. -trap 'exit_status=$? - # Save into config.log some information that might help in debugging. - { - echo - - $as_echo "## ---------------- ## -## Cache variables. ## -## ---------------- ##" - echo - # The following way of writing the cache mishandles newlines in values, -( - for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) { eval $ac_var=; unset $ac_var;} ;; - esac ;; - esac - done - (set) 2>&1 | - case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - sed -n \ - "s/'\''/'\''\\\\'\'''\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" - ;; #( - *) - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) - echo - - $as_echo "## ----------------- ## -## Output variables. ## -## ----------------- ##" - echo - for ac_var in $ac_subst_vars - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - $as_echo "$ac_var='\''$ac_val'\''" - done | sort - echo - - if test -n "$ac_subst_files"; then - $as_echo "## ------------------- ## -## File substitutions. ## -## ------------------- ##" - echo - for ac_var in $ac_subst_files - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - $as_echo "$ac_var='\''$ac_val'\''" - done | sort - echo - fi - - if test -s confdefs.h; then - $as_echo "## ----------- ## -## confdefs.h. ## -## ----------- ##" - echo - cat confdefs.h - echo - fi - test "$ac_signal" != 0 && - $as_echo "$as_me: caught signal $ac_signal" - $as_echo "$as_me: exit $exit_status" - } >&5 - rm -f core *.core core.conftest.* && - rm -f -r conftest* confdefs* conf$$* $ac_clean_files && - exit $exit_status -' 0 -for ac_signal in 1 2 13 15; do - trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal -done -ac_signal=0 - -# confdefs.h avoids OS command line length limits that DEFS can exceed. -rm -f -r conftest* confdefs.h - -$as_echo "/* confdefs.h */" > confdefs.h - -# Predefined preprocessor variables. - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_NAME "$PACKAGE_NAME" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_TARNAME "$PACKAGE_TARNAME" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_VERSION "$PACKAGE_VERSION" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_STRING "$PACKAGE_STRING" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_URL "$PACKAGE_URL" -_ACEOF - - -# Let the site file select an alternate cache file if it wants to. -# Prefer an explicitly selected file to automatically selected ones. -ac_site_file1=NONE -ac_site_file2=NONE -if test -n "$CONFIG_SITE"; then - # We do not want a PATH search for config.site. - case $CONFIG_SITE in #(( - -*) ac_site_file1=./$CONFIG_SITE;; - */*) ac_site_file1=$CONFIG_SITE;; - *) ac_site_file1=./$CONFIG_SITE;; - esac -elif test "x$prefix" != xNONE; then - ac_site_file1=$prefix/share/config.site - ac_site_file2=$prefix/etc/config.site -else - ac_site_file1=$ac_default_prefix/share/config.site - ac_site_file2=$ac_default_prefix/etc/config.site -fi -for ac_site_file in "$ac_site_file1" "$ac_site_file2" -do - test "x$ac_site_file" = xNONE && continue - if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 -$as_echo "$as_me: loading site script $ac_site_file" >&6;} - sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" \ - || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "failed to load site script $ac_site_file -See \`config.log' for more details" "$LINENO" 5; } - fi -done - -if test -r "$cache_file"; then - # Some versions of bash will fail to source /dev/null (special files - # actually), so we avoid doing that. DJGPP emulates it as a regular file. - if test /dev/null != "$cache_file" && test -f "$cache_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 -$as_echo "$as_me: loading cache $cache_file" >&6;} - case $cache_file in - [\\/]* | ?:[\\/]* ) . "$cache_file";; - *) . "./$cache_file";; - esac - fi -else - { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 -$as_echo "$as_me: creating cache $cache_file" >&6;} - >$cache_file -fi - -gt_needs="$gt_needs " -# Check that the precious variables saved in the cache have kept the same -# value. -ac_cache_corrupted=false -for ac_var in $ac_precious_vars; do - eval ac_old_set=\$ac_cv_env_${ac_var}_set - eval ac_new_set=\$ac_env_${ac_var}_set - eval ac_old_val=\$ac_cv_env_${ac_var}_value - eval ac_new_val=\$ac_env_${ac_var}_value - case $ac_old_set,$ac_new_set in - set,) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,set) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 -$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,);; - *) - if test "x$ac_old_val" != "x$ac_new_val"; then - # differences in whitespace do not lead to failure. - ac_old_val_w=`echo x $ac_old_val` - ac_new_val_w=`echo x $ac_new_val` - if test "$ac_old_val_w" != "$ac_new_val_w"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 -$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - ac_cache_corrupted=: - else - { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 -$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} - eval $ac_var=\$ac_old_val - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 -$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 -$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} - fi;; - esac - # Pass precious variables to config.status. - if test "$ac_new_set" = set; then - case $ac_new_val in - *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; - *) ac_arg=$ac_var=$ac_new_val ;; - esac - case " $ac_configure_args " in - *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) as_fn_append ac_configure_args " '$ac_arg'" ;; - esac - fi -done -if $ac_cache_corrupted; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 -$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} - as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 -fi -## -------------------- ## -## Main body of script. ## -## -------------------- ## - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - - - -ac_config_headers="$ac_config_headers config.h" - -am__api_version='1.16' - -ac_aux_dir= -for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do - if test -f "$ac_dir/install-sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install-sh -c" - break - elif test -f "$ac_dir/install.sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install.sh -c" - break - elif test -f "$ac_dir/shtool"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/shtool install -c" - break - fi -done -if test -z "$ac_aux_dir"; then - as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 -fi - -# These three variables are undocumented and unsupported, -# and are intended to be withdrawn in a future Autoconf release. -# They can cause serious problems if a builder's source tree is in a directory -# whose full name contains unusual characters. -ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. -ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. -ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. - - -# Find a good install program. We prefer a C program (faster), -# so one script is as good as another. But avoid the broken or -# incompatible versions: -# SysV /etc/install, /usr/sbin/install -# SunOS /usr/etc/install -# IRIX /sbin/install -# AIX /bin/install -# AmigaOS /C/install, which installs bootblocks on floppy discs -# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag -# AFS /usr/afsws/bin/install, which mishandles nonexistent args -# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" -# OS/2's system install, which has a completely different semantic -# ./install, which can be erroneously created by make from ./install.sh. -# Reject install programs that cannot install multiple files. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 -$as_echo_n "checking for a BSD-compatible install... " >&6; } -if test -z "$INSTALL"; then -if ${ac_cv_path_install+:} false; then : - $as_echo_n "(cached) " >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - # Account for people who put trailing slashes in PATH elements. -case $as_dir/ in #(( - ./ | .// | /[cC]/* | \ - /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ - ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ - /usr/ucb/* ) ;; - *) - # OSF1 and SCO ODT 3.0 have their own names for install. - # Don't use installbsd from OSF since it installs stuff as root - # by default. - for ac_prog in ginstall scoinst install; do - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then - if test $ac_prog = install && - grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # AIX install. It has an incompatible calling convention. - : - elif test $ac_prog = install && - grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # program-specific install script used by HP pwplus--don't use. - : - else - rm -rf conftest.one conftest.two conftest.dir - echo one > conftest.one - echo two > conftest.two - mkdir conftest.dir - if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && - test -s conftest.one && test -s conftest.two && - test -s conftest.dir/conftest.one && - test -s conftest.dir/conftest.two - then - ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" - break 3 - fi - fi - fi - done - done - ;; -esac - - done -IFS=$as_save_IFS - -rm -rf conftest.one conftest.two conftest.dir - -fi - if test "${ac_cv_path_install+set}" = set; then - INSTALL=$ac_cv_path_install - else - # As a last resort, use the slow shell script. Don't cache a - # value for INSTALL within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - INSTALL=$ac_install_sh - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 -$as_echo "$INSTALL" >&6; } - -# Use test -z because SunOS4 sh mishandles braces in ${var-val}. -# It thinks the first close brace ends the variable substitution. -test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' - -test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' - -test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 -$as_echo_n "checking whether build environment is sane... " >&6; } -# 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]*) - as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; -esac -case $srcdir in - *[\\\"\#\$\&\'\`$am_lf\ \ ]*) - as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; -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". - as_fn_error $? "ls -t appears to fail. Make sure there is not a broken - alias in your environment" "$LINENO" 5 - 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 - as_fn_error $? "newly created file is older than distributed files! -Check your system clock" "$LINENO" 5 -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -# 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 - -rm -f conftest.file - -test "$program_prefix" != NONE && - program_transform_name="s&^&$program_prefix&;$program_transform_name" -# Use a double $ so make ignores it. -test "$program_suffix" != NONE && - program_transform_name="s&\$&$program_suffix&;$program_transform_name" -# Double any \ or $. -# By default was `s,x,x', remove it if useless. -ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' -program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` - -# Expand $ac_aux_dir to an absolute path. -am_aux_dir=`cd "$ac_aux_dir" && pwd` - -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= - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 -$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} -fi - -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 - -# 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. -if test "$cross_compiling" != no; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -set dummy ${ac_tool_prefix}strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$STRIP"; then - ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_STRIP="${ac_tool_prefix}strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -STRIP=$ac_cv_prog_STRIP -if test -n "$STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -$as_echo "$STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_STRIP"; then - ac_ct_STRIP=$STRIP - # Extract the first word of "strip", so it can be a program name with args. -set dummy strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_STRIP"; then - ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_STRIP="strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -if test -n "$ac_ct_STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 -$as_echo "$ac_ct_STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_STRIP" = x; then - STRIP=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - STRIP=$ac_ct_STRIP - fi -else - STRIP="$ac_cv_prog_STRIP" -fi - -fi -INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 -$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } -if test -z "$MKDIR_P"; then - if ${ac_cv_path_mkdir+:} false; then : - $as_echo_n "(cached) " >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in mkdir gmkdir; do - for ac_exec_ext in '' $ac_executable_extensions; do - as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue - case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( - 'mkdir (GNU coreutils) '* | \ - 'mkdir (coreutils) '* | \ - 'mkdir (fileutils) '4.1*) - ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext - break 3;; - esac - done - done - done -IFS=$as_save_IFS - -fi - - test -d ./--version && rmdir ./--version - if test "${ac_cv_path_mkdir+set}" = set; then - MKDIR_P="$ac_cv_path_mkdir -p" - else - # As a last resort, use the slow shell script. Don't cache a - # value for MKDIR_P within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - MKDIR_P="$ac_install_sh -d" - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 -$as_echo "$MKDIR_P" >&6; } - -for ac_prog in gawk mawk nawk awk -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_AWK+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$AWK"; then - ac_cv_prog_AWK="$AWK" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_AWK="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -AWK=$ac_cv_prog_AWK -if test -n "$AWK"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 -$as_echo "$AWK" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$AWK" && break -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 -$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } -set x ${MAKE-make} -ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` -if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat >conftest.make <<\_ACEOF -SHELL = /bin/sh -all: - @echo '@@@%%%=$(MAKE)=@@@%%%' -_ACEOF -# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. -case `${MAKE-make} -f conftest.make 2>/dev/null` in - *@@@%%%=?*=@@@%%%*) - eval ac_cv_prog_make_${ac_make}_set=yes;; - *) - eval ac_cv_prog_make_${ac_make}_set=no;; -esac -rm -f conftest.make -fi -if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - SET_MAKE= -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - SET_MAKE="MAKE=${MAKE-make}" -fi - -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 - -# Check whether --enable-silent-rules was given. -if test "${enable_silent_rules+set}" = set; then : - enableval=$enable_silent_rules; -fi - -case $enable_silent_rules in # ((( - yes) AM_DEFAULT_VERBOSITY=0;; - no) AM_DEFAULT_VERBOSITY=1;; - *) AM_DEFAULT_VERBOSITY=1;; -esac -am_make=${MAKE-make} -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 -$as_echo_n "checking whether $am_make supports nested variables... " >&6; } -if ${am_cv_make_support_nested_variables+:} false; then : - $as_echo_n "(cached) " >&6 -else - 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 -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 -$as_echo "$am_cv_make_support_nested_variables" >&6; } -if test $am_cv_make_support_nested_variables = yes; then - AM_V='$(V)' - AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -else - AM_V=$AM_DEFAULT_VERBOSITY - AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY -fi -AM_BACKSLASH='\' - -if test "`cd $srcdir && pwd`" != "`pwd`"; then - # Use -I$(srcdir) only when $(srcdir) != ., so that make's output - # is not polluted with repeated "-I." - am__isrc=' -I$(srcdir)' - # test to see if srcdir already configured - if test -f $srcdir/config.status; then - as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 - 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 - - -# Define the identity of the package. - PACKAGE='mate-utils' - VERSION='1.26.0' - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE "$PACKAGE" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define VERSION "$VERSION" -_ACEOF - -# Some tools Automake needs. - -ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} - - -AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} - - -AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} - - -AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} - - -MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} - -# For better backward compatibility. To be removed once Automake 1.9.x -# dies out for good. For more background, see: -# -# -mkdir_p='$(MKDIR_P)' - -# We need awk for the "check" target (and possibly the TAP driver). The -# system "awk" is bad on some platforms. -# Always define AMTAR for backward compatibility. Yes, it's still used -# in the wild :-( We should find a proper way to deprecate it ... -AMTAR='$${TAR-tar}' - - -# We'll loop over all known methods to create a tar archive until one works. -_am_tools='gnutar pax cpio none' - -am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' - - - - - - -# POSIX will say in a future version that running "rm -f" with no argument -# is OK; and we want to be able to make that assumption in our Makefile -# recipes. So use an aggressive probe to check that the usage we want is -# actually supported "in the wild" to an acceptable degree. -# See automake bug#10828. -# To make any issue more visible, cause the running configure to be aborted -# by default if the 'rm' program in use doesn't match our expectations; the -# user can still override this though. -if rm -f && rm -fr && rm -rf; then : OK; else - cat >&2 <<'END' -Oops! - -Your 'rm' program seems unable to run without file operands specified -on the command line, even when the '-f' option is present. This is contrary -to the behaviour of most rm programs out there, and not conforming with -the upcoming POSIX standard: - -Please tell bug-automake@gnu.org about your system, including the value -of your $PATH and any error possibly output before this message. This -can help us improve future automake versions. - -END - if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then - echo 'Configuration will proceed anyway, since you have set the' >&2 - echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 - echo >&2 - else - cat >&2 <<'END' -Aborting the configuration process, to ensure you take notice of the issue. - -You can download and install GNU coreutils to get an 'rm' implementation -that behaves properly: . - -If you want to complete the configuration process using your problematic -'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM -to "yes", and re-run configure. - -END - as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 - fi -fi - #the foreign flavour disables warnings if README, NEWS such files are not present which are issued in the default gnu flavour -# Check whether --enable-silent-rules was given. -if test "${enable_silent_rules+set}" = set; then : - enableval=$enable_silent_rules; -fi - -case $enable_silent_rules in # ((( - yes) AM_DEFAULT_VERBOSITY=0;; - no) AM_DEFAULT_VERBOSITY=1;; - *) AM_DEFAULT_VERBOSITY=0;; -esac -am_make=${MAKE-make} -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 -$as_echo_n "checking whether $am_make supports nested variables... " >&6; } -if ${am_cv_make_support_nested_variables+:} false; then : - $as_echo_n "(cached) " >&6 -else - 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 -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 -$as_echo "$am_cv_make_support_nested_variables" >&6; } -if test $am_cv_make_support_nested_variables = yes; then - AM_V='$(V)' - AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -else - AM_V=$AM_DEFAULT_VERBOSITY - AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY -fi -AM_BACKSLASH='\' - - - - - - ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}" - if test -n "$ac_macro_dir"; then - ACLOCAL_AMFLAGS="-I $ac_macro_dir $ACLOCAL_AMFLAGS" - fi - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable debugging" >&5 -$as_echo_n "checking whether to enable debugging... " >&6; } - - ax_enable_debug_default=no - ax_enable_debug_is_release=$ax_is_release - - # If this is a release, override the default. - if test "$ax_enable_debug_is_release" = "yes"; then : - ax_enable_debug_default="no" -fi - - - - - # Check whether --enable-debug was given. -if test "${enable_debug+set}" = set; then : - enableval=$enable_debug; -else - enable_debug=$ax_enable_debug_default -fi - - - # empty mean debug yes - if test "x$enable_debug" = "x"; then : - enable_debug="yes" -fi - - # case of debug - case $enable_debug in #( - yes) : - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - CFLAGS="${CFLAGS} -g -O0" - CXXFLAGS="${CXXFLAGS} -g -O0" - FFLAGS="${FFLAGS} -g -O0" - FCFLAGS="${FCFLAGS} -g -O0" - OBJCFLAGS="${OBJCFLAGS} -g -O0" - ;; #( - info) : - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: info" >&5 -$as_echo "info" >&6; } - CFLAGS="${CFLAGS} -g" - CXXFLAGS="${CXXFLAGS} -g" - FFLAGS="${FFLAGS} -g" - FCFLAGS="${FCFLAGS} -g" - OBJCFLAGS="${OBJCFLAGS} -g" - ;; #( - profile) : - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: profile" >&5 -$as_echo "profile" >&6; } - CFLAGS="${CFLAGS} -g -pg" - CXXFLAGS="${CXXFLAGS} -g -pg" - FFLAGS="${FFLAGS} -g -pg" - FCFLAGS="${FCFLAGS} -g -pg" - OBJCFLAGS="${OBJCFLAGS} -g -pg" - LDFLAGS="${LDFLAGS} -pg" - ;; #( - *) : - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - if test "x${CFLAGS+set}" != "xset"; then : - CFLAGS="" -fi - if test "x${CXXFLAGS+set}" != "xset"; then : - CXXFLAGS="" -fi - if test "x${FFLAGS+set}" != "xset"; then : - FFLAGS="" -fi - if test "x${FCFLAGS+set}" != "xset"; then : - FCFLAGS="" -fi - if test "x${OBJCFLAGS+set}" != "xset"; then : - OBJCFLAGS="" -fi - ;; -esac - - if test "x$enable_debug" = "xyes"; then : - -$as_echo "#define MATE_ENABLE_DEBUG 1" >>confdefs.h - -else - -$as_echo "#define NDEBUG 1" >>confdefs.h - -fi - ax_enable_debug=$enable_debug - - -DEPDIR="${am__leading_dot}deps" - -ac_config_commands="$ac_config_commands depfiles" - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5 -$as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; } -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 - { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5 - (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - case $?:`cat confinc.out 2>/dev/null` in #( - '0:this is the am__doit target') : - case $s in #( - BSD) : - am__include='.include' am__quote='"' ;; #( - *) : - am__include='include' am__quote='' ;; -esac ;; #( - *) : - ;; -esac - if test "$am__include" != "#"; then - _am_result="yes ($s style)" - break - fi -done -rm -f confinc.* confmf.* -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5 -$as_echo "${_am_result}" >&6; } - -# Check whether --enable-dependency-tracking was given. -if test "${enable_dependency_tracking+set}" = set; then : - enableval=$enable_dependency_tracking; -fi - -if test "x$enable_dependency_tracking" != xno; then - am_depcomp="$ac_aux_dir/depcomp" - AMDEPBACKSLASH='\' - am__nodep='_no' -fi - if test "x$enable_dependency_tracking" != xno; then - AMDEP_TRUE= - AMDEP_FALSE='#' -else - AMDEP_TRUE='#' - AMDEP_FALSE= -fi - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - fi -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl.exe - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl.exe -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CC" && break -done - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -fi - -fi - - -test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "no acceptable C compiler found in \$PATH -See \`config.log' for more details" "$LINENO" 5; } - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" -# Try to create an executable without -o first, disregard a.out. -# It will help us diagnose broken compilers, and finding out an intuition -# of exeext. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 -$as_echo_n "checking whether the C compiler works... " >&6; } -ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` - -# The possible output files: -ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" - -ac_rmfiles= -for ac_file in $ac_files -do - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; - * ) ac_rmfiles="$ac_rmfiles $ac_file";; - esac -done -rm -f $ac_rmfiles - -if { { ac_try="$ac_link_default" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link_default") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. -# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' -# in a Makefile. We should not override ac_cv_exeext if it was cached, -# so that the user can short-circuit this test for compilers unknown to -# Autoconf. -for ac_file in $ac_files '' -do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) - ;; - [ab].out ) - # We found the default executable, but exeext='' is most - # certainly right. - break;; - *.* ) - if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; - then :; else - ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - fi - # We set ac_cv_exeext here because the later test for it is not - # safe: cross compilers may not add the suffix if given an `-o' - # argument, so we may need to know it at that point already. - # Even if this section looks crufty: it has the advantage of - # actually working. - break;; - * ) - break;; - esac -done -test "$ac_cv_exeext" = no && ac_cv_exeext= - -else - ac_file='' -fi -if test -z "$ac_file"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -$as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "C compiler cannot create executables -See \`config.log' for more details" "$LINENO" 5; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 -$as_echo_n "checking for C compiler default output file name... " >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 -$as_echo "$ac_file" >&6; } -ac_exeext=$ac_cv_exeext - -rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out -ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 -$as_echo_n "checking for suffix of executables... " >&6; } -if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - # If both `conftest.exe' and `conftest' are `present' (well, observable) -# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -# work properly (i.e., refer to `conftest.exe'), while it won't with -# `rm'. -for ac_file in conftest.exe conftest conftest.*; do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; - *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - break;; - * ) break;; - esac -done -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details" "$LINENO" 5; } -fi -rm -f conftest conftest$ac_cv_exeext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 -$as_echo "$ac_cv_exeext" >&6; } - -rm -f conftest.$ac_ext -EXEEXT=$ac_cv_exeext -ac_exeext=$EXEEXT -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -FILE *f = fopen ("conftest.out", "w"); - return ferror (f) || fclose (f) != 0; - - ; - return 0; -} -_ACEOF -ac_clean_files="$ac_clean_files conftest.out" -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 -$as_echo_n "checking whether we are cross compiling... " >&6; } -if test "$cross_compiling" != yes; then - { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - if { ac_try='./conftest$ac_cv_exeext' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details" "$LINENO" 5; } - fi - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 -$as_echo "$cross_compiling" >&6; } - -rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out -ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 -$as_echo_n "checking for suffix of object files... " >&6; } -if ${ac_cv_objext+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.o conftest.obj -if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - for ac_file in conftest.o conftest.obj conftest.*; do - test -f "$ac_file" || continue; - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; - *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` - break;; - esac -done -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot compute suffix of object files: cannot compile -See \`config.log' for more details" "$LINENO" 5; } -fi -rm -f conftest.$ac_cv_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 -$as_echo "$ac_cv_objext" >&6; } -OBJEXT=$ac_cv_objext -ac_objext=$OBJEXT -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 -$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if ${ac_cv_c_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 -$as_echo "$ac_cv_c_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GCC=yes -else - GCC= -fi -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 -$as_echo_n "checking whether $CC accepts -g... " >&6; } -if ${ac_cv_prog_cc_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_c_werror_flag=$ac_c_werror_flag - ac_c_werror_flag=yes - ac_cv_prog_cc_g=no - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -else - CFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - -else - ac_c_werror_flag=$ac_save_c_werror_flag - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_c_werror_flag=$ac_save_c_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 -$as_echo "$ac_cv_prog_cc_g" >&6; } -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 -$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if ${ac_cv_prog_cc_c89+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_prog_cc_c89=no -ac_save_CC=$CC -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -struct stat; -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters - inside strings and character constants. */ -#define FOO(x) 'x' -int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ - -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_c89=$ac_arg -fi -rm -f core conftest.err conftest.$ac_objext - test "x$ac_cv_prog_cc_c89" != "xno" && break -done -rm -f conftest.$ac_ext -CC=$ac_save_CC - -fi -# AC_CACHE_VAL -case "x$ac_cv_prog_cc_c89" in - x) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 -$as_echo "none needed" >&6; } ;; - xno) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 -$as_echo "unsupported" >&6; } ;; - *) - CC="$CC $ac_cv_prog_cc_c89" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 -$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; -esac -if test "x$ac_cv_prog_cc_c89" != xno; then : - -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 -$as_echo_n "checking whether $CC understands -c and -o together... " >&6; } -if ${am_cv_prog_cc_c_o+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF - # 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 { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 - ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } \ - && 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 -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 -$as_echo "$am_cv_prog_cc_c_o" >&6; } -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_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -depcc="$CC" am_compiler_list= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -$as_echo_n "checking dependency style of $depcc... " >&6; } -if ${am_cv_CC_dependencies_compiler_type+:} false; then : - $as_echo_n "(cached) " >&6 -else - 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_CC_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 - 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_CC_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_CC_dependencies_compiler_type=none -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 -$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } -CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type - - if - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then - am__fastdepCC_TRUE= - am__fastdepCC_FALSE='#' -else - am__fastdepCC_TRUE='#' - am__fastdepCC_FALSE= -fi - - - - - - - - - - # Check whether --enable-compile-warnings was given. -if test "${enable_compile_warnings+set}" = set; then : - enableval=$enable_compile_warnings; -else - enable_compile_warnings="yes" -fi - - - ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - 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 - ;; - *) - as_fn_error $? "Unknown argument '$enable_compile_warnings' to --enable-compile-warnings" "$LINENO" 5 - ;; - 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. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Werror=unknown-warning-option" >&5 -$as_echo_n "checking whether C compiler accepts -Werror=unknown-warning-option... " >&6; } -if ${ax_cv_check_cflags___Werror_unknown_warning_option+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$CFLAGS - CFLAGS="$CFLAGS -Werror=unknown-warning-option" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ax_cv_check_cflags___Werror_unknown_warning_option=yes -else - ax_cv_check_cflags___Werror_unknown_warning_option=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___Werror_unknown_warning_option" >&5 -$as_echo "$ax_cv_check_cflags___Werror_unknown_warning_option" >&6; } -if test "x$ax_cv_check_cflags___Werror_unknown_warning_option" = xyes; then : - - compiler_flags_test="-Werror=unknown-warning-option" - -else - - compiler_flags_test="" - -fi - - - for flag in $warning_flags; do - as_CACHEVAR=`$as_echo "ax_cv_check_cflags_$compiler_flags_test_$flag" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts $flag" >&5 -$as_echo_n "checking whether C compiler accepts $flag... " >&6; } -if eval \${$as_CACHEVAR+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$CFLAGS - CFLAGS="$CFLAGS $compiler_flags_test $flag" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - eval "$as_CACHEVAR=yes" -else - eval "$as_CACHEVAR=no" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CFLAGS=$ax_check_save_flags -fi -eval ac_res=\$$as_CACHEVAR - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_CACHEVAR"\" = x"yes"; then : - -if ${WARN_CFLAGS+:} false; then : - - case " $WARN_CFLAGS " in #( - *" $flag "*) : - { { $as_echo "$as_me:${as_lineno-$LINENO}: : WARN_CFLAGS already contains \$flag"; } >&5 - (: WARN_CFLAGS already contains $flag) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } ;; #( - *) : - - as_fn_append WARN_CFLAGS " $flag" - { { $as_echo "$as_me:${as_lineno-$LINENO}: : WARN_CFLAGS=\"\$WARN_CFLAGS\""; } >&5 - (: WARN_CFLAGS="$WARN_CFLAGS") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - ;; -esac - -else - - WARN_CFLAGS=$flag - { { $as_echo "$as_me:${as_lineno-$LINENO}: : WARN_CFLAGS=\"\$WARN_CFLAGS\""; } >&5 - (: WARN_CFLAGS="$WARN_CFLAGS") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - -fi - -else - : -fi - - done - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking flags to pass to the C compiler $CC" >&5 -$as_echo_n "checking flags to pass to the C compiler $CC... " >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS}" >&5 -$as_echo "${WARN_CFLAGS}" >&6; } - - ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -if test -z "$CXX"; then - if test -n "$CCC"; then - CXX=$CCC - else - if test -n "$ac_tool_prefix"; then - for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CXX"; then - ac_cv_prog_CXX="$CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CXX=$ac_cv_prog_CXX -if test -n "$CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 -$as_echo "$CXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CXX" && break - done -fi -if test -z "$CXX"; then - ac_ct_CXX=$CXX - for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CXX"; then - ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CXX="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CXX=$ac_cv_prog_ac_ct_CXX -if test -n "$ac_ct_CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 -$as_echo "$ac_ct_CXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CXX" && break -done - - if test "x$ac_ct_CXX" = x; then - CXX="g++" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CXX=$ac_ct_CXX - fi -fi - - fi -fi -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 -$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } -if ${ac_cv_cxx_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_cxx_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 -$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GXX=yes -else - GXX= -fi -ac_test_CXXFLAGS=${CXXFLAGS+set} -ac_save_CXXFLAGS=$CXXFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 -$as_echo_n "checking whether $CXX accepts -g... " >&6; } -if ${ac_cv_prog_cxx_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_cxx_werror_flag=$ac_cxx_werror_flag - ac_cxx_werror_flag=yes - ac_cv_prog_cxx_g=no - CXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_prog_cxx_g=yes -else - CXXFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - -else - ac_cxx_werror_flag=$ac_save_cxx_werror_flag - CXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_prog_cxx_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_cxx_werror_flag=$ac_save_cxx_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 -$as_echo "$ac_cv_prog_cxx_g" >&6; } -if test "$ac_test_CXXFLAGS" = set; then - CXXFLAGS=$ac_save_CXXFLAGS -elif test $ac_cv_prog_cxx_g = yes; then - if test "$GXX" = yes; then - CXXFLAGS="-g -O2" - else - CXXFLAGS="-g" - fi -else - if test "$GXX" = yes; then - CXXFLAGS="-O2" - else - CXXFLAGS= - fi -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -depcc="$CXX" am_compiler_list= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -$as_echo_n "checking dependency style of $depcc... " >&6; } -if ${am_cv_CXX_dependencies_compiler_type+:} false; then : - $as_echo_n "(cached) " >&6 -else - 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_CXX_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 - 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_CXX_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_CXX_dependencies_compiler_type=none -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 -$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } -CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type - - if - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then - am__fastdepCXX_TRUE= - am__fastdepCXX_FALSE='#' -else - am__fastdepCXX_TRUE='#' - am__fastdepCXX_FALSE= -fi - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - fi -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl.exe - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl.exe -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CC" && break -done - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -fi - -fi - - -test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "no acceptable C compiler found in \$PATH -See \`config.log' for more details" "$LINENO" 5; } - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 -$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if ${ac_cv_c_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 -$as_echo "$ac_cv_c_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GCC=yes -else - GCC= -fi -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 -$as_echo_n "checking whether $CC accepts -g... " >&6; } -if ${ac_cv_prog_cc_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_c_werror_flag=$ac_c_werror_flag - ac_c_werror_flag=yes - ac_cv_prog_cc_g=no - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -else - CFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - -else - ac_c_werror_flag=$ac_save_c_werror_flag - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_c_werror_flag=$ac_save_c_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 -$as_echo "$ac_cv_prog_cc_g" >&6; } -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 -$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if ${ac_cv_prog_cc_c89+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_prog_cc_c89=no -ac_save_CC=$CC -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -struct stat; -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters - inside strings and character constants. */ -#define FOO(x) 'x' -int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ - -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_c89=$ac_arg -fi -rm -f core conftest.err conftest.$ac_objext - test "x$ac_cv_prog_cc_c89" != "xno" && break -done -rm -f conftest.$ac_ext -CC=$ac_save_CC - -fi -# AC_CACHE_VAL -case "x$ac_cv_prog_cc_c89" in - x) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 -$as_echo "none needed" >&6; } ;; - xno) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 -$as_echo "unsupported" >&6; } ;; - *) - CC="$CC $ac_cv_prog_cc_c89" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 -$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; -esac -if test "x$ac_cv_prog_cc_c89" != xno; then : - -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 -$as_echo_n "checking whether $CC understands -c and -o together... " >&6; } -if ${am_cv_prog_cc_c_o+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF - # 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 { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 - ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } \ - && 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 -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 -$as_echo "$am_cv_prog_cc_c_o" >&6; } -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_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -depcc="$CC" am_compiler_list= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -$as_echo_n "checking dependency style of $depcc... " >&6; } -if ${am_cv_CC_dependencies_compiler_type+:} false; then : - $as_echo_n "(cached) " >&6 -else - 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_CC_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 - 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_CC_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_CC_dependencies_compiler_type=none -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 -$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } -CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type - - if - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then - am__fastdepCC_TRUE= - am__fastdepCC_FALSE='#' -else - am__fastdepCC_TRUE='#' - am__fastdepCC_FALSE= -fi - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 -$as_echo_n "checking how to run the C preprocessor... " >&6; } -# On Suns, sometimes $CPP names a directory. -if test -n "$CPP" && test -d "$CPP"; then - CPP= -fi -if test -z "$CPP"; then - if ${ac_cv_prog_CPP+:} false; then : - $as_echo_n "(cached) " >&6 -else - # Double quotes because CPP needs to be expanded - for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" - do - ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - break -fi - - done - ac_cv_prog_CPP=$CPP - -fi - CPP=$ac_cv_prog_CPP -else - ac_cv_prog_CPP=$CPP -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 -$as_echo "$CPP" >&6; } -ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details" "$LINENO" 5; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 -$as_echo_n "checking for grep that handles long lines and -e... " >&6; } -if ${ac_cv_path_GREP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$GREP"; then - ac_path_GREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in grep ggrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" - as_fn_executable_p "$ac_path_GREP" || continue -# Check for GNU ac_path_GREP and select it if it is found. - # Check for GNU $ac_path_GREP -case `"$ac_path_GREP" --version 2>&1` in -*GNU*) - ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'GREP' >> "conftest.nl" - "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_GREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_GREP="$ac_path_GREP" - ac_path_GREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_GREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_GREP"; then - as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_GREP=$GREP -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 -$as_echo "$ac_cv_path_GREP" >&6; } - GREP="$ac_cv_path_GREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 -$as_echo_n "checking for egrep... " >&6; } -if ${ac_cv_path_EGREP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 - then ac_cv_path_EGREP="$GREP -E" - else - if test -z "$EGREP"; then - ac_path_EGREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in egrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" - as_fn_executable_p "$ac_path_EGREP" || continue -# Check for GNU ac_path_EGREP and select it if it is found. - # Check for GNU $ac_path_EGREP -case `"$ac_path_EGREP" --version 2>&1` in -*GNU*) - ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'EGREP' >> "conftest.nl" - "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_EGREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_EGREP="$ac_path_EGREP" - ac_path_EGREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_EGREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_EGREP"; then - as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_EGREP=$EGREP -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 -$as_echo "$ac_cv_path_EGREP" >&6; } - EGREP="$ac_cv_path_EGREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 -$as_echo_n "checking for ANSI C header files... " >&6; } -if ${ac_cv_header_stdc+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#include -#include - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_header_stdc=yes -else - ac_cv_header_stdc=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -if test $ac_cv_header_stdc = yes; then - # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then : - : -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#if ((' ' & 0x0FF) == 0x020) -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -#else -# define ISLOWER(c) \ - (('a' <= (c) && (c) <= 'i') \ - || ('j' <= (c) && (c) <= 'r') \ - || ('s' <= (c) && (c) <= 'z')) -# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -#endif - -#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -int -main () -{ - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) - || toupper (i) != TOUPPER (i)) - return 2; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - -else - ac_cv_header_stdc=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 -$as_echo "$ac_cv_header_stdc" >&6; } -if test $ac_cv_header_stdc = yes; then - -$as_echo "#define STDC_HEADERS 1" >>confdefs.h - -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 -$as_echo_n "checking whether ln -s works... " >&6; } -LN_S=$as_ln_s -if test "$LN_S" = "ln -s"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 -$as_echo "no, using $LN_S" >&6; } -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 -$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } -set x ${MAKE-make} -ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` -if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat >conftest.make <<\_ACEOF -SHELL = /bin/sh -all: - @echo '@@@%%%=$(MAKE)=@@@%%%' -_ACEOF -# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. -case `${MAKE-make} -f conftest.make 2>/dev/null` in - *@@@%%%=?*=@@@%%%*) - eval ac_cv_prog_make_${ac_make}_set=yes;; - *) - eval ac_cv_prog_make_${ac_make}_set=no;; -esac -rm -f conftest.make -fi -if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - SET_MAKE= -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - SET_MAKE="MAKE=${MAKE-make}" -fi - -case `pwd` in - *\ * | *\ *) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 -$as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; -esac - - - -macro_version='2.4.6' -macro_revision='2.4.6' - - - - - - - - - - - - - -ltmain=$ac_aux_dir/ltmain.sh - -# Make sure we can run config.sub. -$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || - as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 -$as_echo_n "checking build system type... " >&6; } -if ${ac_cv_build+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_build_alias=$build_alias -test "x$ac_build_alias" = x && - ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` -test "x$ac_build_alias" = x && - as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 -ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 -$as_echo "$ac_cv_build" >&6; } -case $ac_cv_build in -*-*-*) ;; -*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; -esac -build=$ac_cv_build -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_build -shift -build_cpu=$1 -build_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -build_os=$* -IFS=$ac_save_IFS -case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 -$as_echo_n "checking host system type... " >&6; } -if ${ac_cv_host+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test "x$host_alias" = x; then - ac_cv_host=$ac_cv_build -else - ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 -$as_echo "$ac_cv_host" >&6; } -case $ac_cv_host in -*-*-*) ;; -*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; -esac -host=$ac_cv_host -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_host -shift -host_cpu=$1 -host_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -host_os=$* -IFS=$ac_save_IFS -case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac - - -# Backslashify metacharacters that are still active within -# double-quoted strings. -sed_quote_subst='s/\(["`$\\]\)/\\\1/g' - -# Same as above, but do not quote variable references. -double_quote_subst='s/\(["`\\]\)/\\\1/g' - -# Sed substitution to delay expansion of an escaped shell variable in a -# double_quote_subst'ed string. -delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' - -# Sed substitution to delay expansion of an escaped single quote. -delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' - -# Sed substitution to avoid accidental globbing in evaled expressions -no_glob_subst='s/\*/\\\*/g' - -ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO -ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 -$as_echo_n "checking how to print strings... " >&6; } -# Test print first, because it will be a builtin if present. -if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ - test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then - ECHO='print -r --' -elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then - ECHO='printf %s\n' -else - # Use this function as a fallback that always works. - func_fallback_echo () - { - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' - } - ECHO='func_fallback_echo' -fi - -# func_echo_all arg... -# Invoke $ECHO with all args, space-separated. -func_echo_all () -{ - $ECHO "" -} - -case $ECHO in - printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 -$as_echo "printf" >&6; } ;; - print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 -$as_echo "print -r" >&6; } ;; - *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 -$as_echo "cat" >&6; } ;; -esac - - - - - - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 -$as_echo_n "checking for a sed that does not truncate output... " >&6; } -if ${ac_cv_path_SED+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ - for ac_i in 1 2 3 4 5 6 7; do - ac_script="$ac_script$as_nl$ac_script" - done - echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed - { ac_script=; unset ac_script;} - if test -z "$SED"; then - ac_path_SED_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in sed gsed; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" - as_fn_executable_p "$ac_path_SED" || continue -# Check for GNU ac_path_SED and select it if it is found. - # Check for GNU $ac_path_SED -case `"$ac_path_SED" --version 2>&1` in -*GNU*) - ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo '' >> "conftest.nl" - "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_SED_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_SED="$ac_path_SED" - ac_path_SED_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_SED_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_SED"; then - as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 - fi -else - ac_cv_path_SED=$SED -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 -$as_echo "$ac_cv_path_SED" >&6; } - SED="$ac_cv_path_SED" - rm -f conftest.sed - -test -z "$SED" && SED=sed -Xsed="$SED -e 1s/^X//" - - - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 -$as_echo_n "checking for fgrep... " >&6; } -if ${ac_cv_path_FGREP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 - then ac_cv_path_FGREP="$GREP -F" - else - if test -z "$FGREP"; then - ac_path_FGREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in fgrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" - as_fn_executable_p "$ac_path_FGREP" || continue -# Check for GNU ac_path_FGREP and select it if it is found. - # Check for GNU $ac_path_FGREP -case `"$ac_path_FGREP" --version 2>&1` in -*GNU*) - ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'FGREP' >> "conftest.nl" - "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_FGREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_FGREP="$ac_path_FGREP" - ac_path_FGREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_FGREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_FGREP"; then - as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_FGREP=$FGREP -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 -$as_echo "$ac_cv_path_FGREP" >&6; } - FGREP="$ac_cv_path_FGREP" - - -test -z "$GREP" && GREP=grep - - - - - - - - - - - - - - - - - - - -# Check whether --with-gnu-ld was given. -if test "${with_gnu_ld+set}" = set; then : - withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes -else - with_gnu_ld=no -fi - -ac_prog=ld -if test yes = "$GCC"; then - # Check if gcc -print-prog-name=ld gives a path. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 -$as_echo_n "checking for ld used by $CC... " >&6; } - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return, which upsets mingw - ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $ac_prog in - # Accept absolute paths. - [\\/]* | ?:[\\/]*) - re_direlt='/[^/][^/]*/\.\./' - # Canonicalize the pathname of ld - ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` - while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do - ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` - done - test -z "$LD" && LD=$ac_prog - ;; - "") - # If it fails, then pretend we aren't using GCC. - ac_prog=ld - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac -elif test yes = "$with_gnu_ld"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 -$as_echo_n "checking for GNU ld... " >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 -$as_echo_n "checking for non-GNU ld... " >&6; } -fi -if ${lt_cv_path_LD+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$LD"; then - lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS=$lt_save_ifs - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD=$ac_dir/$ac_prog - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some variants of GNU ld only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$lt_cv_path_LD" -v 2>&1 &5 -$as_echo "$LD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi -test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 -$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -if ${lt_cv_prog_gnu_ld+:} false; then : - $as_echo_n "(cached) " >&6 -else - # I'd rather use --version here, but apparently some GNU lds only accept -v. -case `$LD -v 2>&1 &5 -$as_echo "$lt_cv_prog_gnu_ld" >&6; } -with_gnu_ld=$lt_cv_prog_gnu_ld - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 -$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } -if ${lt_cv_path_NM+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$NM"; then - # Let the user override the test. - lt_cv_path_NM=$NM -else - lt_nm_to_check=${ac_tool_prefix}nm - if test -n "$ac_tool_prefix" && test "$build" = "$host"; then - lt_nm_to_check="$lt_nm_to_check nm" - fi - for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR - for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS=$lt_save_ifs - test -z "$ac_dir" && ac_dir=. - tmp_nm=$ac_dir/$lt_tmp_nm - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then - # Check to see if the nm accepts a BSD-compat flag. - # Adding the 'sed 1q' prevents false positives on HP-UX, which says: - # nm: unknown option "B" ignored - # Tru64's nm complains that /dev/null is an invalid object file - # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty - case $build_os in - mingw*) lt_bad_file=conftest.nm/nofile ;; - *) lt_bad_file=/dev/null ;; - esac - case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in - *$lt_bad_file* | *'Invalid file or object type'*) - lt_cv_path_NM="$tmp_nm -B" - break 2 - ;; - *) - case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in - */dev/null*) - lt_cv_path_NM="$tmp_nm -p" - break 2 - ;; - *) - lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but - continue # so that we can try to find one that supports BSD flags - ;; - esac - ;; - esac - fi - done - IFS=$lt_save_ifs - done - : ${lt_cv_path_NM=no} -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 -$as_echo "$lt_cv_path_NM" >&6; } -if test no != "$lt_cv_path_NM"; then - NM=$lt_cv_path_NM -else - # Didn't find any BSD compatible name lister, look for dumpbin. - if test -n "$DUMPBIN"; then : - # Let the user override the test. - else - if test -n "$ac_tool_prefix"; then - for ac_prog in dumpbin "link -dump" - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_DUMPBIN+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$DUMPBIN"; then - ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -DUMPBIN=$ac_cv_prog_DUMPBIN -if test -n "$DUMPBIN"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 -$as_echo "$DUMPBIN" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$DUMPBIN" && break - done -fi -if test -z "$DUMPBIN"; then - ac_ct_DUMPBIN=$DUMPBIN - for ac_prog in dumpbin "link -dump" -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_DUMPBIN"; then - ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN -if test -n "$ac_ct_DUMPBIN"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 -$as_echo "$ac_ct_DUMPBIN" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_DUMPBIN" && break -done - - if test "x$ac_ct_DUMPBIN" = x; then - DUMPBIN=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - DUMPBIN=$ac_ct_DUMPBIN - fi -fi - - case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in - *COFF*) - DUMPBIN="$DUMPBIN -symbols -headers" - ;; - *) - DUMPBIN=: - ;; - esac - fi - - if test : != "$DUMPBIN"; then - NM=$DUMPBIN - fi -fi -test -z "$NM" && NM=nm - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 -$as_echo_n "checking the name lister ($NM) interface... " >&6; } -if ${lt_cv_nm_interface+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_nm_interface="BSD nm" - echo "int some_variable = 0;" > conftest.$ac_ext - (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) - (eval "$ac_compile" 2>conftest.err) - cat conftest.err >&5 - (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) - (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) - cat conftest.err >&5 - (eval echo "\"\$as_me:$LINENO: output\"" >&5) - cat conftest.out >&5 - if $GREP 'External.*some_variable' conftest.out > /dev/null; then - lt_cv_nm_interface="MS dumpbin" - fi - rm -f conftest* -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 -$as_echo "$lt_cv_nm_interface" >&6; } - -# find the maximum length of command line arguments -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 -$as_echo_n "checking the maximum length of command line arguments... " >&6; } -if ${lt_cv_sys_max_cmd_len+:} false; then : - $as_echo_n "(cached) " >&6 -else - i=0 - teststring=ABCD - - case $build_os in - msdosdjgpp*) - # On DJGPP, this test can blow up pretty badly due to problems in libc - # (any single argument exceeding 2000 bytes causes a buffer overrun - # during glob expansion). Even if it were fixed, the result of this - # check would be larger than it should be. - lt_cv_sys_max_cmd_len=12288; # 12K is about right - ;; - - gnu*) - # Under GNU Hurd, this test is not required because there is - # no limit to the length of command line arguments. - # Libtool will interpret -1 as no limit whatsoever - lt_cv_sys_max_cmd_len=-1; - ;; - - cygwin* | mingw* | cegcc*) - # On Win9x/ME, this test blows up -- it succeeds, but takes - # about 5 minutes as the teststring grows exponentially. - # Worse, since 9x/ME are not pre-emptively multitasking, - # you end up with a "frozen" computer, even though with patience - # the test eventually succeeds (with a max line length of 256k). - # Instead, let's just punt: use the minimum linelength reported by - # all of the supported platforms: 8192 (on NT/2K/XP). - lt_cv_sys_max_cmd_len=8192; - ;; - - mint*) - # On MiNT this can take a long time and run out of memory. - lt_cv_sys_max_cmd_len=8192; - ;; - - amigaos*) - # On AmigaOS with pdksh, this test takes hours, literally. - # So we just punt and use a minimum line length of 8192. - lt_cv_sys_max_cmd_len=8192; - ;; - - bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) - # This has been around since 386BSD, at least. Likely further. - if test -x /sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` - elif test -x /usr/sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` - else - lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs - fi - # And add a safety zone - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - ;; - - interix*) - # We know the value 262144 and hardcode it with a safety zone (like BSD) - lt_cv_sys_max_cmd_len=196608 - ;; - - os2*) - # The test takes a long time on OS/2. - lt_cv_sys_max_cmd_len=8192 - ;; - - osf*) - # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure - # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not - # nice to cause kernel panics so lets avoid the loop below. - # First set a reasonable default. - lt_cv_sys_max_cmd_len=16384 - # - if test -x /sbin/sysconfig; then - case `/sbin/sysconfig -q proc exec_disable_arg_limit` in - *1*) lt_cv_sys_max_cmd_len=-1 ;; - esac - fi - ;; - sco3.2v5*) - lt_cv_sys_max_cmd_len=102400 - ;; - sysv5* | sco5v6* | sysv4.2uw2*) - kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` - if test -n "$kargmax"; then - lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` - else - lt_cv_sys_max_cmd_len=32768 - fi - ;; - *) - lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` - if test -n "$lt_cv_sys_max_cmd_len" && \ - test undefined != "$lt_cv_sys_max_cmd_len"; then - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - else - # Make teststring a little bigger before we do anything with it. - # a 1K string should be a reasonable start. - for i in 1 2 3 4 5 6 7 8; do - teststring=$teststring$teststring - done - SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} - # If test is not a shell built-in, we'll probably end up computing a - # maximum length that is only half of the actual maximum length, but - # we can't tell. - while { test X`env echo "$teststring$teststring" 2>/dev/null` \ - = "X$teststring$teststring"; } >/dev/null 2>&1 && - test 17 != "$i" # 1/2 MB should be enough - do - i=`expr $i + 1` - teststring=$teststring$teststring - done - # Only check the string length outside the loop. - lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` - teststring= - # Add a significant safety factor because C++ compilers can tack on - # massive amounts of additional arguments before passing them to the - # linker. It appears as though 1/2 is a usable value. - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` - fi - ;; - esac - -fi - -if test -n "$lt_cv_sys_max_cmd_len"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 -$as_echo "$lt_cv_sys_max_cmd_len" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 -$as_echo "none" >&6; } -fi -max_cmd_len=$lt_cv_sys_max_cmd_len - - - - - - -: ${CP="cp -f"} -: ${MV="mv -f"} -: ${RM="rm -f"} - -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - lt_unset=unset -else - lt_unset=false -fi - - - - - -# test EBCDIC or ASCII -case `echo X|tr X '\101'` in - A) # ASCII based system - # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr - lt_SP2NL='tr \040 \012' - lt_NL2SP='tr \015\012 \040\040' - ;; - *) # EBCDIC based system - lt_SP2NL='tr \100 \n' - lt_NL2SP='tr \r\n \100\100' - ;; -esac - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 -$as_echo_n "checking how to convert $build file names to $host format... " >&6; } -if ${lt_cv_to_host_file_cmd+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $host in - *-*-mingw* ) - case $build in - *-*-mingw* ) # actually msys - lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 - ;; - *-*-cygwin* ) - lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 - ;; - * ) # otherwise, assume *nix - lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 - ;; - esac - ;; - *-*-cygwin* ) - case $build in - *-*-mingw* ) # actually msys - lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin - ;; - *-*-cygwin* ) - lt_cv_to_host_file_cmd=func_convert_file_noop - ;; - * ) # otherwise, assume *nix - lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin - ;; - esac - ;; - * ) # unhandled hosts (and "normal" native builds) - lt_cv_to_host_file_cmd=func_convert_file_noop - ;; -esac - -fi - -to_host_file_cmd=$lt_cv_to_host_file_cmd -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 -$as_echo "$lt_cv_to_host_file_cmd" >&6; } - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 -$as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } -if ${lt_cv_to_tool_file_cmd+:} false; then : - $as_echo_n "(cached) " >&6 -else - #assume ordinary cross tools, or native build. -lt_cv_to_tool_file_cmd=func_convert_file_noop -case $host in - *-*-mingw* ) - case $build in - *-*-mingw* ) # actually msys - lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 - ;; - esac - ;; -esac - -fi - -to_tool_file_cmd=$lt_cv_to_tool_file_cmd -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 -$as_echo "$lt_cv_to_tool_file_cmd" >&6; } - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 -$as_echo_n "checking for $LD option to reload object files... " >&6; } -if ${lt_cv_ld_reload_flag+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_ld_reload_flag='-r' -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 -$as_echo "$lt_cv_ld_reload_flag" >&6; } -reload_flag=$lt_cv_ld_reload_flag -case $reload_flag in -"" | " "*) ;; -*) reload_flag=" $reload_flag" ;; -esac -reload_cmds='$LD$reload_flag -o $output$reload_objs' -case $host_os in - cygwin* | mingw* | pw32* | cegcc*) - if test yes != "$GCC"; then - reload_cmds=false - fi - ;; - darwin*) - if test yes = "$GCC"; then - reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs' - else - reload_cmds='$LD$reload_flag -o $output$reload_objs' - fi - ;; -esac - - - - - - - - - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. -set dummy ${ac_tool_prefix}objdump; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_OBJDUMP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$OBJDUMP"; then - ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -OBJDUMP=$ac_cv_prog_OBJDUMP -if test -n "$OBJDUMP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 -$as_echo "$OBJDUMP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_OBJDUMP"; then - ac_ct_OBJDUMP=$OBJDUMP - # Extract the first word of "objdump", so it can be a program name with args. -set dummy objdump; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_OBJDUMP"; then - ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_OBJDUMP="objdump" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP -if test -n "$ac_ct_OBJDUMP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 -$as_echo "$ac_ct_OBJDUMP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_OBJDUMP" = x; then - OBJDUMP="false" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - OBJDUMP=$ac_ct_OBJDUMP - fi -else - OBJDUMP="$ac_cv_prog_OBJDUMP" -fi - -test -z "$OBJDUMP" && OBJDUMP=objdump - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 -$as_echo_n "checking how to recognize dependent libraries... " >&6; } -if ${lt_cv_deplibs_check_method+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_file_magic_cmd='$MAGIC_CMD' -lt_cv_file_magic_test_file= -lt_cv_deplibs_check_method='unknown' -# Need to set the preceding variable on all platforms that support -# interlibrary dependencies. -# 'none' -- dependencies not supported. -# 'unknown' -- same as none, but documents that we really don't know. -# 'pass_all' -- all dependencies passed with no checks. -# 'test_compile' -- check by making test program. -# 'file_magic [[regex]]' -- check by looking for files in library path -# that responds to the $file_magic_cmd with a given extended regex. -# If you have 'file' or equivalent on your system and you're not sure -# whether 'pass_all' will *always* work, you probably want this one. - -case $host_os in -aix[4-9]*) - lt_cv_deplibs_check_method=pass_all - ;; - -beos*) - lt_cv_deplibs_check_method=pass_all - ;; - -bsdi[45]*) - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' - lt_cv_file_magic_cmd='/usr/bin/file -L' - lt_cv_file_magic_test_file=/shlib/libc.so - ;; - -cygwin*) - # func_win32_libid is a shell function defined in ltmain.sh - lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' - lt_cv_file_magic_cmd='func_win32_libid' - ;; - -mingw* | pw32*) - # Base MSYS/MinGW do not provide the 'file' command needed by - # func_win32_libid shell function, so use a weaker test based on 'objdump', - # unless we find 'file', for example because we are cross-compiling. - if ( file / ) >/dev/null 2>&1; then - lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' - lt_cv_file_magic_cmd='func_win32_libid' - else - # Keep this pattern in sync with the one in func_win32_libid. - lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' - lt_cv_file_magic_cmd='$OBJDUMP -f' - fi - ;; - -cegcc*) - # use the weaker test based on 'objdump'. See mingw*. - lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' - lt_cv_file_magic_cmd='$OBJDUMP -f' - ;; - -darwin* | rhapsody*) - lt_cv_deplibs_check_method=pass_all - ;; - -freebsd* | dragonfly*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then - case $host_cpu in - i*86 ) - # Not sure whether the presence of OpenBSD here was a mistake. - # Let's accept both of them until this is cleared up. - lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` - ;; - esac - else - lt_cv_deplibs_check_method=pass_all - fi - ;; - -haiku*) - lt_cv_deplibs_check_method=pass_all - ;; - -hpux10.20* | hpux11*) - lt_cv_file_magic_cmd=/usr/bin/file - case $host_cpu in - ia64*) - lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' - lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so - ;; - hppa*64*) - lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' - lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl - ;; - *) - lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' - lt_cv_file_magic_test_file=/usr/lib/libc.sl - ;; - esac - ;; - -interix[3-9]*) - # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' - ;; - -irix5* | irix6* | nonstopux*) - case $LD in - *-32|*"-32 ") libmagic=32-bit;; - *-n32|*"-n32 ") libmagic=N32;; - *-64|*"-64 ") libmagic=64-bit;; - *) libmagic=never-match;; - esac - lt_cv_deplibs_check_method=pass_all - ;; - -# This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - -netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' - fi - ;; - -newos6*) - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=/usr/lib/libnls.so - ;; - -*nto* | *qnx*) - lt_cv_deplibs_check_method=pass_all - ;; - -openbsd* | bitrig*) - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' - fi - ;; - -osf3* | osf4* | osf5*) - lt_cv_deplibs_check_method=pass_all - ;; - -rdos*) - lt_cv_deplibs_check_method=pass_all - ;; - -solaris*) - lt_cv_deplibs_check_method=pass_all - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - lt_cv_deplibs_check_method=pass_all - ;; - -sysv4 | sysv4.3*) - case $host_vendor in - motorola) - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` - ;; - ncr) - lt_cv_deplibs_check_method=pass_all - ;; - sequent) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' - ;; - sni) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" - lt_cv_file_magic_test_file=/lib/libc.so - ;; - siemens) - lt_cv_deplibs_check_method=pass_all - ;; - pc) - lt_cv_deplibs_check_method=pass_all - ;; - esac - ;; - -tpf*) - lt_cv_deplibs_check_method=pass_all - ;; -os2*) - lt_cv_deplibs_check_method=pass_all - ;; -esac - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 -$as_echo "$lt_cv_deplibs_check_method" >&6; } - -file_magic_glob= -want_nocaseglob=no -if test "$build" = "$host"; then - case $host_os in - mingw* | pw32*) - if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then - want_nocaseglob=yes - else - file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` - fi - ;; - esac -fi - -file_magic_cmd=$lt_cv_file_magic_cmd -deplibs_check_method=$lt_cv_deplibs_check_method -test -z "$deplibs_check_method" && deplibs_check_method=unknown - - - - - - - - - - - - - - - - - - - - - - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. -set dummy ${ac_tool_prefix}dlltool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_DLLTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$DLLTOOL"; then - ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -DLLTOOL=$ac_cv_prog_DLLTOOL -if test -n "$DLLTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 -$as_echo "$DLLTOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_DLLTOOL"; then - ac_ct_DLLTOOL=$DLLTOOL - # Extract the first word of "dlltool", so it can be a program name with args. -set dummy dlltool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_DLLTOOL"; then - ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_DLLTOOL="dlltool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL -if test -n "$ac_ct_DLLTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 -$as_echo "$ac_ct_DLLTOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_DLLTOOL" = x; then - DLLTOOL="false" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - DLLTOOL=$ac_ct_DLLTOOL - fi -else - DLLTOOL="$ac_cv_prog_DLLTOOL" -fi - -test -z "$DLLTOOL" && DLLTOOL=dlltool - - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 -$as_echo_n "checking how to associate runtime and link libraries... " >&6; } -if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_sharedlib_from_linklib_cmd='unknown' - -case $host_os in -cygwin* | mingw* | pw32* | cegcc*) - # two different shell functions defined in ltmain.sh; - # decide which one to use based on capabilities of $DLLTOOL - case `$DLLTOOL --help 2>&1` in - *--identify-strict*) - lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib - ;; - *) - lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback - ;; - esac - ;; -*) - # fallback: assume linklib IS sharedlib - lt_cv_sharedlib_from_linklib_cmd=$ECHO - ;; -esac - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 -$as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } -sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd -test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO - - - - - - - -if test -n "$ac_tool_prefix"; then - for ac_prog in ar - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_AR+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$AR"; then - ac_cv_prog_AR="$AR" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_AR="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -AR=$ac_cv_prog_AR -if test -n "$AR"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 -$as_echo "$AR" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$AR" && break - done -fi -if test -z "$AR"; then - ac_ct_AR=$AR - for ac_prog in ar -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_AR+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_AR"; then - ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_AR="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_AR=$ac_cv_prog_ac_ct_AR -if test -n "$ac_ct_AR"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 -$as_echo "$ac_ct_AR" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_AR" && break -done - - if test "x$ac_ct_AR" = x; then - AR="false" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - AR=$ac_ct_AR - fi -fi - -: ${AR=ar} -: ${AR_FLAGS=cru} - - - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 -$as_echo_n "checking for archiver @FILE support... " >&6; } -if ${lt_cv_ar_at_file+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_ar_at_file=no - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - echo conftest.$ac_objext > conftest.lst - lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' - { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 - (eval $lt_ar_try) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - if test 0 -eq "$ac_status"; then - # Ensure the archiver fails upon bogus file names. - rm -f conftest.$ac_objext libconftest.a - { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 - (eval $lt_ar_try) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - if test 0 -ne "$ac_status"; then - lt_cv_ar_at_file=@ - fi - fi - rm -f conftest.* libconftest.a - -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 -$as_echo "$lt_cv_ar_at_file" >&6; } - -if test no = "$lt_cv_ar_at_file"; then - archiver_list_spec= -else - archiver_list_spec=$lt_cv_ar_at_file -fi - - - - - - - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -set dummy ${ac_tool_prefix}strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$STRIP"; then - ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_STRIP="${ac_tool_prefix}strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -STRIP=$ac_cv_prog_STRIP -if test -n "$STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -$as_echo "$STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_STRIP"; then - ac_ct_STRIP=$STRIP - # Extract the first word of "strip", so it can be a program name with args. -set dummy strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_STRIP"; then - ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_STRIP="strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -if test -n "$ac_ct_STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 -$as_echo "$ac_ct_STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_STRIP" = x; then - STRIP=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - STRIP=$ac_ct_STRIP - fi -else - STRIP="$ac_cv_prog_STRIP" -fi - -test -z "$STRIP" && STRIP=: - - - - - - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. -set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_RANLIB+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$RANLIB"; then - ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -RANLIB=$ac_cv_prog_RANLIB -if test -n "$RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 -$as_echo "$RANLIB" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_RANLIB"; then - ac_ct_RANLIB=$RANLIB - # Extract the first word of "ranlib", so it can be a program name with args. -set dummy ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_RANLIB"; then - ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_RANLIB="ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB -if test -n "$ac_ct_RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 -$as_echo "$ac_ct_RANLIB" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_RANLIB" = x; then - RANLIB=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - RANLIB=$ac_ct_RANLIB - fi -else - RANLIB="$ac_cv_prog_RANLIB" -fi - -test -z "$RANLIB" && RANLIB=: - - - - - - -# Determine commands to create old-style static archives. -old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' -old_postinstall_cmds='chmod 644 $oldlib' -old_postuninstall_cmds= - -if test -n "$RANLIB"; then - case $host_os in - bitrig* | openbsd*) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" - ;; - *) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" - ;; - esac - old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" -fi - -case $host_os in - darwin*) - lock_old_archive_extraction=yes ;; - *) - lock_old_archive_extraction=no ;; -esac - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC - - -# Check for command to grab the raw symbol name followed by C symbol from nm. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 -$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } -if ${lt_cv_sys_global_symbol_pipe+:} false; then : - $as_echo_n "(cached) " >&6 -else - -# These are sane defaults that work on at least a few old systems. -# [They come from Ultrix. What could be older than Ultrix?!! ;)] - -# Character class describing NM global symbol codes. -symcode='[BCDEGRST]' - -# Regexp to match symbols that can be accessed directly from C. -sympat='\([_A-Za-z][_A-Za-z0-9]*\)' - -# Define system-specific variables. -case $host_os in -aix*) - symcode='[BCDT]' - ;; -cygwin* | mingw* | pw32* | cegcc*) - symcode='[ABCDGISTW]' - ;; -hpux*) - if test ia64 = "$host_cpu"; then - symcode='[ABCDEGRST]' - fi - ;; -irix* | nonstopux*) - symcode='[BCDEGRST]' - ;; -osf*) - symcode='[BCDEGQRST]' - ;; -solaris*) - symcode='[BDRT]' - ;; -sco3.2v5*) - symcode='[DT]' - ;; -sysv4.2uw2*) - symcode='[DT]' - ;; -sysv5* | sco5v6* | unixware* | OpenUNIX*) - symcode='[ABDT]' - ;; -sysv4) - symcode='[DFNSTU]' - ;; -esac - -# If we're using GNU nm, then use its standard symbol codes. -case `$NM -V 2>&1` in -*GNU* | *'with BFD'*) - symcode='[ABCDGIRSTW]' ;; -esac - -if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Gets list of data symbols to import. - lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" - # Adjust the below global symbol transforms to fixup imported variables. - lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" - lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" - lt_c_name_lib_hook="\ - -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ - -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" -else - # Disable hooks by default. - lt_cv_sys_global_symbol_to_import= - lt_cdecl_hook= - lt_c_name_hook= - lt_c_name_lib_hook= -fi - -# Transform an extracted symbol line into a proper C declaration. -# Some systems (esp. on ia64) link data and code symbols differently, -# so use this general approach. -lt_cv_sys_global_symbol_to_cdecl="sed -n"\ -$lt_cdecl_hook\ -" -e 's/^T .* \(.*\)$/extern int \1();/p'"\ -" -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" - -# Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ -$lt_c_name_hook\ -" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ -" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" - -# Transform an extracted symbol line into symbol name with lib prefix and -# symbol address. -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ -$lt_c_name_lib_hook\ -" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ -" -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ -" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" - -# Handle CRLF in mingw tool chain -opt_cr= -case $build_os in -mingw*) - opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp - ;; -esac - -# Try without a prefix underscore, then with it. -for ac_symprfx in "" "_"; do - - # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. - symxfrm="\\1 $ac_symprfx\\2 \\2" - - # Write the raw and C identifiers. - if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Fake it for dumpbin and say T for any non-static function, - # D for any global variable and I for any imported variable. - # Also find C++ and __fastcall symbols from MSVC++, - # which start with @ or ?. - lt_cv_sys_global_symbol_pipe="$AWK '"\ -" {last_section=section; section=\$ 3};"\ -" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ -" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ -" /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ -" /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ -" /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ -" \$ 0!~/External *\|/{next};"\ -" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ -" {if(hide[section]) next};"\ -" {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ -" {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ -" s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ -" s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ -" ' prfx=^$ac_symprfx" - else - lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" - fi - lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" - - # Check to see that the pipe works correctly. - pipe_works=no - - rm -f conftest* - cat > conftest.$ac_ext <<_LT_EOF -#ifdef __cplusplus -extern "C" { -#endif -char nm_test_var; -void nm_test_func(void); -void nm_test_func(void){} -#ifdef __cplusplus -} -#endif -int main(){nm_test_var='a';nm_test_func();return(0);} -_LT_EOF - - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - # Now try to grab the symbols. - nlist=conftest.nm - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 - (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s "$nlist"; then - # Try sorting and uniquifying the output. - if sort "$nlist" | uniq > "$nlist"T; then - mv -f "$nlist"T "$nlist" - else - rm -f "$nlist"T - fi - - # Make sure that we snagged all the symbols we need. - if $GREP ' nm_test_var$' "$nlist" >/dev/null; then - if $GREP ' nm_test_func$' "$nlist" >/dev/null; then - cat <<_LT_EOF > conftest.$ac_ext -/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE -/* DATA imports from DLLs on WIN32 can't be const, because runtime - relocations are performed -- see ld's documentation on pseudo-relocs. */ -# define LT_DLSYM_CONST -#elif defined __osf__ -/* This system does not cope well with relocations in const data. */ -# define LT_DLSYM_CONST -#else -# define LT_DLSYM_CONST const -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -_LT_EOF - # Now generate the symbol file. - eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' - - cat <<_LT_EOF >> conftest.$ac_ext - -/* The mapping between symbol names and symbols. */ -LT_DLSYM_CONST struct { - const char *name; - void *address; -} -lt__PROGRAM__LTX_preloaded_symbols[] = -{ - { "@PROGRAM@", (void *) 0 }, -_LT_EOF - $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext - cat <<\_LT_EOF >> conftest.$ac_ext - {0, (void *) 0} -}; - -/* This works around a problem in FreeBSD linker */ -#ifdef FREEBSD_WORKAROUND -static const void *lt_preloaded_setup() { - return lt__PROGRAM__LTX_preloaded_symbols; -} -#endif - -#ifdef __cplusplus -} -#endif -_LT_EOF - # Now try linking the two files. - mv conftest.$ac_objext conftstm.$ac_objext - lt_globsym_save_LIBS=$LIBS - lt_globsym_save_CFLAGS=$CFLAGS - LIBS=conftstm.$ac_objext - CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 - (eval $ac_link) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest$ac_exeext; then - pipe_works=yes - fi - LIBS=$lt_globsym_save_LIBS - CFLAGS=$lt_globsym_save_CFLAGS - else - echo "cannot find nm_test_func in $nlist" >&5 - fi - else - echo "cannot find nm_test_var in $nlist" >&5 - fi - else - echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 - fi - else - echo "$progname: failed program was:" >&5 - cat conftest.$ac_ext >&5 - fi - rm -rf conftest* conftst* - - # Do not use the global_symbol_pipe unless it works. - if test yes = "$pipe_works"; then - break - else - lt_cv_sys_global_symbol_pipe= - fi -done - -fi - -if test -z "$lt_cv_sys_global_symbol_pipe"; then - lt_cv_sys_global_symbol_to_cdecl= -fi -if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 -$as_echo "failed" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 -$as_echo "ok" >&6; } -fi - -# Response file support. -if test "$lt_cv_nm_interface" = "MS dumpbin"; then - nm_file_list_spec='@' -elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then - nm_file_list_spec='@' -fi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 -$as_echo_n "checking for sysroot... " >&6; } - -# Check whether --with-sysroot was given. -if test "${with_sysroot+set}" = set; then : - withval=$with_sysroot; -else - with_sysroot=no -fi - - -lt_sysroot= -case $with_sysroot in #( - yes) - if test yes = "$GCC"; then - lt_sysroot=`$CC --print-sysroot 2>/dev/null` - fi - ;; #( - /*) - lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` - ;; #( - no|'') - ;; #( - *) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_sysroot" >&5 -$as_echo "$with_sysroot" >&6; } - as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 - ;; -esac - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 -$as_echo "${lt_sysroot:-no}" >&6; } - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a working dd" >&5 -$as_echo_n "checking for a working dd... " >&6; } -if ${ac_cv_path_lt_DD+:} false; then : - $as_echo_n "(cached) " >&6 -else - printf 0123456789abcdef0123456789abcdef >conftest.i -cat conftest.i conftest.i >conftest2.i -: ${lt_DD:=$DD} -if test -z "$lt_DD"; then - ac_path_lt_DD_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in dd; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_lt_DD="$as_dir/$ac_prog$ac_exec_ext" - as_fn_executable_p "$ac_path_lt_DD" || continue -if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then - cmp -s conftest.i conftest.out \ - && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: -fi - $ac_path_lt_DD_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_lt_DD"; then - : - fi -else - ac_cv_path_lt_DD=$lt_DD -fi - -rm -f conftest.i conftest2.i conftest.out -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD" >&5 -$as_echo "$ac_cv_path_lt_DD" >&6; } - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes" >&5 -$as_echo_n "checking how to truncate binary pipes... " >&6; } -if ${lt_cv_truncate_bin+:} false; then : - $as_echo_n "(cached) " >&6 -else - printf 0123456789abcdef0123456789abcdef >conftest.i -cat conftest.i conftest.i >conftest2.i -lt_cv_truncate_bin= -if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then - cmp -s conftest.i conftest.out \ - && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" -fi -rm -f conftest.i conftest2.i conftest.out -test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q" -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin" >&5 -$as_echo "$lt_cv_truncate_bin" >&6; } - - - - - - - -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. -func_cc_basename () -{ - for cc_temp in $*""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac - done - func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` -} - -# Check whether --enable-libtool-lock was given. -if test "${enable_libtool_lock+set}" = set; then : - enableval=$enable_libtool_lock; -fi - -test no = "$enable_libtool_lock" || enable_libtool_lock=yes - -# Some flags need to be propagated to the compiler or linker for good -# libtool support. -case $host in -ia64-*-hpux*) - # Find out what ABI is being produced by ac_compile, and set mode - # options accordingly. - echo 'int i;' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - case `/usr/bin/file conftest.$ac_objext` in - *ELF-32*) - HPUX_IA64_MODE=32 - ;; - *ELF-64*) - HPUX_IA64_MODE=64 - ;; - esac - fi - rm -rf conftest* - ;; -*-*-irix6*) - # Find out what ABI is being produced by ac_compile, and set linker - # options accordingly. - echo '#line '$LINENO' "configure"' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - if test yes = "$lt_cv_prog_gnu_ld"; then - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -melf32bsmip" - ;; - *N32*) - LD="${LD-ld} -melf32bmipn32" - ;; - *64-bit*) - LD="${LD-ld} -melf64bmip" - ;; - esac - else - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -32" - ;; - *N32*) - LD="${LD-ld} -n32" - ;; - *64-bit*) - LD="${LD-ld} -64" - ;; - esac - fi - fi - rm -rf conftest* - ;; - -mips64*-*linux*) - # Find out what ABI is being produced by ac_compile, and set linker - # options accordingly. - echo '#line '$LINENO' "configure"' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - emul=elf - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - emul="${emul}32" - ;; - *64-bit*) - emul="${emul}64" - ;; - esac - case `/usr/bin/file conftest.$ac_objext` in - *MSB*) - emul="${emul}btsmip" - ;; - *LSB*) - emul="${emul}ltsmip" - ;; - esac - case `/usr/bin/file conftest.$ac_objext` in - *N32*) - emul="${emul}n32" - ;; - esac - LD="${LD-ld} -m $emul" - fi - rm -rf conftest* - ;; - -x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ -s390*-*linux*|s390*-*tpf*|sparc*-*linux*) - # Find out what ABI is being produced by ac_compile, and set linker - # options accordingly. Note that the listed cases only cover the - # situations where additional linker options are needed (such as when - # doing 32-bit compilation for a host where ld defaults to 64-bit, or - # vice versa); the common cases where no linker options are needed do - # not appear in the list. - echo 'int i;' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - case `/usr/bin/file conftest.o` in - *32-bit*) - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_i386_fbsd" - ;; - x86_64-*linux*) - case `/usr/bin/file conftest.o` in - *x86-64*) - LD="${LD-ld} -m elf32_x86_64" - ;; - *) - LD="${LD-ld} -m elf_i386" - ;; - esac - ;; - powerpc64le-*linux*) - LD="${LD-ld} -m elf32lppclinux" - ;; - powerpc64-*linux*) - LD="${LD-ld} -m elf32ppclinux" - ;; - s390x-*linux*) - LD="${LD-ld} -m elf_s390" - ;; - sparc64-*linux*) - LD="${LD-ld} -m elf32_sparc" - ;; - esac - ;; - *64-bit*) - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_x86_64_fbsd" - ;; - x86_64-*linux*) - LD="${LD-ld} -m elf_x86_64" - ;; - powerpcle-*linux*) - LD="${LD-ld} -m elf64lppc" - ;; - powerpc-*linux*) - LD="${LD-ld} -m elf64ppc" - ;; - s390*-*linux*|s390*-*tpf*) - LD="${LD-ld} -m elf64_s390" - ;; - sparc*-*linux*) - LD="${LD-ld} -m elf64_sparc" - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; - -*-*-sco3.2v5*) - # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS=$CFLAGS - CFLAGS="$CFLAGS -belf" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 -$as_echo_n "checking whether the C compiler needs -belf... " >&6; } -if ${lt_cv_cc_needs_belf+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - lt_cv_cc_needs_belf=yes -else - lt_cv_cc_needs_belf=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 -$as_echo "$lt_cv_cc_needs_belf" >&6; } - if test yes != "$lt_cv_cc_needs_belf"; then - # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS=$SAVE_CFLAGS - fi - ;; -*-*solaris*) - # Find out what ABI is being produced by ac_compile, and set linker - # options accordingly. - echo 'int i;' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - case `/usr/bin/file conftest.o` in - *64-bit*) - case $lt_cv_prog_gnu_ld in - yes*) - case $host in - i?86-*-solaris*|x86_64-*-solaris*) - LD="${LD-ld} -m elf_x86_64" - ;; - sparc*-*-solaris*) - LD="${LD-ld} -m elf64_sparc" - ;; - esac - # GNU ld 2.21 introduced _sol2 emulations. Use them if available. - if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then - LD=${LD-ld}_sol2 - fi - ;; - *) - if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then - LD="${LD-ld} -64" - fi - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; -esac - -need_locks=$enable_libtool_lock - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. -set dummy ${ac_tool_prefix}mt; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$MANIFEST_TOOL"; then - ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL -if test -n "$MANIFEST_TOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 -$as_echo "$MANIFEST_TOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_MANIFEST_TOOL"; then - ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL - # Extract the first word of "mt", so it can be a program name with args. -set dummy mt; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_MANIFEST_TOOL"; then - ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL -if test -n "$ac_ct_MANIFEST_TOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 -$as_echo "$ac_ct_MANIFEST_TOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_MANIFEST_TOOL" = x; then - MANIFEST_TOOL=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL - fi -else - MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" -fi - -test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 -$as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } -if ${lt_cv_path_mainfest_tool+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_path_mainfest_tool=no - echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 - $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out - cat conftest.err >&5 - if $GREP 'Manifest Tool' conftest.out > /dev/null; then - lt_cv_path_mainfest_tool=yes - fi - rm -f conftest* -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 -$as_echo "$lt_cv_path_mainfest_tool" >&6; } -if test yes != "$lt_cv_path_mainfest_tool"; then - MANIFEST_TOOL=: -fi - - - - - - - case $host_os in - rhapsody* | darwin*) - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. -set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_DSYMUTIL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$DSYMUTIL"; then - ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -DSYMUTIL=$ac_cv_prog_DSYMUTIL -if test -n "$DSYMUTIL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 -$as_echo "$DSYMUTIL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_DSYMUTIL"; then - ac_ct_DSYMUTIL=$DSYMUTIL - # Extract the first word of "dsymutil", so it can be a program name with args. -set dummy dsymutil; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_DSYMUTIL"; then - ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL -if test -n "$ac_ct_DSYMUTIL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 -$as_echo "$ac_ct_DSYMUTIL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_DSYMUTIL" = x; then - DSYMUTIL=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - DSYMUTIL=$ac_ct_DSYMUTIL - fi -else - DSYMUTIL="$ac_cv_prog_DSYMUTIL" -fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. -set dummy ${ac_tool_prefix}nmedit; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_NMEDIT+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$NMEDIT"; then - ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -NMEDIT=$ac_cv_prog_NMEDIT -if test -n "$NMEDIT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 -$as_echo "$NMEDIT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_NMEDIT"; then - ac_ct_NMEDIT=$NMEDIT - # Extract the first word of "nmedit", so it can be a program name with args. -set dummy nmedit; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_NMEDIT"; then - ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_NMEDIT="nmedit" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT -if test -n "$ac_ct_NMEDIT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 -$as_echo "$ac_ct_NMEDIT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_NMEDIT" = x; then - NMEDIT=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - NMEDIT=$ac_ct_NMEDIT - fi -else - NMEDIT="$ac_cv_prog_NMEDIT" -fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. -set dummy ${ac_tool_prefix}lipo; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_LIPO+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$LIPO"; then - ac_cv_prog_LIPO="$LIPO" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_LIPO="${ac_tool_prefix}lipo" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -LIPO=$ac_cv_prog_LIPO -if test -n "$LIPO"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 -$as_echo "$LIPO" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_LIPO"; then - ac_ct_LIPO=$LIPO - # Extract the first word of "lipo", so it can be a program name with args. -set dummy lipo; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_LIPO+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_LIPO"; then - ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_LIPO="lipo" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO -if test -n "$ac_ct_LIPO"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 -$as_echo "$ac_ct_LIPO" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_LIPO" = x; then - LIPO=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - LIPO=$ac_ct_LIPO - fi -else - LIPO="$ac_cv_prog_LIPO" -fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. -set dummy ${ac_tool_prefix}otool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_OTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$OTOOL"; then - ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_OTOOL="${ac_tool_prefix}otool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -OTOOL=$ac_cv_prog_OTOOL -if test -n "$OTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 -$as_echo "$OTOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_OTOOL"; then - ac_ct_OTOOL=$OTOOL - # Extract the first word of "otool", so it can be a program name with args. -set dummy otool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_OTOOL"; then - ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_OTOOL="otool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL -if test -n "$ac_ct_OTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 -$as_echo "$ac_ct_OTOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_OTOOL" = x; then - OTOOL=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - OTOOL=$ac_ct_OTOOL - fi -else - OTOOL="$ac_cv_prog_OTOOL" -fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. -set dummy ${ac_tool_prefix}otool64; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_OTOOL64+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$OTOOL64"; then - ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -OTOOL64=$ac_cv_prog_OTOOL64 -if test -n "$OTOOL64"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 -$as_echo "$OTOOL64" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_OTOOL64"; then - ac_ct_OTOOL64=$OTOOL64 - # Extract the first word of "otool64", so it can be a program name with args. -set dummy otool64; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_OTOOL64"; then - ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_OTOOL64="otool64" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 -if test -n "$ac_ct_OTOOL64"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 -$as_echo "$ac_ct_OTOOL64" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_OTOOL64" = x; then - OTOOL64=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - OTOOL64=$ac_ct_OTOOL64 - fi -else - OTOOL64="$ac_cv_prog_OTOOL64" -fi - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 -$as_echo_n "checking for -single_module linker flag... " >&6; } -if ${lt_cv_apple_cc_single_mod+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_apple_cc_single_mod=no - if test -z "$LT_MULTI_MODULE"; then - # By default we will add the -single_module flag. You can override - # by either setting the environment variable LT_MULTI_MODULE - # non-empty at configure time, or by adding -multi_module to the - # link flags. - rm -rf libconftest.dylib* - echo "int foo(void){return 1;}" > conftest.c - echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ --dynamiclib -Wl,-single_module conftest.c" >&5 - $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ - -dynamiclib -Wl,-single_module conftest.c 2>conftest.err - _lt_result=$? - # If there is a non-empty error log, and "single_module" - # appears in it, assume the flag caused a linker warning - if test -s conftest.err && $GREP single_module conftest.err; then - cat conftest.err >&5 - # Otherwise, if the output was created with a 0 exit code from - # the compiler, it worked. - elif test -f libconftest.dylib && test 0 = "$_lt_result"; then - lt_cv_apple_cc_single_mod=yes - else - cat conftest.err >&5 - fi - rm -rf libconftest.dylib* - rm -f conftest.* - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 -$as_echo "$lt_cv_apple_cc_single_mod" >&6; } - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 -$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } -if ${lt_cv_ld_exported_symbols_list+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_ld_exported_symbols_list=no - save_LDFLAGS=$LDFLAGS - echo "_main" > conftest.sym - LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - lt_cv_ld_exported_symbols_list=yes -else - lt_cv_ld_exported_symbols_list=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$save_LDFLAGS - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 -$as_echo "$lt_cv_ld_exported_symbols_list" >&6; } - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 -$as_echo_n "checking for -force_load linker flag... " >&6; } -if ${lt_cv_ld_force_load+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_ld_force_load=no - cat > conftest.c << _LT_EOF -int forced_loaded() { return 2;} -_LT_EOF - echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 - $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 - echo "$AR cru libconftest.a conftest.o" >&5 - $AR cru libconftest.a conftest.o 2>&5 - echo "$RANLIB libconftest.a" >&5 - $RANLIB libconftest.a 2>&5 - cat > conftest.c << _LT_EOF -int main() { return 0;} -_LT_EOF - echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 - $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err - _lt_result=$? - if test -s conftest.err && $GREP force_load conftest.err; then - cat conftest.err >&5 - elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then - lt_cv_ld_force_load=yes - else - cat conftest.err >&5 - fi - rm -f conftest.err libconftest.a conftest conftest.c - rm -rf conftest.dSYM - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 -$as_echo "$lt_cv_ld_force_load" >&6; } - case $host_os in - rhapsody* | darwin1.[012]) - _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; - darwin1.*) - _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; - darwin*) # darwin 5.x on - # if running on 10.5 or later, the deployment target defaults - # to the OS version, if on x86, and 10.4, the deployment - # target defaults to 10.4. Don't you love it? - case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in - 10.0,*86*-darwin8*|10.0,*-darwin[91]*) - _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; - 10.[012][,.]*) - _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; - 10.*) - _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; - esac - ;; - esac - if test yes = "$lt_cv_apple_cc_single_mod"; then - _lt_dar_single_mod='$single_module' - fi - if test yes = "$lt_cv_ld_exported_symbols_list"; then - _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' - else - _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' - fi - if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then - _lt_dsymutil='~$DSYMUTIL $lib || :' - else - _lt_dsymutil= - fi - ;; - esac - -# func_munge_path_list VARIABLE PATH -# ----------------------------------- -# VARIABLE is name of variable containing _space_ separated list of -# directories to be munged by the contents of PATH, which is string -# having a format: -# "DIR[:DIR]:" -# string "DIR[ DIR]" will be prepended to VARIABLE -# ":DIR[:DIR]" -# string "DIR[ DIR]" will be appended to VARIABLE -# "DIRP[:DIRP]::[DIRA:]DIRA" -# string "DIRP[ DIRP]" will be prepended to VARIABLE and string -# "DIRA[ DIRA]" will be appended to VARIABLE -# "DIR[:DIR]" -# VARIABLE will be replaced by "DIR[ DIR]" -func_munge_path_list () -{ - case x$2 in - x) - ;; - *:) - eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" - ;; - x:*) - eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" - ;; - *::*) - eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" - eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" - ;; - *) - eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" - ;; - esac -} - -# On IRIX 5.3, sys/types and inttypes.h are conflicting. -for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ - inttypes.h stdint.h unistd.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default -" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - -for ac_header in dlfcn.h -do : - ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default -" -if test "x$ac_cv_header_dlfcn_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_DLFCN_H 1 -_ACEOF - -fi - -done - - - - -func_stripname_cnf () -{ - case $2 in - .*) func_stripname_result=`$ECHO "$3" | $SED "s%^$1%%; s%\\\\$2\$%%"`;; - *) func_stripname_result=`$ECHO "$3" | $SED "s%^$1%%; s%$2\$%%"`;; - esac -} # func_stripname_cnf - - - - - -# Set options - - - - enable_dlopen=no - - - enable_win32_dll=no - - - # Check whether --enable-shared was given. -if test "${enable_shared+set}" = set; then : - enableval=$enable_shared; p=${PACKAGE-default} - case $enableval in - yes) enable_shared=yes ;; - no) enable_shared=no ;; - *) - enable_shared=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, - for pkg in $enableval; do - IFS=$lt_save_ifs - if test "X$pkg" = "X$p"; then - enable_shared=yes - fi - done - IFS=$lt_save_ifs - ;; - esac -else - enable_shared=yes -fi - - - - - - - - - - # Check whether --enable-static was given. -if test "${enable_static+set}" = set; then : - enableval=$enable_static; p=${PACKAGE-default} - case $enableval in - yes) enable_static=yes ;; - no) enable_static=no ;; - *) - enable_static=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, - for pkg in $enableval; do - IFS=$lt_save_ifs - if test "X$pkg" = "X$p"; then - enable_static=yes - fi - done - IFS=$lt_save_ifs - ;; - esac -else - enable_static=yes -fi - - - - - - - - - - -# Check whether --with-pic was given. -if test "${with_pic+set}" = set; then : - withval=$with_pic; lt_p=${PACKAGE-default} - case $withval in - yes|no) pic_mode=$withval ;; - *) - pic_mode=default - # Look at the argument we got. We use all the common list separators. - lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, - for lt_pkg in $withval; do - IFS=$lt_save_ifs - if test "X$lt_pkg" = "X$lt_p"; then - pic_mode=yes - fi - done - IFS=$lt_save_ifs - ;; - esac -else - pic_mode=default -fi - - - - - - - - - # Check whether --enable-fast-install was given. -if test "${enable_fast_install+set}" = set; then : - enableval=$enable_fast_install; p=${PACKAGE-default} - case $enableval in - yes) enable_fast_install=yes ;; - no) enable_fast_install=no ;; - *) - enable_fast_install=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, - for pkg in $enableval; do - IFS=$lt_save_ifs - if test "X$pkg" = "X$p"; then - enable_fast_install=yes - fi - done - IFS=$lt_save_ifs - ;; - esac -else - enable_fast_install=yes -fi - - - - - - - - - shared_archive_member_spec= -case $host,$enable_shared in -power*-*-aix[5-9]*,yes) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide" >&5 -$as_echo_n "checking which variant of shared library versioning to provide... " >&6; } - -# Check whether --with-aix-soname was given. -if test "${with_aix_soname+set}" = set; then : - withval=$with_aix_soname; case $withval in - aix|svr4|both) - ;; - *) - as_fn_error $? "Unknown argument to --with-aix-soname" "$LINENO" 5 - ;; - esac - lt_cv_with_aix_soname=$with_aix_soname -else - if ${lt_cv_with_aix_soname+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_with_aix_soname=aix -fi - - with_aix_soname=$lt_cv_with_aix_soname -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_aix_soname" >&5 -$as_echo "$with_aix_soname" >&6; } - if test aix != "$with_aix_soname"; then - # For the AIX way of multilib, we name the shared archive member - # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', - # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. - # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, - # the AIX toolchain works better with OBJECT_MODE set (default 32). - if test 64 = "${OBJECT_MODE-32}"; then - shared_archive_member_spec=shr_64 - else - shared_archive_member_spec=shr - fi - fi - ;; -*) - with_aix_soname=aix - ;; -esac - - - - - - - - - - -# This can be used to rebuild libtool when needed -LIBTOOL_DEPS=$ltmain - -# Always use our own libtool. -LIBTOOL='$(SHELL) $(top_builddir)/libtool' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -test -z "$LN_S" && LN_S="ln -s" - - - - - - - - - - - - - - -if test -n "${ZSH_VERSION+set}"; then - setopt NO_GLOB_SUBST -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 -$as_echo_n "checking for objdir... " >&6; } -if ${lt_cv_objdir+:} false; then : - $as_echo_n "(cached) " >&6 -else - rm -f .libs 2>/dev/null -mkdir .libs 2>/dev/null -if test -d .libs; then - lt_cv_objdir=.libs -else - # MS-DOS does not allow filenames that begin with a dot. - lt_cv_objdir=_libs -fi -rmdir .libs 2>/dev/null -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 -$as_echo "$lt_cv_objdir" >&6; } -objdir=$lt_cv_objdir - - - - - -cat >>confdefs.h <<_ACEOF -#define LT_OBJDIR "$lt_cv_objdir/" -_ACEOF - - - - -case $host_os in -aix3*) - # AIX sometimes has problems with the GCC collect2 program. For some - # reason, if we set the COLLECT_NAMES environment variable, the problems - # vanish in a puff of smoke. - if test set != "${COLLECT_NAMES+set}"; then - COLLECT_NAMES= - export COLLECT_NAMES - fi - ;; -esac - -# Global variables: -ofile=libtool -can_build_shared=yes - -# All known linkers require a '.a' archive for static linking (except MSVC, -# which needs '.lib'). -libext=a - -with_gnu_ld=$lt_cv_prog_gnu_ld - -old_CC=$CC -old_CFLAGS=$CFLAGS - -# Set sane defaults for various variables -test -z "$CC" && CC=cc -test -z "$LTCC" && LTCC=$CC -test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS -test -z "$LD" && LD=ld -test -z "$ac_objext" && ac_objext=o - -func_cc_basename $compiler -cc_basename=$func_cc_basename_result - - -# Only perform the check for file, if the check method requires it -test -z "$MAGIC_CMD" && MAGIC_CMD=file -case $deplibs_check_method in -file_magic*) - if test "$file_magic_cmd" = '$MAGIC_CMD'; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 -$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } -if ${lt_cv_path_MAGIC_CMD+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $MAGIC_CMD in -[\\/*] | ?:[\\/]*) - lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. - ;; -*) - lt_save_MAGIC_CMD=$MAGIC_CMD - lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR - ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" - for ac_dir in $ac_dummy; do - IFS=$lt_save_ifs - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/${ac_tool_prefix}file"; then - lt_cv_path_MAGIC_CMD=$ac_dir/"${ac_tool_prefix}file" - if test -n "$file_magic_test_file"; then - case $deplibs_check_method in - "file_magic "*) - file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD=$lt_cv_path_MAGIC_CMD - if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | - $EGREP "$file_magic_regex" > /dev/null; then - : - else - cat <<_LT_EOF 1>&2 - -*** Warning: the command libtool uses to detect shared libraries, -*** $file_magic_cmd, produces output that libtool cannot recognize. -*** The result is that libtool may fail to recognize shared libraries -*** as such. This will affect the creation of libtool libraries that -*** depend on shared libraries, but programs linked with such libtool -*** libraries will work regardless of this problem. Nevertheless, you -*** may want to report the problem to your system manager and/or to -*** bug-libtool@gnu.org - -_LT_EOF - fi ;; - esac - fi - break - fi - done - IFS=$lt_save_ifs - MAGIC_CMD=$lt_save_MAGIC_CMD - ;; -esac -fi - -MAGIC_CMD=$lt_cv_path_MAGIC_CMD -if test -n "$MAGIC_CMD"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 -$as_echo "$MAGIC_CMD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - - - -if test -z "$lt_cv_path_MAGIC_CMD"; then - if test -n "$ac_tool_prefix"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 -$as_echo_n "checking for file... " >&6; } -if ${lt_cv_path_MAGIC_CMD+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $MAGIC_CMD in -[\\/*] | ?:[\\/]*) - lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. - ;; -*) - lt_save_MAGIC_CMD=$MAGIC_CMD - lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR - ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" - for ac_dir in $ac_dummy; do - IFS=$lt_save_ifs - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/file"; then - lt_cv_path_MAGIC_CMD=$ac_dir/"file" - if test -n "$file_magic_test_file"; then - case $deplibs_check_method in - "file_magic "*) - file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD=$lt_cv_path_MAGIC_CMD - if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | - $EGREP "$file_magic_regex" > /dev/null; then - : - else - cat <<_LT_EOF 1>&2 - -*** Warning: the command libtool uses to detect shared libraries, -*** $file_magic_cmd, produces output that libtool cannot recognize. -*** The result is that libtool may fail to recognize shared libraries -*** as such. This will affect the creation of libtool libraries that -*** depend on shared libraries, but programs linked with such libtool -*** libraries will work regardless of this problem. Nevertheless, you -*** may want to report the problem to your system manager and/or to -*** bug-libtool@gnu.org - -_LT_EOF - fi ;; - esac - fi - break - fi - done - IFS=$lt_save_ifs - MAGIC_CMD=$lt_save_MAGIC_CMD - ;; -esac -fi - -MAGIC_CMD=$lt_cv_path_MAGIC_CMD -if test -n "$MAGIC_CMD"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 -$as_echo "$MAGIC_CMD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - else - MAGIC_CMD=: - fi -fi - - fi - ;; -esac - -# Use C for the default configuration in the libtool script - -lt_save_CC=$CC -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -# Source file extension for C test sources. -ac_ext=c - -# Object file extension for compiled C test sources. -objext=o -objext=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="int some_variable = 0;" - -# Code to be used in simple link tests -lt_simple_link_test_code='int main(){return(0);}' - - - - - - - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC - -# Save the default compiler, since it gets overwritten when the other -# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. -compiler_DEFAULT=$CC - -# save warnings/boilerplate of simple test code -ac_outfile=conftest.$ac_objext -echo "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$RM conftest* - -ac_outfile=conftest.$ac_objext -echo "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$RM -r conftest* - - -## CAVEAT EMPTOR: -## There is no encapsulation within the following macros, do not change -## the running order or otherwise move them around unless you know exactly -## what you are doing... -if test -n "$compiler"; then - -lt_prog_compiler_no_builtin_flag= - -if test yes = "$GCC"; then - case $cc_basename in - nvcc*) - lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; - *) - lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; - esac - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 -$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } -if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_rtti_exceptions=no - ac_outfile=conftest.$ac_objext - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="-fno-rtti -fno-exceptions" ## exclude from sc_useless_quotes_in_assignment - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_rtti_exceptions=yes - fi - fi - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 -$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } - -if test yes = "$lt_cv_prog_compiler_rtti_exceptions"; then - lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" -else - : -fi - -fi - - - - - - - lt_prog_compiler_wl= -lt_prog_compiler_pic= -lt_prog_compiler_static= - - - if test yes = "$GCC"; then - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_static='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test ia64 = "$host_cpu"; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static='-Bstatic' - fi - lt_prog_compiler_pic='-fPIC' - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - lt_prog_compiler_pic='-fPIC' - ;; - m68k) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the '-m68020' flag to GCC prevents building anything better, - # like '-m68040'. - lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' - ;; - esac - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - - mingw* | cygwin* | pw32* | os2* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - lt_prog_compiler_pic='-DDLL_EXPORT' - case $host_os in - os2*) - lt_prog_compiler_static='$wl-static' - ;; - esac - ;; - - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - lt_prog_compiler_pic='-fno-common' - ;; - - haiku*) - # PIC is the default for Haiku. - # The "-static" flag exists, but is broken. - lt_prog_compiler_static= - ;; - - hpux*) - # PIC is the default for 64-bit PA HP-UX, but not for 32-bit - # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag - # sets the default TLS model and affects inlining. - case $host_cpu in - hppa*64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic='-fPIC' - ;; - esac - ;; - - interix[3-9]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - - msdosdjgpp*) - # Just because we use GCC doesn't mean we suddenly get shared libraries - # on systems that don't support them. - lt_prog_compiler_can_build_shared=no - enable_shared=no - ;; - - *nto* | *qnx*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - lt_prog_compiler_pic='-fPIC -shared' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - lt_prog_compiler_pic=-Kconform_pic - fi - ;; - - *) - lt_prog_compiler_pic='-fPIC' - ;; - esac - - case $cc_basename in - nvcc*) # Cuda Compiler Driver 2.2 - lt_prog_compiler_wl='-Xlinker ' - if test -n "$lt_prog_compiler_pic"; then - lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" - fi - ;; - esac - else - # PORTME Check for flag to pass linker flags through the system compiler. - case $host_os in - aix*) - lt_prog_compiler_wl='-Wl,' - if test ia64 = "$host_cpu"; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static='-Bstatic' - else - lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' - fi - ;; - - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - lt_prog_compiler_pic='-fno-common' - case $cc_basename in - nagfor*) - # NAG Fortran compiler - lt_prog_compiler_wl='-Wl,-Wl,,' - lt_prog_compiler_pic='-PIC' - lt_prog_compiler_static='-Bstatic' - ;; - esac - ;; - - mingw* | cygwin* | pw32* | os2* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - lt_prog_compiler_pic='-DDLL_EXPORT' - case $host_os in - os2*) - lt_prog_compiler_static='$wl-static' - ;; - esac - ;; - - hpux9* | hpux10* | hpux11*) - lt_prog_compiler_wl='-Wl,' - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic='+Z' - ;; - esac - # Is there a better lt_prog_compiler_static that works with the bundled CC? - lt_prog_compiler_static='$wl-a ${wl}archive' - ;; - - irix5* | irix6* | nonstopux*) - lt_prog_compiler_wl='-Wl,' - # PIC (with -KPIC) is the default. - lt_prog_compiler_static='-non_shared' - ;; - - linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) - case $cc_basename in - # old Intel for x86_64, which still supported -KPIC. - ecc*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-static' - ;; - # icc used to be incompatible with GCC. - # ICC 10 doesn't accept -KPIC any more. - icc* | ifort*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-fPIC' - lt_prog_compiler_static='-static' - ;; - # Lahey Fortran 8.1. - lf95*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='--shared' - lt_prog_compiler_static='--static' - ;; - nagfor*) - # NAG Fortran compiler - lt_prog_compiler_wl='-Wl,-Wl,,' - lt_prog_compiler_pic='-PIC' - lt_prog_compiler_static='-Bstatic' - ;; - tcc*) - # Fabrice Bellard et al's Tiny C Compiler - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-fPIC' - lt_prog_compiler_static='-static' - ;; - pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) - # Portland Group compilers (*not* the Pentium gcc compiler, - # which looks to be a dead project) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-fpic' - lt_prog_compiler_static='-Bstatic' - ;; - ccc*) - lt_prog_compiler_wl='-Wl,' - # All Alpha code is PIC. - lt_prog_compiler_static='-non_shared' - ;; - xl* | bgxl* | bgf* | mpixl*) - # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-qpic' - lt_prog_compiler_static='-qstaticlink' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) - # Sun Fortran 8.3 passes all unrecognized flags to the linker - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - lt_prog_compiler_wl='' - ;; - *Sun\ F* | *Sun*Fortran*) - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - lt_prog_compiler_wl='-Qoption ld ' - ;; - *Sun\ C*) - # Sun C 5.9 - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - lt_prog_compiler_wl='-Wl,' - ;; - *Intel*\ [CF]*Compiler*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-fPIC' - lt_prog_compiler_static='-static' - ;; - *Portland\ Group*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-fpic' - lt_prog_compiler_static='-Bstatic' - ;; - esac - ;; - esac - ;; - - newsos6) - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - ;; - - *nto* | *qnx*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - lt_prog_compiler_pic='-fPIC -shared' - ;; - - osf3* | osf4* | osf5*) - lt_prog_compiler_wl='-Wl,' - # All OSF/1 code is PIC. - lt_prog_compiler_static='-non_shared' - ;; - - rdos*) - lt_prog_compiler_static='-non_shared' - ;; - - solaris*) - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - case $cc_basename in - f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) - lt_prog_compiler_wl='-Qoption ld ';; - *) - lt_prog_compiler_wl='-Wl,';; - esac - ;; - - sunos4*) - lt_prog_compiler_wl='-Qoption ld ' - lt_prog_compiler_pic='-PIC' - lt_prog_compiler_static='-Bstatic' - ;; - - sysv4 | sysv4.2uw2* | sysv4.3*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - lt_prog_compiler_pic='-Kconform_pic' - lt_prog_compiler_static='-Bstatic' - fi - ;; - - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - ;; - - unicos*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_can_build_shared=no - ;; - - uts4*) - lt_prog_compiler_pic='-pic' - lt_prog_compiler_static='-Bstatic' - ;; - - *) - lt_prog_compiler_can_build_shared=no - ;; - esac - fi - -case $host_os in - # For platforms that do not support PIC, -DPIC is meaningless: - *djgpp*) - lt_prog_compiler_pic= - ;; - *) - lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" - ;; -esac - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 -$as_echo_n "checking for $compiler option to produce PIC... " >&6; } -if ${lt_cv_prog_compiler_pic+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_pic=$lt_prog_compiler_pic -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 -$as_echo "$lt_cv_prog_compiler_pic" >&6; } -lt_prog_compiler_pic=$lt_cv_prog_compiler_pic - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$lt_prog_compiler_pic"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 -$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } -if ${lt_cv_prog_compiler_pic_works+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_pic_works=no - ac_outfile=conftest.$ac_objext - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$lt_prog_compiler_pic -DPIC" ## exclude from sc_useless_quotes_in_assignment - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_pic_works=yes - fi - fi - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 -$as_echo "$lt_cv_prog_compiler_pic_works" >&6; } - -if test yes = "$lt_cv_prog_compiler_pic_works"; then - case $lt_prog_compiler_pic in - "" | " "*) ;; - *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; - esac -else - lt_prog_compiler_pic= - lt_prog_compiler_can_build_shared=no -fi - -fi - - - - - - - - - - - -# -# Check to make sure the static flag actually works. -# -wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 -$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -if ${lt_cv_prog_compiler_static_works+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_static_works=no - save_LDFLAGS=$LDFLAGS - LDFLAGS="$LDFLAGS $lt_tmp_static_flag" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&5 - $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_static_works=yes - fi - else - lt_cv_prog_compiler_static_works=yes - fi - fi - $RM -r conftest* - LDFLAGS=$save_LDFLAGS - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 -$as_echo "$lt_cv_prog_compiler_static_works" >&6; } - -if test yes = "$lt_cv_prog_compiler_static_works"; then - : -else - lt_prog_compiler_static= -fi - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if ${lt_cv_prog_compiler_c_o+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o=yes - fi - fi - chmod u+w . 2>&5 - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 -$as_echo "$lt_cv_prog_compiler_c_o" >&6; } - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if ${lt_cv_prog_compiler_c_o+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o=yes - fi - fi - chmod u+w . 2>&5 - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 -$as_echo "$lt_cv_prog_compiler_c_o" >&6; } - - - - -hard_links=nottested -if test no = "$lt_cv_prog_compiler_c_o" && test no != "$need_locks"; then - # do not overwrite the value of need_locks provided by the user - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 -$as_echo_n "checking if we can lock with hard links... " >&6; } - hard_links=yes - $RM conftest* - ln conftest.a conftest.b 2>/dev/null && hard_links=no - touch conftest.a - ln conftest.a conftest.b 2>&5 || hard_links=no - ln conftest.a conftest.b 2>/dev/null && hard_links=no - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 -$as_echo "$hard_links" >&6; } - if test no = "$hard_links"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} - need_locks=warn - fi -else - need_locks=no -fi - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } - - runpath_var= - allow_undefined_flag= - always_export_symbols=no - archive_cmds= - archive_expsym_cmds= - compiler_needs_object=no - enable_shared_with_static_runtimes=no - export_dynamic_flag_spec= - export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - hardcode_automatic=no - hardcode_direct=no - hardcode_direct_absolute=no - hardcode_libdir_flag_spec= - hardcode_libdir_separator= - hardcode_minus_L=no - hardcode_shlibpath_var=unsupported - inherit_rpath=no - link_all_deplibs=unknown - module_cmds= - module_expsym_cmds= - old_archive_from_new_cmds= - old_archive_from_expsyms_cmds= - thread_safe_flag_spec= - whole_archive_flag_spec= - # include_expsyms should be a list of space-separated symbols to be *always* - # included in the symbol list - include_expsyms= - # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ' (' and ')$', so one must not match beginning or - # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', - # as well as any symbol that contains 'd'. - exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' - # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out - # platforms (ab)use it in PIC code, but their linkers get confused if - # the symbol is explicitly referenced. Since portable code cannot - # rely on this symbol name, it's probably fine to never include it in - # preloaded symbol tables. - # Exclude shared library initialization/finalization symbols. - extract_expsyms_cmds= - - case $host_os in - cygwin* | mingw* | pw32* | cegcc*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test yes != "$GCC"; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd* | bitrig*) - with_gnu_ld=no - ;; - esac - - ld_shlibs=yes - - # On some targets, GNU ld is compatible enough with the native linker - # that we're better off using the native interface for both. - lt_use_gnu_ld_interface=no - if test yes = "$with_gnu_ld"; then - case $host_os in - aix*) - # The AIX port of GNU ld has always aspired to compatibility - # with the native linker. However, as the warning in the GNU ld - # block says, versions before 2.19.5* couldn't really create working - # shared libraries, regardless of the interface used. - case `$LD -v 2>&1` in - *\ \(GNU\ Binutils\)\ 2.19.5*) ;; - *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; - *\ \(GNU\ Binutils\)\ [3-9]*) ;; - *) - lt_use_gnu_ld_interface=yes - ;; - esac - ;; - *) - lt_use_gnu_ld_interface=yes - ;; - esac - fi - - if test yes = "$lt_use_gnu_ld_interface"; then - # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='$wl' - - # Set some defaults for GNU ld with shared library support. These - # are reset later if shared libraries are not supported. Putting them - # here allows them to be overridden if necessary. - runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' - export_dynamic_flag_spec='$wl--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' - else - whole_archive_flag_spec= - fi - supports_anon_versioning=no - case `$LD -v | $SED -e 's/(^)\+)\s\+//' 2>&1` in - *GNU\ gold*) supports_anon_versioning=yes ;; - *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - - # See if GNU ld supports shared libraries. - case $host_os in - aix[3-9]*) - # On AIX/PPC, the GNU linker is very broken - if test ia64 != "$host_cpu"; then - ld_shlibs=no - cat <<_LT_EOF 1>&2 - -*** Warning: the GNU linker, at least up to release 2.19, is reported -*** to be unable to reliably create shared libraries on AIX. -*** Therefore, libtool is disabling shared libraries support. If you -*** really care for shared libraries, you may want to install binutils -*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. -*** You will then need to restart the configuration process. - -_LT_EOF - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - archive_expsym_cmds='' - ;; - m68k) - archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - ;; - esac - ;; - - beos*) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - allow_undefined_flag=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - else - ld_shlibs=no - fi - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, - # as there is no search path for DLLs. - hardcode_libdir_flag_spec='-L$libdir' - export_dynamic_flag_spec='$wl--export-all-symbols' - allow_undefined_flag=unsupported - always_export_symbols=no - enable_shared_with_static_runtimes=yes - export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' - exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' - - if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file, use it as - # is; otherwise, prepend EXPORTS... - archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - ld_shlibs=no - fi - ;; - - haiku*) - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - link_all_deplibs=yes - ;; - - os2*) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - allow_undefined_flag=unsupported - shrext_cmds=.dll - archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - prefix_cmds="$SED"~ - if test EXPORTS = "`$SED 1q $export_symbols`"; then - prefix_cmds="$prefix_cmds -e 1d"; - fi~ - prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ - cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' - enable_shared_with_static_runtimes=yes - ;; - - interix[3-9]*) - hardcode_direct=no - hardcode_shlibpath_var=no - hardcode_libdir_flag_spec='$wl-rpath,$libdir' - export_dynamic_flag_spec='$wl-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - archive_expsym_cmds='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - - gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) - tmp_diet=no - if test linux-dietlibc = "$host_os"; then - case $cc_basename in - diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) - esac - fi - if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ - && test no = "$tmp_diet" - then - tmp_addflag=' $pic_flag' - tmp_sharedflag='-shared' - case $cc_basename,$host_cpu in - pgcc*) # Portland Group C compiler - whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' - tmp_addflag=' $pic_flag' - ;; - pgf77* | pgf90* | pgf95* | pgfortran*) - # Portland Group f77 and f90 compilers - whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' - tmp_addflag=' $pic_flag -Mnomain' ;; - ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 - tmp_addflag=' -i_dynamic' ;; - efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 - tmp_addflag=' -i_dynamic -nofor_main' ;; - ifc* | ifort*) # Intel Fortran compiler - tmp_addflag=' -nofor_main' ;; - lf95*) # Lahey Fortran 8.1 - whole_archive_flag_spec= - tmp_sharedflag='--shared' ;; - nagfor*) # NAGFOR 5.3 - tmp_sharedflag='-Wl,-shared' ;; - xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) - tmp_sharedflag='-qmkshrobj' - tmp_addflag= ;; - nvcc*) # Cuda Compiler Driver 2.2 - whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' - compiler_needs_object=yes - ;; - esac - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) # Sun C 5.9 - whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' - compiler_needs_object=yes - tmp_sharedflag='-G' ;; - *Sun\ F*) # Sun Fortran 8.3 - tmp_sharedflag='-G' ;; - esac - archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - - if test yes = "$supports_anon_versioning"; then - archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' - fi - - case $cc_basename in - tcc*) - export_dynamic_flag_spec='-rdynamic' - ;; - xlf* | bgf* | bgxlf* | mpixlf*) - # IBM XL Fortran 10.1 on PPC cannot create shared libs itself - whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' - hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' - archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' - if test yes = "$supports_anon_versioning"; then - archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' - fi - ;; - esac - else - ld_shlibs=no - fi - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' - wlarc= - else - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - fi - ;; - - solaris*) - if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then - ld_shlibs=no - cat <<_LT_EOF 1>&2 - -*** Warning: The releases 2.8.* of the GNU linker cannot reliably -*** create shared libraries on Solaris systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.9.1 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs=no - fi - ;; - - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) - ld_shlibs=no - cat <<_LT_EOF 1>&2 - -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot -*** reliably create shared libraries on SCO systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.16.91.0.3 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - ;; - *) - # For security reasons, it is highly recommended that you always - # use absolute paths for naming shared libraries, and exclude the - # DT_RUNPATH tag from executables and libraries. But doing so - # requires that you compile everything twice, which is a pain. - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs=no - fi - ;; - esac - ;; - - sunos4*) - archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' - wlarc= - hardcode_direct=yes - hardcode_shlibpath_var=no - ;; - - *) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs=no - fi - ;; - esac - - if test no = "$ld_shlibs"; then - runpath_var= - hardcode_libdir_flag_spec= - export_dynamic_flag_spec= - whole_archive_flag_spec= - fi - else - # PORTME fill in a description of your system's linker (not GNU ld) - case $host_os in - aix3*) - allow_undefined_flag=unsupported - always_export_symbols=yes - archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' - # Note: this linker hardcodes the directories in LIBPATH if there - # are no directories specified by -L. - hardcode_minus_L=yes - if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then - # Neither direct hardcoding nor static linking is supported with a - # broken collect2. - hardcode_direct=unsupported - fi - ;; - - aix[4-9]*) - if test ia64 = "$host_cpu"; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag= - else - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to GNU nm, but means don't demangle to AIX nm. - # Without the "-l" option, or with the "-B" option, AIX nm treats - # weak defined symbols like other global defined symbols, whereas - # GNU nm marks them as "W". - # While the 'weak' keyword is ignored in the Export File, we need - # it in the Import File for the 'aix-soname' feature, so we have - # to replace the "-B" option with "-P" for AIX nm. - if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' - else - export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' - fi - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # have runtime linking enabled, and use it for executables. - # For shared libraries, we enable/disable runtime linking - # depending on the kind of the shared library created - - # when "with_aix_soname,aix_use_runtimelinking" is: - # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables - # "aix,yes" lib.so shared, rtl:yes, for executables - # lib.a static archive - # "both,no" lib.so.V(shr.o) shared, rtl:yes - # lib.a(lib.so.V) shared, rtl:no, for executables - # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables - # lib.a(lib.so.V) shared, rtl:no - # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables - # lib.a static archive - case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) - for ld_flag in $LDFLAGS; do - if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then - aix_use_runtimelinking=yes - break - fi - done - if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then - # With aix-soname=svr4, we create the lib.so.V shared archives only, - # so we don't have lib.a shared libs to link our executables. - # We have to force runtime linking in this case. - aix_use_runtimelinking=yes - LDFLAGS="$LDFLAGS -Wl,-brtl" - fi - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - archive_cmds='' - hardcode_direct=yes - hardcode_direct_absolute=yes - hardcode_libdir_separator=':' - link_all_deplibs=yes - file_list_spec='$wl-f,' - case $with_aix_soname,$aix_use_runtimelinking in - aix,*) ;; # traditional, no import file - svr4,* | *,yes) # use import file - # The Import File defines what to hardcode. - hardcode_direct=no - hardcode_direct_absolute=no - ;; - esac - - if test yes = "$GCC"; then - case $host_os in aix4.[012]|aix4.[012].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`$CC -print-prog-name=collect2` - if test -f "$collect2name" && - strings "$collect2name" | $GREP resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - hardcode_direct=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - hardcode_minus_L=yes - hardcode_libdir_flag_spec='-L$libdir' - hardcode_libdir_separator= - fi - ;; - esac - shared_flag='-shared' - if test yes = "$aix_use_runtimelinking"; then - shared_flag="$shared_flag "'$wl-G' - fi - # Need to ensure runtime linking is disabled for the traditional - # shared library, or the linker may eventually find shared libraries - # /with/ Import File - we do not want to mix them. - shared_flag_aix='-shared' - shared_flag_svr4='-shared $wl-G' - else - # not using gcc - if test ia64 = "$host_cpu"; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test yes = "$aix_use_runtimelinking"; then - shared_flag='$wl-G' - else - shared_flag='$wl-bM:SRE' - fi - shared_flag_aix='$wl-bM:SRE' - shared_flag_svr4='$wl-G' - fi - fi - - export_dynamic_flag_spec='$wl-bexpall' - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - always_export_symbols=yes - if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - allow_undefined_flag='-berok' - # Determine the default libpath from the value encoded in an - # empty executable. - if test set = "${lt_cv_aix_libpath+set}"; then - aix_libpath=$lt_cv_aix_libpath -else - if ${lt_cv_aix_libpath_+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - - lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\([^ ]*\) *$/\1/ - p - } - }' - lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` - # Check for a 64-bit object if we didn't find anything. - if test -z "$lt_cv_aix_libpath_"; then - lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` - fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - if test -z "$lt_cv_aix_libpath_"; then - lt_cv_aix_libpath_=/usr/lib:/lib - fi - -fi - - aix_libpath=$lt_cv_aix_libpath_ -fi - - hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" - archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag - else - if test ia64 = "$host_cpu"; then - hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib' - allow_undefined_flag="-z nodefs" - archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an - # empty executable. - if test set = "${lt_cv_aix_libpath+set}"; then - aix_libpath=$lt_cv_aix_libpath -else - if ${lt_cv_aix_libpath_+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - - lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\([^ ]*\) *$/\1/ - p - } - }' - lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` - # Check for a 64-bit object if we didn't find anything. - if test -z "$lt_cv_aix_libpath_"; then - lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` - fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - if test -z "$lt_cv_aix_libpath_"; then - lt_cv_aix_libpath_=/usr/lib:/lib - fi - -fi - - aix_libpath=$lt_cv_aix_libpath_ -fi - - hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - no_undefined_flag=' $wl-bernotok' - allow_undefined_flag=' $wl-berok' - if test yes = "$with_gnu_ld"; then - # We only use this code for GNU lds that support --whole-archive. - whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' - else - # Exported symbols can be pulled into shared objects from archives - whole_archive_flag_spec='$convenience' - fi - archive_cmds_need_lc=yes - archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' - # -brtl affects multiple linker settings, -berok does not and is overridden later - compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' - if test svr4 != "$with_aix_soname"; then - # This is similar to how AIX traditionally builds its shared libraries. - archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' - fi - if test aix != "$with_aix_soname"; then - archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' - else - # used by -dlpreopen to get the symbols - archive_expsym_cmds="$archive_expsym_cmds"'~$MV $output_objdir/$realname.d/$soname $output_objdir' - fi - archive_expsym_cmds="$archive_expsym_cmds"'~$RM -r $output_objdir/$realname.d' - fi - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - archive_expsym_cmds='' - ;; - m68k) - archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - ;; - esac - ;; - - bsdi[45]*) - export_dynamic_flag_spec=-rdynamic - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - case $cc_basename in - cl*) - # Native MSVC - hardcode_libdir_flag_spec=' ' - allow_undefined_flag=unsupported - always_export_symbols=yes - file_list_spec='@' - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=.dll - # FIXME: Setting linknames here is a bad hack. - archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' - archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then - cp "$export_symbols" "$output_objdir/$soname.def"; - echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; - else - $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' - # The linker will not automatically build a static lib if we build a DLL. - # _LT_TAGVAR(old_archive_from_new_cmds, )='true' - enable_shared_with_static_runtimes=yes - exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' - export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' - # Don't use ranlib - old_postinstall_cmds='chmod 644 $oldlib' - postlink_cmds='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile=$lt_outputfile.exe - lt_tool_outputfile=$lt_tool_outputfile.exe - ;; - esac~ - if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' - ;; - *) - # Assume MSVC wrapper - hardcode_libdir_flag_spec=' ' - allow_undefined_flag=unsupported - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=.dll - # FIXME: Setting linknames here is a bad hack. - archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' - # The linker will automatically build a .lib file if we build a DLL. - old_archive_from_new_cmds='true' - # FIXME: Should let the user specify the lib program. - old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' - enable_shared_with_static_runtimes=yes - ;; - esac - ;; - - darwin* | rhapsody*) - - - archive_cmds_need_lc=no - hardcode_direct=no - hardcode_automatic=yes - hardcode_shlibpath_var=unsupported - if test yes = "$lt_cv_ld_force_load"; then - whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' - - else - whole_archive_flag_spec='' - fi - link_all_deplibs=yes - allow_undefined_flag=$_lt_dar_allow_undefined - case $cc_basename in - ifort*|nagfor*) _lt_dar_can_shared=yes ;; - *) _lt_dar_can_shared=$GCC ;; - esac - if test yes = "$_lt_dar_can_shared"; then - output_verbose_link_cmd=func_echo_all - archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" - module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" - archive_expsym_cmds="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" - module_expsym_cmds="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" - - else - ld_shlibs=no - fi - - ;; - - dgux*) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec='-L$libdir' - hardcode_shlibpath_var=no - ;; - - # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor - # support. Future versions do this automatically, but an explicit c++rt0.o - # does not break anything, and helps significantly (at the cost of a little - # extra space). - freebsd2.2*) - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - hardcode_shlibpath_var=no - ;; - - # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2.*) - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct=yes - hardcode_minus_L=yes - hardcode_shlibpath_var=no - ;; - - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | dragonfly*) - archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - hardcode_shlibpath_var=no - ;; - - hpux9*) - if test yes = "$GCC"; then - archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' - else - archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' - fi - hardcode_libdir_flag_spec='$wl+b $wl$libdir' - hardcode_libdir_separator=: - hardcode_direct=yes - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - export_dynamic_flag_spec='$wl-E' - ;; - - hpux10*) - if test yes,no = "$GCC,$with_gnu_ld"; then - archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' - fi - if test no = "$with_gnu_ld"; then - hardcode_libdir_flag_spec='$wl+b $wl$libdir' - hardcode_libdir_separator=: - hardcode_direct=yes - hardcode_direct_absolute=yes - export_dynamic_flag_spec='$wl-E' - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - fi - ;; - - hpux11*) - if test yes,no = "$GCC,$with_gnu_ld"; then - case $host_cpu in - hppa*64*) - archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - else - case $host_cpu in - hppa*64*) - archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - - # Older versions of the 11.00 compiler do not understand -b yet - # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 -$as_echo_n "checking if $CC understands -b... " >&6; } -if ${lt_cv_prog_compiler__b+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler__b=no - save_LDFLAGS=$LDFLAGS - LDFLAGS="$LDFLAGS -b" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&5 - $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler__b=yes - fi - else - lt_cv_prog_compiler__b=yes - fi - fi - $RM -r conftest* - LDFLAGS=$save_LDFLAGS - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 -$as_echo "$lt_cv_prog_compiler__b" >&6; } - -if test yes = "$lt_cv_prog_compiler__b"; then - archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' -else - archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' -fi - - ;; - esac - fi - if test no = "$with_gnu_ld"; then - hardcode_libdir_flag_spec='$wl+b $wl$libdir' - hardcode_libdir_separator=: - - case $host_cpu in - hppa*64*|ia64*) - hardcode_direct=no - hardcode_shlibpath_var=no - ;; - *) - hardcode_direct=yes - hardcode_direct_absolute=yes - export_dynamic_flag_spec='$wl-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - ;; - esac - fi - ;; - - irix5* | irix6* | nonstopux*) - if test yes = "$GCC"; then - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' - # Try to use the -exported_symbol ld option, if it does not - # work, assume that -exports_file does not work either and - # implicitly export all symbols. - # This should be the same for all languages, so no per-tag cache variable. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 -$as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } -if ${lt_cv_irix_exported_symbol+:} false; then : - $as_echo_n "(cached) " >&6 -else - save_LDFLAGS=$LDFLAGS - LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -int foo (void) { return 0; } -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - lt_cv_irix_exported_symbol=yes -else - lt_cv_irix_exported_symbol=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$save_LDFLAGS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 -$as_echo "$lt_cv_irix_exported_symbol" >&6; } - if test yes = "$lt_cv_irix_exported_symbol"; then - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' - fi - else - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' - fi - archive_cmds_need_lc='no' - hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' - hardcode_libdir_separator=: - inherit_rpath=yes - link_all_deplibs=yes - ;; - - linux*) - case $cc_basename in - tcc*) - # Fabrice Bellard et al's Tiny C Compiler - ld_shlibs=yes - archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out - else - archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF - fi - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - hardcode_shlibpath_var=no - ;; - - newsos6) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct=yes - hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' - hardcode_libdir_separator=: - hardcode_shlibpath_var=no - ;; - - *nto* | *qnx*) - ;; - - openbsd* | bitrig*) - if test -f /usr/libexec/ld.so; then - hardcode_direct=yes - hardcode_shlibpath_var=no - hardcode_direct_absolute=yes - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then - archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' - hardcode_libdir_flag_spec='$wl-rpath,$libdir' - export_dynamic_flag_spec='$wl-E' - else - archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec='$wl-rpath,$libdir' - fi - else - ld_shlibs=no - fi - ;; - - os2*) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - allow_undefined_flag=unsupported - shrext_cmds=.dll - archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - prefix_cmds="$SED"~ - if test EXPORTS = "`$SED 1q $export_symbols`"; then - prefix_cmds="$prefix_cmds -e 1d"; - fi~ - prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ - cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' - enable_shared_with_static_runtimes=yes - ;; - - osf3*) - if test yes = "$GCC"; then - allow_undefined_flag=' $wl-expect_unresolved $wl\*' - archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' - else - allow_undefined_flag=' -expect_unresolved \*' - archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' - fi - archive_cmds_need_lc='no' - hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' - hardcode_libdir_separator=: - ;; - - osf4* | osf5*) # as osf3* with the addition of -msym flag - if test yes = "$GCC"; then - allow_undefined_flag=' $wl-expect_unresolved $wl\*' - archive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' - hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' - else - allow_undefined_flag=' -expect_unresolved \*' - archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' - archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' - - # Both c and cxx compiler support -rpath directly - hardcode_libdir_flag_spec='-rpath $libdir' - fi - archive_cmds_need_lc='no' - hardcode_libdir_separator=: - ;; - - solaris*) - no_undefined_flag=' -z defs' - if test yes = "$GCC"; then - wlarc='$wl' - archive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' - else - case `$CC -V 2>&1` in - *"Compilers 5.0"*) - wlarc='' - archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' - archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' - ;; - *) - wlarc='$wl' - archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' - ;; - esac - fi - hardcode_libdir_flag_spec='-R$libdir' - hardcode_shlibpath_var=no - case $host_os in - solaris2.[0-5] | solaris2.[0-5].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands '-z linker_flag'. GCC discards it without '$wl', - # but is careful enough not to reorder. - # Supported since Solaris 2.6 (maybe 2.5.1?) - if test yes = "$GCC"; then - whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' - else - whole_archive_flag_spec='-z allextract$convenience -z defaultextract' - fi - ;; - esac - link_all_deplibs=yes - ;; - - sunos4*) - if test sequent = "$host_vendor"; then - # Use $CC to link under sequent, because it throws in some extra .o - # files that make .init and .fini sections work. - archive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' - fi - hardcode_libdir_flag_spec='-L$libdir' - hardcode_direct=yes - hardcode_minus_L=yes - hardcode_shlibpath_var=no - ;; - - sysv4) - case $host_vendor in - sni) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct=yes # is this really true??? - ;; - siemens) - ## LD is ld it makes a PLAMLIB - ## CC just makes a GrossModule. - archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' - reload_cmds='$CC -r -o $output$reload_objs' - hardcode_direct=no - ;; - motorola) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct=no #Motorola manual says yes, but my tests say they lie - ;; - esac - runpath_var='LD_RUN_PATH' - hardcode_shlibpath_var=no - ;; - - sysv4.3*) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_shlibpath_var=no - export_dynamic_flag_spec='-Bexport' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_shlibpath_var=no - runpath_var=LD_RUN_PATH - hardcode_runpath_var=yes - ld_shlibs=yes - fi - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag='$wl-z,text' - archive_cmds_need_lc=no - hardcode_shlibpath_var=no - runpath_var='LD_RUN_PATH' - - if test yes = "$GCC"; then - archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We CANNOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - no_undefined_flag='$wl-z,text' - allow_undefined_flag='$wl-z,nodefs' - archive_cmds_need_lc=no - hardcode_shlibpath_var=no - hardcode_libdir_flag_spec='$wl-R,$libdir' - hardcode_libdir_separator=':' - link_all_deplibs=yes - export_dynamic_flag_spec='$wl-Bexport' - runpath_var='LD_RUN_PATH' - - if test yes = "$GCC"; then - archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - uts4*) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec='-L$libdir' - hardcode_shlibpath_var=no - ;; - - *) - ld_shlibs=no - ;; - esac - - if test sni = "$host_vendor"; then - case $host in - sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - export_dynamic_flag_spec='$wl-Blargedynsym' - ;; - esac - fi - fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 -$as_echo "$ld_shlibs" >&6; } -test no = "$ld_shlibs" && can_build_shared=no - -with_gnu_ld=$with_gnu_ld - - - - - - - - - - - - - - - -# -# Do we need to explicitly link libc? -# -case "x$archive_cmds_need_lc" in -x|xyes) - # Assume -lc should be added - archive_cmds_need_lc=yes - - if test yes,yes = "$GCC,$enable_shared"; then - case $archive_cmds in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 -$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } -if ${lt_cv_archive_cmds_need_lc+:} false; then : - $as_echo_n "(cached) " >&6 -else - $RM conftest* - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } 2>conftest.err; then - soname=conftest - lib=conftest - libobjs=conftest.$ac_objext - deplibs= - wl=$lt_prog_compiler_wl - pic_flag=$lt_prog_compiler_pic - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$allow_undefined_flag - allow_undefined_flag= - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 - (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - then - lt_cv_archive_cmds_need_lc=no - else - lt_cv_archive_cmds_need_lc=yes - fi - allow_undefined_flag=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 -$as_echo "$lt_cv_archive_cmds_need_lc" >&6; } - archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc - ;; - esac - fi - ;; -esac - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 -$as_echo_n "checking dynamic linker characteristics... " >&6; } - -if test yes = "$GCC"; then - case $host_os in - darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; - *) lt_awk_arg='/^libraries:/' ;; - esac - case $host_os in - mingw* | cegcc*) lt_sed_strip_eq='s|=\([A-Za-z]:\)|\1|g' ;; - *) lt_sed_strip_eq='s|=/|/|g' ;; - esac - lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` - case $lt_search_path_spec in - *\;*) - # if the path contains ";" then we assume it to be the separator - # otherwise default to the standard path separator (i.e. ":") - it is - # assumed that no part of a normal pathname contains ";" but that should - # okay in the real world where ";" in dirpaths is itself problematic. - lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` - ;; - *) - lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` - ;; - esac - # Ok, now we have the path, separated by spaces, we can step through it - # and add multilib dir if necessary... - lt_tmp_lt_search_path_spec= - lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` - # ...but if some path component already ends with the multilib dir we assume - # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). - case "$lt_multi_os_dir; $lt_search_path_spec " in - "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) - lt_multi_os_dir= - ;; - esac - for lt_sys_path in $lt_search_path_spec; do - if test -d "$lt_sys_path$lt_multi_os_dir"; then - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" - elif test -n "$lt_multi_os_dir"; then - test -d "$lt_sys_path" && \ - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" - fi - done - lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' -BEGIN {RS = " "; FS = "/|\n";} { - lt_foo = ""; - lt_count = 0; - for (lt_i = NF; lt_i > 0; lt_i--) { - if ($lt_i != "" && $lt_i != ".") { - if ($lt_i == "..") { - lt_count++; - } else { - if (lt_count == 0) { - lt_foo = "/" $lt_i lt_foo; - } else { - lt_count--; - } - } - } - } - if (lt_foo != "") { lt_freq[lt_foo]++; } - if (lt_freq[lt_foo] == 1) { print lt_foo; } -}'` - # AWK program above erroneously prepends '/' to C:/dos/paths - # for these hosts. - case $host_os in - mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ - $SED 's|/\([A-Za-z]:\)|\1|g'` ;; - esac - sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` -else - sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" -fi -library_names_spec= -libname_spec='lib$name' -soname_spec= -shrext_cmds=.so -postinstall_cmds= -postuninstall_cmds= -finish_cmds= -finish_eval= -shlibpath_var= -shlibpath_overrides_runpath=unknown -version_type=none -dynamic_linker="$host_os ld.so" -sys_lib_dlsearch_path_spec="/lib /usr/lib" -need_lib_prefix=unknown -hardcode_into_libs=no - -# when you set need_version to no, make sure it does not cause -set_version -# flags to be left without arguments -need_version=unknown - - - -case $host_os in -aix3*) - version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$release$shared_ext$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='$libname$release$shared_ext$major' - ;; - -aix[4-9]*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - hardcode_into_libs=yes - if test ia64 = "$host_cpu"; then - # AIX 5 supports IA64 - library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' - shlibpath_var=LD_LIBRARY_PATH - else - # With GCC up to 2.95.x, collect2 would create an import file - # for dependence libraries. The import file would start with - # the line '#! .'. This would cause the generated library to - # depend on '.', always an invalid library. This was fixed in - # development snapshots of GCC prior to 3.0. - case $host_os in - aix4 | aix4.[01] | aix4.[01].*) - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' - echo ' yes ' - echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then - : - else - can_build_shared=no - fi - ;; - esac - # Using Import Files as archive members, it is possible to support - # filename-based versioning of shared library archives on AIX. While - # this would work for both with and without runtime linking, it will - # prevent static linking of such archives. So we do filename-based - # shared library versioning with .so extension only, which is used - # when both runtime linking and shared linking is enabled. - # Unfortunately, runtime linking may impact performance, so we do - # not want this to be the default eventually. Also, we use the - # versioned .so libs for executables only if there is the -brtl - # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. - # To allow for filename-based versioning support, we need to create - # libNAME.so.V as an archive file, containing: - # *) an Import File, referring to the versioned filename of the - # archive as well as the shared archive member, telling the - # bitwidth (32 or 64) of that shared object, and providing the - # list of exported symbols of that shared object, eventually - # decorated with the 'weak' keyword - # *) the shared object with the F_LOADONLY flag set, to really avoid - # it being seen by the linker. - # At run time we better use the real file rather than another symlink, - # but for link time we create the symlink libNAME.so -> libNAME.so.V - - case $with_aix_soname,$aix_use_runtimelinking in - # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct - # soname into executable. Probably we can add versioning support to - # collect2, so additional links can be useful in future. - aix,yes) # traditional libtool - dynamic_linker='AIX unversionable lib.so' - # If using run time linking (on AIX 4.2 or later) use lib.so - # instead of lib.a to let people know that these are not - # typical AIX shared libraries. - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - ;; - aix,no) # traditional AIX only - dynamic_linker='AIX lib.a(lib.so.V)' - # We preserve .a as extension for shared libraries through AIX4.2 - # and later when we are not doing run time linking. - library_names_spec='$libname$release.a $libname.a' - soname_spec='$libname$release$shared_ext$major' - ;; - svr4,*) # full svr4 only - dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" - library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' - # We do not specify a path in Import Files, so LIBPATH fires. - shlibpath_overrides_runpath=yes - ;; - *,yes) # both, prefer svr4 - dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" - library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' - # unpreferred sharedlib libNAME.a needs extra handling - postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' - postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' - # We do not specify a path in Import Files, so LIBPATH fires. - shlibpath_overrides_runpath=yes - ;; - *,no) # both, prefer aix - dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" - library_names_spec='$libname$release.a $libname.a' - soname_spec='$libname$release$shared_ext$major' - # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling - postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' - postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' - ;; - esac - shlibpath_var=LIBPATH - fi - ;; - -amigaos*) - case $host_cpu in - powerpc) - # Since July 2007 AmigaOS4 officially supports .so libraries. - # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - ;; - m68k) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; - esac - ;; - -beos*) - library_names_spec='$libname$shared_ext' - dynamic_linker="$host_os ld.so" - shlibpath_var=LIBRARY_PATH - ;; - -bsdi[45]*) - version_type=linux # correct to gnu/linux during the next big refactor - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; - -cygwin* | mingw* | pw32* | cegcc*) - version_type=windows - shrext_cmds=.dll - need_version=no - need_lib_prefix=no - - case $GCC,$cc_basename in - yes,*) - # gcc - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \$file`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname~ - if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then - eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; - fi' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - shlibpath_overrides_runpath=yes - - case $host_os in - cygwin*) - # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' - - sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" - ;; - mingw* | cegcc*) - # MinGW DLLs use traditional 'lib' prefix - soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' - ;; - pw32*) - # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' - ;; - esac - dynamic_linker='Win32 ld.exe' - ;; - - *,cl*) - # Native MSVC - libname_spec='$name' - soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' - library_names_spec='$libname.dll.lib' - - case $build_os in - mingw*) - sys_lib_search_path_spec= - lt_save_ifs=$IFS - IFS=';' - for lt_path in $LIB - do - IFS=$lt_save_ifs - # Let DOS variable expansion print the short 8.3 style file name. - lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` - sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" - done - IFS=$lt_save_ifs - # Convert to MSYS style. - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` - ;; - cygwin*) - # Convert to unix form, then to dos form, then back to unix form - # but this time dos style (no spaces!) so that the unix form looks - # like /cygdrive/c/PROGRA~1:/cygdr... - sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` - sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` - sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - ;; - *) - sys_lib_search_path_spec=$LIB - if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then - # It is most probably a Windows format PATH. - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - # FIXME: find the short name or the path components, as spaces are - # common. (e.g. "Program Files" -> "PROGRA~1") - ;; - esac - - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \$file`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - shlibpath_overrides_runpath=yes - dynamic_linker='Win32 link.exe' - ;; - - *) - # Assume MSVC wrapper - library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' - dynamic_linker='Win32 ld.exe' - ;; - esac - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; - -darwin* | rhapsody*) - dynamic_linker="$host_os dyld" - version_type=darwin - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' - soname_spec='$libname$release$major$shared_ext' - shlibpath_overrides_runpath=yes - shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' - - sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' - ;; - -dgux*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -freebsd* | dragonfly*) - # DragonFly does not have aout. When/if they implement a new - # versioning mechanism, adjust this. - if test -x /usr/bin/objformat; then - objformat=`/usr/bin/objformat` - else - case $host_os in - freebsd[23].*) objformat=aout ;; - *) objformat=elf ;; - esac - fi - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - need_version=no - need_lib_prefix=no - ;; - freebsd-*) - library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' - need_version=yes - ;; - esac - shlibpath_var=LD_LIBRARY_PATH - case $host_os in - freebsd2.*) - shlibpath_overrides_runpath=yes - ;; - freebsd3.[01]* | freebsdelf3.[01]*) - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ - freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - *) # from 4.6 on, and DragonFly - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - esac - ;; - -haiku*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - dynamic_linker="$host_os runtime_loader" - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LIBRARY_PATH - shlibpath_overrides_runpath=no - sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' - hardcode_into_libs=yes - ;; - -hpux9* | hpux10* | hpux11*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - version_type=sunos - need_lib_prefix=no - need_version=no - case $host_cpu in - ia64*) - shrext_cmds='.so' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.so" - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - if test 32 = "$HPUX_IA64_MODE"; then - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - sys_lib_dlsearch_path_spec=/usr/lib/hpux32 - else - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - sys_lib_dlsearch_path_spec=/usr/lib/hpux64 - fi - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - ;; - esac - # HP-UX runs *really* slowly unless shared libraries are mode 555, ... - postinstall_cmds='chmod 555 $lib' - # or fails outright, so override atomically: - install_override_mode=555 - ;; - -interix[3-9]*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -irix5* | irix6* | nonstopux*) - case $host_os in - nonstopux*) version_type=nonstopux ;; - *) - if test yes = "$lt_cv_prog_gnu_ld"; then - version_type=linux # correct to gnu/linux during the next big refactor - else - version_type=irix - fi ;; - esac - need_lib_prefix=no - need_version=no - soname_spec='$libname$release$shared_ext$major' - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' - case $host_os in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in # libtool.m4 will add one of these switches to LD - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") - libsuff= shlibsuff= libmagic=32-bit;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") - libsuff=32 shlibsuff=N32 libmagic=N32;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") - libsuff=64 shlibsuff=64 libmagic=64-bit;; - *) libsuff= shlibsuff= libmagic=never-match;; - esac - ;; - esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" - sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" - hardcode_into_libs=yes - ;; - -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no - ;; - -linux*android*) - version_type=none # Android doesn't support versioned libraries. - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext' - soname_spec='$libname$release$shared_ext' - finish_cmds= - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - dynamic_linker='Android linker' - # Don't embed -rpath directories since the linker doesn't support them. - hardcode_libdir_flag_spec='-L$libdir' - ;; - -# This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - - # Some binutils ld are patched to set DT_RUNPATH - if ${lt_cv_shlibpath_overrides_runpath+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_shlibpath_overrides_runpath=no - save_LDFLAGS=$LDFLAGS - save_libdir=$libdir - eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ - LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : - lt_cv_shlibpath_overrides_runpath=yes -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$save_LDFLAGS - libdir=$save_libdir - -fi - - shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath - - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - # Add ABI-specific directories to the system library path. - sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" - - # Ideally, we could use ldconfig to report *all* directores which are - # searched for libraries, however this is still not possible. Aside from not - # being certain /sbin/ldconfig is available, command - # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, - # even though it is searched at run-time. Try to do the best guess by - # appending ld.so.conf contents (and includes) to the search path. - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" - fi - - # We used to test for /lib/ld.so.1 and disable shared libraries on - # powerpc, because MkLinux only supported shared libraries with the - # GNU dynamic linker. Since this was broken with cross compilers, - # most powerpc-linux boxes support dynamic linking these days and - # people can always --disable-shared, the test was removed, and we - # assume the GNU/Linux dynamic linker is in use. - dynamic_linker='GNU/Linux ld.so' - ;; - -netbsd*) - version_type=sunos - need_lib_prefix=no - need_version=no - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - dynamic_linker='NetBSD (a.out) ld.so' - else - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - dynamic_linker='NetBSD ld.elf_so' - fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - -newsos6) - version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -*nto* | *qnx*) - version_type=qnx - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='ldqnx.so' - ;; - -openbsd* | bitrig*) - version_type=sunos - sys_lib_dlsearch_path_spec=/usr/lib - need_lib_prefix=no - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then - need_version=no - else - need_version=yes - fi - library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -os2*) - libname_spec='$name' - version_type=windows - shrext_cmds=.dll - need_version=no - need_lib_prefix=no - # OS/2 can only load a DLL with a base name of 8 characters or less. - soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; - v=$($ECHO $release$versuffix | tr -d .-); - n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); - $ECHO $n$v`$shared_ext' - library_names_spec='${libname}_dll.$libext' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=BEGINLIBPATH - sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - postinstall_cmds='base_file=`basename \$file`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname~ - if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then - eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; - fi' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - ;; - -osf3* | osf4* | osf5*) - version_type=osf - need_lib_prefix=no - need_version=no - soname_spec='$libname$release$shared_ext$major' - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - -rdos*) - dynamic_linker=no - ;; - -solaris*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - # ldd complains unless libraries are executable - postinstall_cmds='chmod +x $lib' - ;; - -sunos4*) - version_type=sunos - library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - if test yes = "$with_gnu_ld"; then - need_lib_prefix=no - fi - need_version=yes - ;; - -sysv4 | sysv4.3*) - version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - case $host_vendor in - sni) - shlibpath_overrides_runpath=no - need_lib_prefix=no - runpath_var=LD_RUN_PATH - ;; - siemens) - need_lib_prefix=no - ;; - motorola) - need_lib_prefix=no - need_version=no - shlibpath_overrides_runpath=no - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' - ;; - esac - ;; - -sysv4*MP*) - if test -d /usr/nec; then - version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' - soname_spec='$libname$shared_ext.$major' - shlibpath_var=LD_LIBRARY_PATH - fi - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=sco - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - if test yes = "$with_gnu_ld"; then - sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - case $host_os in - sco3.2v5*) - sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" - ;; - esac - fi - sys_lib_dlsearch_path_spec='/usr/lib' - ;; - -tpf*) - # TPF is a cross-target only. Preferred cross-host = GNU/Linux. - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -uts4*) - version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -*) - dynamic_linker=no - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 -$as_echo "$dynamic_linker" >&6; } -test no = "$dynamic_linker" && can_build_shared=no - -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test yes = "$GCC"; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -fi - -if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then - sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec -fi - -if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then - sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec -fi - -# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... -configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec - -# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code -func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" - -# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool -configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 -$as_echo_n "checking how to hardcode library paths into programs... " >&6; } -hardcode_action= -if test -n "$hardcode_libdir_flag_spec" || - test -n "$runpath_var" || - test yes = "$hardcode_automatic"; then - - # We can hardcode non-existent directories. - if test no != "$hardcode_direct" && - # If the only mechanism to avoid hardcoding is shlibpath_var, we - # have to relink, otherwise we might link with an installed library - # when we should be linking with a yet-to-be-installed one - ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, )" && - test no != "$hardcode_minus_L"; then - # Linking always hardcodes the temporary library directory. - hardcode_action=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - hardcode_action=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - hardcode_action=unsupported -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 -$as_echo "$hardcode_action" >&6; } - -if test relink = "$hardcode_action" || - test yes = "$inherit_rpath"; then - # Fast installation is not supported - enable_fast_install=no -elif test yes = "$shlibpath_overrides_runpath" || - test no = "$enable_shared"; then - # Fast installation is not necessary - enable_fast_install=needless -fi - - - - - - - if test yes != "$enable_dlopen"; then - enable_dlopen=unknown - enable_dlopen_self=unknown - enable_dlopen_self_static=unknown -else - lt_cv_dlopen=no - lt_cv_dlopen_libs= - - case $host_os in - beos*) - lt_cv_dlopen=load_add_on - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - ;; - - mingw* | pw32* | cegcc*) - lt_cv_dlopen=LoadLibrary - lt_cv_dlopen_libs= - ;; - - cygwin*) - lt_cv_dlopen=dlopen - lt_cv_dlopen_libs= - ;; - - darwin*) - # if libdl is installed we need to link against it - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 -$as_echo_n "checking for dlopen in -ldl... " >&6; } -if ${ac_cv_lib_dl_dlopen+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldl $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dlopen (); -int -main () -{ -return dlopen (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dl_dlopen=yes -else - ac_cv_lib_dl_dlopen=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 -$as_echo "$ac_cv_lib_dl_dlopen" >&6; } -if test "x$ac_cv_lib_dl_dlopen" = xyes; then : - lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl -else - - lt_cv_dlopen=dyld - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - -fi - - ;; - - tpf*) - # Don't try to run any link tests for TPF. We know it's impossible - # because TPF is a cross-compiler, and we know how we open DSOs. - lt_cv_dlopen=dlopen - lt_cv_dlopen_libs= - lt_cv_dlopen_self=no - ;; - - *) - ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" -if test "x$ac_cv_func_shl_load" = xyes; then : - lt_cv_dlopen=shl_load -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 -$as_echo_n "checking for shl_load in -ldld... " >&6; } -if ${ac_cv_lib_dld_shl_load+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldld $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char shl_load (); -int -main () -{ -return shl_load (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dld_shl_load=yes -else - ac_cv_lib_dld_shl_load=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 -$as_echo "$ac_cv_lib_dld_shl_load" >&6; } -if test "x$ac_cv_lib_dld_shl_load" = xyes; then : - lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld -else - ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" -if test "x$ac_cv_func_dlopen" = xyes; then : - lt_cv_dlopen=dlopen -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 -$as_echo_n "checking for dlopen in -ldl... " >&6; } -if ${ac_cv_lib_dl_dlopen+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldl $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dlopen (); -int -main () -{ -return dlopen (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dl_dlopen=yes -else - ac_cv_lib_dl_dlopen=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 -$as_echo "$ac_cv_lib_dl_dlopen" >&6; } -if test "x$ac_cv_lib_dl_dlopen" = xyes; then : - lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 -$as_echo_n "checking for dlopen in -lsvld... " >&6; } -if ${ac_cv_lib_svld_dlopen+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lsvld $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dlopen (); -int -main () -{ -return dlopen (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_svld_dlopen=yes -else - ac_cv_lib_svld_dlopen=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 -$as_echo "$ac_cv_lib_svld_dlopen" >&6; } -if test "x$ac_cv_lib_svld_dlopen" = xyes; then : - lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 -$as_echo_n "checking for dld_link in -ldld... " >&6; } -if ${ac_cv_lib_dld_dld_link+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldld $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dld_link (); -int -main () -{ -return dld_link (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dld_dld_link=yes -else - ac_cv_lib_dld_dld_link=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 -$as_echo "$ac_cv_lib_dld_dld_link" >&6; } -if test "x$ac_cv_lib_dld_dld_link" = xyes; then : - lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld -fi - - -fi - - -fi - - -fi - - -fi - - -fi - - ;; - esac - - if test no = "$lt_cv_dlopen"; then - enable_dlopen=no - else - enable_dlopen=yes - fi - - case $lt_cv_dlopen in - dlopen) - save_CPPFLAGS=$CPPFLAGS - test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - - save_LDFLAGS=$LDFLAGS - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - - save_LIBS=$LIBS - LIBS="$lt_cv_dlopen_libs $LIBS" - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 -$as_echo_n "checking whether a program can dlopen itself... " >&6; } -if ${lt_cv_dlopen_self+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test yes = "$cross_compiling"; then : - lt_cv_dlopen_self=cross -else - lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 - lt_status=$lt_dlunknown - cat > conftest.$ac_ext <<_LT_EOF -#line $LINENO "configure" -#include "confdefs.h" - -#if HAVE_DLFCN_H -#include -#endif - -#include - -#ifdef RTLD_GLOBAL -# define LT_DLGLOBAL RTLD_GLOBAL -#else -# ifdef DL_GLOBAL -# define LT_DLGLOBAL DL_GLOBAL -# else -# define LT_DLGLOBAL 0 -# endif -#endif - -/* We may have to define LT_DLLAZY_OR_NOW in the command line if we - find out it does not work in some platform. */ -#ifndef LT_DLLAZY_OR_NOW -# ifdef RTLD_LAZY -# define LT_DLLAZY_OR_NOW RTLD_LAZY -# else -# ifdef DL_LAZY -# define LT_DLLAZY_OR_NOW DL_LAZY -# else -# ifdef RTLD_NOW -# define LT_DLLAZY_OR_NOW RTLD_NOW -# else -# ifdef DL_NOW -# define LT_DLLAZY_OR_NOW DL_NOW -# else -# define LT_DLLAZY_OR_NOW 0 -# endif -# endif -# endif -# endif -#endif - -/* When -fvisibility=hidden is used, assume the code has been annotated - correspondingly for the symbols needed. */ -#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) -int fnord () __attribute__((visibility("default"))); -#endif - -int fnord () { return 42; } -int main () -{ - void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); - int status = $lt_dlunknown; - - if (self) - { - if (dlsym (self,"fnord")) status = $lt_dlno_uscore; - else - { - if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; - else puts (dlerror ()); - } - /* dlclose (self); */ - } - else - puts (dlerror ()); - - return status; -} -_LT_EOF - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 - (eval $ac_link) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then - (./conftest; exit; ) >&5 2>/dev/null - lt_status=$? - case x$lt_status in - x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; - x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; - x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; - esac - else : - # compilation failed - lt_cv_dlopen_self=no - fi -fi -rm -fr conftest* - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 -$as_echo "$lt_cv_dlopen_self" >&6; } - - if test yes = "$lt_cv_dlopen_self"; then - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 -$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } -if ${lt_cv_dlopen_self_static+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test yes = "$cross_compiling"; then : - lt_cv_dlopen_self_static=cross -else - lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 - lt_status=$lt_dlunknown - cat > conftest.$ac_ext <<_LT_EOF -#line $LINENO "configure" -#include "confdefs.h" - -#if HAVE_DLFCN_H -#include -#endif - -#include - -#ifdef RTLD_GLOBAL -# define LT_DLGLOBAL RTLD_GLOBAL -#else -# ifdef DL_GLOBAL -# define LT_DLGLOBAL DL_GLOBAL -# else -# define LT_DLGLOBAL 0 -# endif -#endif - -/* We may have to define LT_DLLAZY_OR_NOW in the command line if we - find out it does not work in some platform. */ -#ifndef LT_DLLAZY_OR_NOW -# ifdef RTLD_LAZY -# define LT_DLLAZY_OR_NOW RTLD_LAZY -# else -# ifdef DL_LAZY -# define LT_DLLAZY_OR_NOW DL_LAZY -# else -# ifdef RTLD_NOW -# define LT_DLLAZY_OR_NOW RTLD_NOW -# else -# ifdef DL_NOW -# define LT_DLLAZY_OR_NOW DL_NOW -# else -# define LT_DLLAZY_OR_NOW 0 -# endif -# endif -# endif -# endif -#endif - -/* When -fvisibility=hidden is used, assume the code has been annotated - correspondingly for the symbols needed. */ -#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) -int fnord () __attribute__((visibility("default"))); -#endif - -int fnord () { return 42; } -int main () -{ - void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); - int status = $lt_dlunknown; - - if (self) - { - if (dlsym (self,"fnord")) status = $lt_dlno_uscore; - else - { - if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; - else puts (dlerror ()); - } - /* dlclose (self); */ - } - else - puts (dlerror ()); - - return status; -} -_LT_EOF - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 - (eval $ac_link) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then - (./conftest; exit; ) >&5 2>/dev/null - lt_status=$? - case x$lt_status in - x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; - x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; - x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; - esac - else : - # compilation failed - lt_cv_dlopen_self_static=no - fi -fi -rm -fr conftest* - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 -$as_echo "$lt_cv_dlopen_self_static" >&6; } - fi - - CPPFLAGS=$save_CPPFLAGS - LDFLAGS=$save_LDFLAGS - LIBS=$save_LIBS - ;; - esac - - case $lt_cv_dlopen_self in - yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; - *) enable_dlopen_self=unknown ;; - esac - - case $lt_cv_dlopen_self_static in - yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; - *) enable_dlopen_self_static=unknown ;; - esac -fi - - - - - - - - - - - - - - - - - -striplib= -old_striplib= -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 -$as_echo_n "checking whether stripping libraries is possible... " >&6; } -if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then - test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" - test -z "$striplib" && striplib="$STRIP --strip-unneeded" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -else -# FIXME - insert some real tests, host_os isn't really good enough - case $host_os in - darwin*) - if test -n "$STRIP"; then - striplib="$STRIP -x" - old_striplib="$STRIP -S" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - fi - ;; - *) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - ;; - esac -fi - - - - - - - - - - - - - # Report what library types will actually be built - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 -$as_echo_n "checking if libtool supports shared libraries... " >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 -$as_echo "$can_build_shared" >&6; } - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 -$as_echo_n "checking whether to build shared libraries... " >&6; } - test no = "$can_build_shared" && enable_shared=no - - # On AIX, shared libraries and static libraries use the same namespace, and - # are all built from PIC. - case $host_os in - aix3*) - test yes = "$enable_shared" && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - - aix[4-9]*) - if test ia64 != "$host_cpu"; then - case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in - yes,aix,yes) ;; # shared object as lib.so file only - yes,svr4,*) ;; # shared object as lib.so archive member only - yes,*) enable_static=no ;; # shared object in lib.a archive as well - esac - fi - ;; - esac - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 -$as_echo "$enable_shared" >&6; } - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 -$as_echo_n "checking whether to build static libraries... " >&6; } - # Make sure either enable_shared or enable_static is yes. - test yes = "$enable_shared" || enable_static=yes - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 -$as_echo "$enable_static" >&6; } - - - - -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -CC=$lt_save_CC - - if test -n "$CXX" && ( test no != "$CXX" && - ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || - (test g++ != "$CXX"))); then - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 -$as_echo_n "checking how to run the C++ preprocessor... " >&6; } -if test -z "$CXXCPP"; then - if ${ac_cv_prog_CXXCPP+:} false; then : - $as_echo_n "(cached) " >&6 -else - # Double quotes because CXXCPP needs to be expanded - for CXXCPP in "$CXX -E" "/lib/cpp" - do - ac_preproc_ok=false -for ac_cxx_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - break -fi - - done - ac_cv_prog_CXXCPP=$CXXCPP - -fi - CXXCPP=$ac_cv_prog_CXXCPP -else - ac_cv_prog_CXXCPP=$CXXCPP -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 -$as_echo "$CXXCPP" >&6; } -ac_preproc_ok=false -for ac_cxx_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check -See \`config.log' for more details" "$LINENO" 5; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -else - _lt_caught_CXX_error=yes -fi - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - -archive_cmds_need_lc_CXX=no -allow_undefined_flag_CXX= -always_export_symbols_CXX=no -archive_expsym_cmds_CXX= -compiler_needs_object_CXX=no -export_dynamic_flag_spec_CXX= -hardcode_direct_CXX=no -hardcode_direct_absolute_CXX=no -hardcode_libdir_flag_spec_CXX= -hardcode_libdir_separator_CXX= -hardcode_minus_L_CXX=no -hardcode_shlibpath_var_CXX=unsupported -hardcode_automatic_CXX=no -inherit_rpath_CXX=no -module_cmds_CXX= -module_expsym_cmds_CXX= -link_all_deplibs_CXX=unknown -old_archive_cmds_CXX=$old_archive_cmds -reload_flag_CXX=$reload_flag -reload_cmds_CXX=$reload_cmds -no_undefined_flag_CXX= -whole_archive_flag_spec_CXX= -enable_shared_with_static_runtimes_CXX=no - -# Source file extension for C++ test sources. -ac_ext=cpp - -# Object file extension for compiled C++ test sources. -objext=o -objext_CXX=$objext - -# No sense in running all these tests if we already determined that -# the CXX compiler isn't working. Some variables (like enable_shared) -# are currently assumed to apply to all compilers on this platform, -# and will be corrupted by setting them based on a non-working compiler. -if test yes != "$_lt_caught_CXX_error"; then - # Code to be used in simple compile tests - lt_simple_compile_test_code="int some_variable = 0;" - - # Code to be used in simple link tests - lt_simple_link_test_code='int main(int, char *[]) { return(0); }' - - # ltmain only uses $CC for tagged configurations so make sure $CC is set. - - - - - - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC - - - # save warnings/boilerplate of simple test code - ac_outfile=conftest.$ac_objext -echo "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$RM conftest* - - ac_outfile=conftest.$ac_objext -echo "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$RM -r conftest* - - - # Allow CC to be a program name with arguments. - lt_save_CC=$CC - lt_save_CFLAGS=$CFLAGS - lt_save_LD=$LD - lt_save_GCC=$GCC - GCC=$GXX - lt_save_with_gnu_ld=$with_gnu_ld - lt_save_path_LD=$lt_cv_path_LD - if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then - lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx - else - $as_unset lt_cv_prog_gnu_ld - fi - if test -n "${lt_cv_path_LDCXX+set}"; then - lt_cv_path_LD=$lt_cv_path_LDCXX - else - $as_unset lt_cv_path_LD - fi - test -z "${LDCXX+set}" || LD=$LDCXX - CC=${CXX-"c++"} - CFLAGS=$CXXFLAGS - compiler=$CC - compiler_CXX=$CC - func_cc_basename $compiler -cc_basename=$func_cc_basename_result - - - if test -n "$compiler"; then - # We don't want -fno-exception when compiling C++ code, so set the - # no_builtin_flag separately - if test yes = "$GXX"; then - lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' - else - lt_prog_compiler_no_builtin_flag_CXX= - fi - - if test yes = "$GXX"; then - # Set up default GNU C++ configuration - - - -# Check whether --with-gnu-ld was given. -if test "${with_gnu_ld+set}" = set; then : - withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes -else - with_gnu_ld=no -fi - -ac_prog=ld -if test yes = "$GCC"; then - # Check if gcc -print-prog-name=ld gives a path. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 -$as_echo_n "checking for ld used by $CC... " >&6; } - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return, which upsets mingw - ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $ac_prog in - # Accept absolute paths. - [\\/]* | ?:[\\/]*) - re_direlt='/[^/][^/]*/\.\./' - # Canonicalize the pathname of ld - ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` - while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do - ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` - done - test -z "$LD" && LD=$ac_prog - ;; - "") - # If it fails, then pretend we aren't using GCC. - ac_prog=ld - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac -elif test yes = "$with_gnu_ld"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 -$as_echo_n "checking for GNU ld... " >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 -$as_echo_n "checking for non-GNU ld... " >&6; } -fi -if ${lt_cv_path_LD+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$LD"; then - lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS=$lt_save_ifs - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD=$ac_dir/$ac_prog - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some variants of GNU ld only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$lt_cv_path_LD" -v 2>&1 &5 -$as_echo "$LD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi -test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 -$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -if ${lt_cv_prog_gnu_ld+:} false; then : - $as_echo_n "(cached) " >&6 -else - # I'd rather use --version here, but apparently some GNU lds only accept -v. -case `$LD -v 2>&1 &5 -$as_echo "$lt_cv_prog_gnu_ld" >&6; } -with_gnu_ld=$lt_cv_prog_gnu_ld - - - - - - - - # Check if GNU C++ uses GNU ld as the underlying linker, since the - # archiving commands below assume that GNU ld is being used. - if test yes = "$with_gnu_ld"; then - archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - - hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' - export_dynamic_flag_spec_CXX='$wl--export-dynamic' - - # If archive_cmds runs LD, not CC, wlarc should be empty - # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to - # investigate it a little bit more. (MM) - wlarc='$wl' - - # ancient GNU ld didn't support --whole-archive et. al. - if eval "`$CC -print-prog-name=ld` --help 2>&1" | - $GREP 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' - else - whole_archive_flag_spec_CXX= - fi - else - with_gnu_ld=no - wlarc= - - # A generic and very simple default shared library creation - # command for GNU C++ for the case where it uses the native - # linker, instead of GNU ld. If possible, this setting should - # overridden to take advantage of the native linker features on - # the platform it is being used on. - archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - fi - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' - - else - GXX=no - with_gnu_ld=no - wlarc= - fi - - # PORTME: fill in a description of your system's C++ link characteristics - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } - ld_shlibs_CXX=yes - case $host_os in - aix3*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - aix[4-9]*) - if test ia64 = "$host_cpu"; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag= - else - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # have runtime linking enabled, and use it for executables. - # For shared libraries, we enable/disable runtime linking - # depending on the kind of the shared library created - - # when "with_aix_soname,aix_use_runtimelinking" is: - # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables - # "aix,yes" lib.so shared, rtl:yes, for executables - # lib.a static archive - # "both,no" lib.so.V(shr.o) shared, rtl:yes - # lib.a(lib.so.V) shared, rtl:no, for executables - # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables - # lib.a(lib.so.V) shared, rtl:no - # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables - # lib.a static archive - case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) - for ld_flag in $LDFLAGS; do - case $ld_flag in - *-brtl*) - aix_use_runtimelinking=yes - break - ;; - esac - done - if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then - # With aix-soname=svr4, we create the lib.so.V shared archives only, - # so we don't have lib.a shared libs to link our executables. - # We have to force runtime linking in this case. - aix_use_runtimelinking=yes - LDFLAGS="$LDFLAGS -Wl,-brtl" - fi - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - archive_cmds_CXX='' - hardcode_direct_CXX=yes - hardcode_direct_absolute_CXX=yes - hardcode_libdir_separator_CXX=':' - link_all_deplibs_CXX=yes - file_list_spec_CXX='$wl-f,' - case $with_aix_soname,$aix_use_runtimelinking in - aix,*) ;; # no import file - svr4,* | *,yes) # use import file - # The Import File defines what to hardcode. - hardcode_direct_CXX=no - hardcode_direct_absolute_CXX=no - ;; - esac - - if test yes = "$GXX"; then - case $host_os in aix4.[012]|aix4.[012].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`$CC -print-prog-name=collect2` - if test -f "$collect2name" && - strings "$collect2name" | $GREP resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - hardcode_direct_CXX=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - hardcode_minus_L_CXX=yes - hardcode_libdir_flag_spec_CXX='-L$libdir' - hardcode_libdir_separator_CXX= - fi - esac - shared_flag='-shared' - if test yes = "$aix_use_runtimelinking"; then - shared_flag=$shared_flag' $wl-G' - fi - # Need to ensure runtime linking is disabled for the traditional - # shared library, or the linker may eventually find shared libraries - # /with/ Import File - we do not want to mix them. - shared_flag_aix='-shared' - shared_flag_svr4='-shared $wl-G' - else - # not using gcc - if test ia64 = "$host_cpu"; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test yes = "$aix_use_runtimelinking"; then - shared_flag='$wl-G' - else - shared_flag='$wl-bM:SRE' - fi - shared_flag_aix='$wl-bM:SRE' - shared_flag_svr4='$wl-G' - fi - fi - - export_dynamic_flag_spec_CXX='$wl-bexpall' - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to - # export. - always_export_symbols_CXX=yes - if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - # The "-G" linker flag allows undefined symbols. - no_undefined_flag_CXX='-bernotok' - # Determine the default libpath from the value encoded in an empty - # executable. - if test set = "${lt_cv_aix_libpath+set}"; then - aix_libpath=$lt_cv_aix_libpath -else - if ${lt_cv_aix_libpath__CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - - lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\([^ ]*\) *$/\1/ - p - } - }' - lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` - # Check for a 64-bit object if we didn't find anything. - if test -z "$lt_cv_aix_libpath__CXX"; then - lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` - fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - if test -z "$lt_cv_aix_libpath__CXX"; then - lt_cv_aix_libpath__CXX=/usr/lib:/lib - fi - -fi - - aix_libpath=$lt_cv_aix_libpath__CXX -fi - - hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" - - archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag - else - if test ia64 = "$host_cpu"; then - hardcode_libdir_flag_spec_CXX='$wl-R $libdir:/usr/lib:/lib' - allow_undefined_flag_CXX="-z nodefs" - archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an - # empty executable. - if test set = "${lt_cv_aix_libpath+set}"; then - aix_libpath=$lt_cv_aix_libpath -else - if ${lt_cv_aix_libpath__CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - - lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\([^ ]*\) *$/\1/ - p - } - }' - lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` - # Check for a 64-bit object if we didn't find anything. - if test -z "$lt_cv_aix_libpath__CXX"; then - lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` - fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - if test -z "$lt_cv_aix_libpath__CXX"; then - lt_cv_aix_libpath__CXX=/usr/lib:/lib - fi - -fi - - aix_libpath=$lt_cv_aix_libpath__CXX -fi - - hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - no_undefined_flag_CXX=' $wl-bernotok' - allow_undefined_flag_CXX=' $wl-berok' - if test yes = "$with_gnu_ld"; then - # We only use this code for GNU lds that support --whole-archive. - whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' - else - # Exported symbols can be pulled into shared objects from archives - whole_archive_flag_spec_CXX='$convenience' - fi - archive_cmds_need_lc_CXX=yes - archive_expsym_cmds_CXX='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' - # -brtl affects multiple linker settings, -berok does not and is overridden later - compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' - if test svr4 != "$with_aix_soname"; then - # This is similar to how AIX traditionally builds its shared - # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. - archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' - fi - if test aix != "$with_aix_soname"; then - archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' - else - # used by -dlpreopen to get the symbols - archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$MV $output_objdir/$realname.d/$soname $output_objdir' - fi - archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$RM -r $output_objdir/$realname.d' - fi - fi - ;; - - beos*) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - allow_undefined_flag_CXX=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - else - ld_shlibs_CXX=no - fi - ;; - - chorus*) - case $cc_basename in - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - ;; - - cygwin* | mingw* | pw32* | cegcc*) - case $GXX,$cc_basename in - ,cl* | no,cl*) - # Native MSVC - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - hardcode_libdir_flag_spec_CXX=' ' - allow_undefined_flag_CXX=unsupported - always_export_symbols_CXX=yes - file_list_spec_CXX='@' - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=.dll - # FIXME: Setting linknames here is a bad hack. - archive_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' - archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then - cp "$export_symbols" "$output_objdir/$soname.def"; - echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; - else - $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' - # The linker will not automatically build a static lib if we build a DLL. - # _LT_TAGVAR(old_archive_from_new_cmds, CXX)='true' - enable_shared_with_static_runtimes_CXX=yes - # Don't use ranlib - old_postinstall_cmds_CXX='chmod 644 $oldlib' - postlink_cmds_CXX='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile=$lt_outputfile.exe - lt_tool_outputfile=$lt_tool_outputfile.exe - ;; - esac~ - func_to_tool_file "$lt_outputfile"~ - if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' - ;; - *) - # g++ - # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, - # as there is no search path for DLLs. - hardcode_libdir_flag_spec_CXX='-L$libdir' - export_dynamic_flag_spec_CXX='$wl--export-all-symbols' - allow_undefined_flag_CXX=unsupported - always_export_symbols_CXX=no - enable_shared_with_static_runtimes_CXX=yes - - if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file, use it as - # is; otherwise, prepend EXPORTS... - archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - ld_shlibs_CXX=no - fi - ;; - esac - ;; - darwin* | rhapsody*) - - - archive_cmds_need_lc_CXX=no - hardcode_direct_CXX=no - hardcode_automatic_CXX=yes - hardcode_shlibpath_var_CXX=unsupported - if test yes = "$lt_cv_ld_force_load"; then - whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' - - else - whole_archive_flag_spec_CXX='' - fi - link_all_deplibs_CXX=yes - allow_undefined_flag_CXX=$_lt_dar_allow_undefined - case $cc_basename in - ifort*|nagfor*) _lt_dar_can_shared=yes ;; - *) _lt_dar_can_shared=$GCC ;; - esac - if test yes = "$_lt_dar_can_shared"; then - output_verbose_link_cmd=func_echo_all - archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" - module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" - archive_expsym_cmds_CXX="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" - module_expsym_cmds_CXX="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" - if test yes != "$lt_cv_apple_cc_single_mod"; then - archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" - archive_expsym_cmds_CXX="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" - fi - - else - ld_shlibs_CXX=no - fi - - ;; - - os2*) - hardcode_libdir_flag_spec_CXX='-L$libdir' - hardcode_minus_L_CXX=yes - allow_undefined_flag_CXX=unsupported - shrext_cmds=.dll - archive_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - archive_expsym_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - prefix_cmds="$SED"~ - if test EXPORTS = "`$SED 1q $export_symbols`"; then - prefix_cmds="$prefix_cmds -e 1d"; - fi~ - prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ - cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - old_archive_From_new_cmds_CXX='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' - enable_shared_with_static_runtimes_CXX=yes - ;; - - dgux*) - case $cc_basename in - ec++*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - ghcx*) - # Green Hills C++ Compiler - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - ;; - - freebsd2.*) - # C++ shared libraries reported to be fairly broken before - # switch to ELF - ld_shlibs_CXX=no - ;; - - freebsd-elf*) - archive_cmds_need_lc_CXX=no - ;; - - freebsd* | dragonfly*) - # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF - # conventions - ld_shlibs_CXX=yes - ;; - - haiku*) - archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - link_all_deplibs_CXX=yes - ;; - - hpux9*) - hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' - hardcode_libdir_separator_CXX=: - export_dynamic_flag_spec_CXX='$wl-E' - hardcode_direct_CXX=yes - hardcode_minus_L_CXX=yes # Not in the search PATH, - # but as the default - # location of the library. - - case $cc_basename in - CC*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - aCC*) - archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - ;; - *) - if test yes = "$GXX"; then - archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' - else - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - fi - ;; - esac - ;; - - hpux10*|hpux11*) - if test no = "$with_gnu_ld"; then - hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' - hardcode_libdir_separator_CXX=: - - case $host_cpu in - hppa*64*|ia64*) - ;; - *) - export_dynamic_flag_spec_CXX='$wl-E' - ;; - esac - fi - case $host_cpu in - hppa*64*|ia64*) - hardcode_direct_CXX=no - hardcode_shlibpath_var_CXX=no - ;; - *) - hardcode_direct_CXX=yes - hardcode_direct_absolute_CXX=yes - hardcode_minus_L_CXX=yes # Not in the search PATH, - # but as the default - # location of the library. - ;; - esac - - case $cc_basename in - CC*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - aCC*) - case $host_cpu in - hppa*64*) - archive_cmds_CXX='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - esac - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - ;; - *) - if test yes = "$GXX"; then - if test no = "$with_gnu_ld"; then - case $host_cpu in - hppa*64*) - archive_cmds_CXX='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - archive_cmds_CXX='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - archive_cmds_CXX='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - esac - fi - else - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - fi - ;; - esac - ;; - - interix[3-9]*) - hardcode_direct_CXX=no - hardcode_shlibpath_var_CXX=no - hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' - export_dynamic_flag_spec_CXX='$wl-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - archive_expsym_cmds_CXX='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - irix5* | irix6*) - case $cc_basename in - CC*) - # SGI C++ - archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' - - # Archives containing C++ object files must be created using - # "CC -ar", where "CC" is the IRIX C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' - ;; - *) - if test yes = "$GXX"; then - if test no = "$with_gnu_ld"; then - archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' - else - archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' - fi - fi - link_all_deplibs_CXX=yes - ;; - esac - hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' - hardcode_libdir_separator_CXX=: - inherit_rpath_CXX=yes - ;; - - linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - - hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' - export_dynamic_flag_spec_CXX='$wl--export-dynamic' - - # Archives containing C++ object files must be created using - # "CC -Bstatic", where "CC" is the KAI C++ compiler. - old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' - ;; - icpc* | ecpc* ) - # Intel C++ - with_gnu_ld=yes - # version 8.0 and above of icpc choke on multiply defined symbols - # if we add $predep_objects and $postdep_objects, however 7.1 and - # earlier do not add the objects themselves. - case `$CC -V 2>&1` in - *"Version 7."*) - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - ;; - *) # Version 8.0 or newer - tmp_idyn= - case $host_cpu in - ia64*) tmp_idyn=' -i_dynamic';; - esac - archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - ;; - esac - archive_cmds_need_lc_CXX=no - hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' - export_dynamic_flag_spec_CXX='$wl--export-dynamic' - whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' - ;; - pgCC* | pgcpp*) - # Portland Group C++ compiler - case `$CC -V` in - *pgCC\ [1-5].* | *pgcpp\ [1-5].*) - prelink_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ - compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' - old_archive_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ - $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ - $RANLIB $oldlib' - archive_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - ;; - *) # Version 6 and above use weak symbols - archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - ;; - esac - - hardcode_libdir_flag_spec_CXX='$wl--rpath $wl$libdir' - export_dynamic_flag_spec_CXX='$wl--export-dynamic' - whole_archive_flag_spec_CXX='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' - ;; - cxx*) - # Compaq C++ - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' - - runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec_CXX='-rpath $libdir' - hardcode_libdir_separator_CXX=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' - ;; - xl* | mpixl* | bgxl*) - # IBM XL 8.0 on PPC, with GNU ld - hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' - export_dynamic_flag_spec_CXX='$wl--export-dynamic' - archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - if test yes = "$supports_anon_versioning"; then - archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' - fi - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - no_undefined_flag_CXX=' -zdefs' - archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - archive_expsym_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' - hardcode_libdir_flag_spec_CXX='-R$libdir' - whole_archive_flag_spec_CXX='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' - compiler_needs_object_CXX=yes - - # Not sure whether something based on - # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 - # would be better. - output_verbose_link_cmd='func_echo_all' - - # Archives containing C++ object files must be created using - # "CC -xar", where "CC" is the Sun C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' - ;; - esac - ;; - esac - ;; - - lynxos*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - - m88k*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - - mvs*) - case $cc_basename in - cxx*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' - wlarc= - hardcode_libdir_flag_spec_CXX='-R$libdir' - hardcode_direct_CXX=yes - hardcode_shlibpath_var_CXX=no - fi - # Workaround some broken pre-1.5 toolchains - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' - ;; - - *nto* | *qnx*) - ld_shlibs_CXX=yes - ;; - - openbsd* | bitrig*) - if test -f /usr/libexec/ld.so; then - hardcode_direct_CXX=yes - hardcode_shlibpath_var_CXX=no - hardcode_direct_absolute_CXX=yes - archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then - archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' - export_dynamic_flag_spec_CXX='$wl-E' - whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' - fi - output_verbose_link_cmd=func_echo_all - else - ld_shlibs_CXX=no - fi - ;; - - osf3* | osf4* | osf5*) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - - hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' - hardcode_libdir_separator_CXX=: - - # Archives containing C++ object files must be created using - # the KAI C++ compiler. - case $host in - osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; - *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; - esac - ;; - RCC*) - # Rational C++ 2.4.1 - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - cxx*) - case $host in - osf3*) - allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' - archive_cmds_CXX='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' - hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' - ;; - *) - allow_undefined_flag_CXX=' -expect_unresolved \*' - archive_cmds_CXX='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' - archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ - echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ - $RM $lib.exp' - hardcode_libdir_flag_spec_CXX='-rpath $libdir' - ;; - esac - - hardcode_libdir_separator_CXX=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - ;; - *) - if test yes,no = "$GXX,$with_gnu_ld"; then - allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' - case $host in - osf3*) - archive_cmds_CXX='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' - ;; - *) - archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' - ;; - esac - - hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' - hardcode_libdir_separator_CXX=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' - - else - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - fi - ;; - esac - ;; - - psos*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - lcc*) - # Lucid - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - ;; - - solaris*) - case $cc_basename in - CC* | sunCC*) - # Sun C++ 4.2, 5.x and Centerline C++ - archive_cmds_need_lc_CXX=yes - no_undefined_flag_CXX=' -zdefs' - archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' - - hardcode_libdir_flag_spec_CXX='-R$libdir' - hardcode_shlibpath_var_CXX=no - case $host_os in - solaris2.[0-5] | solaris2.[0-5].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands '-z linker_flag'. - # Supported since Solaris 2.6 (maybe 2.5.1?) - whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' - ;; - esac - link_all_deplibs_CXX=yes - - output_verbose_link_cmd='func_echo_all' - - # Archives containing C++ object files must be created using - # "CC -xar", where "CC" is the Sun C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' - ;; - gcx*) - # Green Hills C++ Compiler - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' - - # The C++ compiler must be used to create the archive. - old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' - ;; - *) - # GNU C++ compiler with Solaris linker - if test yes,no = "$GXX,$with_gnu_ld"; then - no_undefined_flag_CXX=' $wl-z ${wl}defs' - if $CC --version | $GREP -v '^2\.7' > /dev/null; then - archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' - archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' - else - # g++ 2.7 appears to require '-G' NOT '-shared' on this - # platform. - archive_cmds_CXX='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' - archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' - fi - - hardcode_libdir_flag_spec_CXX='$wl-R $wl$libdir' - case $host_os in - solaris2.[0-5] | solaris2.[0-5].*) ;; - *) - whole_archive_flag_spec_CXX='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' - ;; - esac - fi - ;; - esac - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag_CXX='$wl-z,text' - archive_cmds_need_lc_CXX=no - hardcode_shlibpath_var_CXX=no - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We CANNOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - no_undefined_flag_CXX='$wl-z,text' - allow_undefined_flag_CXX='$wl-z,nodefs' - archive_cmds_need_lc_CXX=no - hardcode_shlibpath_var_CXX=no - hardcode_libdir_flag_spec_CXX='$wl-R,$libdir' - hardcode_libdir_separator_CXX=':' - link_all_deplibs_CXX=yes - export_dynamic_flag_spec_CXX='$wl-Bexport' - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ - '"$old_archive_cmds_CXX" - reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ - '"$reload_cmds_CXX" - ;; - *) - archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - ;; - - vxworks*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 -$as_echo "$ld_shlibs_CXX" >&6; } - test no = "$ld_shlibs_CXX" && can_build_shared=no - - GCC_CXX=$GXX - LD_CXX=$LD - - ## CAVEAT EMPTOR: - ## There is no encapsulation within the following macros, do not change - ## the running order or otherwise move them around unless you know exactly - ## what you are doing... - # Dependencies to place before and after the object being linked: -predep_objects_CXX= -postdep_objects_CXX= -predeps_CXX= -postdeps_CXX= -compiler_lib_search_path_CXX= - -cat > conftest.$ac_ext <<_LT_EOF -class Foo -{ -public: - Foo (void) { a = 0; } -private: - int a; -}; -_LT_EOF - - -_lt_libdeps_save_CFLAGS=$CFLAGS -case "$CC $CFLAGS " in #( -*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; -*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; -*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; -esac - -if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - # Parse the compiler output and extract the necessary - # objects, libraries and library flags. - - # Sentinel used to keep track of whether or not we are before - # the conftest object file. - pre_test_object_deps_done=no - - for p in `eval "$output_verbose_link_cmd"`; do - case $prev$p in - - -L* | -R* | -l*) - # Some compilers place space between "-{L,R}" and the path. - # Remove the space. - if test x-L = "$p" || - test x-R = "$p"; then - prev=$p - continue - fi - - # Expand the sysroot to ease extracting the directories later. - if test -z "$prev"; then - case $p in - -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; - -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; - -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; - esac - fi - case $p in - =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; - esac - if test no = "$pre_test_object_deps_done"; then - case $prev in - -L | -R) - # Internal compiler library paths should come after those - # provided the user. The postdeps already come after the - # user supplied libs so there is no need to process them. - if test -z "$compiler_lib_search_path_CXX"; then - compiler_lib_search_path_CXX=$prev$p - else - compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} $prev$p" - fi - ;; - # The "-l" case would never come before the object being - # linked, so don't bother handling this case. - esac - else - if test -z "$postdeps_CXX"; then - postdeps_CXX=$prev$p - else - postdeps_CXX="${postdeps_CXX} $prev$p" - fi - fi - prev= - ;; - - *.lto.$objext) ;; # Ignore GCC LTO objects - *.$objext) - # This assumes that the test object file only shows up - # once in the compiler output. - if test "$p" = "conftest.$objext"; then - pre_test_object_deps_done=yes - continue - fi - - if test no = "$pre_test_object_deps_done"; then - if test -z "$predep_objects_CXX"; then - predep_objects_CXX=$p - else - predep_objects_CXX="$predep_objects_CXX $p" - fi - else - if test -z "$postdep_objects_CXX"; then - postdep_objects_CXX=$p - else - postdep_objects_CXX="$postdep_objects_CXX $p" - fi - fi - ;; - - *) ;; # Ignore the rest. - - esac - done - - # Clean up. - rm -f a.out a.exe -else - echo "libtool.m4: error: problem compiling CXX test program" -fi - -$RM -f confest.$objext -CFLAGS=$_lt_libdeps_save_CFLAGS - -# PORTME: override above test on systems where it is broken -case $host_os in -interix[3-9]*) - # Interix 3.5 installs completely hosed .la files for C++, so rather than - # hack all around it, let's just trust "g++" to DTRT. - predep_objects_CXX= - postdep_objects_CXX= - postdeps_CXX= - ;; -esac - - -case " $postdeps_CXX " in -*" -lc "*) archive_cmds_need_lc_CXX=no ;; -esac - compiler_lib_search_dirs_CXX= -if test -n "${compiler_lib_search_path_CXX}"; then - compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | $SED -e 's! -L! !g' -e 's!^ !!'` -fi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - lt_prog_compiler_wl_CXX= -lt_prog_compiler_pic_CXX= -lt_prog_compiler_static_CXX= - - - # C++ specific cases for pic, static, wl, etc. - if test yes = "$GXX"; then - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test ia64 = "$host_cpu"; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static_CXX='-Bstatic' - fi - lt_prog_compiler_pic_CXX='-fPIC' - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - lt_prog_compiler_pic_CXX='-fPIC' - ;; - m68k) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the '-m68020' flag to GCC prevents building anything better, - # like '-m68040'. - lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' - ;; - esac - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - mingw* | cygwin* | os2* | pw32* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - lt_prog_compiler_pic_CXX='-DDLL_EXPORT' - case $host_os in - os2*) - lt_prog_compiler_static_CXX='$wl-static' - ;; - esac - ;; - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - lt_prog_compiler_pic_CXX='-fno-common' - ;; - *djgpp*) - # DJGPP does not support shared libraries at all - lt_prog_compiler_pic_CXX= - ;; - haiku*) - # PIC is the default for Haiku. - # The "-static" flag exists, but is broken. - lt_prog_compiler_static_CXX= - ;; - interix[3-9]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - sysv4*MP*) - if test -d /usr/nec; then - lt_prog_compiler_pic_CXX=-Kconform_pic - fi - ;; - hpux*) - # PIC is the default for 64-bit PA HP-UX, but not for 32-bit - # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag - # sets the default TLS model and affects inlining. - case $host_cpu in - hppa*64*) - ;; - *) - lt_prog_compiler_pic_CXX='-fPIC' - ;; - esac - ;; - *qnx* | *nto*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - lt_prog_compiler_pic_CXX='-fPIC -shared' - ;; - *) - lt_prog_compiler_pic_CXX='-fPIC' - ;; - esac - else - case $host_os in - aix[4-9]*) - # All AIX code is PIC. - if test ia64 = "$host_cpu"; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static_CXX='-Bstatic' - else - lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' - fi - ;; - chorus*) - case $cc_basename in - cxch68*) - # Green Hills C++ Compiler - # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" - ;; - esac - ;; - mingw* | cygwin* | os2* | pw32* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - lt_prog_compiler_pic_CXX='-DDLL_EXPORT' - ;; - dgux*) - case $cc_basename in - ec++*) - lt_prog_compiler_pic_CXX='-KPIC' - ;; - ghcx*) - # Green Hills C++ Compiler - lt_prog_compiler_pic_CXX='-pic' - ;; - *) - ;; - esac - ;; - freebsd* | dragonfly*) - # FreeBSD uses GNU C++ - ;; - hpux9* | hpux10* | hpux11*) - case $cc_basename in - CC*) - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='$wl-a ${wl}archive' - if test ia64 != "$host_cpu"; then - lt_prog_compiler_pic_CXX='+Z' - fi - ;; - aCC*) - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='$wl-a ${wl}archive' - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic_CXX='+Z' - ;; - esac - ;; - *) - ;; - esac - ;; - interix*) - # This is c89, which is MS Visual C++ (no shared libs) - # Anyone wants to do a port? - ;; - irix5* | irix6* | nonstopux*) - case $cc_basename in - CC*) - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='-non_shared' - # CC pic flag -KPIC is the default. - ;; - *) - ;; - esac - ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) - case $cc_basename in - KCC*) - # KAI C++ Compiler - lt_prog_compiler_wl_CXX='--backend -Wl,' - lt_prog_compiler_pic_CXX='-fPIC' - ;; - ecpc* ) - # old Intel C++ for x86_64, which still supported -KPIC. - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_pic_CXX='-KPIC' - lt_prog_compiler_static_CXX='-static' - ;; - icpc* ) - # Intel C++, used to be incompatible with GCC. - # ICC 10 doesn't accept -KPIC any more. - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_pic_CXX='-fPIC' - lt_prog_compiler_static_CXX='-static' - ;; - pgCC* | pgcpp*) - # Portland Group C++ compiler - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_pic_CXX='-fpic' - lt_prog_compiler_static_CXX='-Bstatic' - ;; - cxx*) - # Compaq C++ - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - lt_prog_compiler_pic_CXX= - lt_prog_compiler_static_CXX='-non_shared' - ;; - xlc* | xlC* | bgxl[cC]* | mpixl[cC]*) - # IBM XL 8.0, 9.0 on PPC and BlueGene - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_pic_CXX='-qpic' - lt_prog_compiler_static_CXX='-qstaticlink' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - lt_prog_compiler_pic_CXX='-KPIC' - lt_prog_compiler_static_CXX='-Bstatic' - lt_prog_compiler_wl_CXX='-Qoption ld ' - ;; - esac - ;; - esac - ;; - lynxos*) - ;; - m88k*) - ;; - mvs*) - case $cc_basename in - cxx*) - lt_prog_compiler_pic_CXX='-W c,exportall' - ;; - *) - ;; - esac - ;; - netbsd*) - ;; - *qnx* | *nto*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - lt_prog_compiler_pic_CXX='-fPIC -shared' - ;; - osf3* | osf4* | osf5*) - case $cc_basename in - KCC*) - lt_prog_compiler_wl_CXX='--backend -Wl,' - ;; - RCC*) - # Rational C++ 2.4.1 - lt_prog_compiler_pic_CXX='-pic' - ;; - cxx*) - # Digital/Compaq C++ - lt_prog_compiler_wl_CXX='-Wl,' - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - lt_prog_compiler_pic_CXX= - lt_prog_compiler_static_CXX='-non_shared' - ;; - *) - ;; - esac - ;; - psos*) - ;; - solaris*) - case $cc_basename in - CC* | sunCC*) - # Sun C++ 4.2, 5.x and Centerline C++ - lt_prog_compiler_pic_CXX='-KPIC' - lt_prog_compiler_static_CXX='-Bstatic' - lt_prog_compiler_wl_CXX='-Qoption ld ' - ;; - gcx*) - # Green Hills C++ Compiler - lt_prog_compiler_pic_CXX='-PIC' - ;; - *) - ;; - esac - ;; - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - lt_prog_compiler_pic_CXX='-pic' - lt_prog_compiler_static_CXX='-Bstatic' - ;; - lcc*) - # Lucid - lt_prog_compiler_pic_CXX='-pic' - ;; - *) - ;; - esac - ;; - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - case $cc_basename in - CC*) - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_pic_CXX='-KPIC' - lt_prog_compiler_static_CXX='-Bstatic' - ;; - esac - ;; - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - lt_prog_compiler_pic_CXX='-KPIC' - ;; - *) - ;; - esac - ;; - vxworks*) - ;; - *) - lt_prog_compiler_can_build_shared_CXX=no - ;; - esac - fi - -case $host_os in - # For platforms that do not support PIC, -DPIC is meaningless: - *djgpp*) - lt_prog_compiler_pic_CXX= - ;; - *) - lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" - ;; -esac - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 -$as_echo_n "checking for $compiler option to produce PIC... " >&6; } -if ${lt_cv_prog_compiler_pic_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_pic_CXX=$lt_prog_compiler_pic_CXX -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_CXX" >&5 -$as_echo "$lt_cv_prog_compiler_pic_CXX" >&6; } -lt_prog_compiler_pic_CXX=$lt_cv_prog_compiler_pic_CXX - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$lt_prog_compiler_pic_CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 -$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } -if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_pic_works_CXX=no - ac_outfile=conftest.$ac_objext - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" ## exclude from sc_useless_quotes_in_assignment - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_pic_works_CXX=yes - fi - fi - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 -$as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } - -if test yes = "$lt_cv_prog_compiler_pic_works_CXX"; then - case $lt_prog_compiler_pic_CXX in - "" | " "*) ;; - *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; - esac -else - lt_prog_compiler_pic_CXX= - lt_prog_compiler_can_build_shared_CXX=no -fi - -fi - - - - - -# -# Check to make sure the static flag actually works. -# -wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 -$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -if ${lt_cv_prog_compiler_static_works_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_static_works_CXX=no - save_LDFLAGS=$LDFLAGS - LDFLAGS="$LDFLAGS $lt_tmp_static_flag" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&5 - $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_static_works_CXX=yes - fi - else - lt_cv_prog_compiler_static_works_CXX=yes - fi - fi - $RM -r conftest* - LDFLAGS=$save_LDFLAGS - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 -$as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } - -if test yes = "$lt_cv_prog_compiler_static_works_CXX"; then - : -else - lt_prog_compiler_static_CXX= -fi - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o_CXX=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o_CXX=yes - fi - fi - chmod u+w . 2>&5 - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 -$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o_CXX=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o_CXX=yes - fi - fi - chmod u+w . 2>&5 - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 -$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } - - - - -hard_links=nottested -if test no = "$lt_cv_prog_compiler_c_o_CXX" && test no != "$need_locks"; then - # do not overwrite the value of need_locks provided by the user - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 -$as_echo_n "checking if we can lock with hard links... " >&6; } - hard_links=yes - $RM conftest* - ln conftest.a conftest.b 2>/dev/null && hard_links=no - touch conftest.a - ln conftest.a conftest.b 2>&5 || hard_links=no - ln conftest.a conftest.b 2>/dev/null && hard_links=no - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 -$as_echo "$hard_links" >&6; } - if test no = "$hard_links"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} - need_locks=warn - fi -else - need_locks=no -fi - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } - - export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' - case $host_os in - aix[4-9]*) - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to GNU nm, but means don't demangle to AIX nm. - # Without the "-l" option, or with the "-B" option, AIX nm treats - # weak defined symbols like other global defined symbols, whereas - # GNU nm marks them as "W". - # While the 'weak' keyword is ignored in the Export File, we need - # it in the Import File for the 'aix-soname' feature, so we have - # to replace the "-B" option with "-P" for AIX nm. - if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' - else - export_symbols_cmds_CXX='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' - fi - ;; - pw32*) - export_symbols_cmds_CXX=$ltdll_cmds - ;; - cygwin* | mingw* | cegcc*) - case $cc_basename in - cl*) - exclude_expsyms_CXX='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' - ;; - *) - export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' - exclude_expsyms_CXX='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' - ;; - esac - ;; - *) - export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - ;; - esac - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 -$as_echo "$ld_shlibs_CXX" >&6; } -test no = "$ld_shlibs_CXX" && can_build_shared=no - -with_gnu_ld_CXX=$with_gnu_ld - - - - - - -# -# Do we need to explicitly link libc? -# -case "x$archive_cmds_need_lc_CXX" in -x|xyes) - # Assume -lc should be added - archive_cmds_need_lc_CXX=yes - - if test yes,yes = "$GCC,$enable_shared"; then - case $archive_cmds_CXX in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 -$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } -if ${lt_cv_archive_cmds_need_lc_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - $RM conftest* - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } 2>conftest.err; then - soname=conftest - lib=conftest - libobjs=conftest.$ac_objext - deplibs= - wl=$lt_prog_compiler_wl_CXX - pic_flag=$lt_prog_compiler_pic_CXX - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$allow_undefined_flag_CXX - allow_undefined_flag_CXX= - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 - (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - then - lt_cv_archive_cmds_need_lc_CXX=no - else - lt_cv_archive_cmds_need_lc_CXX=yes - fi - allow_undefined_flag_CXX=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc_CXX" >&5 -$as_echo "$lt_cv_archive_cmds_need_lc_CXX" >&6; } - archive_cmds_need_lc_CXX=$lt_cv_archive_cmds_need_lc_CXX - ;; - esac - fi - ;; -esac - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 -$as_echo_n "checking dynamic linker characteristics... " >&6; } - -library_names_spec= -libname_spec='lib$name' -soname_spec= -shrext_cmds=.so -postinstall_cmds= -postuninstall_cmds= -finish_cmds= -finish_eval= -shlibpath_var= -shlibpath_overrides_runpath=unknown -version_type=none -dynamic_linker="$host_os ld.so" -sys_lib_dlsearch_path_spec="/lib /usr/lib" -need_lib_prefix=unknown -hardcode_into_libs=no - -# when you set need_version to no, make sure it does not cause -set_version -# flags to be left without arguments -need_version=unknown - - - -case $host_os in -aix3*) - version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$release$shared_ext$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='$libname$release$shared_ext$major' - ;; - -aix[4-9]*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - hardcode_into_libs=yes - if test ia64 = "$host_cpu"; then - # AIX 5 supports IA64 - library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' - shlibpath_var=LD_LIBRARY_PATH - else - # With GCC up to 2.95.x, collect2 would create an import file - # for dependence libraries. The import file would start with - # the line '#! .'. This would cause the generated library to - # depend on '.', always an invalid library. This was fixed in - # development snapshots of GCC prior to 3.0. - case $host_os in - aix4 | aix4.[01] | aix4.[01].*) - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' - echo ' yes ' - echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then - : - else - can_build_shared=no - fi - ;; - esac - # Using Import Files as archive members, it is possible to support - # filename-based versioning of shared library archives on AIX. While - # this would work for both with and without runtime linking, it will - # prevent static linking of such archives. So we do filename-based - # shared library versioning with .so extension only, which is used - # when both runtime linking and shared linking is enabled. - # Unfortunately, runtime linking may impact performance, so we do - # not want this to be the default eventually. Also, we use the - # versioned .so libs for executables only if there is the -brtl - # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. - # To allow for filename-based versioning support, we need to create - # libNAME.so.V as an archive file, containing: - # *) an Import File, referring to the versioned filename of the - # archive as well as the shared archive member, telling the - # bitwidth (32 or 64) of that shared object, and providing the - # list of exported symbols of that shared object, eventually - # decorated with the 'weak' keyword - # *) the shared object with the F_LOADONLY flag set, to really avoid - # it being seen by the linker. - # At run time we better use the real file rather than another symlink, - # but for link time we create the symlink libNAME.so -> libNAME.so.V - - case $with_aix_soname,$aix_use_runtimelinking in - # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct - # soname into executable. Probably we can add versioning support to - # collect2, so additional links can be useful in future. - aix,yes) # traditional libtool - dynamic_linker='AIX unversionable lib.so' - # If using run time linking (on AIX 4.2 or later) use lib.so - # instead of lib.a to let people know that these are not - # typical AIX shared libraries. - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - ;; - aix,no) # traditional AIX only - dynamic_linker='AIX lib.a(lib.so.V)' - # We preserve .a as extension for shared libraries through AIX4.2 - # and later when we are not doing run time linking. - library_names_spec='$libname$release.a $libname.a' - soname_spec='$libname$release$shared_ext$major' - ;; - svr4,*) # full svr4 only - dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" - library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' - # We do not specify a path in Import Files, so LIBPATH fires. - shlibpath_overrides_runpath=yes - ;; - *,yes) # both, prefer svr4 - dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" - library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' - # unpreferred sharedlib libNAME.a needs extra handling - postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' - postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' - # We do not specify a path in Import Files, so LIBPATH fires. - shlibpath_overrides_runpath=yes - ;; - *,no) # both, prefer aix - dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" - library_names_spec='$libname$release.a $libname.a' - soname_spec='$libname$release$shared_ext$major' - # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling - postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' - postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' - ;; - esac - shlibpath_var=LIBPATH - fi - ;; - -amigaos*) - case $host_cpu in - powerpc) - # Since July 2007 AmigaOS4 officially supports .so libraries. - # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - ;; - m68k) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; - esac - ;; - -beos*) - library_names_spec='$libname$shared_ext' - dynamic_linker="$host_os ld.so" - shlibpath_var=LIBRARY_PATH - ;; - -bsdi[45]*) - version_type=linux # correct to gnu/linux during the next big refactor - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; - -cygwin* | mingw* | pw32* | cegcc*) - version_type=windows - shrext_cmds=.dll - need_version=no - need_lib_prefix=no - - case $GCC,$cc_basename in - yes,*) - # gcc - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \$file`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname~ - if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then - eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; - fi' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - shlibpath_overrides_runpath=yes - - case $host_os in - cygwin*) - # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' - - ;; - mingw* | cegcc*) - # MinGW DLLs use traditional 'lib' prefix - soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' - ;; - pw32*) - # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' - ;; - esac - dynamic_linker='Win32 ld.exe' - ;; - - *,cl*) - # Native MSVC - libname_spec='$name' - soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' - library_names_spec='$libname.dll.lib' - - case $build_os in - mingw*) - sys_lib_search_path_spec= - lt_save_ifs=$IFS - IFS=';' - for lt_path in $LIB - do - IFS=$lt_save_ifs - # Let DOS variable expansion print the short 8.3 style file name. - lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` - sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" - done - IFS=$lt_save_ifs - # Convert to MSYS style. - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` - ;; - cygwin*) - # Convert to unix form, then to dos form, then back to unix form - # but this time dos style (no spaces!) so that the unix form looks - # like /cygdrive/c/PROGRA~1:/cygdr... - sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` - sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` - sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - ;; - *) - sys_lib_search_path_spec=$LIB - if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then - # It is most probably a Windows format PATH. - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - # FIXME: find the short name or the path components, as spaces are - # common. (e.g. "Program Files" -> "PROGRA~1") - ;; - esac - - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \$file`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - shlibpath_overrides_runpath=yes - dynamic_linker='Win32 link.exe' - ;; - - *) - # Assume MSVC wrapper - library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' - dynamic_linker='Win32 ld.exe' - ;; - esac - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; - -darwin* | rhapsody*) - dynamic_linker="$host_os dyld" - version_type=darwin - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' - soname_spec='$libname$release$major$shared_ext' - shlibpath_overrides_runpath=yes - shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' - - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' - ;; - -dgux*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -freebsd* | dragonfly*) - # DragonFly does not have aout. When/if they implement a new - # versioning mechanism, adjust this. - if test -x /usr/bin/objformat; then - objformat=`/usr/bin/objformat` - else - case $host_os in - freebsd[23].*) objformat=aout ;; - *) objformat=elf ;; - esac - fi - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - need_version=no - need_lib_prefix=no - ;; - freebsd-*) - library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' - need_version=yes - ;; - esac - shlibpath_var=LD_LIBRARY_PATH - case $host_os in - freebsd2.*) - shlibpath_overrides_runpath=yes - ;; - freebsd3.[01]* | freebsdelf3.[01]*) - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ - freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - *) # from 4.6 on, and DragonFly - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - esac - ;; - -haiku*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - dynamic_linker="$host_os runtime_loader" - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LIBRARY_PATH - shlibpath_overrides_runpath=no - sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' - hardcode_into_libs=yes - ;; - -hpux9* | hpux10* | hpux11*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - version_type=sunos - need_lib_prefix=no - need_version=no - case $host_cpu in - ia64*) - shrext_cmds='.so' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.so" - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - if test 32 = "$HPUX_IA64_MODE"; then - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - sys_lib_dlsearch_path_spec=/usr/lib/hpux32 - else - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - sys_lib_dlsearch_path_spec=/usr/lib/hpux64 - fi - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - ;; - esac - # HP-UX runs *really* slowly unless shared libraries are mode 555, ... - postinstall_cmds='chmod 555 $lib' - # or fails outright, so override atomically: - install_override_mode=555 - ;; - -interix[3-9]*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -irix5* | irix6* | nonstopux*) - case $host_os in - nonstopux*) version_type=nonstopux ;; - *) - if test yes = "$lt_cv_prog_gnu_ld"; then - version_type=linux # correct to gnu/linux during the next big refactor - else - version_type=irix - fi ;; - esac - need_lib_prefix=no - need_version=no - soname_spec='$libname$release$shared_ext$major' - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' - case $host_os in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in # libtool.m4 will add one of these switches to LD - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") - libsuff= shlibsuff= libmagic=32-bit;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") - libsuff=32 shlibsuff=N32 libmagic=N32;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") - libsuff=64 shlibsuff=64 libmagic=64-bit;; - *) libsuff= shlibsuff= libmagic=never-match;; - esac - ;; - esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" - sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" - hardcode_into_libs=yes - ;; - -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no - ;; - -linux*android*) - version_type=none # Android doesn't support versioned libraries. - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext' - soname_spec='$libname$release$shared_ext' - finish_cmds= - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - dynamic_linker='Android linker' - # Don't embed -rpath directories since the linker doesn't support them. - hardcode_libdir_flag_spec_CXX='-L$libdir' - ;; - -# This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - - # Some binutils ld are patched to set DT_RUNPATH - if ${lt_cv_shlibpath_overrides_runpath+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_shlibpath_overrides_runpath=no - save_LDFLAGS=$LDFLAGS - save_libdir=$libdir - eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \ - LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : - lt_cv_shlibpath_overrides_runpath=yes -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$save_LDFLAGS - libdir=$save_libdir - -fi - - shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath - - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - # Add ABI-specific directories to the system library path. - sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" - - # Ideally, we could use ldconfig to report *all* directores which are - # searched for libraries, however this is still not possible. Aside from not - # being certain /sbin/ldconfig is available, command - # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, - # even though it is searched at run-time. Try to do the best guess by - # appending ld.so.conf contents (and includes) to the search path. - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" - fi - - # We used to test for /lib/ld.so.1 and disable shared libraries on - # powerpc, because MkLinux only supported shared libraries with the - # GNU dynamic linker. Since this was broken with cross compilers, - # most powerpc-linux boxes support dynamic linking these days and - # people can always --disable-shared, the test was removed, and we - # assume the GNU/Linux dynamic linker is in use. - dynamic_linker='GNU/Linux ld.so' - ;; - -netbsd*) - version_type=sunos - need_lib_prefix=no - need_version=no - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - dynamic_linker='NetBSD (a.out) ld.so' - else - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - dynamic_linker='NetBSD ld.elf_so' - fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - -newsos6) - version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -*nto* | *qnx*) - version_type=qnx - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='ldqnx.so' - ;; - -openbsd* | bitrig*) - version_type=sunos - sys_lib_dlsearch_path_spec=/usr/lib - need_lib_prefix=no - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then - need_version=no - else - need_version=yes - fi - library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -os2*) - libname_spec='$name' - version_type=windows - shrext_cmds=.dll - need_version=no - need_lib_prefix=no - # OS/2 can only load a DLL with a base name of 8 characters or less. - soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; - v=$($ECHO $release$versuffix | tr -d .-); - n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); - $ECHO $n$v`$shared_ext' - library_names_spec='${libname}_dll.$libext' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=BEGINLIBPATH - sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - postinstall_cmds='base_file=`basename \$file`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname~ - if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then - eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; - fi' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - ;; - -osf3* | osf4* | osf5*) - version_type=osf - need_lib_prefix=no - need_version=no - soname_spec='$libname$release$shared_ext$major' - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - -rdos*) - dynamic_linker=no - ;; - -solaris*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - # ldd complains unless libraries are executable - postinstall_cmds='chmod +x $lib' - ;; - -sunos4*) - version_type=sunos - library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - if test yes = "$with_gnu_ld"; then - need_lib_prefix=no - fi - need_version=yes - ;; - -sysv4 | sysv4.3*) - version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - case $host_vendor in - sni) - shlibpath_overrides_runpath=no - need_lib_prefix=no - runpath_var=LD_RUN_PATH - ;; - siemens) - need_lib_prefix=no - ;; - motorola) - need_lib_prefix=no - need_version=no - shlibpath_overrides_runpath=no - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' - ;; - esac - ;; - -sysv4*MP*) - if test -d /usr/nec; then - version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' - soname_spec='$libname$shared_ext.$major' - shlibpath_var=LD_LIBRARY_PATH - fi - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=sco - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - if test yes = "$with_gnu_ld"; then - sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - case $host_os in - sco3.2v5*) - sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" - ;; - esac - fi - sys_lib_dlsearch_path_spec='/usr/lib' - ;; - -tpf*) - # TPF is a cross-target only. Preferred cross-host = GNU/Linux. - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -uts4*) - version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -*) - dynamic_linker=no - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 -$as_echo "$dynamic_linker" >&6; } -test no = "$dynamic_linker" && can_build_shared=no - -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test yes = "$GCC"; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -fi - -if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then - sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec -fi - -if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then - sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec -fi - -# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... -configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec - -# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code -func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" - -# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool -configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 -$as_echo_n "checking how to hardcode library paths into programs... " >&6; } -hardcode_action_CXX= -if test -n "$hardcode_libdir_flag_spec_CXX" || - test -n "$runpath_var_CXX" || - test yes = "$hardcode_automatic_CXX"; then - - # We can hardcode non-existent directories. - if test no != "$hardcode_direct_CXX" && - # If the only mechanism to avoid hardcoding is shlibpath_var, we - # have to relink, otherwise we might link with an installed library - # when we should be linking with a yet-to-be-installed one - ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" && - test no != "$hardcode_minus_L_CXX"; then - # Linking always hardcodes the temporary library directory. - hardcode_action_CXX=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - hardcode_action_CXX=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - hardcode_action_CXX=unsupported -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 -$as_echo "$hardcode_action_CXX" >&6; } - -if test relink = "$hardcode_action_CXX" || - test yes = "$inherit_rpath_CXX"; then - # Fast installation is not supported - enable_fast_install=no -elif test yes = "$shlibpath_overrides_runpath" || - test no = "$enable_shared"; then - # Fast installation is not necessary - enable_fast_install=needless -fi - - - - - - - - fi # test -n "$compiler" - - CC=$lt_save_CC - CFLAGS=$lt_save_CFLAGS - LDCXX=$LD - LD=$lt_save_LD - GCC=$lt_save_GCC - with_gnu_ld=$lt_save_with_gnu_ld - lt_cv_path_LDCXX=$lt_cv_path_LD - lt_cv_path_LD=$lt_save_path_LD - lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld - lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -fi # test yes != "$_lt_caught_CXX_error" - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - - - - - - - - - - - - - - ac_config_commands="$ac_config_commands libtool" - - - - -# Only expand once: - - -# Extract the first word of "glib-genmarshal", so it can be a program name with args. -set dummy glib-genmarshal; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GLIB_GENMARSHAL+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GLIB_GENMARSHAL in - [\\/]* | ?:[\\/]*) - ac_cv_path_GLIB_GENMARSHAL="$GLIB_GENMARSHAL" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GLIB_GENMARSHAL="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -GLIB_GENMARSHAL=$ac_cv_path_GLIB_GENMARSHAL -if test -n "$GLIB_GENMARSHAL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GLIB_GENMARSHAL" >&5 -$as_echo "$GLIB_GENMARSHAL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "glib-mkenums", so it can be a program name with args. -set dummy glib-mkenums; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GLIB_MKENUMS+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GLIB_MKENUMS in - [\\/]* | ?:[\\/]*) - ac_cv_path_GLIB_MKENUMS="$GLIB_MKENUMS" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GLIB_MKENUMS="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -GLIB_MKENUMS=$ac_cv_path_GLIB_MKENUMS -if test -n "$GLIB_MKENUMS"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GLIB_MKENUMS" >&5 -$as_echo "$GLIB_MKENUMS" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - -# Extract the first word of "rsvg-convert", so it can be a program name with args. -set dummy rsvg-convert; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_RSVG_CONVERT+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $RSVG_CONVERT in - [\\/]* | ?:[\\/]*) - ac_cv_path_RSVG_CONVERT="$RSVG_CONVERT" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_RSVG_CONVERT="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -RSVG_CONVERT=$ac_cv_path_RSVG_CONVERT -if test -n "$RSVG_CONVERT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RSVG_CONVERT" >&5 -$as_echo "$RSVG_CONVERT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - if test "x$RSVG_CONVERT" != x; then - HAVE_RSVG_CONVERT_TRUE= - HAVE_RSVG_CONVERT_FALSE='#' -else - HAVE_RSVG_CONVERT_TRUE='#' - HAVE_RSVG_CONVERT_FALSE= -fi - -# Extract the first word of "inkscape", so it can be a program name with args. -set dummy inkscape; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_INKSCAPE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $INKSCAPE in - [\\/]* | ?:[\\/]*) - ac_cv_path_INKSCAPE="$INKSCAPE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_INKSCAPE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -INKSCAPE=$ac_cv_path_INKSCAPE -if test -n "$INKSCAPE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INKSCAPE" >&5 -$as_echo "$INKSCAPE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - if test "x$INKSCAPE" != x; then - HAVE_INKSCAPE_TRUE= - HAVE_INKSCAPE_FALSE='#' -else - HAVE_INKSCAPE_TRUE='#' - HAVE_INKSCAPE_FALSE= -fi - - -# GLIB_COMPILE_RESOURCES - -# Extract the first word of "glib-compile-resources", so it can be a program name with args. -set dummy glib-compile-resources; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GLIB_COMPILE_RESOURCES+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GLIB_COMPILE_RESOURCES in - [\\/]* | ?:[\\/]*) - ac_cv_path_GLIB_COMPILE_RESOURCES="$GLIB_COMPILE_RESOURCES" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GLIB_COMPILE_RESOURCES="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -GLIB_COMPILE_RESOURCES=$ac_cv_path_GLIB_COMPILE_RESOURCES -if test -n "$GLIB_COMPILE_RESOURCES"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GLIB_COMPILE_RESOURCES" >&5 -$as_echo "$GLIB_COMPILE_RESOURCES" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -if test -z "$GLIB_COMPILE_RESOURCES"; then - as_fn_error $? "glib-compile-resources not found" "$LINENO" 5 -fi - -# XMLLINT - -# Extract the first word of "xmllint", so it can be a program name with args. -set dummy xmllint; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_XMLLINT+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $XMLLINT in - [\\/]* | ?:[\\/]*) - ac_cv_path_XMLLINT="$XMLLINT" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_XMLLINT="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -XMLLINT=$ac_cv_path_XMLLINT -if test -n "$XMLLINT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XMLLINT" >&5 -$as_echo "$XMLLINT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -if test -z "$XMLLINT"; then - as_fn_error $? "xmllint not found" "$LINENO" 5 -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for X" >&5 -$as_echo_n "checking for X... " >&6; } - - -# Check whether --with-x was given. -if test "${with_x+set}" = set; then : - withval=$with_x; -fi - -# $have_x is `yes', `no', `disabled', or empty when we do not yet know. -if test "x$with_x" = xno; then - # The user explicitly disabled X. - have_x=disabled -else - case $x_includes,$x_libraries in #( - *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #( - *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then : - $as_echo_n "(cached) " >&6 -else - # One or both of the vars are not set, and there is no cached value. -ac_x_includes=no ac_x_libraries=no -rm -f -r conftest.dir -if mkdir conftest.dir; then - cd conftest.dir - cat >Imakefile <<'_ACEOF' -incroot: - @echo incroot='${INCROOT}' -usrlibdir: - @echo usrlibdir='${USRLIBDIR}' -libdir: - @echo libdir='${LIBDIR}' -_ACEOF - if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then - # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. - for ac_var in incroot usrlibdir libdir; do - eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`" - done - # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. - for ac_extension in a so sl dylib la dll; do - if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" && - test -f "$ac_im_libdir/libX11.$ac_extension"; then - ac_im_usrlibdir=$ac_im_libdir; break - fi - done - # Screen out bogus values from the imake configuration. They are - # bogus both because they are the default anyway, and because - # using them would break gcc on systems where it needs fixed includes. - case $ac_im_incroot in - /usr/include) ac_x_includes= ;; - *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; - esac - case $ac_im_usrlibdir in - /usr/lib | /usr/lib64 | /lib | /lib64) ;; - *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; - esac - fi - cd .. - rm -f -r conftest.dir -fi - -# Standard set of common directories for X headers. -# Check X11 before X11Rn because it is often a symlink to the current release. -ac_x_header_dirs=' -/usr/X11/include -/usr/X11R7/include -/usr/X11R6/include -/usr/X11R5/include -/usr/X11R4/include - -/usr/include/X11 -/usr/include/X11R7 -/usr/include/X11R6 -/usr/include/X11R5 -/usr/include/X11R4 - -/usr/local/X11/include -/usr/local/X11R7/include -/usr/local/X11R6/include -/usr/local/X11R5/include -/usr/local/X11R4/include - -/usr/local/include/X11 -/usr/local/include/X11R7 -/usr/local/include/X11R6 -/usr/local/include/X11R5 -/usr/local/include/X11R4 - -/usr/X386/include -/usr/x386/include -/usr/XFree86/include/X11 - -/usr/include -/usr/local/include -/usr/unsupported/include -/usr/athena/include -/usr/local/x11r5/include -/usr/lpp/Xamples/include - -/usr/openwin/include -/usr/openwin/share/include' - -if test "$ac_x_includes" = no; then - # Guess where to find include files, by looking for Xlib.h. - # First, try using that file with no special directory specified. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # We can compile using X headers with no special include directory. -ac_x_includes= -else - for ac_dir in $ac_x_header_dirs; do - if test -r "$ac_dir/X11/Xlib.h"; then - ac_x_includes=$ac_dir - break - fi -done -fi -rm -f conftest.err conftest.i conftest.$ac_ext -fi # $ac_x_includes = no - -if test "$ac_x_libraries" = no; then - # Check for the libraries. - # See if we find them without any special options. - # Don't add to $LIBS permanently. - ac_save_LIBS=$LIBS - LIBS="-lX11 $LIBS" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -XrmInitialize () - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - LIBS=$ac_save_LIBS -# We can link X programs with no special library path. -ac_x_libraries= -else - LIBS=$ac_save_LIBS -for ac_dir in `$as_echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` -do - # Don't even attempt the hair of trying to link an X program! - for ac_extension in a so sl dylib la dll; do - if test -r "$ac_dir/libX11.$ac_extension"; then - ac_x_libraries=$ac_dir - break 2 - fi - done -done -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -fi # $ac_x_libraries = no - -case $ac_x_includes,$ac_x_libraries in #( - no,* | *,no | *\'*) - # Didn't find X, or a directory has "'" in its name. - ac_cv_have_x="have_x=no";; #( - *) - # Record where we found X for the cache. - ac_cv_have_x="have_x=yes\ - ac_x_includes='$ac_x_includes'\ - ac_x_libraries='$ac_x_libraries'" -esac -fi -;; #( - *) have_x=yes;; - esac - eval "$ac_cv_have_x" -fi # $with_x != no - -if test "$have_x" != yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_x" >&5 -$as_echo "$have_x" >&6; } - no_x=yes -else - # If each of the values was on the command line, it overrides each guess. - test "x$x_includes" = xNONE && x_includes=$ac_x_includes - test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries - # Update the cache value to reflect the command line values. - ac_cv_have_x="have_x=yes\ - ac_x_includes='$x_includes'\ - ac_x_libraries='$x_libraries'" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: libraries $x_libraries, headers $x_includes" >&5 -$as_echo "libraries $x_libraries, headers $x_includes" >&6; } -fi - -if test "$no_x" = yes; then - # Not all programs may use this symbol, but it does not hurt to define it. - -$as_echo "#define X_DISPLAY_MISSING 1" >>confdefs.h - - X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS= -else - if test -n "$x_includes"; then - X_CFLAGS="$X_CFLAGS -I$x_includes" - fi - - # It would also be nice to do this for all -L options, not just this one. - if test -n "$x_libraries"; then - X_LIBS="$X_LIBS -L$x_libraries" - # For Solaris; some versions of Sun CC require a space after -R and - # others require no space. Words are not sufficient . . . . - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -R must be followed by a space" >&5 -$as_echo_n "checking whether -R must be followed by a space... " >&6; } - ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" - ac_xsave_c_werror_flag=$ac_c_werror_flag - ac_c_werror_flag=yes - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - X_LIBS="$X_LIBS -R$x_libraries" -else - LIBS="$ac_xsave_LIBS -R $x_libraries" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - X_LIBS="$X_LIBS -R $x_libraries" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: neither works" >&5 -$as_echo "neither works" >&6; } -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - ac_c_werror_flag=$ac_xsave_c_werror_flag - LIBS=$ac_xsave_LIBS - fi - - # Check for system-dependent libraries X programs must link with. - # Do this before checking for the system-independent R6 libraries - # (-lICE), since we may need -lsocket or whatever for X linking. - - if test "$ISC" = yes; then - X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl_s -linet" - else - # Martyn Johnson says this is needed for Ultrix, if the X - # libraries were built with DECnet support. And Karl Berry says - # the Alpha needs dnet_stub (dnet does not exist). - ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char XOpenDisplay (); -int -main () -{ -return XOpenDisplay (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5 -$as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; } -if ${ac_cv_lib_dnet_dnet_ntoa+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldnet $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dnet_ntoa (); -int -main () -{ -return dnet_ntoa (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dnet_dnet_ntoa=yes -else - ac_cv_lib_dnet_dnet_ntoa=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 -$as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; } -if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes; then : - X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" -fi - - if test $ac_cv_lib_dnet_dnet_ntoa = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5 -$as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; } -if ${ac_cv_lib_dnet_stub_dnet_ntoa+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldnet_stub $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dnet_ntoa (); -int -main () -{ -return dnet_ntoa (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dnet_stub_dnet_ntoa=yes -else - ac_cv_lib_dnet_stub_dnet_ntoa=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 -$as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } -if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = xyes; then : - X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" -fi - - fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$ac_xsave_LIBS" - - # msh@cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT, - # to get the SysV transport functions. - # Chad R. Larson says the Pyramis MIS-ES running DC/OSx (SVR4) - # needs -lnsl. - # The nsl library prevents programs from opening the X display - # on Irix 5.2, according to T.E. Dickey. - # The functions gethostbyname, getservbyname, and inet_addr are - # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. - ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname" -if test "x$ac_cv_func_gethostbyname" = xyes; then : - -fi - - if test $ac_cv_func_gethostbyname = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5 -$as_echo_n "checking for gethostbyname in -lnsl... " >&6; } -if ${ac_cv_lib_nsl_gethostbyname+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lnsl $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char gethostbyname (); -int -main () -{ -return gethostbyname (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_nsl_gethostbyname=yes -else - ac_cv_lib_nsl_gethostbyname=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5 -$as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } -if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then : - X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" -fi - - if test $ac_cv_lib_nsl_gethostbyname = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5 -$as_echo_n "checking for gethostbyname in -lbsd... " >&6; } -if ${ac_cv_lib_bsd_gethostbyname+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lbsd $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char gethostbyname (); -int -main () -{ -return gethostbyname (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_bsd_gethostbyname=yes -else - ac_cv_lib_bsd_gethostbyname=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5 -$as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; } -if test "x$ac_cv_lib_bsd_gethostbyname" = xyes; then : - X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" -fi - - fi - fi - - # lieder@skyler.mavd.honeywell.com says without -lsocket, - # socket/setsockopt and other routines are undefined under SCO ODT - # 2.0. But -lsocket is broken on IRIX 5.2 (and is not necessary - # on later versions), says Simon Leinen: it contains gethostby* - # variants that don't use the name server (or something). -lsocket - # must be given before -lnsl if both are needed. We assume that - # if connect needs -lnsl, so does gethostbyname. - ac_fn_c_check_func "$LINENO" "connect" "ac_cv_func_connect" -if test "x$ac_cv_func_connect" = xyes; then : - -fi - - if test $ac_cv_func_connect = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5 -$as_echo_n "checking for connect in -lsocket... " >&6; } -if ${ac_cv_lib_socket_connect+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lsocket $X_EXTRA_LIBS $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char connect (); -int -main () -{ -return connect (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_socket_connect=yes -else - ac_cv_lib_socket_connect=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5 -$as_echo "$ac_cv_lib_socket_connect" >&6; } -if test "x$ac_cv_lib_socket_connect" = xyes; then : - X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" -fi - - fi - - # Guillermo Gomez says -lposix is necessary on A/UX. - ac_fn_c_check_func "$LINENO" "remove" "ac_cv_func_remove" -if test "x$ac_cv_func_remove" = xyes; then : - -fi - - if test $ac_cv_func_remove = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5 -$as_echo_n "checking for remove in -lposix... " >&6; } -if ${ac_cv_lib_posix_remove+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lposix $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char remove (); -int -main () -{ -return remove (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_posix_remove=yes -else - ac_cv_lib_posix_remove=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5 -$as_echo "$ac_cv_lib_posix_remove" >&6; } -if test "x$ac_cv_lib_posix_remove" = xyes; then : - X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" -fi - - fi - - # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. - ac_fn_c_check_func "$LINENO" "shmat" "ac_cv_func_shmat" -if test "x$ac_cv_func_shmat" = xyes; then : - -fi - - if test $ac_cv_func_shmat = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5 -$as_echo_n "checking for shmat in -lipc... " >&6; } -if ${ac_cv_lib_ipc_shmat+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lipc $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char shmat (); -int -main () -{ -return shmat (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_ipc_shmat=yes -else - ac_cv_lib_ipc_shmat=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5 -$as_echo "$ac_cv_lib_ipc_shmat" >&6; } -if test "x$ac_cv_lib_ipc_shmat" = xyes; then : - X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" -fi - - fi - fi - - # Check for libraries that X11R6 Xt/Xaw programs need. - ac_save_LDFLAGS=$LDFLAGS - test -n "$x_libraries" && LDFLAGS="$LDFLAGS -L$x_libraries" - # SM needs ICE to (dynamically) link under SunOS 4.x (so we have to - # check for ICE first), but we must link in the order -lSM -lICE or - # we get undefined symbols. So assume we have SM if we have ICE. - # These have to be linked with before -lX11, unlike the other - # libraries we check for below, so use a different variable. - # John Interrante, Karl Berry - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5 -$as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; } -if ${ac_cv_lib_ICE_IceConnectionNumber+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lICE $X_EXTRA_LIBS $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char IceConnectionNumber (); -int -main () -{ -return IceConnectionNumber (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_ICE_IceConnectionNumber=yes -else - ac_cv_lib_ICE_IceConnectionNumber=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 -$as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; } -if test "x$ac_cv_lib_ICE_IceConnectionNumber" = xyes; then : - X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" -fi - - LDFLAGS=$ac_save_LDFLAGS - -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 -$as_echo_n "checking for an ANSI C-conforming const... " >&6; } -if ${ac_cv_c_const+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - -#ifndef __cplusplus - /* Ultrix mips cc rejects this sort of thing. */ - typedef int charset[2]; - const charset cs = { 0, 0 }; - /* SunOS 4.1.1 cc rejects this. */ - char const *const *pcpcc; - char **ppc; - /* NEC SVR4.0.2 mips cc rejects this. */ - struct point {int x, y;}; - static struct point const zero = {0,0}; - /* AIX XL C 1.02.0.0 rejects this. - It does not let you subtract one const X* pointer from another in - an arm of an if-expression whose if-part is not a constant - expression */ - const char *g = "string"; - pcpcc = &g + (g ? g-g : 0); - /* HPUX 7.0 cc rejects these. */ - ++pcpcc; - ppc = (char**) pcpcc; - pcpcc = (char const *const *) ppc; - { /* SCO 3.2v4 cc rejects this sort of thing. */ - char tx; - char *t = &tx; - char const *s = 0 ? (char *) 0 : (char const *) 0; - - *t++ = 0; - if (s) return 0; - } - { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ - int x[] = {25, 17}; - const int *foo = &x[0]; - ++foo; - } - { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ - typedef const int *iptr; - iptr p = 0; - ++p; - } - { /* AIX XL C 1.02.0.0 rejects this sort of thing, saying - "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ - struct s { int j; const int *ap[3]; } bx; - struct s *b = &bx; b->j = 5; - } - { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ - const int foo = 10; - if (!foo) return 0; - } - return !cs[0] && !zero.x; -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_c_const=yes -else - ac_cv_c_const=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 -$as_echo "$ac_cv_c_const" >&6; } -if test $ac_cv_c_const = no; then - -$as_echo "#define const /**/" >>confdefs.h - -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 -$as_echo_n "checking for inline... " >&6; } -if ${ac_cv_c_inline+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_c_inline=no -for ac_kw in inline __inline__ __inline; do - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifndef __cplusplus -typedef int foo_t; -static $ac_kw foo_t static_foo () {return 0; } -$ac_kw foo_t foo () {return 0; } -#endif - -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_c_inline=$ac_kw -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - test "$ac_cv_c_inline" != no && break -done - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5 -$as_echo "$ac_cv_c_inline" >&6; } - -case $ac_cv_c_inline in - inline | yes) ;; - *) - case $ac_cv_c_inline in - no) ac_val=;; - *) ac_val=$ac_cv_c_inline;; - esac - cat >>confdefs.h <<_ACEOF -#ifndef __cplusplus -#define inline $ac_val -#endif -_ACEOF - ;; -esac - -ac_fn_c_check_type "$LINENO" "off_t" "ac_cv_type_off_t" "$ac_includes_default" -if test "x$ac_cv_type_off_t" = xyes; then : - -else - -cat >>confdefs.h <<_ACEOF -#define off_t long int -_ACEOF - -fi - -ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default" -if test "x$ac_cv_type_pid_t" = xyes; then : - -else - -cat >>confdefs.h <<_ACEOF -#define pid_t int -_ACEOF - -fi - -ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" -if test "x$ac_cv_type_size_t" = xyes; then : - -else - -cat >>confdefs.h <<_ACEOF -#define size_t unsigned int -_ACEOF - -fi - -ac_fn_c_check_member "$LINENO" "struct stat" "st_rdev" "ac_cv_member_struct_stat_st_rdev" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_rdev" = xyes; then : - -cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_RDEV 1 -_ACEOF - - -$as_echo "#define HAVE_ST_RDEV 1" >>confdefs.h - -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5 -$as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; } -if ${ac_cv_header_time+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#include - -int -main () -{ -if ((struct tm *) 0) -return 0; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_header_time=yes -else - ac_cv_header_time=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_time" >&5 -$as_echo "$ac_cv_header_time" >&6; } -if test $ac_cv_header_time = yes; then - -$as_echo "#define TIME_WITH_SYS_TIME 1" >>confdefs.h - -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether struct tm is in sys/time.h or time.h" >&5 -$as_echo_n "checking whether struct tm is in sys/time.h or time.h... " >&6; } -if ${ac_cv_struct_tm+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include - -int -main () -{ -struct tm tm; - int *p = &tm.tm_sec; - return !p; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_struct_tm=time.h -else - ac_cv_struct_tm=sys/time.h -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_struct_tm" >&5 -$as_echo "$ac_cv_struct_tm" >&6; } -if test $ac_cv_struct_tm = sys/time.h; then - -$as_echo "#define TM_IN_SYS_TIME 1" >>confdefs.h - -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5 -$as_echo_n "checking return type of signal handlers... " >&6; } -if ${ac_cv_type_signal+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include - -int -main () -{ -return *(signal (0, 0)) (0) == 1; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_type_signal=int -else - ac_cv_type_signal=void -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_signal" >&5 -$as_echo "$ac_cv_type_signal" >&6; } - -cat >>confdefs.h <<_ACEOF -#define RETSIGTYPE $ac_cv_type_signal -_ACEOF - - -for ac_func in strftime -do : - ac_fn_c_check_func "$LINENO" "strftime" "ac_cv_func_strftime" -if test "x$ac_cv_func_strftime" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_STRFTIME 1 -_ACEOF - -else - # strftime is in -lintl on SCO UNIX. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strftime in -lintl" >&5 -$as_echo_n "checking for strftime in -lintl... " >&6; } -if ${ac_cv_lib_intl_strftime+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lintl $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char strftime (); -int -main () -{ -return strftime (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_intl_strftime=yes -else - ac_cv_lib_intl_strftime=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_strftime" >&5 -$as_echo "$ac_cv_lib_intl_strftime" >&6; } -if test "x$ac_cv_lib_intl_strftime" = xyes; then : - $as_echo "#define HAVE_STRFTIME 1" >>confdefs.h - -LIBS="-lintl $LIBS" -fi - -fi -done - -for ac_func in getpgid -do : - ac_fn_c_check_func "$LINENO" "getpgid" "ac_cv_func_getpgid" -if test "x$ac_cv_func_getpgid" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_GETPGID 1 -_ACEOF - -fi -done - - - -# Before making a release, the LT_VERSION string should be modified. -# The string is of the form C:R:A. -# - If interfaces have been changed or added, but binary compatibility has -# been preserved, change to C+1:0:A+1 -# - If binary compatibility has been broken (eg removed or changed interfaces) -# change to C+1:0:0 -# - If the interface is the same as the previous version, change to C:R+1:A - -LIBGDICT_LT_VERSION=6:7:0 - - - -GLIB_REQUIRED=2.50.0 -GIO_REQUIRED=2.50.0 -GIO_UNIX_REQUIRED=2.18.0 -GTK_REQUIRED=3.22.0 -LIBMATE_PANEL_APPLET_REQUIRED=1.17.0 -LIBGTOP_REQUIRED=2.12.0 -LIBCANBERRA_GTK_REQUIRED=0.4 -UDISKS2_REQUIRED=1.90.0 - - - -# common checks - - - - - - - -if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. -set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PKG_CONFIG+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG -if test -n "$PKG_CONFIG"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 -$as_echo "$PKG_CONFIG" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_PKG_CONFIG"; then - ac_pt_PKG_CONFIG=$PKG_CONFIG - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG -if test -n "$ac_pt_PKG_CONFIG"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 -$as_echo "$ac_pt_PKG_CONFIG" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_PKG_CONFIG" = x; then - PKG_CONFIG="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - PKG_CONFIG=$ac_pt_PKG_CONFIG - fi -else - PKG_CONFIG="$ac_cv_path_PKG_CONFIG" -fi - -fi -if test -n "$PKG_CONFIG"; then - _pkg_min_version=0.9.0 - { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 -$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - PKG_CONFIG="" - fi -fi - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GLIB" >&5 -$as_echo_n "checking for GLIB... " >&6; } - -if test -n "$GLIB_CFLAGS"; then - pkg_cv_GLIB_CFLAGS="$GLIB_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_GLIB_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= $GLIB_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$GLIB_LIBS"; then - pkg_cv_GLIB_LIBS="$GLIB_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_GLIB_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= $GLIB_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - GLIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 >= $GLIB_REQUIRED" 2>&1` - else - GLIB_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 >= $GLIB_REQUIRED" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$GLIB_PKG_ERRORS" >&5 - - as_fn_error $? "Package requirements (glib-2.0 >= $GLIB_REQUIRED) were not met: - -$GLIB_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -Alternatively, you may set the environment variables GLIB_CFLAGS -and GLIB_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details." "$LINENO" 5 -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "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. - -Alternatively, you may set the environment variables GLIB_CFLAGS -and GLIB_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. - -To get pkg-config, see . -See \`config.log' for more details" "$LINENO" 5; } -else - GLIB_CFLAGS=$pkg_cv_GLIB_CFLAGS - GLIB_LIBS=$pkg_cv_GLIB_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -fi - - - - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTHREAD" >&5 -$as_echo_n "checking for GTHREAD... " >&6; } - -if test -n "$GTHREAD_CFLAGS"; then - pkg_cv_GTHREAD_CFLAGS="$GTHREAD_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gthread-2.0 >= \$GLIB_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "gthread-2.0 >= $GLIB_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_GTHREAD_CFLAGS=`$PKG_CONFIG --cflags "gthread-2.0 >= $GLIB_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$GTHREAD_LIBS"; then - pkg_cv_GTHREAD_LIBS="$GTHREAD_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gthread-2.0 >= \$GLIB_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "gthread-2.0 >= $GLIB_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_GTHREAD_LIBS=`$PKG_CONFIG --libs "gthread-2.0 >= $GLIB_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - GTHREAD_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gthread-2.0 >= $GLIB_REQUIRED" 2>&1` - else - GTHREAD_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gthread-2.0 >= $GLIB_REQUIRED" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$GTHREAD_PKG_ERRORS" >&5 - - as_fn_error $? "Package requirements (gthread-2.0 >= $GLIB_REQUIRED) were not met: - -$GTHREAD_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -Alternatively, you may set the environment variables GTHREAD_CFLAGS -and GTHREAD_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details." "$LINENO" 5 -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "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. - -Alternatively, you may set the environment variables GTHREAD_CFLAGS -and GTHREAD_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. - -To get pkg-config, see . -See \`config.log' for more details" "$LINENO" 5; } -else - GTHREAD_CFLAGS=$pkg_cv_GTHREAD_CFLAGS - GTHREAD_LIBS=$pkg_cv_GTHREAD_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -fi - - - - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GIO" >&5 -$as_echo_n "checking for GIO... " >&6; } - -if test -n "$GIO_CFLAGS"; then - pkg_cv_GIO_CFLAGS="$GIO_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gio-2.0 >= \$GIO_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "gio-2.0 >= $GIO_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_GIO_CFLAGS=`$PKG_CONFIG --cflags "gio-2.0 >= $GIO_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$GIO_LIBS"; then - pkg_cv_GIO_LIBS="$GIO_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gio-2.0 >= \$GIO_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "gio-2.0 >= $GIO_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_GIO_LIBS=`$PKG_CONFIG --libs "gio-2.0 >= $GIO_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - GIO_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gio-2.0 >= $GIO_REQUIRED" 2>&1` - else - GIO_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gio-2.0 >= $GIO_REQUIRED" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$GIO_PKG_ERRORS" >&5 - - as_fn_error $? "Package requirements (gio-2.0 >= $GIO_REQUIRED) were not met: - -$GIO_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -Alternatively, you may set the environment variables GIO_CFLAGS -and GIO_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details." "$LINENO" 5 -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "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. - -Alternatively, you may set the environment variables GIO_CFLAGS -and GIO_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. - -To get pkg-config, see . -See \`config.log' for more details" "$LINENO" 5; } -else - GIO_CFLAGS=$pkg_cv_GIO_CFLAGS - GIO_LIBS=$pkg_cv_GIO_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -fi - - - - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GIO_UNIX" >&5 -$as_echo_n "checking for GIO_UNIX... " >&6; } - -if test -n "$GIO_UNIX_CFLAGS"; then - pkg_cv_GIO_UNIX_CFLAGS="$GIO_UNIX_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gio-unix-2.0 >= \$GIO_UNIX_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "gio-unix-2.0 >= $GIO_UNIX_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_GIO_UNIX_CFLAGS=`$PKG_CONFIG --cflags "gio-unix-2.0 >= $GIO_UNIX_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$GIO_UNIX_LIBS"; then - pkg_cv_GIO_UNIX_LIBS="$GIO_UNIX_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gio-unix-2.0 >= \$GIO_UNIX_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "gio-unix-2.0 >= $GIO_UNIX_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_GIO_UNIX_LIBS=`$PKG_CONFIG --libs "gio-unix-2.0 >= $GIO_UNIX_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - GIO_UNIX_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gio-unix-2.0 >= $GIO_UNIX_REQUIRED" 2>&1` - else - GIO_UNIX_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gio-unix-2.0 >= $GIO_UNIX_REQUIRED" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$GIO_UNIX_PKG_ERRORS" >&5 - - as_fn_error $? "Package requirements (gio-unix-2.0 >= $GIO_UNIX_REQUIRED) were not met: - -$GIO_UNIX_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -Alternatively, you may set the environment variables GIO_UNIX_CFLAGS -and GIO_UNIX_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details." "$LINENO" 5 -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "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. - -Alternatively, you may set the environment variables GIO_UNIX_CFLAGS -and GIO_UNIX_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. - -To get pkg-config, see . -See \`config.log' for more details" "$LINENO" 5; } -else - GIO_UNIX_CFLAGS=$pkg_cv_GIO_UNIX_CFLAGS - GIO_UNIX_LIBS=$pkg_cv_GIO_UNIX_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -fi - - - - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK" >&5 -$as_echo_n "checking for GTK... " >&6; } - -if test -n "$GTK_CFLAGS"; then - pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-3.0 >= \$GTK_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "gtk+-3.0 >= $GTK_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "gtk+-3.0 >= $GTK_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$GTK_LIBS"; then - pkg_cv_GTK_LIBS="$GTK_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-3.0 >= \$GTK_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "gtk+-3.0 >= $GTK_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "gtk+-3.0 >= $GTK_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-3.0 >= $GTK_REQUIRED" 2>&1` - else - GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-3.0 >= $GTK_REQUIRED" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$GTK_PKG_ERRORS" >&5 - - as_fn_error $? "Package requirements (gtk+-3.0 >= $GTK_REQUIRED) were not met: - -$GTK_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -Alternatively, you may set the environment variables GTK_CFLAGS -and GTK_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details." "$LINENO" 5 -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "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. - -Alternatively, you may set the environment variables GTK_CFLAGS -and GTK_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. - -To get pkg-config, see . -See \`config.log' for more details" "$LINENO" 5; } -else - GTK_CFLAGS=$pkg_cv_GTK_CFLAGS - GTK_LIBS=$pkg_cv_GTK_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -fi - - - -# Check whether --enable-disk-image-mounter was given. -if test "${enable_disk_image_mounter+set}" = set; then : - enableval=$enable_disk_image_mounter; -else - enable_disk_image_mounter=yes -fi - - -case $enable_disk_image_mounter in #( - yes) : - - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for UDISKS2" >&5 -$as_echo_n "checking for UDISKS2... " >&6; } - -if test -n "$UDISKS2_CFLAGS"; then - pkg_cv_UDISKS2_CFLAGS="$UDISKS2_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"udisks2 >= \$UDISKS2_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "udisks2 >= $UDISKS2_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_UDISKS2_CFLAGS=`$PKG_CONFIG --cflags "udisks2 >= $UDISKS2_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$UDISKS2_LIBS"; then - pkg_cv_UDISKS2_LIBS="$UDISKS2_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"udisks2 >= \$UDISKS2_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "udisks2 >= $UDISKS2_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_UDISKS2_LIBS=`$PKG_CONFIG --libs "udisks2 >= $UDISKS2_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - UDISKS2_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "udisks2 >= $UDISKS2_REQUIRED" 2>&1` - else - UDISKS2_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "udisks2 >= $UDISKS2_REQUIRED" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$UDISKS2_PKG_ERRORS" >&5 - - as_fn_error $? "Package requirements (udisks2 >= $UDISKS2_REQUIRED) were not met: - -$UDISKS2_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -Alternatively, you may set the environment variables UDISKS2_CFLAGS -and UDISKS2_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details." "$LINENO" 5 -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "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. - -Alternatively, you may set the environment variables UDISKS2_CFLAGS -and UDISKS2_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. - -To get pkg-config, see . -See \`config.log' for more details" "$LINENO" 5; } -else - UDISKS2_CFLAGS=$pkg_cv_UDISKS2_CFLAGS - UDISKS2_LIBS=$pkg_cv_UDISKS2_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -fi - - - ;; #( - no) : - ;; #( - *) : - as_fn_error $? "Invalid value for --enable-disk-image-mounter" "$LINENO" 5 - ;; #( - *) : - ;; -esac - - if test "x$enable_disk_image_mounter" = "xyes"; then - BUILD_DISK_IMAGE_MOUNTER_TRUE= - BUILD_DISK_IMAGE_MOUNTER_FALSE='#' -else - BUILD_DISK_IMAGE_MOUNTER_TRUE='#' - BUILD_DISK_IMAGE_MOUNTER_FALSE= -fi - - -# libeggsmclient - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBEGG" >&5 -$as_echo_n "checking for LIBEGG... " >&6; } - -if test -n "$LIBEGG_CFLAGS"; then - pkg_cv_LIBEGG_CFLAGS="$LIBEGG_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sm >= 1.0.0 ice >= 1.0.0 gtk+-3.0 >= \$GTK_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "sm >= 1.0.0 ice >= 1.0.0 gtk+-3.0 >= $GTK_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_LIBEGG_CFLAGS=`$PKG_CONFIG --cflags "sm >= 1.0.0 ice >= 1.0.0 gtk+-3.0 >= $GTK_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$LIBEGG_LIBS"; then - pkg_cv_LIBEGG_LIBS="$LIBEGG_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sm >= 1.0.0 ice >= 1.0.0 gtk+-3.0 >= \$GTK_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "sm >= 1.0.0 ice >= 1.0.0 gtk+-3.0 >= $GTK_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_LIBEGG_LIBS=`$PKG_CONFIG --libs "sm >= 1.0.0 ice >= 1.0.0 gtk+-3.0 >= $GTK_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - LIBEGG_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "sm >= 1.0.0 ice >= 1.0.0 gtk+-3.0 >= $GTK_REQUIRED" 2>&1` - else - LIBEGG_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "sm >= 1.0.0 ice >= 1.0.0 gtk+-3.0 >= $GTK_REQUIRED" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$LIBEGG_PKG_ERRORS" >&5 - - as_fn_error $? "Package requirements (sm >= 1.0.0 ice >= 1.0.0 gtk+-3.0 >= $GTK_REQUIRED) were not met: - -$LIBEGG_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -Alternatively, you may set the environment variables LIBEGG_CFLAGS -and LIBEGG_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details." "$LINENO" 5 -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "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. - -Alternatively, you may set the environment variables LIBEGG_CFLAGS -and LIBEGG_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. - -To get pkg-config, see . -See \`config.log' for more details" "$LINENO" 5; } -else - LIBEGG_CFLAGS=$pkg_cv_LIBEGG_CFLAGS - LIBEGG_LIBS=$pkg_cv_LIBEGG_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -fi - - - -# libgdict requires just gtk+ - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBGDICT" >&5 -$as_echo_n "checking for LIBGDICT... " >&6; } - -if test -n "$LIBGDICT_CFLAGS"; then - pkg_cv_LIBGDICT_CFLAGS="$LIBGDICT_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQUIRED - gtk+-3.0 >= \$GTK_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQUIRED - gtk+-3.0 >= $GTK_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_LIBGDICT_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= $GLIB_REQUIRED - gtk+-3.0 >= $GTK_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$LIBGDICT_LIBS"; then - pkg_cv_LIBGDICT_LIBS="$LIBGDICT_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQUIRED - gtk+-3.0 >= \$GTK_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQUIRED - gtk+-3.0 >= $GTK_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_LIBGDICT_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= $GLIB_REQUIRED - gtk+-3.0 >= $GTK_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - LIBGDICT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 >= $GLIB_REQUIRED - gtk+-3.0 >= $GTK_REQUIRED" 2>&1` - else - LIBGDICT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 >= $GLIB_REQUIRED - gtk+-3.0 >= $GTK_REQUIRED" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$LIBGDICT_PKG_ERRORS" >&5 - - as_fn_error $? "Package requirements (glib-2.0 >= $GLIB_REQUIRED - gtk+-3.0 >= $GTK_REQUIRED) were not met: - -$LIBGDICT_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -Alternatively, you may set the environment variables LIBGDICT_CFLAGS -and LIBGDICT_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details." "$LINENO" 5 -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "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. - -Alternatively, you may set the environment variables LIBGDICT_CFLAGS -and LIBGDICT_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. - -To get pkg-config, see . -See \`config.log' for more details" "$LINENO" 5; } -else - LIBGDICT_CFLAGS=$pkg_cv_LIBGDICT_CFLAGS - LIBGDICT_LIBS=$pkg_cv_LIBGDICT_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -fi - - - -# For each cycle: -# first release: increment major += 1, minor = micro = 0; -# each release before API freeze: minor += 1; -# each release after API freeze: micro += 1; -# Even if this library is not part of the developers platform, we -# follow the same rules: no ABI breakage (unless unavoidable) and -# no API breakage past the API freeze. - - - - - -GDICT_MAJOR_VERSION=1 -GDICT_MINOR_VERSION=1 -GDICT_MICRO_VERSION=0 -GDICT_VERSION=1.1.0 - - - - - - -# xext for mate-screenshot; in theory checking for xext should be -# enough but there are a lot of broken distros out there - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for XSHAPE" >&5 -$as_echo_n "checking for XSHAPE... " >&6; } - -if test -n "$XSHAPE_CFLAGS"; then - pkg_cv_XSHAPE_CFLAGS="$XSHAPE_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"xext x11\""; } >&5 - ($PKG_CONFIG --exists --print-errors "xext x11") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_XSHAPE_CFLAGS=`$PKG_CONFIG --cflags "xext x11" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$XSHAPE_LIBS"; then - pkg_cv_XSHAPE_LIBS="$XSHAPE_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"xext x11\""; } >&5 - ($PKG_CONFIG --exists --print-errors "xext x11") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_XSHAPE_LIBS=`$PKG_CONFIG --libs "xext x11" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - XSHAPE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "xext x11" 2>&1` - else - XSHAPE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "xext x11" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$XSHAPE_PKG_ERRORS" >&5 - - as_fn_error $? "Package requirements (xext x11) were not met: - -$XSHAPE_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -Alternatively, you may set the environment variables XSHAPE_CFLAGS -and XSHAPE_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details." "$LINENO" 5 -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "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. - -Alternatively, you may set the environment variables XSHAPE_CFLAGS -and XSHAPE_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. - -To get pkg-config, see . -See \`config.log' for more details" "$LINENO" 5; } -else - XSHAPE_CFLAGS=$pkg_cv_XSHAPE_CFLAGS - XSHAPE_LIBS=$pkg_cv_XSHAPE_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - for ac_header in X11/extensions/shape.h -do : - ac_fn_c_check_header_mongrel "$LINENO" "X11/extensions/shape.h" "ac_cv_header_X11_extensions_shape_h" "$ac_includes_default" -if test "x$ac_cv_header_X11_extensions_shape_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_X11_EXTENSIONS_SHAPE_H 1 -_ACEOF - XSHAPE_LIBS="-lXext -lX11" -fi - -done - -fi - - -# Check whether --enable-gdict-applet was given. -if test "${enable_gdict_applet+set}" = set; then : - enableval=$enable_gdict_applet; -else - enable_gdict_applet=yes -fi - - -case $enable_gdict_applet in #( - yes) : - - # Gdict applet checks - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for APPLET" >&5 -$as_echo_n "checking for APPLET... " >&6; } - -if test -n "$APPLET_CFLAGS"; then - pkg_cv_APPLET_CFLAGS="$APPLET_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libmatepanelapplet-4.0 >= \$LIBMATE_PANEL_APPLET_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libmatepanelapplet-4.0 >= $LIBMATE_PANEL_APPLET_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_APPLET_CFLAGS=`$PKG_CONFIG --cflags "libmatepanelapplet-4.0 >= $LIBMATE_PANEL_APPLET_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$APPLET_LIBS"; then - pkg_cv_APPLET_LIBS="$APPLET_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libmatepanelapplet-4.0 >= \$LIBMATE_PANEL_APPLET_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libmatepanelapplet-4.0 >= $LIBMATE_PANEL_APPLET_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_APPLET_LIBS=`$PKG_CONFIG --libs "libmatepanelapplet-4.0 >= $LIBMATE_PANEL_APPLET_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - APPLET_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libmatepanelapplet-4.0 >= $LIBMATE_PANEL_APPLET_REQUIRED" 2>&1` - else - APPLET_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libmatepanelapplet-4.0 >= $LIBMATE_PANEL_APPLET_REQUIRED" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$APPLET_PKG_ERRORS" >&5 - - as_fn_error $? "Package requirements (libmatepanelapplet-4.0 >= $LIBMATE_PANEL_APPLET_REQUIRED) were not met: - -$APPLET_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -Alternatively, you may set the environment variables APPLET_CFLAGS -and APPLET_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details." "$LINENO" 5 -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "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. - -Alternatively, you may set the environment variables APPLET_CFLAGS -and APPLET_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. - -To get pkg-config, see . -See \`config.log' for more details" "$LINENO" 5; } -else - APPLET_CFLAGS=$pkg_cv_APPLET_CFLAGS - APPLET_LIBS=$pkg_cv_APPLET_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -fi - - - ;; #( - no) : - ;; #( - *) : - as_fn_error $? "Invalid value for --enable-gdict-applet" "$LINENO" 5 - ;; #( - *) : - ;; -esac - - if test "x$enable_gdict_applet" = "xyes"; then - BUILD_GDICT_APPLET_TRUE= - BUILD_GDICT_APPLET_FALSE='#' -else - BUILD_GDICT_APPLET_TRUE='#' - BUILD_GDICT_APPLET_FALSE= -fi - - -# Baobab checks - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBGTOP" >&5 -$as_echo_n "checking for LIBGTOP... " >&6; } - -if test -n "$LIBGTOP_CFLAGS"; then - pkg_cv_LIBGTOP_CFLAGS="$LIBGTOP_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libgtop-2.0 >= \$LIBGTOP_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libgtop-2.0 >= $LIBGTOP_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_LIBGTOP_CFLAGS=`$PKG_CONFIG --cflags "libgtop-2.0 >= $LIBGTOP_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$LIBGTOP_LIBS"; then - pkg_cv_LIBGTOP_LIBS="$LIBGTOP_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libgtop-2.0 >= \$LIBGTOP_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libgtop-2.0 >= $LIBGTOP_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_LIBGTOP_LIBS=`$PKG_CONFIG --libs "libgtop-2.0 >= $LIBGTOP_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - LIBGTOP_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libgtop-2.0 >= $LIBGTOP_REQUIRED" 2>&1` - else - LIBGTOP_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libgtop-2.0 >= $LIBGTOP_REQUIRED" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$LIBGTOP_PKG_ERRORS" >&5 - - as_fn_error $? "Package requirements (libgtop-2.0 >= $LIBGTOP_REQUIRED) were not met: - -$LIBGTOP_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -Alternatively, you may set the environment variables LIBGTOP_CFLAGS -and LIBGTOP_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details." "$LINENO" 5 -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "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. - -Alternatively, you may set the environment variables LIBGTOP_CFLAGS -and LIBGTOP_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. - -To get pkg-config, see . -See \`config.log' for more details" "$LINENO" 5; } -else - LIBGTOP_CFLAGS=$pkg_cv_LIBGTOP_CFLAGS - LIBGTOP_LIBS=$pkg_cv_LIBGTOP_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -fi - - - - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBCANBERRA_GTK" >&5 -$as_echo_n "checking for LIBCANBERRA_GTK... " >&6; } - -if test -n "$LIBCANBERRA_GTK_CFLAGS"; then - pkg_cv_LIBCANBERRA_GTK_CFLAGS="$LIBCANBERRA_GTK_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libcanberra-gtk3 >= \$LIBCANBERRA_GTK_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libcanberra-gtk3 >= $LIBCANBERRA_GTK_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_LIBCANBERRA_GTK_CFLAGS=`$PKG_CONFIG --cflags "libcanberra-gtk3 >= $LIBCANBERRA_GTK_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$LIBCANBERRA_GTK_LIBS"; then - pkg_cv_LIBCANBERRA_GTK_LIBS="$LIBCANBERRA_GTK_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libcanberra-gtk3 >= \$LIBCANBERRA_GTK_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libcanberra-gtk3 >= $LIBCANBERRA_GTK_REQUIRED") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_LIBCANBERRA_GTK_LIBS=`$PKG_CONFIG --libs "libcanberra-gtk3 >= $LIBCANBERRA_GTK_REQUIRED" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - LIBCANBERRA_GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libcanberra-gtk3 >= $LIBCANBERRA_GTK_REQUIRED" 2>&1` - else - LIBCANBERRA_GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libcanberra-gtk3 >= $LIBCANBERRA_GTK_REQUIRED" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$LIBCANBERRA_GTK_PKG_ERRORS" >&5 - - as_fn_error $? "Package requirements (libcanberra-gtk3 >= $LIBCANBERRA_GTK_REQUIRED) were not met: - -$LIBCANBERRA_GTK_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -Alternatively, you may set the environment variables LIBCANBERRA_GTK_CFLAGS -and LIBCANBERRA_GTK_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details." "$LINENO" 5 -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "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. - -Alternatively, you may set the environment variables LIBCANBERRA_GTK_CFLAGS -and LIBCANBERRA_GTK_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. - -To get pkg-config, see . -See \`config.log' for more details" "$LINENO" 5; } -else - LIBCANBERRA_GTK_CFLAGS=$pkg_cv_LIBCANBERRA_GTK_CFLAGS - LIBCANBERRA_GTK_LIBS=$pkg_cv_LIBCANBERRA_GTK_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -fi - - - - -case $ax_enable_debug in #( - yes) : - GDICT_DEBUG_CFLAGS="-DGDICT_ENABLE_DEBUG" ;; #( - no) : - GDICT_DEBUG_CFLAGS="-DG_DISABLE_ASSERT -DG_DISABLE_CHECKS -DG_DISABLE_CAST_CHECKS" ;; #( - *) : - GDICT_DEBUG_CFLAGS="-DG_DISABLE_CAST_CHECKS" - ;; #( - *) : - ;; -esac - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable IPv6" >&5 -$as_echo_n "checking whether to enable IPv6... " >&6; } -# Check whether --enable-ipv6 was given. -if test "${enable_ipv6+set}" = set; then : - enableval=$enable_ipv6; -else - enable_ipv6=yes -fi - - -if test "x$enable_ipv6" = "xyes"; then : - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #include - #include - -int -main () -{ - - struct sockaddr_storage ss; - socket(AF_INET6, SOCK_STREAM, 0) - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - have_ipv6=yes -else - have_ipv6=no - -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - - -fi - -if test "x$have_ipv6" = "xyes"; then : - - have_getaddrinfo=no - ac_fn_c_check_func "$LINENO" "getaddrinfo" "ac_cv_func_getaddrinfo" -if test "x$ac_cv_func_getaddrinfo" = xyes; then : - have_getaddrinfo=yes -fi - - - if test "x$have_getaddrinfo" != "xyes"; then : - - for lib in bsd socket inet; do - as_ac_Lib=`$as_echo "ac_cv_lib_$lib''_getaddrinfo" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for getaddrinfo in -l$lib" >&5 -$as_echo_n "checking for getaddrinfo in -l$lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char getaddrinfo (); -int -main () -{ -return getaddrinfo (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - "LIBS=$LIBS -l$lib"; have_getaddrinfo=yes; break -fi - - done - - -fi - - if test "x$have_getaddrinfo" = "xyes"; then : - -$as_echo "#define ENABLE_IPV6 1" >>confdefs.h - - -fi - - -fi - -withval="" - -# Check whether --with-grep was given. -if test "${with_grep+set}" = set; then : - withval=$with_grep; - if test x$withval != x; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${withval} is used for mate-search-tool." >&5 -$as_echo "${withval} is used for mate-search-tool." >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: grep is used for mate-search-tool." >&5 -$as_echo "grep is used for mate-search-tool." >&6; } - -fi - -fi - - -if test x$withval != x; then : - GREP_COMMAND="$withval" -else - GREP_COMMAND="grep" - -fi - - - - -# Check whether --enable-zlib was given. -if test "${enable_zlib+set}" = set; then : - enableval=$enable_zlib; -fi - -msg_zlib=no -Z_LIBS= - -if test "x$enable_zlib" != "xno"; then : - - ac_fn_c_check_header_mongrel "$LINENO" "zlib.h" "ac_cv_header_zlib_h" "$ac_includes_default" -if test "x$ac_cv_header_zlib_h" = xyes; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inflate in -lz" >&5 -$as_echo_n "checking for inflate in -lz... " >&6; } -if ${ac_cv_lib_z_inflate+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lz $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char inflate (); -int -main () -{ -return inflate (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_z_inflate=yes -else - ac_cv_lib_z_inflate=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_inflate" >&5 -$as_echo "$ac_cv_lib_z_inflate" >&6; } -if test "x$ac_cv_lib_z_inflate" = xyes; then : - msg_zlib=yes -fi - -fi - - - - if test "x$msg_zlib" = "xyes"; then : - - -$as_echo "#define HAVE_ZLIB 1" >>confdefs.h - - Z_LIBS="-lz" - - -fi - - -fi - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 -$as_echo_n "checking whether NLS is requested... " >&6; } - # Check whether --enable-nls was given. -if test "${enable_nls+set}" = set; then : - enableval=$enable_nls; USE_NLS=$enableval -else - USE_NLS=yes -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 -$as_echo "$USE_NLS" >&6; } - - - - - GETTEXT_MACRO_VERSION=0.20 - - - - -# Prepare PATH_SEPARATOR. -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which - # contains only /bin. Note that ksh looks also at the FPATH variable, - # so we have to set that as well for the test. - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ - && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ - || PATH_SEPARATOR=';' - } -fi - -# Find out how to test for executable files. Don't use a zero-byte file, -# as systems may use methods other than mode bits to determine executability. -cat >conf$$.file <<_ASEOF -#! /bin/sh -exit 0 -_ASEOF -chmod +x conf$$.file -if test -x conf$$.file >/dev/null 2>&1; then - ac_executable_p="test -x" -else - ac_executable_p="test -f" -fi -rm -f conf$$.file - -# Extract the first word of "msgfmt", so it can be a program name with args. -set dummy msgfmt; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_MSGFMT+:} false; then : - $as_echo_n "(cached) " >&6 -else - case "$MSGFMT" in - [\\/]* | ?:[\\/]*) - ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. - ;; - *) - ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$ac_save_IFS" - test -z "$ac_dir" && ac_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then - echo "$as_me: trying $ac_dir/$ac_word..." >&5 - if $ac_dir/$ac_word --statistics /dev/null >&5 2>&1 && - (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then - ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext" - break 2 - fi - fi - done - done - IFS="$ac_save_IFS" - test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":" - ;; -esac -fi -MSGFMT="$ac_cv_path_MSGFMT" -if test "$MSGFMT" != ":"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 -$as_echo "$MSGFMT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - # Extract the first word of "gmsgfmt", so it can be a program name with args. -set dummy gmsgfmt; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GMSGFMT+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GMSGFMT in - [\\/]* | ?:[\\/]*) - ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" - ;; -esac -fi -GMSGFMT=$ac_cv_path_GMSGFMT -if test -n "$GMSGFMT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 -$as_echo "$GMSGFMT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - - case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in - '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; - *) GMSGFMT_015=$GMSGFMT ;; - esac - - - -# Prepare PATH_SEPARATOR. -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which - # contains only /bin. Note that ksh looks also at the FPATH variable, - # so we have to set that as well for the test. - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ - && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ - || PATH_SEPARATOR=';' - } -fi - -# Find out how to test for executable files. Don't use a zero-byte file, -# as systems may use methods other than mode bits to determine executability. -cat >conf$$.file <<_ASEOF -#! /bin/sh -exit 0 -_ASEOF -chmod +x conf$$.file -if test -x conf$$.file >/dev/null 2>&1; then - ac_executable_p="test -x" -else - ac_executable_p="test -f" -fi -rm -f conf$$.file - -# Extract the first word of "xgettext", so it can be a program name with args. -set dummy xgettext; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_XGETTEXT+:} false; then : - $as_echo_n "(cached) " >&6 -else - case "$XGETTEXT" in - [\\/]* | ?:[\\/]*) - ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. - ;; - *) - ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$ac_save_IFS" - test -z "$ac_dir" && ac_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then - echo "$as_me: trying $ac_dir/$ac_word..." >&5 - if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&5 2>&1 && - (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then - ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext" - break 2 - fi - fi - done - done - IFS="$ac_save_IFS" - test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" - ;; -esac -fi -XGETTEXT="$ac_cv_path_XGETTEXT" -if test "$XGETTEXT" != ":"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 -$as_echo "$XGETTEXT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - rm -f messages.po - - case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in - '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; - *) XGETTEXT_015=$XGETTEXT ;; - esac - - - -# Prepare PATH_SEPARATOR. -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which - # contains only /bin. Note that ksh looks also at the FPATH variable, - # so we have to set that as well for the test. - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ - && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ - || PATH_SEPARATOR=';' - } -fi - -# Find out how to test for executable files. Don't use a zero-byte file, -# as systems may use methods other than mode bits to determine executability. -cat >conf$$.file <<_ASEOF -#! /bin/sh -exit 0 -_ASEOF -chmod +x conf$$.file -if test -x conf$$.file >/dev/null 2>&1; then - ac_executable_p="test -x" -else - ac_executable_p="test -f" -fi -rm -f conf$$.file - -# Extract the first word of "msgmerge", so it can be a program name with args. -set dummy msgmerge; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_MSGMERGE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case "$MSGMERGE" in - [\\/]* | ?:[\\/]*) - ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. - ;; - *) - ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$ac_save_IFS" - test -z "$ac_dir" && ac_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then - echo "$as_me: trying $ac_dir/$ac_word..." >&5 - if $ac_dir/$ac_word --update -q /dev/null /dev/null >&5 2>&1; then - ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext" - break 2 - fi - fi - done - done - IFS="$ac_save_IFS" - test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":" - ;; -esac -fi -MSGMERGE="$ac_cv_path_MSGMERGE" -if test "$MSGMERGE" != ":"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 -$as_echo "$MSGMERGE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - if LC_ALL=C $MSGMERGE --help | grep ' --for-msgfmt ' >/dev/null; then - MSGMERGE_FOR_MSGFMT_OPTION='--for-msgfmt' - else - if LC_ALL=C $MSGMERGE --help | grep ' --no-fuzzy-matching ' >/dev/null; then - MSGMERGE_FOR_MSGFMT_OPTION='--no-fuzzy-matching --no-location --quiet' - else - MSGMERGE_FOR_MSGFMT_OPTION='--no-location --quiet' - fi - fi - - - test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= - - - ac_config_commands="$ac_config_commands po-directories" - - - - if test "X$prefix" = "XNONE"; then - acl_final_prefix="$ac_default_prefix" - else - acl_final_prefix="$prefix" - fi - if test "X$exec_prefix" = "XNONE"; then - acl_final_exec_prefix='${prefix}' - else - acl_final_exec_prefix="$exec_prefix" - fi - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" - prefix="$acl_save_prefix" - - - -# Check whether --with-gnu-ld was given. -if test "${with_gnu_ld+set}" = set; then : - withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes -else - with_gnu_ld=no -fi - -# Prepare PATH_SEPARATOR. -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which - # contains only /bin. Note that ksh looks also at the FPATH variable, - # so we have to set that as well for the test. - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ - && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ - || PATH_SEPARATOR=';' - } -fi - -if test -n "$LD"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld" >&5 -$as_echo_n "checking for ld... " >&6; } -elif test "$GCC" = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 -$as_echo_n "checking for ld used by $CC... " >&6; } -elif test "$with_gnu_ld" = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 -$as_echo_n "checking for GNU ld... " >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 -$as_echo_n "checking for non-GNU ld... " >&6; } -fi -if test -n "$LD"; then - # Let the user override the test with a path. - : -else - if ${acl_cv_path_LD+:} false; then : - $as_echo_n "(cached) " >&6 -else - - acl_cv_path_LD= # Final result of this test - ac_prog=ld # Program to search in $PATH - if test "$GCC" = yes; then - # Check if gcc -print-prog-name=ld gives a path. - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw - acl_output=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - acl_output=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $acl_output in - # Accept absolute paths. - [\\/]* | ?:[\\/]*) - re_direlt='/[^/][^/]*/\.\./' - # Canonicalize the pathname of ld - acl_output=`echo "$acl_output" | sed 's%\\\\%/%g'` - while echo "$acl_output" | grep "$re_direlt" > /dev/null 2>&1; do - acl_output=`echo $acl_output | sed "s%$re_direlt%/%"` - done - # Got the pathname. No search in PATH is needed. - acl_cv_path_LD="$acl_output" - ac_prog= - ;; - "") - # If it fails, then pretend we aren't using GCC. - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac - fi - if test -n "$ac_prog"; then - # Search for $ac_prog in $PATH. - acl_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$acl_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - acl_cv_path_LD="$ac_dir/$ac_prog" - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some variants of GNU ld only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$acl_cv_path_LD" -v 2>&1 conftest.$ac_ext -/* end confdefs.h. */ -#if defined __powerpc64__ || defined _ARCH_PPC64 - int ok; - #else - error fail - #endif - -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - # The compiler produces 64-bit code. Add option '-b64' so that the - # linker groks 64-bit object files. - case "$acl_cv_path_LD " in - *" -b64 "*) ;; - *) acl_cv_path_LD="$acl_cv_path_LD -b64" ;; - esac - -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ;; - sparc64-*-netbsd*) - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#if defined __sparcv9 || defined __arch64__ - int ok; - #else - error fail - #endif - -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - -else - # The compiler produces 32-bit code. Add option '-m elf32_sparc' - # so that the linker groks 32-bit object files. - case "$acl_cv_path_LD " in - *" -m elf32_sparc "*) ;; - *) acl_cv_path_LD="$acl_cv_path_LD -m elf32_sparc" ;; - esac - -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ;; - esac - -fi - - LD="$acl_cv_path_LD" -fi -if test -n "$LD"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 -$as_echo "$LD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 -$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -if ${acl_cv_prog_gnu_ld+:} false; then : - $as_echo_n "(cached) " >&6 -else - # I'd rather use --version here, but apparently some GNU lds only accept -v. -case `$LD -v 2>&1 &5 -$as_echo "$acl_cv_prog_gnu_ld" >&6; } -with_gnu_ld=$acl_cv_prog_gnu_ld - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5 -$as_echo_n "checking for shared library run path origin... " >&6; } -if ${acl_cv_rpath+:} false; then : - $as_echo_n "(cached) " >&6 -else - - CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ - ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh - . ./conftest.sh - rm -f ./conftest.sh - acl_cv_rpath=done - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5 -$as_echo "$acl_cv_rpath" >&6; } - wl="$acl_cv_wl" - acl_libext="$acl_cv_libext" - acl_shlibext="$acl_cv_shlibext" - acl_libname_spec="$acl_cv_libname_spec" - acl_library_names_spec="$acl_cv_library_names_spec" - acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" - acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" - acl_hardcode_direct="$acl_cv_hardcode_direct" - acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" - # Check whether --enable-rpath was given. -if test "${enable_rpath+set}" = set; then : - enableval=$enable_rpath; : -else - enable_rpath=yes -fi - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking 32-bit host C ABI" >&5 -$as_echo_n "checking 32-bit host C ABI... " >&6; } -if ${gl_cv_host_cpu_c_abi_32bit+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$gl_cv_host_cpu_c_abi"; then - case "$gl_cv_host_cpu_c_abi" in - i386 | x86_64-x32 | arm | armhf | arm64-ilp32 | hppa | ia64-ilp32 | mips | mipsn32 | powerpc | riscv*-ilp32* | s390 | sparc) - gl_cv_host_cpu_c_abi_32bit=yes ;; - x86_64 | alpha | arm64 | hppa64 | ia64 | mips64 | powerpc64 | powerpc64-elfv2 | riscv*-lp64* | s390x | sparc64 ) - gl_cv_host_cpu_c_abi_32bit=no ;; - *) - gl_cv_host_cpu_c_abi_32bit=unknown ;; - esac - else - case "$host_cpu" in - - # CPUs that only support a 32-bit ABI. - arc \ - | bfin \ - | cris* \ - | csky \ - | epiphany \ - | ft32 \ - | h8300 \ - | m68k \ - | microblaze | microblazeel \ - | nds32 | nds32le | nds32be \ - | nios2 | nios2eb | nios2el \ - | or1k* \ - | or32 \ - | sh | sh1234 | sh1234elb \ - | tic6x \ - | xtensa* ) - gl_cv_host_cpu_c_abi_32bit=yes - ;; - - # CPUs that only support a 64-bit ABI. - alpha | alphaev[4-8] | alphaev56 | alphapca5[67] | alphaev6[78] \ - | mmix ) - gl_cv_host_cpu_c_abi_32bit=no - ;; - - i[34567]86 ) - gl_cv_host_cpu_c_abi_32bit=yes - ;; - - x86_64 ) - # On x86_64 systems, the C compiler may be generating code in one of - # these ABIs: - # - 64-bit instruction set, 64-bit pointers, 64-bit 'long': x86_64. - # - 64-bit instruction set, 64-bit pointers, 32-bit 'long': x86_64 - # with native Windows (mingw, MSVC). - # - 64-bit instruction set, 32-bit pointers, 32-bit 'long': x86_64-x32. - # - 32-bit instruction set, 32-bit pointers, 32-bit 'long': i386. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#if (defined __x86_64__ || defined __amd64__ \ - || defined _M_X64 || defined _M_AMD64) \ - && !(defined __ILP32__ || defined _ILP32) - int ok; - #else - error fail - #endif - -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - gl_cv_host_cpu_c_abi_32bit=no -else - gl_cv_host_cpu_c_abi_32bit=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ;; - - arm* | aarch64 ) - # Assume arm with EABI. - # On arm64 systems, the C compiler may be generating code in one of - # these ABIs: - # - aarch64 instruction set, 64-bit pointers, 64-bit 'long': arm64. - # - aarch64 instruction set, 32-bit pointers, 32-bit 'long': arm64-ilp32. - # - 32-bit instruction set, 32-bit pointers, 32-bit 'long': arm or armhf. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#if defined __aarch64__ && !(defined __ILP32__ || defined _ILP32) - int ok; - #else - error fail - #endif - -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - gl_cv_host_cpu_c_abi_32bit=no -else - gl_cv_host_cpu_c_abi_32bit=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ;; - - hppa1.0 | hppa1.1 | hppa2.0* | hppa64 ) - # On hppa, the C compiler may be generating 32-bit code or 64-bit - # code. In the latter case, it defines _LP64 and __LP64__. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __LP64__ - int ok; - #else - error fail - #endif - -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - gl_cv_host_cpu_c_abi_32bit=no -else - gl_cv_host_cpu_c_abi_32bit=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ;; - - ia64* ) - # On ia64 on HP-UX, the C compiler may be generating 64-bit code or - # 32-bit code. In the latter case, it defines _ILP32. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef _ILP32 - int ok; - #else - error fail - #endif - -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - gl_cv_host_cpu_c_abi_32bit=yes -else - gl_cv_host_cpu_c_abi_32bit=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ;; - - mips* ) - # We should also check for (_MIPS_SZPTR == 64), but gcc keeps this - # at 32. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#if defined _MIPS_SZLONG && (_MIPS_SZLONG == 64) - int ok; - #else - error fail - #endif - -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - gl_cv_host_cpu_c_abi_32bit=no -else - gl_cv_host_cpu_c_abi_32bit=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ;; - - powerpc* ) - # Different ABIs are in use on AIX vs. Mac OS X vs. Linux,*BSD. - # No need to distinguish them here; the caller may distinguish - # them based on the OS. - # On powerpc64 systems, the C compiler may still be generating - # 32-bit code. And on powerpc-ibm-aix systems, the C compiler may - # be generating 64-bit code. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#if defined __powerpc64__ || defined _ARCH_PPC64 - int ok; - #else - error fail - #endif - -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - gl_cv_host_cpu_c_abi_32bit=no -else - gl_cv_host_cpu_c_abi_32bit=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ;; - - rs6000 ) - gl_cv_host_cpu_c_abi_32bit=yes - ;; - - riscv32 | riscv64 ) - # There are 6 ABIs: ilp32, ilp32f, ilp32d, lp64, lp64f, lp64d. - # Size of 'long' and 'void *': - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#if defined __LP64__ - int ok; - #else - error fail - #endif - -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - gl_cv_host_cpu_c_abi_32bit=no -else - gl_cv_host_cpu_c_abi_32bit=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ;; - - s390* ) - # On s390x, the C compiler may be generating 64-bit (= s390x) code - # or 31-bit (= s390) code. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#if defined __LP64__ || defined __s390x__ - int ok; - #else - error fail - #endif - -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - gl_cv_host_cpu_c_abi_32bit=no -else - gl_cv_host_cpu_c_abi_32bit=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ;; - - sparc | sparc64 ) - # UltraSPARCs running Linux have `uname -m` = "sparc64", but the - # C compiler still generates 32-bit code. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#if defined __sparcv9 || defined __arch64__ - int ok; - #else - error fail - #endif - -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - gl_cv_host_cpu_c_abi_32bit=no -else - gl_cv_host_cpu_c_abi_32bit=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ;; - - *) - gl_cv_host_cpu_c_abi_32bit=unknown - ;; - esac - fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_host_cpu_c_abi_32bit" >&5 -$as_echo "$gl_cv_host_cpu_c_abi_32bit" >&6; } - - HOST_CPU_C_ABI_32BIT="$gl_cv_host_cpu_c_abi_32bit" - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ELF binary format" >&5 -$as_echo_n "checking for ELF binary format... " >&6; } -if ${gl_cv_elf+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __ELF__ - Extensible Linking Format - #endif - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "Extensible Linking Format" >/dev/null 2>&1; then : - gl_cv_elf=yes -else - gl_cv_elf=no -fi -rm -f conftest* - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_elf" >&5 -$as_echo "$gl_cv_elf" >&6; } - if test $gl_cv_elf; then - # Extract the ELF class of a file (5th byte) in decimal. - # Cf. https://en.wikipedia.org/wiki/Executable_and_Linkable_Format#File_header - if od -A x < /dev/null >/dev/null 2>/dev/null; then - # Use POSIX od. - func_elfclass () - { - od -A n -t d1 -j 4 -N 1 - } - else - # Use BSD hexdump. - func_elfclass () - { - dd bs=1 count=1 skip=4 2>/dev/null | hexdump -e '1/1 "%3d "' - echo - } - fi - case $HOST_CPU_C_ABI_32BIT in - yes) - # 32-bit ABI. - acl_is_expected_elfclass () - { - test "`func_elfclass | sed -e 's/[ ]//g'`" = 1 - } - ;; - no) - # 64-bit ABI. - acl_is_expected_elfclass () - { - test "`func_elfclass | sed -e 's/[ ]//g'`" = 2 - } - ;; - *) - # Unknown. - acl_is_expected_elfclass () - { - : - } - ;; - esac - else - acl_is_expected_elfclass () - { - : - } - fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the common suffixes of directories in the library search path" >&5 -$as_echo_n "checking for the common suffixes of directories in the library search path... " >&6; } -if ${acl_cv_libdirstems+:} false; then : - $as_echo_n "(cached) " >&6 -else - acl_libdirstem=lib - acl_libdirstem2= - acl_libdirstem3= - case "$host_os" in - solaris*) - if test $HOST_CPU_C_ABI_32BIT = no; then - acl_libdirstem2=lib/64 - case "$host_cpu" in - sparc*) acl_libdirstem3=lib/sparcv9 ;; - i*86 | x86_64) acl_libdirstem3=lib/amd64 ;; - esac - fi - ;; - *) - searchpath=`(LC_ALL=C $CC $CPPFLAGS $CFLAGS -print-search-dirs) 2>/dev/null \ - | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` - if test $HOST_CPU_C_ABI_32BIT != no; then - # 32-bit or unknown ABI. - if test -d /usr/lib32; then - acl_libdirstem2=lib32 - fi - fi - if test $HOST_CPU_C_ABI_32BIT != yes; then - # 64-bit or unknown ABI. - if test -d /usr/lib64; then - acl_libdirstem3=lib64 - fi - fi - if test -n "$searchpath"; then - acl_save_IFS="${IFS= }"; IFS=":" - for searchdir in $searchpath; do - if test -d "$searchdir"; then - case "$searchdir" in - */lib32/ | */lib32 ) acl_libdirstem2=lib32 ;; - */lib64/ | */lib64 ) acl_libdirstem3=lib64 ;; - */../ | */.. ) - # Better ignore directories of this form. They are misleading. - ;; - *) searchdir=`cd "$searchdir" && pwd` - case "$searchdir" in - */lib32 ) acl_libdirstem2=lib32 ;; - */lib64 ) acl_libdirstem3=lib64 ;; - esac ;; - esac - fi - done - IFS="$acl_save_IFS" - if test $HOST_CPU_C_ABI_32BIT = yes; then - # 32-bit ABI. - acl_libdirstem3= - fi - if test $HOST_CPU_C_ABI_32BIT = no; then - # 64-bit ABI. - acl_libdirstem2= - fi - fi - ;; - esac - test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" - test -n "$acl_libdirstem3" || acl_libdirstem3="$acl_libdirstem" - acl_cv_libdirstems="$acl_libdirstem,$acl_libdirstem2,$acl_libdirstem3" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_libdirstems" >&5 -$as_echo "$acl_cv_libdirstems" >&6; } - acl_libdirstem=`echo "$acl_cv_libdirstems" | sed -e 's/,.*//'` - acl_libdirstem2=`echo "$acl_cv_libdirstems" | sed -e 's/^[^,]*,//' -e 's/,.*//'` - acl_libdirstem3=`echo "$acl_cv_libdirstems" | sed -e 's/^[^,]*,[^,]*,//' -e 's/,.*//'` - - - - - - - - - - - - use_additional=yes - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - eval additional_libdir2=\"$exec_prefix/$acl_libdirstem2\" - eval additional_libdir3=\"$exec_prefix/$acl_libdirstem3\" - - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - -# Check whether --with-libiconv-prefix was given. -if test "${with_libiconv_prefix+set}" = set; then : - withval=$with_libiconv_prefix; - if test "X$withval" = "Xno"; then - use_additional=no - else - if test "X$withval" = "X"; then - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - eval additional_libdir2=\"$exec_prefix/$acl_libdirstem2\" - eval additional_libdir3=\"$exec_prefix/$acl_libdirstem3\" - - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - else - additional_includedir="$withval/include" - additional_libdir="$withval/$acl_libdirstem" - additional_libdir2="$withval/$acl_libdirstem2" - additional_libdir3="$withval/$acl_libdirstem3" - fi - fi - -fi - - if test "X$additional_libdir2" = "X$additional_libdir"; then - additional_libdir2= - fi - if test "X$additional_libdir3" = "X$additional_libdir"; then - additional_libdir3= - fi - LIBICONV= - LTLIBICONV= - INCICONV= - LIBICONV_PREFIX= - HAVE_LIBICONV= - rpathdirs= - ltrpathdirs= - names_already_handled= - names_next_round='iconv ' - while test -n "$names_next_round"; do - names_this_round="$names_next_round" - names_next_round= - for name in $names_this_round; do - already_handled= - for n in $names_already_handled; do - if test "$n" = "$name"; then - already_handled=yes - break - fi - done - if test -z "$already_handled"; then - names_already_handled="$names_already_handled $name" - uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` - eval value=\"\$HAVE_LIB$uppername\" - if test -n "$value"; then - if test "$value" = yes; then - eval value=\"\$LIB$uppername\" - test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value" - eval value=\"\$LTLIB$uppername\" - test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value" - else - : - fi - else - found_dir= - found_la= - found_so= - found_a= - eval libname=\"$acl_libname_spec\" # typically: libname=lib$name - if test -n "$acl_shlibext"; then - shrext=".$acl_shlibext" # typically: shrext=.so - else - shrext= - fi - if test $use_additional = yes; then - for additional_libdir_variable in additional_libdir additional_libdir2 additional_libdir3; do - if test "X$found_dir" = "X"; then - eval dir=\$$additional_libdir_variable - if test -n "$dir"; then - if test -n "$acl_shlibext"; then - if test -f "$dir/$libname$shrext" && acl_is_expected_elfclass < "$dir/$libname$shrext"; then - found_dir="$dir" - found_so="$dir/$libname$shrext" - else - if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then - ver=`(cd "$dir" && \ - for f in "$libname$shrext".*; do echo "$f"; done \ - | sed -e "s,^$libname$shrext\\\\.,," \ - | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ - | sed 1q ) 2>/dev/null` - if test -n "$ver" && test -f "$dir/$libname$shrext.$ver" && acl_is_expected_elfclass < "$dir/$libname$shrext.$ver"; then - found_dir="$dir" - found_so="$dir/$libname$shrext.$ver" - fi - else - eval library_names=\"$acl_library_names_spec\" - for f in $library_names; do - if test -f "$dir/$f" && acl_is_expected_elfclass < "$dir/$f"; then - found_dir="$dir" - found_so="$dir/$f" - break - fi - done - fi - fi - fi - if test "X$found_dir" = "X"; then - if test -f "$dir/$libname.$acl_libext" && ${AR-ar} -p "$dir/$libname.$acl_libext" | acl_is_expected_elfclass; then - found_dir="$dir" - found_a="$dir/$libname.$acl_libext" - fi - fi - if test "X$found_dir" != "X"; then - if test -f "$dir/$libname.la"; then - found_la="$dir/$libname.la" - fi - fi - fi - fi - done - fi - if test "X$found_dir" = "X"; then - for x in $LDFLAGS $LTLIBICONV; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - case "$x" in - -L*) - dir=`echo "X$x" | sed -e 's/^X-L//'` - if test -n "$acl_shlibext"; then - if test -f "$dir/$libname$shrext" && acl_is_expected_elfclass < "$dir/$libname$shrext"; then - found_dir="$dir" - found_so="$dir/$libname$shrext" - else - if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then - ver=`(cd "$dir" && \ - for f in "$libname$shrext".*; do echo "$f"; done \ - | sed -e "s,^$libname$shrext\\\\.,," \ - | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ - | sed 1q ) 2>/dev/null` - if test -n "$ver" && test -f "$dir/$libname$shrext.$ver" && acl_is_expected_elfclass < "$dir/$libname$shrext.$ver"; then - found_dir="$dir" - found_so="$dir/$libname$shrext.$ver" - fi - else - eval library_names=\"$acl_library_names_spec\" - for f in $library_names; do - if test -f "$dir/$f" && acl_is_expected_elfclass < "$dir/$f"; then - found_dir="$dir" - found_so="$dir/$f" - break - fi - done - fi - fi - fi - if test "X$found_dir" = "X"; then - if test -f "$dir/$libname.$acl_libext" && ${AR-ar} -p "$dir/$libname.$acl_libext" | acl_is_expected_elfclass; then - found_dir="$dir" - found_a="$dir/$libname.$acl_libext" - fi - fi - if test "X$found_dir" != "X"; then - if test -f "$dir/$libname.la"; then - found_la="$dir/$libname.la" - fi - fi - ;; - esac - if test "X$found_dir" != "X"; then - break - fi - done - fi - if test "X$found_dir" != "X"; then - LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name" - if test "X$found_so" != "X"; then - if test "$enable_rpath" = no \ - || test "X$found_dir" = "X/usr/$acl_libdirstem" \ - || test "X$found_dir" = "X/usr/$acl_libdirstem2" \ - || test "X$found_dir" = "X/usr/$acl_libdirstem3"; then - LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" - else - haveit= - for x in $ltrpathdirs; do - if test "X$x" = "X$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - ltrpathdirs="$ltrpathdirs $found_dir" - fi - if test "$acl_hardcode_direct" = yes; then - LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" - else - if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then - LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" - haveit= - for x in $rpathdirs; do - if test "X$x" = "X$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - rpathdirs="$rpathdirs $found_dir" - fi - else - haveit= - for x in $LDFLAGS $LIBICONV; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X-L$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir" - fi - if test "$acl_hardcode_minus_L" != no; then - LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" - else - LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" - fi - fi - fi - fi - else - if test "X$found_a" != "X"; then - LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a" - else - LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name" - fi - fi - additional_includedir= - case "$found_dir" in - */$acl_libdirstem | */$acl_libdirstem/) - basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` - if test "$name" = 'iconv'; then - LIBICONV_PREFIX="$basedir" - fi - additional_includedir="$basedir/include" - ;; - */$acl_libdirstem2 | */$acl_libdirstem2/) - basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` - if test "$name" = 'iconv'; then - LIBICONV_PREFIX="$basedir" - fi - additional_includedir="$basedir/include" - ;; - */$acl_libdirstem3 | */$acl_libdirstem3/) - basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem3/"'*$,,'` - if test "$name" = 'iconv'; then - LIBICONV_PREFIX="$basedir" - fi - additional_includedir="$basedir/include" - ;; - esac - if test "X$additional_includedir" != "X"; then - if test "X$additional_includedir" != "X/usr/include"; then - haveit= - if test "X$additional_includedir" = "X/usr/local/include"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - for x in $CPPFLAGS $INCICONV; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X-I$additional_includedir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$additional_includedir"; then - INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir" - fi - fi - fi - fi - fi - if test -n "$found_la"; then - save_libdir="$libdir" - case "$found_la" in - */* | *\\*) . "$found_la" ;; - *) . "./$found_la" ;; - esac - libdir="$save_libdir" - for dep in $dependency_libs; do - case "$dep" in - -L*) - dependency_libdir=`echo "X$dep" | sed -e 's/^X-L//'` - if test "X$dependency_libdir" != "X/usr/$acl_libdirstem" \ - && test "X$dependency_libdir" != "X/usr/$acl_libdirstem2" \ - && test "X$dependency_libdir" != "X/usr/$acl_libdirstem3"; then - haveit= - if test "X$dependency_libdir" = "X/usr/local/$acl_libdirstem" \ - || test "X$dependency_libdir" = "X/usr/local/$acl_libdirstem2" \ - || test "X$dependency_libdir" = "X/usr/local/$acl_libdirstem3"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - haveit= - for x in $LDFLAGS $LIBICONV; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X-L$dependency_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$dependency_libdir"; then - LIBICONV="${LIBICONV}${LIBICONV:+ }-L$dependency_libdir" - fi - fi - haveit= - for x in $LDFLAGS $LTLIBICONV; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X-L$dependency_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$dependency_libdir"; then - LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$dependency_libdir" - fi - fi - fi - fi - ;; - -R*) - dir=`echo "X$dep" | sed -e 's/^X-R//'` - if test "$enable_rpath" != no; then - haveit= - for x in $rpathdirs; do - if test "X$x" = "X$dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - rpathdirs="$rpathdirs $dir" - fi - haveit= - for x in $ltrpathdirs; do - if test "X$x" = "X$dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - ltrpathdirs="$ltrpathdirs $dir" - fi - fi - ;; - -l*) - names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` - ;; - *.la) - names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` - ;; - *) - LIBICONV="${LIBICONV}${LIBICONV:+ }$dep" - LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep" - ;; - esac - done - fi - else - LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" - LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name" - fi - fi - fi - done - done - if test "X$rpathdirs" != "X"; then - if test -n "$acl_hardcode_libdir_separator"; then - alldirs= - for found_dir in $rpathdirs; do - alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" - done - acl_save_libdir="$libdir" - libdir="$alldirs" - eval flag=\"$acl_hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" - else - for found_dir in $rpathdirs; do - acl_save_libdir="$libdir" - libdir="$found_dir" - eval flag=\"$acl_hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" - done - fi - fi - if test "X$ltrpathdirs" != "X"; then - for found_dir in $ltrpathdirs; do - LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir" - done - fi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFPreferencesCopyAppValue" >&5 -$as_echo_n "checking for CFPreferencesCopyAppValue... " >&6; } -if ${gt_cv_func_CFPreferencesCopyAppValue+:} false; then : - $as_echo_n "(cached) " >&6 -else - gt_save_LIBS="$LIBS" - LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -CFPreferencesCopyAppValue(NULL, NULL) - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - gt_cv_func_CFPreferencesCopyAppValue=yes -else - gt_cv_func_CFPreferencesCopyAppValue=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$gt_save_LIBS" -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFPreferencesCopyAppValue" >&5 -$as_echo "$gt_cv_func_CFPreferencesCopyAppValue" >&6; } - if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then - -$as_echo "#define HAVE_CFPREFERENCESCOPYAPPVALUE 1" >>confdefs.h - - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFLocaleCopyPreferredLanguages" >&5 -$as_echo_n "checking for CFLocaleCopyPreferredLanguages... " >&6; } -if ${gt_cv_func_CFLocaleCopyPreferredLanguages+:} false; then : - $as_echo_n "(cached) " >&6 -else - gt_save_LIBS="$LIBS" - LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -CFLocaleCopyPreferredLanguages(); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - gt_cv_func_CFLocaleCopyPreferredLanguages=yes -else - gt_cv_func_CFLocaleCopyPreferredLanguages=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$gt_save_LIBS" -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFLocaleCopyPreferredLanguages" >&5 -$as_echo "$gt_cv_func_CFLocaleCopyPreferredLanguages" >&6; } - if test $gt_cv_func_CFLocaleCopyPreferredLanguages = yes; then - -$as_echo "#define HAVE_CFLOCALECOPYPREFERREDLANGUAGES 1" >>confdefs.h - - fi - INTL_MACOSX_LIBS= - if test $gt_cv_func_CFPreferencesCopyAppValue = yes \ - || test $gt_cv_func_CFLocaleCopyPreferredLanguages = yes; then - INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" - fi - - - - - - - LIBINTL= - LTLIBINTL= - POSUB= - - case " $gt_needs " in - *" need-formatstring-macros "*) gt_api_version=3 ;; - *" need-ngettext "*) gt_api_version=2 ;; - *) gt_api_version=1 ;; - esac - gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" - gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" - - if test "$USE_NLS" = "yes"; then - gt_use_preinstalled_gnugettext=no - - - if test $gt_api_version -ge 3; then - gt_revision_test_code=' -#ifndef __GNU_GETTEXT_SUPPORTED_REVISION -#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) -#endif -typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; -' - else - gt_revision_test_code= - fi - if test $gt_api_version -ge 2; then - gt_expression_test_code=' + * ngettext ("", "", 0)' - else - gt_expression_test_code= - fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5 -$as_echo_n "checking for GNU gettext in libc... " >&6; } -if eval \${$gt_func_gnugettext_libc+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -#include -#ifndef __GNU_GETTEXT_SUPPORTED_REVISION -extern int _nl_msg_cat_cntr; -extern int *_nl_domain_bindings; -#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_domain_bindings) -#else -#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0 -#endif -$gt_revision_test_code - -int -main () -{ - -bindtextdomain ("", ""); -return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - eval "$gt_func_gnugettext_libc=yes" -else - eval "$gt_func_gnugettext_libc=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -fi -eval ac_res=\$$gt_func_gnugettext_libc - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - - if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then - - - - - - am_save_CPPFLAGS="$CPPFLAGS" - - for element in $INCICONV; do - haveit= - for x in $CPPFLAGS; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X$element"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" - fi - done - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 -$as_echo_n "checking for iconv... " >&6; } -if ${am_cv_func_iconv+:} false; then : - $as_echo_n "(cached) " >&6 -else - - am_cv_func_iconv="no, consider installing GNU libiconv" - am_cv_lib_iconv=no - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -#include -#include - -int -main () -{ -iconv_t cd = iconv_open("",""); - iconv(cd,NULL,NULL,NULL,NULL); - iconv_close(cd); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - am_cv_func_iconv=yes -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - if test "$am_cv_func_iconv" != yes; then - am_save_LIBS="$LIBS" - LIBS="$LIBS $LIBICONV" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -#include -#include - -int -main () -{ -iconv_t cd = iconv_open("",""); - iconv(cd,NULL,NULL,NULL,NULL); - iconv_close(cd); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - am_cv_lib_iconv=yes - am_cv_func_iconv=yes -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$am_save_LIBS" - fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 -$as_echo "$am_cv_func_iconv" >&6; } - if test "$am_cv_func_iconv" = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working iconv" >&5 -$as_echo_n "checking for working iconv... " >&6; } -if ${am_cv_func_iconv_works+:} false; then : - $as_echo_n "(cached) " >&6 -else - - am_save_LIBS="$LIBS" - if test $am_cv_lib_iconv = yes; then - LIBS="$LIBS $LIBICONV" - fi - am_cv_func_iconv_works=no - for ac_iconv_const in '' 'const'; do - if test "$cross_compiling" = yes; then : - case "$host_os" in - aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; - *) am_cv_func_iconv_works="guessing yes" ;; - esac -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -#include -#include - -#ifndef ICONV_CONST -# define ICONV_CONST $ac_iconv_const -#endif - -int -main () -{ -int result = 0; - /* Test against AIX 5.1 bug: Failures are not distinguishable from successful - returns. */ - { - iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); - if (cd_utf8_to_88591 != (iconv_t)(-1)) - { - static ICONV_CONST char input[] = "\342\202\254"; /* EURO SIGN */ - char buf[10]; - ICONV_CONST char *inptr = input; - size_t inbytesleft = strlen (input); - char *outptr = buf; - size_t outbytesleft = sizeof (buf); - size_t res = iconv (cd_utf8_to_88591, - &inptr, &inbytesleft, - &outptr, &outbytesleft); - if (res == 0) - result |= 1; - iconv_close (cd_utf8_to_88591); - } - } - /* Test against Solaris 10 bug: Failures are not distinguishable from - successful returns. */ - { - iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); - if (cd_ascii_to_88591 != (iconv_t)(-1)) - { - static ICONV_CONST char input[] = "\263"; - char buf[10]; - ICONV_CONST char *inptr = input; - size_t inbytesleft = strlen (input); - char *outptr = buf; - size_t outbytesleft = sizeof (buf); - size_t res = iconv (cd_ascii_to_88591, - &inptr, &inbytesleft, - &outptr, &outbytesleft); - if (res == 0) - result |= 2; - iconv_close (cd_ascii_to_88591); - } - } - /* Test against AIX 6.1..7.1 bug: Buffer overrun. */ - { - iconv_t cd_88591_to_utf8 = iconv_open ("UTF-8", "ISO-8859-1"); - if (cd_88591_to_utf8 != (iconv_t)(-1)) - { - static ICONV_CONST char input[] = "\304"; - static char buf[2] = { (char)0xDE, (char)0xAD }; - ICONV_CONST char *inptr = input; - size_t inbytesleft = 1; - char *outptr = buf; - size_t outbytesleft = 1; - size_t res = iconv (cd_88591_to_utf8, - &inptr, &inbytesleft, - &outptr, &outbytesleft); - if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD) - result |= 4; - iconv_close (cd_88591_to_utf8); - } - } -#if 0 /* This bug could be worked around by the caller. */ - /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ - { - iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); - if (cd_88591_to_utf8 != (iconv_t)(-1)) - { - static ICONV_CONST char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; - char buf[50]; - ICONV_CONST char *inptr = input; - size_t inbytesleft = strlen (input); - char *outptr = buf; - size_t outbytesleft = sizeof (buf); - size_t res = iconv (cd_88591_to_utf8, - &inptr, &inbytesleft, - &outptr, &outbytesleft); - if ((int)res > 0) - result |= 8; - iconv_close (cd_88591_to_utf8); - } - } -#endif - /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is - provided. */ - { - /* Try standardized names. */ - iconv_t cd1 = iconv_open ("UTF-8", "EUC-JP"); - /* Try IRIX, OSF/1 names. */ - iconv_t cd2 = iconv_open ("UTF-8", "eucJP"); - /* Try AIX names. */ - iconv_t cd3 = iconv_open ("UTF-8", "IBM-eucJP"); - /* Try HP-UX names. */ - iconv_t cd4 = iconv_open ("utf8", "eucJP"); - if (cd1 == (iconv_t)(-1) && cd2 == (iconv_t)(-1) - && cd3 == (iconv_t)(-1) && cd4 == (iconv_t)(-1)) - result |= 16; - if (cd1 != (iconv_t)(-1)) - iconv_close (cd1); - if (cd2 != (iconv_t)(-1)) - iconv_close (cd2); - if (cd3 != (iconv_t)(-1)) - iconv_close (cd3); - if (cd4 != (iconv_t)(-1)) - iconv_close (cd4); - } - return result; - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - am_cv_func_iconv_works=yes -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - - test "$am_cv_func_iconv_works" = no || break - done - LIBS="$am_save_LIBS" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv_works" >&5 -$as_echo "$am_cv_func_iconv_works" >&6; } - case "$am_cv_func_iconv_works" in - *no) am_func_iconv=no am_cv_lib_iconv=no ;; - *) am_func_iconv=yes ;; - esac - else - am_func_iconv=no am_cv_lib_iconv=no - fi - if test "$am_func_iconv" = yes; then - -$as_echo "#define HAVE_ICONV 1" >>confdefs.h - - fi - if test "$am_cv_lib_iconv" = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 -$as_echo_n "checking how to link with libiconv... " >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 -$as_echo "$LIBICONV" >&6; } - else - CPPFLAGS="$am_save_CPPFLAGS" - LIBICONV= - LTLIBICONV= - fi - - - - - - - - - - - use_additional=yes - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - eval additional_libdir2=\"$exec_prefix/$acl_libdirstem2\" - eval additional_libdir3=\"$exec_prefix/$acl_libdirstem3\" - - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - -# Check whether --with-libintl-prefix was given. -if test "${with_libintl_prefix+set}" = set; then : - withval=$with_libintl_prefix; - if test "X$withval" = "Xno"; then - use_additional=no - else - if test "X$withval" = "X"; then - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - eval additional_libdir2=\"$exec_prefix/$acl_libdirstem2\" - eval additional_libdir3=\"$exec_prefix/$acl_libdirstem3\" - - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - else - additional_includedir="$withval/include" - additional_libdir="$withval/$acl_libdirstem" - additional_libdir2="$withval/$acl_libdirstem2" - additional_libdir3="$withval/$acl_libdirstem3" - fi - fi - -fi - - if test "X$additional_libdir2" = "X$additional_libdir"; then - additional_libdir2= - fi - if test "X$additional_libdir3" = "X$additional_libdir"; then - additional_libdir3= - fi - LIBINTL= - LTLIBINTL= - INCINTL= - LIBINTL_PREFIX= - HAVE_LIBINTL= - rpathdirs= - ltrpathdirs= - names_already_handled= - names_next_round='intl ' - while test -n "$names_next_round"; do - names_this_round="$names_next_round" - names_next_round= - for name in $names_this_round; do - already_handled= - for n in $names_already_handled; do - if test "$n" = "$name"; then - already_handled=yes - break - fi - done - if test -z "$already_handled"; then - names_already_handled="$names_already_handled $name" - uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` - eval value=\"\$HAVE_LIB$uppername\" - if test -n "$value"; then - if test "$value" = yes; then - eval value=\"\$LIB$uppername\" - test -z "$value" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value" - eval value=\"\$LTLIB$uppername\" - test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value" - else - : - fi - else - found_dir= - found_la= - found_so= - found_a= - eval libname=\"$acl_libname_spec\" # typically: libname=lib$name - if test -n "$acl_shlibext"; then - shrext=".$acl_shlibext" # typically: shrext=.so - else - shrext= - fi - if test $use_additional = yes; then - for additional_libdir_variable in additional_libdir additional_libdir2 additional_libdir3; do - if test "X$found_dir" = "X"; then - eval dir=\$$additional_libdir_variable - if test -n "$dir"; then - if test -n "$acl_shlibext"; then - if test -f "$dir/$libname$shrext" && acl_is_expected_elfclass < "$dir/$libname$shrext"; then - found_dir="$dir" - found_so="$dir/$libname$shrext" - else - if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then - ver=`(cd "$dir" && \ - for f in "$libname$shrext".*; do echo "$f"; done \ - | sed -e "s,^$libname$shrext\\\\.,," \ - | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ - | sed 1q ) 2>/dev/null` - if test -n "$ver" && test -f "$dir/$libname$shrext.$ver" && acl_is_expected_elfclass < "$dir/$libname$shrext.$ver"; then - found_dir="$dir" - found_so="$dir/$libname$shrext.$ver" - fi - else - eval library_names=\"$acl_library_names_spec\" - for f in $library_names; do - if test -f "$dir/$f" && acl_is_expected_elfclass < "$dir/$f"; then - found_dir="$dir" - found_so="$dir/$f" - break - fi - done - fi - fi - fi - if test "X$found_dir" = "X"; then - if test -f "$dir/$libname.$acl_libext" && ${AR-ar} -p "$dir/$libname.$acl_libext" | acl_is_expected_elfclass; then - found_dir="$dir" - found_a="$dir/$libname.$acl_libext" - fi - fi - if test "X$found_dir" != "X"; then - if test -f "$dir/$libname.la"; then - found_la="$dir/$libname.la" - fi - fi - fi - fi - done - fi - if test "X$found_dir" = "X"; then - for x in $LDFLAGS $LTLIBINTL; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - case "$x" in - -L*) - dir=`echo "X$x" | sed -e 's/^X-L//'` - if test -n "$acl_shlibext"; then - if test -f "$dir/$libname$shrext" && acl_is_expected_elfclass < "$dir/$libname$shrext"; then - found_dir="$dir" - found_so="$dir/$libname$shrext" - else - if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then - ver=`(cd "$dir" && \ - for f in "$libname$shrext".*; do echo "$f"; done \ - | sed -e "s,^$libname$shrext\\\\.,," \ - | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ - | sed 1q ) 2>/dev/null` - if test -n "$ver" && test -f "$dir/$libname$shrext.$ver" && acl_is_expected_elfclass < "$dir/$libname$shrext.$ver"; then - found_dir="$dir" - found_so="$dir/$libname$shrext.$ver" - fi - else - eval library_names=\"$acl_library_names_spec\" - for f in $library_names; do - if test -f "$dir/$f" && acl_is_expected_elfclass < "$dir/$f"; then - found_dir="$dir" - found_so="$dir/$f" - break - fi - done - fi - fi - fi - if test "X$found_dir" = "X"; then - if test -f "$dir/$libname.$acl_libext" && ${AR-ar} -p "$dir/$libname.$acl_libext" | acl_is_expected_elfclass; then - found_dir="$dir" - found_a="$dir/$libname.$acl_libext" - fi - fi - if test "X$found_dir" != "X"; then - if test -f "$dir/$libname.la"; then - found_la="$dir/$libname.la" - fi - fi - ;; - esac - if test "X$found_dir" != "X"; then - break - fi - done - fi - if test "X$found_dir" != "X"; then - LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name" - if test "X$found_so" != "X"; then - if test "$enable_rpath" = no \ - || test "X$found_dir" = "X/usr/$acl_libdirstem" \ - || test "X$found_dir" = "X/usr/$acl_libdirstem2" \ - || test "X$found_dir" = "X/usr/$acl_libdirstem3"; then - LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" - else - haveit= - for x in $ltrpathdirs; do - if test "X$x" = "X$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - ltrpathdirs="$ltrpathdirs $found_dir" - fi - if test "$acl_hardcode_direct" = yes; then - LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" - else - if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then - LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" - haveit= - for x in $rpathdirs; do - if test "X$x" = "X$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - rpathdirs="$rpathdirs $found_dir" - fi - else - haveit= - for x in $LDFLAGS $LIBINTL; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X-L$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir" - fi - if test "$acl_hardcode_minus_L" != no; then - LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" - else - LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" - fi - fi - fi - fi - else - if test "X$found_a" != "X"; then - LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a" - else - LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name" - fi - fi - additional_includedir= - case "$found_dir" in - */$acl_libdirstem | */$acl_libdirstem/) - basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` - if test "$name" = 'intl'; then - LIBINTL_PREFIX="$basedir" - fi - additional_includedir="$basedir/include" - ;; - */$acl_libdirstem2 | */$acl_libdirstem2/) - basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` - if test "$name" = 'intl'; then - LIBINTL_PREFIX="$basedir" - fi - additional_includedir="$basedir/include" - ;; - */$acl_libdirstem3 | */$acl_libdirstem3/) - basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem3/"'*$,,'` - if test "$name" = 'intl'; then - LIBINTL_PREFIX="$basedir" - fi - additional_includedir="$basedir/include" - ;; - esac - if test "X$additional_includedir" != "X"; then - if test "X$additional_includedir" != "X/usr/include"; then - haveit= - if test "X$additional_includedir" = "X/usr/local/include"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - for x in $CPPFLAGS $INCINTL; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X-I$additional_includedir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$additional_includedir"; then - INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir" - fi - fi - fi - fi - fi - if test -n "$found_la"; then - save_libdir="$libdir" - case "$found_la" in - */* | *\\*) . "$found_la" ;; - *) . "./$found_la" ;; - esac - libdir="$save_libdir" - for dep in $dependency_libs; do - case "$dep" in - -L*) - dependency_libdir=`echo "X$dep" | sed -e 's/^X-L//'` - if test "X$dependency_libdir" != "X/usr/$acl_libdirstem" \ - && test "X$dependency_libdir" != "X/usr/$acl_libdirstem2" \ - && test "X$dependency_libdir" != "X/usr/$acl_libdirstem3"; then - haveit= - if test "X$dependency_libdir" = "X/usr/local/$acl_libdirstem" \ - || test "X$dependency_libdir" = "X/usr/local/$acl_libdirstem2" \ - || test "X$dependency_libdir" = "X/usr/local/$acl_libdirstem3"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - haveit= - for x in $LDFLAGS $LIBINTL; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X-L$dependency_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$dependency_libdir"; then - LIBINTL="${LIBINTL}${LIBINTL:+ }-L$dependency_libdir" - fi - fi - haveit= - for x in $LDFLAGS $LTLIBINTL; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X-L$dependency_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$dependency_libdir"; then - LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$dependency_libdir" - fi - fi - fi - fi - ;; - -R*) - dir=`echo "X$dep" | sed -e 's/^X-R//'` - if test "$enable_rpath" != no; then - haveit= - for x in $rpathdirs; do - if test "X$x" = "X$dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - rpathdirs="$rpathdirs $dir" - fi - haveit= - for x in $ltrpathdirs; do - if test "X$x" = "X$dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - ltrpathdirs="$ltrpathdirs $dir" - fi - fi - ;; - -l*) - names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` - ;; - *.la) - names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` - ;; - *) - LIBINTL="${LIBINTL}${LIBINTL:+ }$dep" - LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep" - ;; - esac - done - fi - else - LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" - LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name" - fi - fi - fi - done - done - if test "X$rpathdirs" != "X"; then - if test -n "$acl_hardcode_libdir_separator"; then - alldirs= - for found_dir in $rpathdirs; do - alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" - done - acl_save_libdir="$libdir" - libdir="$alldirs" - eval flag=\"$acl_hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" - else - for found_dir in $rpathdirs; do - acl_save_libdir="$libdir" - libdir="$found_dir" - eval flag=\"$acl_hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" - done - fi - fi - if test "X$ltrpathdirs" != "X"; then - for found_dir in $ltrpathdirs; do - LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir" - done - fi - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5 -$as_echo_n "checking for GNU gettext in libintl... " >&6; } -if eval \${$gt_func_gnugettext_libintl+:} false; then : - $as_echo_n "(cached) " >&6 -else - gt_save_CPPFLAGS="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $INCINTL" - gt_save_LIBS="$LIBS" - LIBS="$LIBS $LIBINTL" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -#include -#ifndef __GNU_GETTEXT_SUPPORTED_REVISION -extern int _nl_msg_cat_cntr; -extern -#ifdef __cplusplus -"C" -#endif -const char *_nl_expand_alias (const char *); -#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_expand_alias ("")) -#else -#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0 -#endif -$gt_revision_test_code - -int -main () -{ - -bindtextdomain ("", ""); -return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - eval "$gt_func_gnugettext_libintl=yes" -else - eval "$gt_func_gnugettext_libintl=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then - LIBS="$LIBS $LIBICONV" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -#include -#ifndef __GNU_GETTEXT_SUPPORTED_REVISION -extern int _nl_msg_cat_cntr; -extern -#ifdef __cplusplus -"C" -#endif -const char *_nl_expand_alias (const char *); -#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_expand_alias ("")) -#else -#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0 -#endif -$gt_revision_test_code - -int -main () -{ - -bindtextdomain ("", ""); -return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - LIBINTL="$LIBINTL $LIBICONV" - LTLIBINTL="$LTLIBINTL $LTLIBICONV" - eval "$gt_func_gnugettext_libintl=yes" - -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - fi - CPPFLAGS="$gt_save_CPPFLAGS" - LIBS="$gt_save_LIBS" -fi -eval ac_res=\$$gt_func_gnugettext_libintl - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - fi - - if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ - || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ - && test "$PACKAGE" != gettext-runtime \ - && test "$PACKAGE" != gettext-tools; }; then - gt_use_preinstalled_gnugettext=yes - else - LIBINTL= - LTLIBINTL= - INCINTL= - fi - - - - if test -n "$INTL_MACOSX_LIBS"; then - if test "$gt_use_preinstalled_gnugettext" = "yes" \ - || test "$nls_cv_use_gnu_gettext" = "yes"; then - LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" - LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" - fi - fi - - if test "$gt_use_preinstalled_gnugettext" = "yes" \ - || test "$nls_cv_use_gnu_gettext" = "yes"; then - -$as_echo "#define ENABLE_NLS 1" >>confdefs.h - - else - USE_NLS=no - fi - fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use NLS" >&5 -$as_echo_n "checking whether to use NLS... " >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 -$as_echo "$USE_NLS" >&6; } - if test "$USE_NLS" = "yes"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking where the gettext function comes from" >&5 -$as_echo_n "checking where the gettext function comes from... " >&6; } - if test "$gt_use_preinstalled_gnugettext" = "yes"; then - if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then - gt_source="external libintl" - else - gt_source="libc" - fi - else - gt_source="included intl directory" - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_source" >&5 -$as_echo "$gt_source" >&6; } - fi - - if test "$USE_NLS" = "yes"; then - - if test "$gt_use_preinstalled_gnugettext" = "yes"; then - if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libintl" >&5 -$as_echo_n "checking how to link with libintl... " >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBINTL" >&5 -$as_echo "$LIBINTL" >&6; } - - for element in $INCINTL; do - haveit= - for x in $CPPFLAGS; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X$element"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" - fi - done - - fi - - -$as_echo "#define HAVE_GETTEXT 1" >>confdefs.h - - -$as_echo "#define HAVE_DCGETTEXT 1" >>confdefs.h - - fi - - POSUB=po - fi - - - - INTLLIBS="$LIBINTL" - - - - - - - - - if test "x${USE_NLS}" = "xyes"; then - USE_NLS_TRUE= - USE_NLS_FALSE='#' -else - USE_NLS_TRUE='#' - USE_NLS_FALSE= -fi - - -GETTEXT_PACKAGE=mate-utils - -cat >>confdefs.h <<_ACEOF -#define GETTEXT_PACKAGE "$GETTEXT_PACKAGE" -_ACEOF - - - - - - - - # Check whether --enable-schemas-compile was given. -if test "${enable_schemas_compile+set}" = set; then : - enableval=$enable_schemas_compile; case ${enableval} in - yes) GSETTINGS_DISABLE_SCHEMAS_COMPILE="" ;; - no) GSETTINGS_DISABLE_SCHEMAS_COMPILE="1" ;; - *) as_fn_error $? "bad value ${enableval} for --enable-schemas-compile" "$LINENO" 5 ;; - esac -fi - - - - - - - - - -if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. -set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PKG_CONFIG+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG -if test -n "$PKG_CONFIG"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 -$as_echo "$PKG_CONFIG" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_PKG_CONFIG"; then - ac_pt_PKG_CONFIG=$PKG_CONFIG - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG -if test -n "$ac_pt_PKG_CONFIG"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 -$as_echo "$ac_pt_PKG_CONFIG" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_PKG_CONFIG" = x; then - PKG_CONFIG="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - PKG_CONFIG=$ac_pt_PKG_CONFIG - fi -else - PKG_CONFIG="$ac_cv_path_PKG_CONFIG" -fi - -fi -if test -n "$PKG_CONFIG"; then - _pkg_min_version=0.16 - { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 -$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - PKG_CONFIG="" - fi -fi - gsettingsschemadir=${datadir}/glib-2.0/schemas - - if test x$cross_compiling != xyes; then : - -if test -n "$GLIB_COMPILE_SCHEMAS"; then - pkg_cv_GLIB_COMPILE_SCHEMAS="$GLIB_COMPILE_SCHEMAS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gio-2.0\""; } >&5 - ($PKG_CONFIG --exists --print-errors "gio-2.0") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_GLIB_COMPILE_SCHEMAS=`$PKG_CONFIG --variable="glib_compile_schemas" "gio-2.0" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -GLIB_COMPILE_SCHEMAS=$pkg_cv_GLIB_COMPILE_SCHEMAS - -if test "x$GLIB_COMPILE_SCHEMAS" = x""; then : - -fi -else - # Extract the first word of "glib-compile-schemas", so it can be a program name with args. -set dummy glib-compile-schemas; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GLIB_COMPILE_SCHEMAS+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GLIB_COMPILE_SCHEMAS in - [\\/]* | ?:[\\/]*) - ac_cv_path_GLIB_COMPILE_SCHEMAS="$GLIB_COMPILE_SCHEMAS" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GLIB_COMPILE_SCHEMAS="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -GLIB_COMPILE_SCHEMAS=$ac_cv_path_GLIB_COMPILE_SCHEMAS -if test -n "$GLIB_COMPILE_SCHEMAS"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GLIB_COMPILE_SCHEMAS" >&5 -$as_echo "$GLIB_COMPILE_SCHEMAS" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi - - if test "x$GLIB_COMPILE_SCHEMAS" = "x"; then - as_fn_error $? "glib-compile-schemas not found." "$LINENO" 5 - else - : - 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 '\'''\'' --fhead "" --vhead " <@type@ id='\''$(gsettings_ENUM_NAMESPACE).@EnumName@'\''>" --vprod " " --vtail " " --ftail "" $^ > $@.tmp && mv $@.tmp $@ -endif -' - - - - - - - - - - - gtk_doc_requires="gtk-doc >= 1.10" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gtk-doc" >&5 -$as_echo_n "checking for gtk-doc... " >&6; } - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$gtk_doc_requires\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$gtk_doc_requires") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - have_gtk_doc=yes -else - have_gtk_doc=no -fi - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_gtk_doc" >&5 -$as_echo "$have_gtk_doc" >&6; } - - if test "$have_gtk_doc" = "no"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: - You will not be able to create source packages with 'make dist' - because $gtk_doc_requires is not found." >&5 -$as_echo "$as_me: WARNING: - You will not be able to create source packages with 'make dist' - because $gtk_doc_requires is not found." >&2;} - fi - - # Extract the first word of "gtkdoc-check", so it can be a program name with args. -set dummy gtkdoc-check; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_GTKDOC_CHECK+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$GTKDOC_CHECK"; then - ac_cv_prog_GTKDOC_CHECK="$GTKDOC_CHECK" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_GTKDOC_CHECK="gtkdoc-check.test" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -GTKDOC_CHECK=$ac_cv_prog_GTKDOC_CHECK -if test -n "$GTKDOC_CHECK"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_CHECK" >&5 -$as_echo "$GTKDOC_CHECK" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - # Extract the first word of "gtkdoc-check", so it can be a program name with args. -set dummy gtkdoc-check; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GTKDOC_CHECK_PATH+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GTKDOC_CHECK_PATH in - [\\/]* | ?:[\\/]*) - ac_cv_path_GTKDOC_CHECK_PATH="$GTKDOC_CHECK_PATH" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GTKDOC_CHECK_PATH="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -GTKDOC_CHECK_PATH=$ac_cv_path_GTKDOC_CHECK_PATH -if test -n "$GTKDOC_CHECK_PATH"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_CHECK_PATH" >&5 -$as_echo "$GTKDOC_CHECK_PATH" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - for ac_prog in gtkdoc-rebase -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GTKDOC_REBASE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GTKDOC_REBASE in - [\\/]* | ?:[\\/]*) - ac_cv_path_GTKDOC_REBASE="$GTKDOC_REBASE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GTKDOC_REBASE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -GTKDOC_REBASE=$ac_cv_path_GTKDOC_REBASE -if test -n "$GTKDOC_REBASE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_REBASE" >&5 -$as_echo "$GTKDOC_REBASE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$GTKDOC_REBASE" && break -done -test -n "$GTKDOC_REBASE" || GTKDOC_REBASE="true" - - # Extract the first word of "gtkdoc-mkpdf", so it can be a program name with args. -set dummy gtkdoc-mkpdf; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GTKDOC_MKPDF+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GTKDOC_MKPDF in - [\\/]* | ?:[\\/]*) - ac_cv_path_GTKDOC_MKPDF="$GTKDOC_MKPDF" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GTKDOC_MKPDF="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -GTKDOC_MKPDF=$ac_cv_path_GTKDOC_MKPDF -if test -n "$GTKDOC_MKPDF"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_MKPDF" >&5 -$as_echo "$GTKDOC_MKPDF" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - - -# Check whether --with-html-dir was given. -if test "${with_html_dir+set}" = set; then : - withval=$with_html_dir; -else - with_html_dir='${datadir}/gtk-doc/html' -fi - - HTML_DIR="$with_html_dir" - - - # Check whether --enable-gtk-doc was given. -if test "${enable_gtk_doc+set}" = set; then : - enableval=$enable_gtk_doc; -else - enable_gtk_doc=no -fi - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build gtk-doc documentation" >&5 -$as_echo_n "checking whether to build gtk-doc documentation... " >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_gtk_doc" >&5 -$as_echo "$enable_gtk_doc" >&6; } - - if test "x$enable_gtk_doc" = "xyes" && test "$have_gtk_doc" = "no"; then - as_fn_error $? " - You must have $gtk_doc_requires installed to build documentation for - $PACKAGE_NAME. Please install gtk-doc or disable building the - documentation by adding '--disable-gtk-doc' to '$0'." "$LINENO" 5 - fi - - if test "x$PACKAGE_NAME" != "xglib"; then - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTKDOC_DEPS" >&5 -$as_echo_n "checking for GTKDOC_DEPS... " >&6; } - -if test -n "$GTKDOC_DEPS_CFLAGS"; then - pkg_cv_GTKDOC_DEPS_CFLAGS="$GTKDOC_DEPS_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0\""; } >&5 - ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_GTKDOC_DEPS_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$GTKDOC_DEPS_LIBS"; then - pkg_cv_GTKDOC_DEPS_LIBS="$GTKDOC_DEPS_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0\""; } >&5 - ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_GTKDOC_DEPS_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - GTKDOC_DEPS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0" 2>&1` - else - GTKDOC_DEPS_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$GTKDOC_DEPS_PKG_ERRORS" >&5 - - : -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - : -else - GTKDOC_DEPS_CFLAGS=$pkg_cv_GTKDOC_DEPS_CFLAGS - GTKDOC_DEPS_LIBS=$pkg_cv_GTKDOC_DEPS_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -fi - fi - - # Check whether --enable-gtk-doc-html was given. -if test "${enable_gtk_doc_html+set}" = set; then : - enableval=$enable_gtk_doc_html; -else - enable_gtk_doc_html=yes -fi - - # Check whether --enable-gtk-doc-pdf was given. -if test "${enable_gtk_doc_pdf+set}" = set; then : - enableval=$enable_gtk_doc_pdf; -else - enable_gtk_doc_pdf=no -fi - - - if test -z "$GTKDOC_MKPDF"; then - enable_gtk_doc_pdf=no - fi - - if test -z "$AM_DEFAULT_VERBOSITY"; then - AM_DEFAULT_VERBOSITY=1 - fi - - - if test x$have_gtk_doc = xyes; then - HAVE_GTK_DOC_TRUE= - HAVE_GTK_DOC_FALSE='#' -else - HAVE_GTK_DOC_TRUE='#' - HAVE_GTK_DOC_FALSE= -fi - - if test x$enable_gtk_doc = xyes; then - ENABLE_GTK_DOC_TRUE= - ENABLE_GTK_DOC_FALSE='#' -else - ENABLE_GTK_DOC_TRUE='#' - ENABLE_GTK_DOC_FALSE= -fi - - if test x$enable_gtk_doc_html = xyes; then - GTK_DOC_BUILD_HTML_TRUE= - GTK_DOC_BUILD_HTML_FALSE='#' -else - GTK_DOC_BUILD_HTML_TRUE='#' - GTK_DOC_BUILD_HTML_FALSE= -fi - - if test x$enable_gtk_doc_pdf = xyes; then - GTK_DOC_BUILD_PDF_TRUE= - GTK_DOC_BUILD_PDF_FALSE='#' -else - GTK_DOC_BUILD_PDF_TRUE='#' - GTK_DOC_BUILD_PDF_FALSE= -fi - - if test -n "$LIBTOOL"; then - GTK_DOC_USE_LIBTOOL_TRUE= - GTK_DOC_USE_LIBTOOL_FALSE='#' -else - GTK_DOC_USE_LIBTOOL_TRUE='#' - GTK_DOC_USE_LIBTOOL_FALSE= -fi - - if test -n "$GTKDOC_REBASE"; then - GTK_DOC_USE_REBASE_TRUE= - GTK_DOC_USE_REBASE_FALSE='#' -else - GTK_DOC_USE_REBASE_TRUE='#' - GTK_DOC_USE_REBASE_FALSE= -fi - - - - - - - - - -YELP_LC_MEDIA_LINKS=true -YELP_LC_DIST=true - -for yelpopt in ; 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= ;; - *) as_fn_error $? "Unrecognized YELP_HELP_INIT option $yelpopt\"" "$LINENO" 5 ;; - esac -done; - - - - -# Check whether --with-help-dir was given. -if test "${with_help_dir+set}" = set; then : - withval=$with_help_dir; -else - with_help_dir='${datadir}/help' -fi - -HELP_DIR="$with_help_dir" - - - -# Extract the first word of "itstool", so it can be a program name with args. -set dummy itstool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ITSTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ITSTOOL"; then - ac_cv_prog_ITSTOOL="$ITSTOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ITSTOOL="itstool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ITSTOOL=$ac_cv_prog_ITSTOOL -if test -n "$ITSTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ITSTOOL" >&5 -$as_echo "$ITSTOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -if test x"$ITSTOOL" = x; then - as_fn_error $? "itstool not found" "$LINENO" 5 -fi - - -# Extract the first word of "xmllint", so it can be a program name with args. -set dummy xmllint; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_XMLLINT+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$XMLLINT"; then - ac_cv_prog_XMLLINT="$XMLLINT" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_XMLLINT="xmllint" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -XMLLINT=$ac_cv_prog_XMLLINT -if test -n "$XMLLINT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XMLLINT" >&5 -$as_echo "$XMLLINT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -if test x"$XMLLINT" = x; then - as_fn_error $? "xmllint not found" "$LINENO" 5 -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_config_files="$ac_config_files Makefile po/Makefile.in baobab/Makefile baobab/data/Makefile baobab/data/org.mate.disk-usage-analyzer.gschema.xml baobab/pixmaps/Makefile baobab/src/Makefile baobab/help/Makefile logview/Makefile logview/data/Makefile logview/data/org.mate.system-log.gschema.xml logview/data/icons/Makefile logview/help/Makefile logview/src/Makefile logview/src/tests/Makefile gsearchtool/Makefile gsearchtool/data/Makefile gsearchtool/data/org.mate.search-tool.gschema.xml gsearchtool/help/Makefile gsearchtool/mate-submodules/Makefile gsearchtool/mate-submodules/libegg/Makefile gsearchtool/libmateui-deprecated/Makefile gsearchtool/src/Makefile mate-dictionary/Makefile mate-dictionary/libgdict/Makefile mate-dictionary/libgdict/gdict-version.h mate-dictionary/libgdict/mate-dict.pc mate-dictionary/data/Makefile mate-dictionary/data/org.mate.dictionary.gschema.xml mate-dictionary/docs/Makefile mate-dictionary/docs/reference/Makefile mate-dictionary/docs/reference/gdict/Makefile mate-dictionary/docs/reference/gdict/version.xml mate-dictionary/help/Makefile mate-dictionary/src/Makefile mate-screenshot/Makefile mate-screenshot/data/Makefile mate-screenshot/data/org.mate.screenshot.gschema.xml mate-screenshot/src/Makefile" - - -if test -z "$BUILD_DISK_IMAGE_MOUNTER_TRUE"; then : - ac_config_files="$ac_config_files mate-disk-image-mounter/Makefile mate-disk-image-mounter/data/Makefile mate-disk-image-mounter/src/Makefile" - - - -fi - -cat >confcache <<\_ACEOF -# This file is a shell script that caches the results of configure -# tests run on this system so they can be shared between configure -# scripts and configure runs, see configure's option --config-cache. -# It is not useful on other systems. If it contains results you don't -# want to keep, you may remove or edit it. -# -# config.status only pays attention to the cache file if you give it -# the --recheck option to rerun configure. -# -# `ac_cv_env_foo' variables (set or unset) will be overridden when -# loading this file, other *unset* `ac_cv_foo' will be assigned the -# following values. - -_ACEOF - -# The following way of writing the cache mishandles newlines in values, -# but we know of no workaround that is simple, portable, and efficient. -# So, we kill variables containing newlines. -# Ultrix sh set writes to stderr and can't be redirected directly, -# and sets the high bit in the cache file unless we assign to the vars. -( - for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) { eval $ac_var=; unset $ac_var;} ;; - esac ;; - esac - done - - (set) 2>&1 | - case $as_nl`(ac_space=' '; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - # `set' does not quote correctly, so add quotes: double-quote - # substitution turns \\\\ into \\, and sed turns \\ into \. - sed -n \ - "s/'/'\\\\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" - ;; #( - *) - # `set' quotes correctly as required by POSIX, so do not add quotes. - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) | - sed ' - /^ac_cv_env_/b end - t clear - :clear - s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ - t end - s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ - :end' >>confcache -if diff "$cache_file" confcache >/dev/null 2>&1; then :; else - if test -w "$cache_file"; then - if test "x$cache_file" != "x/dev/null"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 -$as_echo "$as_me: updating cache $cache_file" >&6;} - if test ! -f "$cache_file" || test -h "$cache_file"; then - cat confcache >"$cache_file" - else - case $cache_file in #( - */* | ?:*) - mv -f confcache "$cache_file"$$ && - mv -f "$cache_file"$$ "$cache_file" ;; #( - *) - mv -f confcache "$cache_file" ;; - esac - fi - fi - else - { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 -$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} - fi -fi -rm -f confcache - -test "x$prefix" = xNONE && prefix=$ac_default_prefix -# Let make expand exec_prefix. -test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - -DEFS=-DHAVE_CONFIG_H - -ac_libobjs= -ac_ltlibobjs= -U= -for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue - # 1. Remove the extension, and $U if already installed. - ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' - ac_i=`$as_echo "$ac_i" | sed "$ac_script"` - # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR - # will be set to the directory where LIBOBJS objects are built. - as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" - as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' -done -LIBOBJS=$ac_libobjs - -LTLIBOBJS=$ac_ltlibobjs - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 -$as_echo_n "checking that generated files are newer than configure... " >&6; } - if test -n "$am_sleep_pid"; then - # Hide warnings about reused PIDs. - wait $am_sleep_pid 2>/dev/null - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 -$as_echo "done" >&6; } - if test -n "$EXEEXT"; then - am__EXEEXT_TRUE= - am__EXEEXT_FALSE='#' -else - am__EXEEXT_TRUE='#' - am__EXEEXT_FALSE= -fi - -if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then - as_fn_error $? "conditional \"AMDEP\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then - as_fn_error $? "conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then - as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then - as_fn_error $? "conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${HAVE_RSVG_CONVERT_TRUE}" && test -z "${HAVE_RSVG_CONVERT_FALSE}"; then - as_fn_error $? "conditional \"HAVE_RSVG_CONVERT\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${HAVE_INKSCAPE_TRUE}" && test -z "${HAVE_INKSCAPE_FALSE}"; then - as_fn_error $? "conditional \"HAVE_INKSCAPE\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${BUILD_DISK_IMAGE_MOUNTER_TRUE}" && test -z "${BUILD_DISK_IMAGE_MOUNTER_FALSE}"; then - as_fn_error $? "conditional \"BUILD_DISK_IMAGE_MOUNTER\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${BUILD_GDICT_APPLET_TRUE}" && test -z "${BUILD_GDICT_APPLET_FALSE}"; then - as_fn_error $? "conditional \"BUILD_GDICT_APPLET\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${USE_NLS_TRUE}" && test -z "${USE_NLS_FALSE}"; then - as_fn_error $? "conditional \"USE_NLS\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${HAVE_GTK_DOC_TRUE}" && test -z "${HAVE_GTK_DOC_FALSE}"; then - as_fn_error $? "conditional \"HAVE_GTK_DOC\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${ENABLE_GTK_DOC_TRUE}" && test -z "${ENABLE_GTK_DOC_FALSE}"; then - as_fn_error $? "conditional \"ENABLE_GTK_DOC\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${GTK_DOC_BUILD_HTML_TRUE}" && test -z "${GTK_DOC_BUILD_HTML_FALSE}"; then - as_fn_error $? "conditional \"GTK_DOC_BUILD_HTML\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${GTK_DOC_BUILD_PDF_TRUE}" && test -z "${GTK_DOC_BUILD_PDF_FALSE}"; then - as_fn_error $? "conditional \"GTK_DOC_BUILD_PDF\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${GTK_DOC_USE_LIBTOOL_TRUE}" && test -z "${GTK_DOC_USE_LIBTOOL_FALSE}"; then - as_fn_error $? "conditional \"GTK_DOC_USE_LIBTOOL\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${GTK_DOC_USE_REBASE_TRUE}" && test -z "${GTK_DOC_USE_REBASE_FALSE}"; then - as_fn_error $? "conditional \"GTK_DOC_USE_REBASE\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi - -: "${CONFIG_STATUS=./config.status}" -ac_write_fail=0 -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 -$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} -as_write_fail=0 -cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 -#! $SHELL -# Generated by $as_me. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false - -SHELL=\${CONFIG_SHELL-$SHELL} -export SHELL -_ASEOF -cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in #( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -as_myself= -case $0 in #(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - - -# as_fn_error STATUS ERROR [LINENO LOG_FD] -# ---------------------------------------- -# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are -# provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with STATUS, using 1 if that was 0. -as_fn_error () -{ - as_status=$1; test $as_status -eq 0 && as_status=1 - if test "$4"; then - as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 - fi - $as_echo "$as_me: error: $2" >&2 - as_fn_exit $as_status -} # as_fn_error - - -# as_fn_set_status STATUS -# ----------------------- -# Set $? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} # as_fn_set_status - -# as_fn_exit STATUS -# ----------------- -# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} # as_fn_exit - -# as_fn_unset VAR -# --------------- -# Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset -# as_fn_append VAR VALUE -# ---------------------- -# Append the text in VALUE to the end of the definition contained in VAR. Take -# advantage of any shell optimizations that allow amortized linear growth over -# repeated appends, instead of the typical quadratic growth present in naive -# implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -# as_fn_arith ARG... -# ------------------ -# Perform arithmetic evaluation on the ARGs, and store the result in the -# global $as_val. Take advantage of shells that can avoid forks. The arguments -# must be portable across $(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in #((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -pR'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -pR' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -pR' - fi -else - as_ln_s='cp -pR' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - - -# as_fn_mkdir_p -# ------------- -# Create "$as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" - - -} # as_fn_mkdir_p -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - - -# as_fn_executable_p FILE -# ----------------------- -# Test if FILE is an executable regular file. -as_fn_executable_p () -{ - test -f "$1" && test -x "$1" -} # as_fn_executable_p -as_test_x='test -x' -as_executable_p=as_fn_executable_p - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -exec 6>&1 -## ----------------------------------- ## -## Main body of $CONFIG_STATUS script. ## -## ----------------------------------- ## -_ASEOF -test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# Save the log message, to keep $0 and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. -ac_log=" -This file was extended by mate-utils $as_me 1.26.0, which was -generated by GNU Autoconf 2.69. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS - CONFIG_LINKS = $CONFIG_LINKS - CONFIG_COMMANDS = $CONFIG_COMMANDS - $ $0 $@ - -on `(hostname || uname -n) 2>/dev/null | sed 1q` -" - -_ACEOF - -case $ac_config_files in *" -"*) set x $ac_config_files; shift; ac_config_files=$*;; -esac - -case $ac_config_headers in *" -"*) set x $ac_config_headers; shift; ac_config_headers=$*;; -esac - - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -# Files that config.status was made for. -config_files="$ac_config_files" -config_headers="$ac_config_headers" -config_commands="$ac_config_commands" - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -ac_cs_usage="\ -\`$as_me' instantiates files and other configuration actions -from templates according to the current configuration. Unless the files -and actions are specified as TAGs, all are instantiated by default. - -Usage: $0 [OPTION]... [TAG]... - - -h, --help print this help, then exit - -V, --version print version number and configuration settings, then exit - --config print configuration, then exit - -q, --quiet, --silent - do not print progress messages - -d, --debug don't remove temporary files - --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE - -Configuration files: -$config_files - -Configuration headers: -$config_headers - -Configuration commands: -$config_commands - -Report bugs to ." - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" -ac_cs_version="\\ -mate-utils config.status 1.26.0 -configured by $0, generated by GNU Autoconf 2.69, - with options \\"\$ac_cs_config\\" - -Copyright (C) 2012 Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." - -ac_pwd='$ac_pwd' -srcdir='$srcdir' -INSTALL='$INSTALL' -MKDIR_P='$MKDIR_P' -AWK='$AWK' -test -n "\$AWK" || AWK=awk -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# The default lists apply if the user does not specify any file. -ac_need_defaults=: -while test $# != 0 -do - case $1 in - --*=?*) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` - ac_shift=: - ;; - --*=) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg= - ac_shift=: - ;; - *) - ac_option=$1 - ac_optarg=$2 - ac_shift=shift - ;; - esac - - case $ac_option in - # Handling of the options. - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - ac_cs_recheck=: ;; - --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) - $as_echo "$ac_cs_version"; exit ;; - --config | --confi | --conf | --con | --co | --c ) - $as_echo "$ac_cs_config"; exit ;; - --debug | --debu | --deb | --de | --d | -d ) - debug=: ;; - --file | --fil | --fi | --f ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - '') as_fn_error $? "missing file argument" ;; - esac - as_fn_append CONFIG_FILES " '$ac_optarg'" - ac_need_defaults=false;; - --header | --heade | --head | --hea ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - as_fn_append CONFIG_HEADERS " '$ac_optarg'" - ac_need_defaults=false;; - --he | --h) - # Conflict between --help and --header - as_fn_error $? "ambiguous option: \`$1' -Try \`$0 --help' for more information.";; - --help | --hel | -h ) - $as_echo "$ac_cs_usage"; exit ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil | --si | --s) - ac_cs_silent=: ;; - - # This is an error. - -*) as_fn_error $? "unrecognized option: \`$1' -Try \`$0 --help' for more information." ;; - - *) as_fn_append ac_config_targets " $1" - ac_need_defaults=false ;; - - esac - shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then - exec 6>/dev/null - ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -if \$ac_cs_recheck; then - set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion - shift - \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 - CONFIG_SHELL='$SHELL' - export CONFIG_SHELL - exec "\$@" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX - $as_echo "$ac_log" -} >&5 - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -# -# INIT-COMMANDS -# -AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}" - - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -sed_quote_subst='$sed_quote_subst' -double_quote_subst='$double_quote_subst' -delay_variable_subst='$delay_variable_subst' -macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' -macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' -enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' -enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' -pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' -enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' -shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $SED "$delay_single_quote_subst"`' -SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' -ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' -PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' -host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' -host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' -host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' -build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' -build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' -build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' -SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' -Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' -GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' -EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' -FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' -LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' -NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' -LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' -max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' -ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' -exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' -lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' -lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' -lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' -lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' -lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' -reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' -reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' -OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' -deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' -file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' -file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' -want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' -DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' -sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' -AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' -AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' -archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' -STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' -RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' -old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' -old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' -old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' -lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' -CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' -CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' -compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' -GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' -lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' -lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' -lt_cv_sys_global_symbol_to_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`' -lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' -lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $SED "$delay_single_quote_subst"`' -nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' -lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' -lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $SED "$delay_single_quote_subst"`' -objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' -MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' -lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' -lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' -lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' -lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' -lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' -need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' -MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' -DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' -NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' -LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' -OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' -OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' -libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' -shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' -extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' -archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' -enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' -export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' -whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' -compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' -old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' -old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' -archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' -archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' -module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' -module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' -with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' -allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' -no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' -hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' -hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' -hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' -hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' -hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' -hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' -hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' -inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' -link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' -always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' -export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' -exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' -include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' -prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' -postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' -file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' -variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' -need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' -need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' -version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' -runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' -shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' -shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' -libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' -library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' -soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' -install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' -postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' -postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' -finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' -finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' -hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' -sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' -configure_time_dlsearch_path='`$ECHO "$configure_time_dlsearch_path" | $SED "$delay_single_quote_subst"`' -configure_time_lt_sys_library_path='`$ECHO "$configure_time_lt_sys_library_path" | $SED "$delay_single_quote_subst"`' -hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' -enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' -enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' -enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' -old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' -striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' -compiler_lib_search_dirs='`$ECHO "$compiler_lib_search_dirs" | $SED "$delay_single_quote_subst"`' -predep_objects='`$ECHO "$predep_objects" | $SED "$delay_single_quote_subst"`' -postdep_objects='`$ECHO "$postdep_objects" | $SED "$delay_single_quote_subst"`' -predeps='`$ECHO "$predeps" | $SED "$delay_single_quote_subst"`' -postdeps='`$ECHO "$postdeps" | $SED "$delay_single_quote_subst"`' -compiler_lib_search_path='`$ECHO "$compiler_lib_search_path" | $SED "$delay_single_quote_subst"`' -LD_CXX='`$ECHO "$LD_CXX" | $SED "$delay_single_quote_subst"`' -reload_flag_CXX='`$ECHO "$reload_flag_CXX" | $SED "$delay_single_quote_subst"`' -reload_cmds_CXX='`$ECHO "$reload_cmds_CXX" | $SED "$delay_single_quote_subst"`' -old_archive_cmds_CXX='`$ECHO "$old_archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' -compiler_CXX='`$ECHO "$compiler_CXX" | $SED "$delay_single_quote_subst"`' -GCC_CXX='`$ECHO "$GCC_CXX" | $SED "$delay_single_quote_subst"`' -lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "$lt_prog_compiler_no_builtin_flag_CXX" | $SED "$delay_single_quote_subst"`' -lt_prog_compiler_pic_CXX='`$ECHO "$lt_prog_compiler_pic_CXX" | $SED "$delay_single_quote_subst"`' -lt_prog_compiler_wl_CXX='`$ECHO "$lt_prog_compiler_wl_CXX" | $SED "$delay_single_quote_subst"`' -lt_prog_compiler_static_CXX='`$ECHO "$lt_prog_compiler_static_CXX" | $SED "$delay_single_quote_subst"`' -lt_cv_prog_compiler_c_o_CXX='`$ECHO "$lt_cv_prog_compiler_c_o_CXX" | $SED "$delay_single_quote_subst"`' -archive_cmds_need_lc_CXX='`$ECHO "$archive_cmds_need_lc_CXX" | $SED "$delay_single_quote_subst"`' -enable_shared_with_static_runtimes_CXX='`$ECHO "$enable_shared_with_static_runtimes_CXX" | $SED "$delay_single_quote_subst"`' -export_dynamic_flag_spec_CXX='`$ECHO "$export_dynamic_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' -whole_archive_flag_spec_CXX='`$ECHO "$whole_archive_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' -compiler_needs_object_CXX='`$ECHO "$compiler_needs_object_CXX" | $SED "$delay_single_quote_subst"`' -old_archive_from_new_cmds_CXX='`$ECHO "$old_archive_from_new_cmds_CXX" | $SED "$delay_single_quote_subst"`' -old_archive_from_expsyms_cmds_CXX='`$ECHO "$old_archive_from_expsyms_cmds_CXX" | $SED "$delay_single_quote_subst"`' -archive_cmds_CXX='`$ECHO "$archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' -archive_expsym_cmds_CXX='`$ECHO "$archive_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' -module_cmds_CXX='`$ECHO "$module_cmds_CXX" | $SED "$delay_single_quote_subst"`' -module_expsym_cmds_CXX='`$ECHO "$module_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' -with_gnu_ld_CXX='`$ECHO "$with_gnu_ld_CXX" | $SED "$delay_single_quote_subst"`' -allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' -no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' -hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' -hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`' -hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`' -hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`' -hardcode_minus_L_CXX='`$ECHO "$hardcode_minus_L_CXX" | $SED "$delay_single_quote_subst"`' -hardcode_shlibpath_var_CXX='`$ECHO "$hardcode_shlibpath_var_CXX" | $SED "$delay_single_quote_subst"`' -hardcode_automatic_CXX='`$ECHO "$hardcode_automatic_CXX" | $SED "$delay_single_quote_subst"`' -inherit_rpath_CXX='`$ECHO "$inherit_rpath_CXX" | $SED "$delay_single_quote_subst"`' -link_all_deplibs_CXX='`$ECHO "$link_all_deplibs_CXX" | $SED "$delay_single_quote_subst"`' -always_export_symbols_CXX='`$ECHO "$always_export_symbols_CXX" | $SED "$delay_single_quote_subst"`' -export_symbols_cmds_CXX='`$ECHO "$export_symbols_cmds_CXX" | $SED "$delay_single_quote_subst"`' -exclude_expsyms_CXX='`$ECHO "$exclude_expsyms_CXX" | $SED "$delay_single_quote_subst"`' -include_expsyms_CXX='`$ECHO "$include_expsyms_CXX" | $SED "$delay_single_quote_subst"`' -prelink_cmds_CXX='`$ECHO "$prelink_cmds_CXX" | $SED "$delay_single_quote_subst"`' -postlink_cmds_CXX='`$ECHO "$postlink_cmds_CXX" | $SED "$delay_single_quote_subst"`' -file_list_spec_CXX='`$ECHO "$file_list_spec_CXX" | $SED "$delay_single_quote_subst"`' -hardcode_action_CXX='`$ECHO "$hardcode_action_CXX" | $SED "$delay_single_quote_subst"`' -compiler_lib_search_dirs_CXX='`$ECHO "$compiler_lib_search_dirs_CXX" | $SED "$delay_single_quote_subst"`' -predep_objects_CXX='`$ECHO "$predep_objects_CXX" | $SED "$delay_single_quote_subst"`' -postdep_objects_CXX='`$ECHO "$postdep_objects_CXX" | $SED "$delay_single_quote_subst"`' -predeps_CXX='`$ECHO "$predeps_CXX" | $SED "$delay_single_quote_subst"`' -postdeps_CXX='`$ECHO "$postdeps_CXX" | $SED "$delay_single_quote_subst"`' -compiler_lib_search_path_CXX='`$ECHO "$compiler_lib_search_path_CXX" | $SED "$delay_single_quote_subst"`' - -LTCC='$LTCC' -LTCFLAGS='$LTCFLAGS' -compiler='$compiler_DEFAULT' - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -\$1 -_LTECHO_EOF' -} - -# Quote evaled strings. -for var in SHELL \ -ECHO \ -PATH_SEPARATOR \ -SED \ -GREP \ -EGREP \ -FGREP \ -LD \ -NM \ -LN_S \ -lt_SP2NL \ -lt_NL2SP \ -reload_flag \ -OBJDUMP \ -deplibs_check_method \ -file_magic_cmd \ -file_magic_glob \ -want_nocaseglob \ -DLLTOOL \ -sharedlib_from_linklib_cmd \ -AR \ -AR_FLAGS \ -archiver_list_spec \ -STRIP \ -RANLIB \ -CC \ -CFLAGS \ -compiler \ -lt_cv_sys_global_symbol_pipe \ -lt_cv_sys_global_symbol_to_cdecl \ -lt_cv_sys_global_symbol_to_import \ -lt_cv_sys_global_symbol_to_c_name_address \ -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ -lt_cv_nm_interface \ -nm_file_list_spec \ -lt_cv_truncate_bin \ -lt_prog_compiler_no_builtin_flag \ -lt_prog_compiler_pic \ -lt_prog_compiler_wl \ -lt_prog_compiler_static \ -lt_cv_prog_compiler_c_o \ -need_locks \ -MANIFEST_TOOL \ -DSYMUTIL \ -NMEDIT \ -LIPO \ -OTOOL \ -OTOOL64 \ -shrext_cmds \ -export_dynamic_flag_spec \ -whole_archive_flag_spec \ -compiler_needs_object \ -with_gnu_ld \ -allow_undefined_flag \ -no_undefined_flag \ -hardcode_libdir_flag_spec \ -hardcode_libdir_separator \ -exclude_expsyms \ -include_expsyms \ -file_list_spec \ -variables_saved_for_relink \ -libname_spec \ -library_names_spec \ -soname_spec \ -install_override_mode \ -finish_eval \ -old_striplib \ -striplib \ -compiler_lib_search_dirs \ -predep_objects \ -postdep_objects \ -predeps \ -postdeps \ -compiler_lib_search_path \ -LD_CXX \ -reload_flag_CXX \ -compiler_CXX \ -lt_prog_compiler_no_builtin_flag_CXX \ -lt_prog_compiler_pic_CXX \ -lt_prog_compiler_wl_CXX \ -lt_prog_compiler_static_CXX \ -lt_cv_prog_compiler_c_o_CXX \ -export_dynamic_flag_spec_CXX \ -whole_archive_flag_spec_CXX \ -compiler_needs_object_CXX \ -with_gnu_ld_CXX \ -allow_undefined_flag_CXX \ -no_undefined_flag_CXX \ -hardcode_libdir_flag_spec_CXX \ -hardcode_libdir_separator_CXX \ -exclude_expsyms_CXX \ -include_expsyms_CXX \ -file_list_spec_CXX \ -compiler_lib_search_dirs_CXX \ -predep_objects_CXX \ -postdep_objects_CXX \ -predeps_CXX \ -postdeps_CXX \ -compiler_lib_search_path_CXX; do - case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in - *[\\\\\\\`\\"\\\$]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes - ;; - *) - eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" - ;; - esac -done - -# Double-quote double-evaled strings. -for var in reload_cmds \ -old_postinstall_cmds \ -old_postuninstall_cmds \ -old_archive_cmds \ -extract_expsyms_cmds \ -old_archive_from_new_cmds \ -old_archive_from_expsyms_cmds \ -archive_cmds \ -archive_expsym_cmds \ -module_cmds \ -module_expsym_cmds \ -export_symbols_cmds \ -prelink_cmds \ -postlink_cmds \ -postinstall_cmds \ -postuninstall_cmds \ -finish_cmds \ -sys_lib_search_path_spec \ -configure_time_dlsearch_path \ -configure_time_lt_sys_library_path \ -reload_cmds_CXX \ -old_archive_cmds_CXX \ -old_archive_from_new_cmds_CXX \ -old_archive_from_expsyms_cmds_CXX \ -archive_cmds_CXX \ -archive_expsym_cmds_CXX \ -module_cmds_CXX \ -module_expsym_cmds_CXX \ -export_symbols_cmds_CXX \ -prelink_cmds_CXX \ -postlink_cmds_CXX; do - case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in - *[\\\\\\\`\\"\\\$]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes - ;; - *) - eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" - ;; - esac -done - -ac_aux_dir='$ac_aux_dir' - -# See if we are running on zsh, and set the options that allow our -# commands through without removal of \ escapes INIT. -if test -n "\${ZSH_VERSION+set}"; then - setopt NO_GLOB_SUBST -fi - - - PACKAGE='$PACKAGE' - VERSION='$VERSION' - RM='$RM' - ofile='$ofile' - - - - - -# Capture the value of obsolete ALL_LINGUAS because we need it to compute - # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. - OBSOLETE_ALL_LINGUAS="$ALL_LINGUAS" - # Capture the value of LINGUAS because we need it to compute CATALOGS. - LINGUAS="${LINGUAS-%UNSET%}" - - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - -# Handling of arguments. -for ac_config_target in $ac_config_targets -do - case $ac_config_target in - "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; - "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; - "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; - "po-directories") CONFIG_COMMANDS="$CONFIG_COMMANDS po-directories" ;; - "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; - "baobab/Makefile") CONFIG_FILES="$CONFIG_FILES baobab/Makefile" ;; - "baobab/data/Makefile") CONFIG_FILES="$CONFIG_FILES baobab/data/Makefile" ;; - "baobab/data/org.mate.disk-usage-analyzer.gschema.xml") CONFIG_FILES="$CONFIG_FILES baobab/data/org.mate.disk-usage-analyzer.gschema.xml" ;; - "baobab/pixmaps/Makefile") CONFIG_FILES="$CONFIG_FILES baobab/pixmaps/Makefile" ;; - "baobab/src/Makefile") CONFIG_FILES="$CONFIG_FILES baobab/src/Makefile" ;; - "baobab/help/Makefile") CONFIG_FILES="$CONFIG_FILES baobab/help/Makefile" ;; - "logview/Makefile") CONFIG_FILES="$CONFIG_FILES logview/Makefile" ;; - "logview/data/Makefile") CONFIG_FILES="$CONFIG_FILES logview/data/Makefile" ;; - "logview/data/org.mate.system-log.gschema.xml") CONFIG_FILES="$CONFIG_FILES logview/data/org.mate.system-log.gschema.xml" ;; - "logview/data/icons/Makefile") CONFIG_FILES="$CONFIG_FILES logview/data/icons/Makefile" ;; - "logview/help/Makefile") CONFIG_FILES="$CONFIG_FILES logview/help/Makefile" ;; - "logview/src/Makefile") CONFIG_FILES="$CONFIG_FILES logview/src/Makefile" ;; - "logview/src/tests/Makefile") CONFIG_FILES="$CONFIG_FILES logview/src/tests/Makefile" ;; - "gsearchtool/Makefile") CONFIG_FILES="$CONFIG_FILES gsearchtool/Makefile" ;; - "gsearchtool/data/Makefile") CONFIG_FILES="$CONFIG_FILES gsearchtool/data/Makefile" ;; - "gsearchtool/data/org.mate.search-tool.gschema.xml") CONFIG_FILES="$CONFIG_FILES gsearchtool/data/org.mate.search-tool.gschema.xml" ;; - "gsearchtool/help/Makefile") CONFIG_FILES="$CONFIG_FILES gsearchtool/help/Makefile" ;; - "gsearchtool/mate-submodules/Makefile") CONFIG_FILES="$CONFIG_FILES gsearchtool/mate-submodules/Makefile" ;; - "gsearchtool/mate-submodules/libegg/Makefile") CONFIG_FILES="$CONFIG_FILES gsearchtool/mate-submodules/libegg/Makefile" ;; - "gsearchtool/libmateui-deprecated/Makefile") CONFIG_FILES="$CONFIG_FILES gsearchtool/libmateui-deprecated/Makefile" ;; - "gsearchtool/src/Makefile") CONFIG_FILES="$CONFIG_FILES gsearchtool/src/Makefile" ;; - "mate-dictionary/Makefile") CONFIG_FILES="$CONFIG_FILES mate-dictionary/Makefile" ;; - "mate-dictionary/libgdict/Makefile") CONFIG_FILES="$CONFIG_FILES mate-dictionary/libgdict/Makefile" ;; - "mate-dictionary/libgdict/gdict-version.h") CONFIG_FILES="$CONFIG_FILES mate-dictionary/libgdict/gdict-version.h" ;; - "mate-dictionary/libgdict/mate-dict.pc") CONFIG_FILES="$CONFIG_FILES mate-dictionary/libgdict/mate-dict.pc" ;; - "mate-dictionary/data/Makefile") CONFIG_FILES="$CONFIG_FILES mate-dictionary/data/Makefile" ;; - "mate-dictionary/data/org.mate.dictionary.gschema.xml") CONFIG_FILES="$CONFIG_FILES mate-dictionary/data/org.mate.dictionary.gschema.xml" ;; - "mate-dictionary/docs/Makefile") CONFIG_FILES="$CONFIG_FILES mate-dictionary/docs/Makefile" ;; - "mate-dictionary/docs/reference/Makefile") CONFIG_FILES="$CONFIG_FILES mate-dictionary/docs/reference/Makefile" ;; - "mate-dictionary/docs/reference/gdict/Makefile") CONFIG_FILES="$CONFIG_FILES mate-dictionary/docs/reference/gdict/Makefile" ;; - "mate-dictionary/docs/reference/gdict/version.xml") CONFIG_FILES="$CONFIG_FILES mate-dictionary/docs/reference/gdict/version.xml" ;; - "mate-dictionary/help/Makefile") CONFIG_FILES="$CONFIG_FILES mate-dictionary/help/Makefile" ;; - "mate-dictionary/src/Makefile") CONFIG_FILES="$CONFIG_FILES mate-dictionary/src/Makefile" ;; - "mate-screenshot/Makefile") CONFIG_FILES="$CONFIG_FILES mate-screenshot/Makefile" ;; - "mate-screenshot/data/Makefile") CONFIG_FILES="$CONFIG_FILES mate-screenshot/data/Makefile" ;; - "mate-screenshot/data/org.mate.screenshot.gschema.xml") CONFIG_FILES="$CONFIG_FILES mate-screenshot/data/org.mate.screenshot.gschema.xml" ;; - "mate-screenshot/src/Makefile") CONFIG_FILES="$CONFIG_FILES mate-screenshot/src/Makefile" ;; - "mate-disk-image-mounter/Makefile") CONFIG_FILES="$CONFIG_FILES mate-disk-image-mounter/Makefile" ;; - "mate-disk-image-mounter/data/Makefile") CONFIG_FILES="$CONFIG_FILES mate-disk-image-mounter/data/Makefile" ;; - "mate-disk-image-mounter/src/Makefile") CONFIG_FILES="$CONFIG_FILES mate-disk-image-mounter/src/Makefile" ;; - - *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; - esac -done - - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used. Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers - test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands -fi - -# Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason against having it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Hook for its removal unless debugging. -# Note that there is a small window in which the directory will not be cleaned: -# after its creation but before its name has been assigned to `$tmp'. -$debug || -{ - tmp= ac_tmp= - trap 'exit_status=$? - : "${ac_tmp:=$tmp}" - { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status -' 0 - trap 'as_fn_exit 1' 1 2 13 15 -} -# Create a (secure) tmp directory for tmp files. - -{ - tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && - test -d "$tmp" -} || -{ - tmp=./conf$$-$RANDOM - (umask 077 && mkdir "$tmp") -} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 -ac_tmp=$tmp - -# Set up the scripts for CONFIG_FILES section. -# No need to generate them if there are no CONFIG_FILES. -# This happens for instance with `./config.status config.h'. -if test -n "$CONFIG_FILES"; then - - -ac_cr=`echo X | tr X '\015'` -# On cygwin, bash can eat \r inside `` if the user requested igncr. -# But we know of no other shell where ac_cr would be empty at this -# point, so we can use a bashism as a fallback. -if test "x$ac_cr" = x; then - eval ac_cr=\$\'\\r\' -fi -ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` -if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then - ac_cs_awk_cr='\\r' -else - ac_cs_awk_cr=$ac_cr -fi - -echo 'BEGIN {' >"$ac_tmp/subs1.awk" && -_ACEOF - - -{ - echo "cat >conf$$subs.awk <<_ACEOF" && - echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && - echo "_ACEOF" -} >conf$$subs.sh || - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 -ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` -ac_delim='%!_!# ' -for ac_last_try in false false false false false :; do - . ./conf$$subs.sh || - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 - - ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` - if test $ac_delim_n = $ac_delim_num; then - break - elif $ac_last_try; then - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done -rm -f conf$$subs.sh - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && -_ACEOF -sed -n ' -h -s/^/S["/; s/!.*/"]=/ -p -g -s/^[^!]*!// -:repl -t repl -s/'"$ac_delim"'$// -t delim -:nl -h -s/\(.\{148\}\)..*/\1/ -t more1 -s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ -p -n -b repl -:more1 -s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -p -g -s/.\{148\}// -t nl -:delim -h -s/\(.\{148\}\)..*/\1/ -t more2 -s/["\\]/\\&/g; s/^/"/; s/$/"/ -p -b -:more2 -s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -p -g -s/.\{148\}// -t delim -' >$CONFIG_STATUS || ac_write_fail=1 -rm -f conf$$subs.awk -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -_ACAWK -cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && - for (key in S) S_is_set[key] = 1 - FS = "" - -} -{ - line = $ 0 - nfields = split(line, field, "@") - substed = 0 - len = length(field[1]) - for (i = 2; i < nfields; i++) { - key = field[i] - keylen = length(key) - if (S_is_set[key]) { - value = S[key] - line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) - len += length(value) + length(field[++i]) - substed = 1 - } else - len += 1 + keylen - } - - print line -} - -_ACAWK -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then - sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" -else - cat -fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ - || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 -_ACEOF - -# VPATH may cause trouble with some makes, so we remove sole $(srcdir), -# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and -# trailing colons and then remove the whole line if VPATH becomes empty -# (actually we leave an empty line to preserve line numbers). -if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ -h -s/// -s/^/:/ -s/[ ]*$/:/ -s/:\$(srcdir):/:/g -s/:\${srcdir}:/:/g -s/:@srcdir@:/:/g -s/^:*// -s/:*$// -x -s/\(=[ ]*\).*/\1/ -G -s/\n// -s/^[^=]*=[ ]*$// -}' -fi - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -fi # test -n "$CONFIG_FILES" - -# Set up the scripts for CONFIG_HEADERS section. -# No need to generate them if there are no CONFIG_HEADERS. -# This happens for instance with `./config.status Makefile'. -if test -n "$CONFIG_HEADERS"; then -cat >"$ac_tmp/defines.awk" <<\_ACAWK || -BEGIN { -_ACEOF - -# Transform confdefs.h into an awk script `defines.awk', embedded as -# here-document in config.status, that substitutes the proper values into -# config.h.in to produce config.h. - -# Create a delimiter string that does not exist in confdefs.h, to ease -# handling of long lines. -ac_delim='%!_!# ' -for ac_last_try in false false :; do - ac_tt=`sed -n "/$ac_delim/p" confdefs.h` - if test -z "$ac_tt"; then - break - elif $ac_last_try; then - as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done - -# For the awk script, D is an array of macro values keyed by name, -# likewise P contains macro parameters if any. Preserve backslash -# newline sequences. - -ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* -sed -n ' -s/.\{148\}/&'"$ac_delim"'/g -t rset -:rset -s/^[ ]*#[ ]*define[ ][ ]*/ / -t def -d -:def -s/\\$// -t bsnl -s/["\\]/\\&/g -s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -D["\1"]=" \3"/p -s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p -d -:bsnl -s/["\\]/\\&/g -s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -D["\1"]=" \3\\\\\\n"\\/p -t cont -s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p -t cont -d -:cont -n -s/.\{148\}/&'"$ac_delim"'/g -t clear -:clear -s/\\$// -t bsnlc -s/["\\]/\\&/g; s/^/"/; s/$/"/p -d -:bsnlc -s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p -b cont -' >$CONFIG_STATUS || ac_write_fail=1 - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - for (key in D) D_is_set[key] = 1 - FS = "" -} -/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { - line = \$ 0 - split(line, arg, " ") - if (arg[1] == "#") { - defundef = arg[2] - mac1 = arg[3] - } else { - defundef = substr(arg[1], 2) - mac1 = arg[2] - } - split(mac1, mac2, "(") #) - macro = mac2[1] - prefix = substr(line, 1, index(line, defundef) - 1) - if (D_is_set[macro]) { - # Preserve the white space surrounding the "#". - print prefix "define", macro P[macro] D[macro] - next - } else { - # Replace #undef with comments. This is necessary, for example, - # in the case of _POSIX_SOURCE, which is predefined and required - # on some systems where configure will not decide to define it. - if (defundef == "undef") { - print "/*", prefix defundef, macro, "*/" - next - } - } -} -{ print } -_ACAWK -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 -fi # test -n "$CONFIG_HEADERS" - - -eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" -shift -for ac_tag -do - case $ac_tag in - :[FHLC]) ac_mode=$ac_tag; continue;; - esac - case $ac_mode$ac_tag in - :[FHL]*:*);; - :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; - :[FH]-) ac_tag=-:-;; - :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; - esac - ac_save_IFS=$IFS - IFS=: - set x $ac_tag - IFS=$ac_save_IFS - shift - ac_file=$1 - shift - - case $ac_mode in - :L) ac_source=$1;; - :[FH]) - ac_file_inputs= - for ac_f - do - case $ac_f in - -) ac_f="$ac_tmp/stdin";; - *) # Look for the file first in the build tree, then in the source tree - # (if the path is not absolute). The absolute path cannot be DOS-style, - # because $ac_f cannot contain `:'. - test -f "$ac_f" || - case $ac_f in - [\\/$]*) false;; - *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; - esac || - as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; - esac - case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac - as_fn_append ac_file_inputs " '$ac_f'" - done - - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - configure_input='Generated from '` - $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' - `' by configure.' - if test x"$ac_file" != x-; then - configure_input="$ac_file. $configure_input" - { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 -$as_echo "$as_me: creating $ac_file" >&6;} - fi - # Neutralize special characters interpreted by sed in replacement strings. - case $configure_input in #( - *\&* | *\|* | *\\* ) - ac_sed_conf_input=`$as_echo "$configure_input" | - sed 's/[\\\\&|]/\\\\&/g'`;; #( - *) ac_sed_conf_input=$configure_input;; - esac - - case $ac_tag in - *:-:* | *:-) cat >"$ac_tmp/stdin" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; - esac - ;; - esac - - ac_dir=`$as_dirname -- "$ac_file" || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - as_dir="$ac_dir"; as_fn_mkdir_p - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - - case $ac_mode in - :F) - # - # CONFIG_FILE - # - - case $INSTALL in - [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; - *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; - esac - ac_MKDIR_P=$MKDIR_P - case $MKDIR_P in - [\\/$]* | ?:[\\/]* ) ;; - */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; - esac -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# If the template does not know about datarootdir, expand it. -# FIXME: This hack should be removed a few years after 2.60. -ac_datarootdir_hack=; ac_datarootdir_seen= -ac_sed_dataroot=' -/datarootdir/ { - p - q -} -/@datadir@/p -/@docdir@/p -/@infodir@/p -/@localedir@/p -/@mandir@/p' -case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in -*datarootdir*) ac_datarootdir_seen=yes;; -*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 -$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - ac_datarootdir_hack=' - s&@datadir@&$datadir&g - s&@docdir@&$docdir&g - s&@infodir@&$infodir&g - s&@localedir@&$localedir&g - s&@mandir@&$mandir&g - s&\\\${datarootdir}&$datarootdir&g' ;; -esac -_ACEOF - -# Neutralize VPATH when `$srcdir' = `.'. -# Shell code in configure.ac might set extrasub. -# FIXME: do we really want to maintain this feature? -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_sed_extra="$ac_vpsub -$extrasub -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s|@configure_input@|$ac_sed_conf_input|;t t -s&@top_builddir@&$ac_top_builddir_sub&;t t -s&@top_build_prefix@&$ac_top_build_prefix&;t t -s&@srcdir@&$ac_srcdir&;t t -s&@abs_srcdir@&$ac_abs_srcdir&;t t -s&@top_srcdir@&$ac_top_srcdir&;t t -s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t -s&@builddir@&$ac_builddir&;t t -s&@abs_builddir@&$ac_abs_builddir&;t t -s&@abs_top_builddir@&$ac_abs_top_builddir&;t t -s&@INSTALL@&$ac_INSTALL&;t t -s&@MKDIR_P@&$ac_MKDIR_P&;t t -$ac_datarootdir_hack -" -eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ - >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - -test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && - { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ - "$ac_tmp/out"`; test -z "$ac_out"; } && - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined" >&5 -$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined" >&2;} - - rm -f "$ac_tmp/stdin" - case $ac_file in - -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; - *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; - esac \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - ;; - :H) - # - # CONFIG_HEADER - # - if test x"$ac_file" != x-; then - { - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" - } >"$ac_tmp/config.h" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then - { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 -$as_echo "$as_me: $ac_file is unchanged" >&6;} - else - rm -f "$ac_file" - mv "$ac_tmp/config.h" "$ac_file" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - fi - else - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ - || as_fn_error $? "could not create -" "$LINENO" 5 - fi -# Compute "$ac_file"'s index in $config_headers. -_am_arg="$ac_file" -_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" || -$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$_am_arg" : 'X\(//\)[^/]' \| \ - X"$_am_arg" : 'X\(//\)$' \| \ - X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$_am_arg" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'`/stamp-h$_am_stamp_count - ;; - - :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 -$as_echo "$as_me: executing $ac_file commands" >&6;} - ;; - esac - - - case $ac_file$ac_mode in - "depfiles":C) test x"$AMDEP_TRUE" != x"" || { - # 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. - case $CONFIG_FILES in #( - *\'*) : - eval set x "$CONFIG_FILES" ;; #( - *) : - set x $CONFIG_FILES ;; #( - *) : - ;; -esac - 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" || -$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$am_mf" : 'X\(//\)[^/]' \| \ - X"$am_mf" : 'X\(//\)$' \| \ - X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$am_mf" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - am_filepart=`$as_basename -- "$am_mf" || -$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \ - X"$am_mf" : 'X\(//\)$' \| \ - X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$am_mf" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - { echo "$as_me:$LINENO: cd "$am_dirpart" \ - && sed -e '/# am--include-marker/d' "$am_filepart" \ - | $MAKE -f - am--depfiles" >&5 - (cd "$am_dirpart" \ - && sed -e '/# am--include-marker/d' "$am_filepart" \ - | $MAKE -f - am--depfiles) >&5 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } || am_rc=$? - done - if test $am_rc -ne 0; then - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "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). -See \`config.log' for more details" "$LINENO" 5; } - fi - { am_dirpart=; unset am_dirpart;} - { am_filepart=; unset am_filepart;} - { am_mf=; unset am_mf;} - { am_rc=; unset am_rc;} - rm -f conftest-deps.mk -} - ;; - "libtool":C) - - # See if we are running on zsh, and set the options that allow our - # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}"; then - setopt NO_GLOB_SUBST - fi - - cfgfile=${ofile}T - trap "$RM \"$cfgfile\"; exit 1" 1 2 15 - $RM "$cfgfile" - - cat <<_LT_EOF >> "$cfgfile" -#! $SHELL -# Generated automatically by $as_me ($PACKAGE) $VERSION -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: -# NOTE: Changes made to this file will be lost: look at ltmain.sh. - -# Provide generalized library-building support services. -# Written by Gordon Matzigkeit, 1996 - -# Copyright (C) 2014 Free Software Foundation, Inc. -# This is free software; see the source for copying conditions. There is NO -# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -# GNU Libtool 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 of the License, or -# (at your option) any later version. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program or library that is built -# using GNU Libtool, you may include this file under the same -# distribution terms that you use for the rest of that program. -# -# GNU Libtool 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 . - - -# The names of the tagged configurations supported by this script. -available_tags='CXX ' - -# Configured defaults for sys_lib_dlsearch_path munging. -: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} - -# ### BEGIN LIBTOOL CONFIG - -# Which release of libtool.m4 was used? -macro_version=$macro_version -macro_revision=$macro_revision - -# Whether or not to build shared libraries. -build_libtool_libs=$enable_shared - -# Whether or not to build static libraries. -build_old_libs=$enable_static - -# What type of objects to build. -pic_mode=$pic_mode - -# Whether or not to optimize for fast installation. -fast_install=$enable_fast_install - -# Shared archive member basename,for filename based shared library versioning on AIX. -shared_archive_member_spec=$shared_archive_member_spec - -# Shell to use when invoking shell scripts. -SHELL=$lt_SHELL - -# An echo program that protects backslashes. -ECHO=$lt_ECHO - -# The PATH separator for the build system. -PATH_SEPARATOR=$lt_PATH_SEPARATOR - -# The host system. -host_alias=$host_alias -host=$host -host_os=$host_os - -# The build system. -build_alias=$build_alias -build=$build -build_os=$build_os - -# A sed program that does not truncate output. -SED=$lt_SED - -# Sed that helps us avoid accidentally triggering echo(1) options like -n. -Xsed="\$SED -e 1s/^X//" - -# A grep program that handles long lines. -GREP=$lt_GREP - -# An ERE matcher. -EGREP=$lt_EGREP - -# A literal string matcher. -FGREP=$lt_FGREP - -# A BSD- or MS-compatible name lister. -NM=$lt_NM - -# Whether we need soft or hard links. -LN_S=$lt_LN_S - -# What is the maximum length of a command? -max_cmd_len=$max_cmd_len - -# Object file suffix (normally "o"). -objext=$ac_objext - -# Executable file suffix (normally ""). -exeext=$exeext - -# whether the shell understands "unset". -lt_unset=$lt_unset - -# turn spaces into newlines. -SP2NL=$lt_lt_SP2NL - -# turn newlines into spaces. -NL2SP=$lt_lt_NL2SP - -# convert \$build file names to \$host format. -to_host_file_cmd=$lt_cv_to_host_file_cmd - -# convert \$build files to toolchain format. -to_tool_file_cmd=$lt_cv_to_tool_file_cmd - -# An object symbol dumper. -OBJDUMP=$lt_OBJDUMP - -# Method to check whether dependent libraries are shared objects. -deplibs_check_method=$lt_deplibs_check_method - -# Command to use when deplibs_check_method = "file_magic". -file_magic_cmd=$lt_file_magic_cmd - -# How to find potential files when deplibs_check_method = "file_magic". -file_magic_glob=$lt_file_magic_glob - -# Find potential files using nocaseglob when deplibs_check_method = "file_magic". -want_nocaseglob=$lt_want_nocaseglob - -# DLL creation program. -DLLTOOL=$lt_DLLTOOL - -# Command to associate shared and link libraries. -sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd - -# The archiver. -AR=$lt_AR - -# Flags to create an archive. -AR_FLAGS=$lt_AR_FLAGS - -# How to feed a file listing to the archiver. -archiver_list_spec=$lt_archiver_list_spec - -# A symbol stripping program. -STRIP=$lt_STRIP - -# Commands used to install an old-style archive. -RANLIB=$lt_RANLIB -old_postinstall_cmds=$lt_old_postinstall_cmds -old_postuninstall_cmds=$lt_old_postuninstall_cmds - -# Whether to use a lock for old archive extraction. -lock_old_archive_extraction=$lock_old_archive_extraction - -# A C compiler. -LTCC=$lt_CC - -# LTCC compiler flags. -LTCFLAGS=$lt_CFLAGS - -# Take the output of nm and produce a listing of raw symbols and C names. -global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe - -# Transform the output of nm in a proper C declaration. -global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl - -# Transform the output of nm into a list of symbols to manually relocate. -global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import - -# Transform the output of nm in a C name address pair. -global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address - -# Transform the output of nm in a C name address pair when lib prefix is needed. -global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix - -# The name lister interface. -nm_interface=$lt_lt_cv_nm_interface - -# Specify filename containing input files for \$NM. -nm_file_list_spec=$lt_nm_file_list_spec - -# The root where to search for dependent libraries,and where our libraries should be installed. -lt_sysroot=$lt_sysroot - -# Command to truncate a binary pipe. -lt_truncate_bin=$lt_lt_cv_truncate_bin - -# The name of the directory that contains temporary libtool files. -objdir=$objdir - -# Used to examine libraries when file_magic_cmd begins with "file". -MAGIC_CMD=$MAGIC_CMD - -# Must we lock files when doing compilation? -need_locks=$lt_need_locks - -# Manifest tool. -MANIFEST_TOOL=$lt_MANIFEST_TOOL - -# Tool to manipulate archived DWARF debug symbol files on Mac OS X. -DSYMUTIL=$lt_DSYMUTIL - -# Tool to change global to local symbols on Mac OS X. -NMEDIT=$lt_NMEDIT - -# Tool to manipulate fat objects and archives on Mac OS X. -LIPO=$lt_LIPO - -# ldd/readelf like tool for Mach-O binaries on Mac OS X. -OTOOL=$lt_OTOOL - -# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. -OTOOL64=$lt_OTOOL64 - -# Old archive suffix (normally "a"). -libext=$libext - -# Shared library suffix (normally ".so"). -shrext_cmds=$lt_shrext_cmds - -# The commands to extract the exported symbol list from a shared archive. -extract_expsyms_cmds=$lt_extract_expsyms_cmds - -# Variables whose values should be saved in libtool wrapper scripts and -# restored at link time. -variables_saved_for_relink=$lt_variables_saved_for_relink - -# Do we need the "lib" prefix for modules? -need_lib_prefix=$need_lib_prefix - -# Do we need a version for libraries? -need_version=$need_version - -# Library versioning type. -version_type=$version_type - -# Shared library runtime path variable. -runpath_var=$runpath_var - -# Shared library path variable. -shlibpath_var=$shlibpath_var - -# Is shlibpath searched before the hard-coded library search path? -shlibpath_overrides_runpath=$shlibpath_overrides_runpath - -# Format of library name prefix. -libname_spec=$lt_libname_spec - -# List of archive names. First name is the real one, the rest are links. -# The last name is the one that the linker finds with -lNAME -library_names_spec=$lt_library_names_spec - -# The coded name of the library, if different from the real name. -soname_spec=$lt_soname_spec - -# Permission mode override for installation of shared libraries. -install_override_mode=$lt_install_override_mode - -# Command to use after installation of a shared archive. -postinstall_cmds=$lt_postinstall_cmds - -# Command to use after uninstallation of a shared archive. -postuninstall_cmds=$lt_postuninstall_cmds - -# Commands used to finish a libtool library installation in a directory. -finish_cmds=$lt_finish_cmds - -# As "finish_cmds", except a single script fragment to be evaled but -# not shown. -finish_eval=$lt_finish_eval - -# Whether we should hardcode library paths into libraries. -hardcode_into_libs=$hardcode_into_libs - -# Compile-time system search path for libraries. -sys_lib_search_path_spec=$lt_sys_lib_search_path_spec - -# Detected run-time system search path for libraries. -sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path - -# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. -configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path - -# Whether dlopen is supported. -dlopen_support=$enable_dlopen - -# Whether dlopen of programs is supported. -dlopen_self=$enable_dlopen_self - -# Whether dlopen of statically linked programs is supported. -dlopen_self_static=$enable_dlopen_self_static - -# Commands to strip libraries. -old_striplib=$lt_old_striplib -striplib=$lt_striplib - - -# The linker used to build libraries. -LD=$lt_LD - -# How to create reloadable object files. -reload_flag=$lt_reload_flag -reload_cmds=$lt_reload_cmds - -# Commands used to build an old-style archive. -old_archive_cmds=$lt_old_archive_cmds - -# A language specific compiler. -CC=$lt_compiler - -# Is the compiler the GNU compiler? -with_gcc=$GCC - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object=$lt_compiler_needs_object - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds - -# Commands used to build a shared archive. -archive_cmds=$lt_archive_cmds -archive_expsym_cmds=$lt_archive_expsym_cmds - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds=$lt_module_cmds -module_expsym_cmds=$lt_module_expsym_cmds - -# Whether we are building with GNU ld or not. -with_gnu_ld=$lt_with_gnu_ld - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag - -# Flag that enforces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=$hardcode_direct - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \$shlibpath_var if the -# library is relocated. -hardcode_direct_absolute=$hardcode_direct_absolute - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=$hardcode_minus_L - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var - -# Set to "yes" if building a shared library automatically hardcodes DIR -# into the library and all subsequent libraries and executables linked -# against it. -hardcode_automatic=$hardcode_automatic - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=$inherit_rpath - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs - -# Set to "yes" if exported symbols are required. -always_export_symbols=$always_export_symbols - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds=$lt_prelink_cmds - -# Commands necessary for finishing linking programs. -postlink_cmds=$lt_postlink_cmds - -# Specify filename containing input files. -file_list_spec=$lt_file_list_spec - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects=$lt_predep_objects -postdep_objects=$lt_postdep_objects -predeps=$lt_predeps -postdeps=$lt_postdeps - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path - -# ### END LIBTOOL CONFIG - -_LT_EOF - - cat <<'_LT_EOF' >> "$cfgfile" - -# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE - -# func_munge_path_list VARIABLE PATH -# ----------------------------------- -# VARIABLE is name of variable containing _space_ separated list of -# directories to be munged by the contents of PATH, which is string -# having a format: -# "DIR[:DIR]:" -# string "DIR[ DIR]" will be prepended to VARIABLE -# ":DIR[:DIR]" -# string "DIR[ DIR]" will be appended to VARIABLE -# "DIRP[:DIRP]::[DIRA:]DIRA" -# string "DIRP[ DIRP]" will be prepended to VARIABLE and string -# "DIRA[ DIRA]" will be appended to VARIABLE -# "DIR[:DIR]" -# VARIABLE will be replaced by "DIR[ DIR]" -func_munge_path_list () -{ - case x$2 in - x) - ;; - *:) - eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" - ;; - x:*) - eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" - ;; - *::*) - eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" - eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" - ;; - *) - eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" - ;; - esac -} - - -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. -func_cc_basename () -{ - for cc_temp in $*""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac - done - func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` -} - - -# ### END FUNCTIONS SHARED WITH CONFIGURE - -_LT_EOF - - case $host_os in - aix3*) - cat <<\_LT_EOF >> "$cfgfile" -# AIX sometimes has problems with the GCC collect2 program. For some -# reason, if we set the COLLECT_NAMES environment variable, the problems -# vanish in a puff of smoke. -if test set != "${COLLECT_NAMES+set}"; then - COLLECT_NAMES= - export COLLECT_NAMES -fi -_LT_EOF - ;; - esac - - -ltmain=$ac_aux_dir/ltmain.sh - - - # We use sed instead of cat because bash on DJGPP gets confused if - # if finds mixed CR/LF and LF-only lines. Since sed operates in - # text mode, it properly converts lines to CR/LF. This bash problem - # is reportedly fixed, but why not run on old versions too? - sed '$q' "$ltmain" >> "$cfgfile" \ - || (rm -f "$cfgfile"; exit 1) - - mv -f "$cfgfile" "$ofile" || - (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") - chmod +x "$ofile" - - - cat <<_LT_EOF >> "$ofile" - -# ### BEGIN LIBTOOL TAG CONFIG: CXX - -# The linker used to build libraries. -LD=$lt_LD_CXX - -# How to create reloadable object files. -reload_flag=$lt_reload_flag_CXX -reload_cmds=$lt_reload_cmds_CXX - -# Commands used to build an old-style archive. -old_archive_cmds=$lt_old_archive_cmds_CXX - -# A language specific compiler. -CC=$lt_compiler_CXX - -# Is the compiler the GNU compiler? -with_gcc=$GCC_CXX - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic_CXX - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl_CXX - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static_CXX - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc_CXX - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object=$lt_compiler_needs_object_CXX - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX - -# Commands used to build a shared archive. -archive_cmds=$lt_archive_cmds_CXX -archive_expsym_cmds=$lt_archive_expsym_cmds_CXX - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds=$lt_module_cmds_CXX -module_expsym_cmds=$lt_module_expsym_cmds_CXX - -# Whether we are building with GNU ld or not. -with_gnu_ld=$lt_with_gnu_ld_CXX - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag_CXX - -# Flag that enforces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag_CXX - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=$hardcode_direct_CXX - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \$shlibpath_var if the -# library is relocated. -hardcode_direct_absolute=$hardcode_direct_absolute_CXX - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=$hardcode_minus_L_CXX - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX - -# Set to "yes" if building a shared library automatically hardcodes DIR -# into the library and all subsequent libraries and executables linked -# against it. -hardcode_automatic=$hardcode_automatic_CXX - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=$inherit_rpath_CXX - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs_CXX - -# Set to "yes" if exported symbols are required. -always_export_symbols=$always_export_symbols_CXX - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds_CXX - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms_CXX - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms_CXX - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds=$lt_prelink_cmds_CXX - -# Commands necessary for finishing linking programs. -postlink_cmds=$lt_postlink_cmds_CXX - -# Specify filename containing input files. -file_list_spec=$lt_file_list_spec_CXX - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action_CXX - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects=$lt_predep_objects_CXX -postdep_objects=$lt_postdep_objects_CXX -predeps=$lt_predeps_CXX -postdeps=$lt_postdeps_CXX - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path_CXX - -# ### END LIBTOOL TAG CONFIG: CXX -_LT_EOF - - ;; - "po-directories":C) - for ac_file in $CONFIG_FILES; do - # Support "outfile[:infile[:infile...]]" - case "$ac_file" in - *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; - esac - # PO directories have a Makefile.in generated from Makefile.in.in. - case "$ac_file" in */Makefile.in) - # Adjust a relative srcdir. - ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` - ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'` - ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` - # In autoconf-2.13 it is called $ac_given_srcdir. - # In autoconf-2.50 it is called $srcdir. - test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" - case "$ac_given_srcdir" in - .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; - /*) top_srcdir="$ac_given_srcdir" ;; - *) top_srcdir="$ac_dots$ac_given_srcdir" ;; - esac - # Treat a directory as a PO directory if and only if it has a - # POTFILES.in file. This allows packages to have multiple PO - # directories under different names or in different locations. - if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then - rm -f "$ac_dir/POTFILES" - test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" - gt_tab=`printf '\t'` - cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ${gt_tab}]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" - POMAKEFILEDEPS="POTFILES.in" - # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend - # on $ac_dir but don't depend on user-specified configuration - # parameters. - if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then - # The LINGUAS file contains the set of available languages. - if test -n "$OBSOLETE_ALL_LINGUAS"; then - test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" - fi - ALL_LINGUAS=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` - POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" - else - # The set of available languages was given in configure.in. - ALL_LINGUAS=$OBSOLETE_ALL_LINGUAS - fi - # Compute POFILES - # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) - # Compute UPDATEPOFILES - # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) - # Compute DUMMYPOFILES - # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) - # Compute GMOFILES - # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) - case "$ac_given_srcdir" in - .) srcdirpre= ;; - *) srcdirpre='$(srcdir)/' ;; - esac - POFILES= - UPDATEPOFILES= - DUMMYPOFILES= - GMOFILES= - for lang in $ALL_LINGUAS; do - POFILES="$POFILES $srcdirpre$lang.po" - UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" - DUMMYPOFILES="$DUMMYPOFILES $lang.nop" - GMOFILES="$GMOFILES $srcdirpre$lang.gmo" - done - # CATALOGS depends on both $ac_dir and the user's LINGUAS - # environment variable. - INST_LINGUAS= - if test -n "$ALL_LINGUAS"; then - for presentlang in $ALL_LINGUAS; do - useit=no - if test "%UNSET%" != "$LINGUAS"; then - desiredlanguages="$LINGUAS" - else - desiredlanguages="$ALL_LINGUAS" - fi - for desiredlang in $desiredlanguages; do - # Use the presentlang catalog if desiredlang is - # a. equal to presentlang, or - # b. a variant of presentlang (because in this case, - # presentlang can be used as a fallback for messages - # which are not translated in the desiredlang catalog). - case "$desiredlang" in - "$presentlang"*) useit=yes;; - esac - done - if test $useit = yes; then - INST_LINGUAS="$INST_LINGUAS $presentlang" - fi - done - fi - CATALOGS= - if test -n "$INST_LINGUAS"; then - for lang in $INST_LINGUAS; do - CATALOGS="$CATALOGS $lang.gmo" - done - fi - test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" - sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" - for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do - if test -f "$f"; then - case "$f" in - *.orig | *.bak | *~) ;; - *) cat "$f" >> "$ac_dir/Makefile" ;; - esac - fi - done - fi - ;; - esac - done ;; - - esac -done # for ac_tag - - -as_fn_exit 0 -_ACEOF -ac_clean_files=$ac_clean_files_save - -test $ac_write_fail = 0 || - as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 - - -# configure is writing to config.log, and then calls config.status. -# config.status does its own redirection, appending to config.log. -# Unfortunately, on DOS this fails, as config.log is still kept open -# by configure, so config.status won't be able to write to it; its -# output is simply discarded. So we exec the FD to /dev/null, -# effectively closing config.log, so it can be properly (re)opened and -# appended to by config.status. When coming back to configure, we -# need to make the FD available again. -if test "$no_create" != yes; then - ac_cs_success=: - ac_config_status_args= - test "$silent" = yes && - ac_config_status_args="$ac_config_status_args --quiet" - exec 5>/dev/null - $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false - exec 5>>config.log - # Use ||, not &&, to avoid exiting from the if with $? = 1, which - # would make configure fail if this is the last instruction. - $ac_cs_success || as_fn_exit 1 -fi -if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 -$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} -fi - - - -echo " -mate-utils $VERSION configuration summary: - - Compiler flags : $CFLAGS - Compiler warning flags : $WARN_CFLAGS - Linker flags : $LDFLAGS - - prefix : $prefix - sysconf dir : $sysconfdir - bin dir : $bindir - sbin dir : $sbindir - data dir : $datadir - - Debug messages (libmatedict) : $enable_debug - API Reference (libmatedict) : $enable_gtk_doc - Logview built with ZLib support : $msg_zlib - Dictionary mate-panel applet : $enable_gdict_applet - Native Language support : ${USE_NLS} -" diff -Nru mate-utils-1.26.0/configure.ac mate-utils-1.26.1/configure.ac --- mate-utils-1.26.0/configure.ac 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/configure.ac 2023-05-09 13:31:58.000000000 +0000 @@ -15,7 +15,7 @@ m4_define([mate_utils_major], [1]) m4_define([mate_utils_minor], [26]) -m4_define([mate_utils_micro], [0]) +m4_define([mate_utils_micro], [1]) m4_define([mate_utils_version], [mate_utils_major.mate_utils_minor.mate_utils_micro]) diff -Nru mate-utils-1.26.0/debian/changelog mate-utils-1.26.1/debian/changelog --- mate-utils-1.26.0/debian/changelog 2021-08-21 17:03:06.000000000 +0000 +++ mate-utils-1.26.1/debian/changelog 2023-09-24 22:04:28.000000000 +0000 @@ -1,8 +1,33 @@ -mate-utils (1.26.0-0ubuntu1) impish; urgency=medium +mate-utils (1.26.1-1) unstable; urgency=medium * New upstream release. + - Fix various memory leaks. (Closes: #1052579). + * debian/control: + + Bump Standards-Version: to 4.6.2. No changes needed. + * debian/copyright: + + Update copyright attribution for debian/. - -- Martin Wimpress Sat, 21 Aug 2021 18:03:06 +0100 + -- Mike Gabriel Mon, 25 Sep 2023 00:04:28 +0200 + +mate-utils (1.26.0-1) unstable; urgency=medium + + [ Martin Wimpress ] + * New upstream release. + + [ Mike Gabriel ] + * debian/patches: + + Trivial rebase of 1001_fix-gsearchtool-pt-help-translation.patch, Patch + is still required. + * debian/control: + + Add B-D: mate-submodules-source (>= 0.0~git20210623.f3091f9). + * debian/rules: + + Unpack libegg (mate-submodules) at the beginning of dh_auto_configure. + * debian/watch: + + Use format version 4. + * debian/copyright: + + Update copyright attributions. + + -- Mike Gabriel Mon, 13 Dec 2021 08:11:24 +0100 mate-utils (1.24.0-1) unstable; urgency=medium diff -Nru mate-utils-1.26.0/debian/control mate-utils-1.26.1/debian/control --- mate-utils-1.26.0/debian/control 2021-08-21 16:59:40.000000000 +0000 +++ mate-utils-1.26.1/debian/control 2023-09-24 22:04:28.000000000 +0000 @@ -21,12 +21,13 @@ libxext-dev, libxt-dev, mate-common (>= 1.18), + mate-submodules-source (>= 0.0~git20210623.f3091f9), librsvg2-bin, x11proto-xext-dev, xsltproc, yelp-tools, zlib1g-dev, -Standards-Version: 4.6.0 +Standards-Version: 4.6.2 Rules-Requires-Root: no Homepage: http://www.mate-desktop.org/ Vcs-Browser: https://salsa.debian.org/debian-mate-team/mate-utils diff -Nru mate-utils-1.26.0/debian/copyright mate-utils-1.26.1/debian/copyright --- mate-utils-1.26.0/debian/copyright 2020-11-05 12:25:26.000000000 +0000 +++ mate-utils-1.26.1/debian/copyright 2023-09-24 22:04:28.000000000 +0000 @@ -119,13 +119,6 @@ Copyright: 2009, Johannes Schmid License: GPL-3+ -Files: gsearchtool/libeggsmclient/eggdesktopfile.h - gsearchtool/libeggsmclient/eggsmclient-private.h - gsearchtool/libeggsmclient/eggsmclient.c - gsearchtool/libeggsmclient/eggsmclient.h -Copyright: 2007, Novell, Inc. -License: LGPL-2+ - Files: mate-screenshot/src/screenshot-utils.c mate-screenshot/src/screenshot-xfer.c mate-screenshot/src/screenshot-xfer.h @@ -202,18 +195,6 @@ Copyright: 2012, Red Hat, Inc. License: GPL-2+ -Files: gsearchtool/libeggsmclient/eggsmclient-xsmp.c -Copyright: 1998, Carsten Schaar - 1998, The Open Group - 2007, Novell, Inc. -License: LGPL-2+ - -Files: gsearchtool/libeggsmclient/eggdesktopfile.c -Copyright: 1999, 2000, Red Hat, Inc. - 2001, George Lebl - 2007, Novell, Inc. -License: LGPL-2+ - Files: mate-utils.pot po/*.po po/gnome-copyrights.txt @@ -392,7 +373,14 @@ Yannig Marchegay (Kokoyaya) License: GFDL-1.1+ -Files: .travis.yml +Files: git.mk +Copyright: 2009, Red Hat, Inc. + 2010-2013, Behdad Esfahbod +License: FSF-all-permissive + +Files: .build.yml + .gitmodules + .travis.yml .tx/config .github/issue_template.md .github/FUNDING.yml @@ -403,7 +391,7 @@ baobab/data/org.mate.disk-usage-analyzer.gresource.xml baobab/AUTHORS baobab/Makefile.am - baobab/README + baobab/README.md baobab/TODO baobab/pixmaps/Makefile.am baobab/pixmaps/hicolor_apps_scalable_mate-disk-usage-analyzer.svg @@ -415,9 +403,10 @@ gsearchtool/AUTHORS gsearchtool/Makefile.am gsearchtool/*.1 - gsearchtool/*.in + gsearchtool/data/mate-search-tool.appdata.xml.in + gsearchtool/data/mate-search-tool.desktop.in + gsearchtool/data/org.mate.search-tool.gschema.xml.in gsearchtool/src/Makefile.am - gsearchtool/libeggsmclient/Makefile.am logview/data/*.1 logview/data/*.in logview/data/*.ui @@ -448,7 +437,7 @@ mate-dictionary/src/main.c mate-dictionary/AUTHORS mate-dictionary/Makefile.am - mate-dictionary/README + mate-dictionary/README.md mate-dictionary/TODO mate-disk-image-mounter/Makefile.am mate-disk-image-mounter/data/Makefile.am @@ -468,7 +457,7 @@ ChangeLog Makefile.am NEWS - README + README.md THANKS configure.ac autogen.sh @@ -485,7 +474,7 @@ Files: debian/* Copyright: 2011-2014, Stefano Karapetsas - 2014, Mike Gabriel + 2014-2023, Mike Gabriel License: GPL-2+ License: GPL-2+ @@ -561,11 +550,363 @@ `/usr/share/common-licenses/LGPL-2.1'. License: GFDL-1.1+ - 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. - . - On Debian systems, the complete text of the GNU Free Documentation License - version 1.2 can be found in "/usr/share/common-licenses/GFDL-1.2". + GNU Free Documentation License + Version 1.1, March 2000 + - + Copyright (C) 2000 Free Software Foundation, Inc. + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + . + 0. PREAMBLE + . + The purpose of this License is to make a manual, textbook, or other + written document "free" in the sense of freedom: to assure everyone + the effective freedom to copy and redistribute it, with or without + modifying it, either commercially or noncommercially. Secondarily, + this License preserves for the author and publisher a way to get + credit for their work, while not being considered responsible for + modifications made by others. + . + This License is a kind of "copyleft", which means that derivative + works of the document must themselves be free in the same sense. It + complements the GNU General Public License, which is a copyleft + license designed for free software. + . + We have designed this License in order to use it for manuals for free + software, because free software needs free documentation: a free + program should come with manuals providing the same freedoms that the + software does. But this License is not limited to software manuals; + it can be used for any textual work, regardless of subject matter or + whether it is published as a printed book. We recommend this License + principally for works whose purpose is instruction or reference. + . + . + 1. APPLICABILITY AND DEFINITIONS + . + This License applies to any manual or other work that contains a + notice placed by the copyright holder saying it can be distributed + under the terms of this License. The "Document", below, refers to any + such manual or work. Any member of the public is a licensee, and is + addressed as "you". + . + A "Modified Version" of the Document means any work containing the + Document or a portion of it, either copied verbatim, or with + modifications and/or translated into another language. + . + A "Secondary Section" is a named appendix or a front-matter section of + the Document that deals exclusively with the relationship of the + publishers or authors of the Document to the Document's overall subject + (or to related matters) and contains nothing that could fall directly + within that overall subject. (For example, if the Document is in part a + textbook of mathematics, a Secondary Section may not explain any + mathematics.) The relationship could be a matter of historical + connection with the subject or with related matters, or of legal, + commercial, philosophical, ethical or political position regarding + them. + . + The "Invariant Sections" are certain Secondary Sections whose titles + are designated, as being those of Invariant Sections, in the notice + that says that the Document is released under this License. + . + The "Cover Texts" are certain short passages of text that are listed, + as Front-Cover Texts or Back-Cover Texts, in the notice that says that + the Document is released under this License. + . + A "Transparent" copy of the Document means a machine-readable copy, + represented in a format whose specification is available to the + general public, whose contents can be viewed and edited directly and + straightforwardly with generic text editors or (for images composed of + pixels) generic paint programs or (for drawings) some widely available + drawing editor, and that is suitable for input to text formatters or + for automatic translation to a variety of formats suitable for input + to text formatters. A copy made in an otherwise Transparent file + format whose markup has been designed to thwart or discourage + subsequent modification by readers is not Transparent. A copy that is + not "Transparent" is called "Opaque". + . + Examples of suitable formats for Transparent copies include plain + ASCII without markup, Texinfo input format, LaTeX input format, SGML + or XML using a publicly available DTD, and standard-conforming simple + HTML designed for human modification. Opaque formats include + PostScript, PDF, proprietary formats that can be read and edited only + by proprietary word processors, SGML or XML for which the DTD and/or + processing tools are not generally available, and the + machine-generated HTML produced by some word processors for output + purposes only. + . + The "Title Page" means, for a printed book, the title page itself, + plus such following pages as are needed to hold, legibly, the material + this License requires to appear in the title page. For works in + formats which do not have any title page as such, "Title Page" means + the text near the most prominent appearance of the work's title, + preceding the beginning of the body of the text. + . + . + 2. VERBATIM COPYING + . + You may copy and distribute the Document in any medium, either + commercially or noncommercially, provided that this License, the + copyright notices, and the license notice saying this License applies + to the Document are reproduced in all copies, and that you add no other + conditions whatsoever to those of this License. You may not use + technical measures to obstruct or control the reading or further + copying of the copies you make or distribute. However, you may accept + compensation in exchange for copies. If you distribute a large enough + number of copies you must also follow the conditions in section 3. + . + You may also lend copies, under the same conditions stated above, and + you may publicly display copies. + . + . + 3. COPYING IN QUANTITY + . + If you publish printed copies of the Document numbering more than 100, + and the Document's license notice requires Cover Texts, you must enclose + the copies in covers that carry, clearly and legibly, all these Cover + Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on + the back cover. Both covers must also clearly and legibly identify + you as the publisher of these copies. The front cover must present + the full title with all words of the title equally prominent and + visible. You may add other material on the covers in addition. + Copying with changes limited to the covers, as long as they preserve + the title of the Document and satisfy these conditions, can be treated + as verbatim copying in other respects. + . + If the required texts for either cover are too voluminous to fit + legibly, you should put the first ones listed (as many as fit + reasonably) on the actual cover, and continue the rest onto adjacent + pages. + . + If you publish or distribute Opaque copies of the Document numbering + more than 100, you must either include a machine-readable Transparent + copy along with each Opaque copy, or state in or with each Opaque copy + a publicly-accessible computer-network location containing a complete + Transparent copy of the Document, free of added material, which the + general network-using public has access to download anonymously at no + charge using public-standard network protocols. If you use the latter + option, you must take reasonably prudent steps, when you begin + distribution of Opaque copies in quantity, to ensure that this + Transparent copy will remain thus accessible at the stated location + until at least one year after the last time you distribute an Opaque + copy (directly or through your agents or retailers) of that edition to + the public. + . + It is requested, but not required, that you contact the authors of the + Document well before redistributing any large number of copies, to give + them a chance to provide you with an updated version of the Document. + . + . + 4. MODIFICATIONS + . + You may copy and distribute a Modified Version of the Document under + the conditions of sections 2 and 3 above, provided that you release + the Modified Version under precisely this License, with the Modified + Version filling the role of the Document, thus licensing distribution + and modification of the Modified Version to whoever possesses a copy + of it. In addition, you must do these things in the Modified Version: + . + A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. + B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has less than five). + C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. + D. Preserve all the copyright notices of the Document. + E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. + F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. + G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. + H. Include an unaltered copy of this License. + I. Preserve the section entitled "History", and its title, and add to + it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. + J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. + K. In any section entitled "Acknowledgements" or "Dedications", + preserve the section's title, and preserve in the section all the + substance and tone of each of the contributor acknowledgements + and/or dedications given therein. + L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. + M. Delete any section entitled "Endorsements". Such a section + may not be included in the Modified Version. + N. Do not retitle any existing section as "Endorsements" + or to conflict in title with any Invariant Section. + . + If the Modified Version includes new front-matter sections or + appendices that qualify as Secondary Sections and contain no material + copied from the Document, you may at your option designate some or all + of these sections as invariant. To do this, add their titles to the + list of Invariant Sections in the Modified Version's license notice. + These titles must be distinct from any other section titles. + . + You may add a section entitled "Endorsements", provided it contains + nothing but endorsements of your Modified Version by various + parties--for example, statements of peer review or that the text has + been approved by an organization as the authoritative definition of a + standard. + . + You may add a passage of up to five words as a Front-Cover Text, and a + passage of up to 25 words as a Back-Cover Text, to the end of the list + of Cover Texts in the Modified Version. Only one passage of + Front-Cover Text and one of Back-Cover Text may be added by (or + through arrangements made by) any one entity. If the Document already + includes a cover text for the same cover, previously added by you or + by arrangement made by the same entity you are acting on behalf of, + you may not add another; but you may replace the old one, on explicit + permission from the previous publisher that added the old one. + . + The author(s) and publisher(s) of the Document do not by this License + give permission to use their names for publicity for or to assert or + imply endorsement of any Modified Version. + . + . + 5. COMBINING DOCUMENTS + . + You may combine the Document with other documents released under this + License, under the terms defined in section 4 above for modified + versions, provided that you include in the combination all of the + Invariant Sections of all of the original documents, unmodified, and + list them all as Invariant Sections of your combined work in its + license notice. + . + The combined work need only contain one copy of this License, and + multiple identical Invariant Sections may be replaced with a single + copy. If there are multiple Invariant Sections with the same name but + different contents, make the title of each such section unique by + adding at the end of it, in parentheses, the name of the original + author or publisher of that section if known, or else a unique number. + Make the same adjustment to the section titles in the list of + Invariant Sections in the license notice of the combined work. + . + In the combination, you must combine any sections entitled "History" + in the various original documents, forming one section entitled + "History"; likewise combine any sections entitled "Acknowledgements", + and any sections entitled "Dedications". You must delete all sections + entitled "Endorsements." + . + . + 6. COLLECTIONS OF DOCUMENTS + . + You may make a collection consisting of the Document and other documents + released under this License, and replace the individual copies of this + License in the various documents with a single copy that is included in + the collection, provided that you follow the rules of this License for + verbatim copying of each of the documents in all other respects. + . + You may extract a single document from such a collection, and distribute + it individually under this License, provided you insert a copy of this + License into the extracted document, and follow this License in all + other respects regarding verbatim copying of that document. + . + . + 7. AGGREGATION WITH INDEPENDENT WORKS + . + A compilation of the Document or its derivatives with other separate + and independent documents or works, in or on a volume of a storage or + distribution medium, does not as a whole count as a Modified Version + of the Document, provided no compilation copyright is claimed for the + compilation. Such a compilation is called an "aggregate", and this + License does not apply to the other self-contained works thus compiled + with the Document, on account of their being thus compiled, if they + are not themselves derivative works of the Document. + . + If the Cover Text requirement of section 3 is applicable to these + copies of the Document, then if the Document is less than one quarter + of the entire aggregate, the Document's Cover Texts may be placed on + covers that surround only the Document within the aggregate. + Otherwise they must appear on covers around the whole aggregate. + . + . + 8. TRANSLATION + . + Translation is considered a kind of modification, so you may + distribute translations of the Document under the terms of section 4. + Replacing Invariant Sections with translations requires special + permission from their copyright holders, but you may include + translations of some or all Invariant Sections in addition to the + original versions of these Invariant Sections. You may include a + translation of this License provided that you also include the + original English version of this License. In case of a disagreement + between the translation and the original English version of this + License, the original English version will prevail. + . + . + 9. TERMINATION + . + You may not copy, modify, sublicense, or distribute the Document except + as expressly provided for under this License. Any other attempt to + copy, modify, sublicense or distribute the Document is void, and will + automatically terminate your rights under this License. However, + parties who have received copies, or rights, from you under this + License will not have their licenses terminated so long as such + parties remain in full compliance. + . + . + 10. FUTURE REVISIONS OF THIS LICENSE + . + The Free Software Foundation may publish new, revised versions + of the GNU Free Documentation License from time to time. Such new + versions will be similar in spirit to the present version, but may + differ in detail to address new problems or concerns. See + https://www.gnu.org/licenses/. + . + Each version of the License is given a distinguishing version number. + If the Document specifies that a particular numbered version of this + License "or any later version" applies to it, you have the option of + following the terms and conditions either of that specified version or + of any later version that has been published (not as a draft) by the + Free Software Foundation. If the Document does not specify a version + number of this License, you may choose any version ever published (not + as a draft) by the Free Software Foundation. + . + . + ADDENDUM: How to use this License for your documents + . + To use this License in a document you have written, include a copy of + the License in the document and put the following copyright and + license notices just after the title page: + . + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.1 + or any later version published by the Free Software Foundation; + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + . + If you have no Invariant Sections, write "with no Invariant Sections" + instead of saying which ones are invariant. If you have no + Front-Cover Texts, write "no Front-Cover Texts" instead of + "Front-Cover Texts being LIST"; likewise for Back-Cover Texts. + . + If your document contains nontrivial examples of program code, we + recommend releasing these examples in parallel under your choice of + free software license, such as the GNU General Public License, + to permit their use in free software. + +License: FSF-all-permissive + 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. + diff -Nru mate-utils-1.26.0/debian/mate-utils-common.install mate-utils-1.26.1/debian/mate-utils-common.install --- mate-utils-1.26.0/debian/mate-utils-common.install 2021-08-21 17:03:06.000000000 +0000 +++ mate-utils-1.26.1/debian/mate-utils-common.install 2021-12-13 07:42:51.000000000 +0000 @@ -1,6 +1,5 @@ usr/share/dbus-1/ usr/share/glib-2.0/ -usr/share/gtk-doc/ usr/share/help/ usr/share/icons/ usr/share/locale/ diff -Nru mate-utils-1.26.0/debian/patches/1001_fix-gsearchtool-pt-help-translation.patch mate-utils-1.26.1/debian/patches/1001_fix-gsearchtool-pt-help-translation.patch --- mate-utils-1.26.0/debian/patches/1001_fix-gsearchtool-pt-help-translation.patch 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/debian/patches/1001_fix-gsearchtool-pt-help-translation.patch 2021-12-13 07:33:55.000000000 +0000 @@ -0,0 +1,13 @@ +Author: Mike Gabriel +Description: Mark broken translation string as fuzzy in pt.po translation + +--- a/gsearchtool/help/pt/pt.po ++++ b/gsearchtool/help/pt/pt.po +@@ -90,6 +90,7 @@ + + #. (itstool) path: authorgroup/author + #: C/index.docbook:73 ++#, fuzzy + msgid "" + "Dennis Cranston " + "Search for Files Maintainer <_:address-1/> " diff -Nru mate-utils-1.26.0/debian/patches/series mate-utils-1.26.1/debian/patches/series --- mate-utils-1.26.0/debian/patches/series 2021-08-21 17:03:06.000000000 +0000 +++ mate-utils-1.26.1/debian/patches/series 2021-12-13 07:33:35.000000000 +0000 @@ -0,0 +1 @@ +1001_fix-gsearchtool-pt-help-translation.patch diff -Nru mate-utils-1.26.0/debian/rules mate-utils-1.26.1/debian/rules --- mate-utils-1.26.0/debian/rules 2020-11-05 12:25:26.000000000 +0000 +++ mate-utils-1.26.1/debian/rules 2021-12-13 07:42:34.000000000 +0000 @@ -18,6 +18,8 @@ dh_install override_dh_auto_configure: + # we need libegg from mate-submodules + cd gsearchtool/mate-submodules/; tar xvJf /usr/src/mate-submodules-source.tar.xz NOCONFIGURE=1 ./autogen.sh dh_auto_configure $(DHFLAGS) -- \ --libexecdir=/usr/lib/mate-utils \ diff -Nru mate-utils-1.26.0/debian/watch mate-utils-1.26.1/debian/watch --- mate-utils-1.26.0/debian/watch 2021-08-21 17:03:06.000000000 +0000 +++ mate-utils-1.26.1/debian/watch 2021-12-13 07:11:14.000000000 +0000 @@ -1,3 +1,3 @@ version=4 -https://pub.mate-desktop.org/releases/([\d+\.]+)/ \ - mate-utils-([\d\.]+)\.tar\.xz +https://git.mate-desktop.org/mate-utils/ \ + snapshot/mate-utils-(\d\.(?:[0-9]+|)[24680]\.\d)\.tar\.xz diff -Nru mate-utils-1.26.0/depcomp mate-utils-1.26.1/depcomp --- mate-utils-1.26.0/depcomp 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/depcomp 1970-01-01 00:00:00.000000000 +0000 @@ -1,791 +0,0 @@ -#! /bin/sh -# depcomp - compile a program generating dependencies as side-effects - -scriptversion=2018-03-07.03; # UTC - -# Copyright (C) 1999-2020 Free Software Foundation, Inc. - -# 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 2, 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 . - -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# Originally written by Alexandre Oliva . - -case $1 in - '') - echo "$0: No command. Try '$0 --help' for more information." 1>&2 - exit 1; - ;; - -h | --h*) - cat <<\EOF -Usage: depcomp [--help] [--version] PROGRAM [ARGS] - -Run PROGRAMS ARGS to compile a file, generating dependencies -as side-effects. - -Environment variables: - depmode Dependency tracking mode. - source Source file read by 'PROGRAMS ARGS'. - object Object file output by 'PROGRAMS ARGS'. - DEPDIR directory where to store dependencies. - depfile Dependency file to output. - tmpdepfile Temporary file to use when outputting dependencies. - libtool Whether libtool is used (yes/no). - -Report bugs to . -EOF - exit $? - ;; - -v | --v*) - echo "depcomp $scriptversion" - exit $? - ;; -esac - -# Get the directory component of the given path, and save it in the -# global variables '$dir'. Note that this directory component will -# be either empty or ending with a '/' character. This is deliberate. -set_dir_from () -{ - case $1 in - */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; - *) dir=;; - esac -} - -# Get the suffix-stripped basename of the given path, and save it the -# global variable '$base'. -set_base_from () -{ - base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` -} - -# If no dependency file was actually created by the compiler invocation, -# we still have to create a dummy depfile, to avoid errors with the -# Makefile "include basename.Plo" scheme. -make_dummy_depfile () -{ - echo "#dummy" > "$depfile" -} - -# Factor out some common post-processing of the generated depfile. -# Requires the auxiliary global variable '$tmpdepfile' to be set. -aix_post_process_depfile () -{ - # If the compiler actually managed to produce a dependency file, - # post-process it. - if test -f "$tmpdepfile"; then - # Each line is of the form 'foo.o: dependency.h'. - # Do two passes, one to just change these to - # $object: dependency.h - # and one to simply output - # dependency.h: - # which is needed to avoid the deleted-header problem. - { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" - sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" - } > "$depfile" - rm -f "$tmpdepfile" - else - make_dummy_depfile - fi -} - -# A tabulation character. -tab=' ' -# A newline character. -nl=' -' -# Character ranges might be problematic outside the C locale. -# These definitions help. -upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ -lower=abcdefghijklmnopqrstuvwxyz -digits=0123456789 -alpha=${upper}${lower} - -if test -z "$depmode" || test -z "$source" || test -z "$object"; then - echo "depcomp: Variables source, object and depmode must be set" 1>&2 - exit 1 -fi - -# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. -depfile=${depfile-`echo "$object" | - sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} -tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} - -rm -f "$tmpdepfile" - -# Avoid interferences from the environment. -gccflag= dashmflag= - -# Some modes work just like other modes, but use different flags. We -# parameterize here, but still list the modes in the big case below, -# to make depend.m4 easier to write. Note that we *cannot* use a case -# here, because this file can only contain one case statement. -if test "$depmode" = hp; then - # HP compiler uses -M and no extra arg. - gccflag=-M - depmode=gcc -fi - -if test "$depmode" = dashXmstdout; then - # This is just like dashmstdout with a different argument. - dashmflag=-xM - depmode=dashmstdout -fi - -cygpath_u="cygpath -u -f -" -if test "$depmode" = msvcmsys; then - # This is just like msvisualcpp but w/o cygpath translation. - # Just convert the backslash-escaped backslashes to single forward - # slashes to satisfy depend.m4 - cygpath_u='sed s,\\\\,/,g' - depmode=msvisualcpp -fi - -if test "$depmode" = msvc7msys; then - # This is just like msvc7 but w/o cygpath translation. - # Just convert the backslash-escaped backslashes to single forward - # slashes to satisfy depend.m4 - cygpath_u='sed s,\\\\,/,g' - depmode=msvc7 -fi - -if test "$depmode" = xlc; then - # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. - gccflag=-qmakedep=gcc,-MF - depmode=gcc -fi - -case "$depmode" in -gcc3) -## gcc 3 implements dependency tracking that does exactly what -## we want. Yay! Note: for some reason libtool 1.4 doesn't like -## it if -MD -MP comes after the -MF stuff. Hmm. -## Unfortunately, FreeBSD c89 acceptance of flags depends upon -## the command line argument order; so add the flags where they -## appear in depend2.am. Note that the slowdown incurred here -## affects only configure: in makefiles, %FASTDEP% shortcuts this. - for arg - do - case $arg in - -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; - *) set fnord "$@" "$arg" ;; - esac - shift # fnord - shift # $arg - done - "$@" - stat=$? - if test $stat -ne 0; then - rm -f "$tmpdepfile" - exit $stat - fi - mv "$tmpdepfile" "$depfile" - ;; - -gcc) -## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. -## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. -## (see the conditional assignment to $gccflag above). -## There are various ways to get dependency output from gcc. Here's -## why we pick this rather obscure method: -## - Don't want to use -MD because we'd like the dependencies to end -## up in a subdir. Having to rename by hand is ugly. -## (We might end up doing this anyway to support other compilers.) -## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like -## -MM, not -M (despite what the docs say). Also, it might not be -## supported by the other compilers which use the 'gcc' depmode. -## - Using -M directly means running the compiler twice (even worse -## than renaming). - if test -z "$gccflag"; then - gccflag=-MD, - fi - "$@" -Wp,"$gccflag$tmpdepfile" - stat=$? - if test $stat -ne 0; then - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - echo "$object : \\" > "$depfile" - # The second -e expression handles DOS-style file names with drive - # letters. - sed -e 's/^[^:]*: / /' \ - -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" -## This next piece of magic avoids the "deleted header file" problem. -## The problem is that when a header file which appears in a .P file -## is deleted, the dependency causes make to die (because there is -## typically no way to rebuild the header). We avoid this by adding -## dummy dependencies for each header file. Too bad gcc doesn't do -## this for us directly. -## Some versions of gcc put a space before the ':'. On the theory -## that the space means something, we add a space to the output as -## well. hp depmode also adds that space, but also prefixes the VPATH -## to the object. Take care to not repeat it in the output. -## Some versions of the HPUX 10.20 sed can't process this invocation -## correctly. Breaking it into two sed invocations is a workaround. - tr ' ' "$nl" < "$tmpdepfile" \ - | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ - | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -hp) - # This case exists only to let depend.m4 do its work. It works by - # looking at the text of this script. This case will never be run, - # since it is checked for above. - exit 1 - ;; - -sgi) - if test "$libtool" = yes; then - "$@" "-Wp,-MDupdate,$tmpdepfile" - else - "$@" -MDupdate "$tmpdepfile" - fi - stat=$? - if test $stat -ne 0; then - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - - if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files - echo "$object : \\" > "$depfile" - # Clip off the initial element (the dependent). Don't try to be - # clever and replace this with sed code, as IRIX sed won't handle - # lines with more than a fixed number of characters (4096 in - # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; - # the IRIX cc adds comments like '#:fec' to the end of the - # dependency line. - tr ' ' "$nl" < "$tmpdepfile" \ - | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ - | tr "$nl" ' ' >> "$depfile" - echo >> "$depfile" - # The second pass generates a dummy entry for each header file. - tr ' ' "$nl" < "$tmpdepfile" \ - | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ - >> "$depfile" - else - make_dummy_depfile - fi - rm -f "$tmpdepfile" - ;; - -xlc) - # This case exists only to let depend.m4 do its work. It works by - # looking at the text of this script. This case will never be run, - # since it is checked for above. - exit 1 - ;; - -aix) - # The C for AIX Compiler uses -M and outputs the dependencies - # in a .u file. In older versions, this file always lives in the - # current directory. Also, the AIX compiler puts '$object:' at the - # start of each line; $object doesn't have directory information. - # Version 6 uses the directory in both cases. - set_dir_from "$object" - set_base_from "$object" - if test "$libtool" = yes; then - tmpdepfile1=$dir$base.u - tmpdepfile2=$base.u - tmpdepfile3=$dir.libs/$base.u - "$@" -Wc,-M - else - tmpdepfile1=$dir$base.u - tmpdepfile2=$dir$base.u - tmpdepfile3=$dir$base.u - "$@" -M - fi - stat=$? - if test $stat -ne 0; then - rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" - exit $stat - fi - - for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" - do - test -f "$tmpdepfile" && break - done - aix_post_process_depfile - ;; - -tcc) - # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 - # FIXME: That version still under development at the moment of writing. - # Make that this statement remains true also for stable, released - # versions. - # It will wrap lines (doesn't matter whether long or short) with a - # trailing '\', as in: - # - # foo.o : \ - # foo.c \ - # foo.h \ - # - # It will put a trailing '\' even on the last line, and will use leading - # spaces rather than leading tabs (at least since its commit 0394caf7 - # "Emit spaces for -MD"). - "$@" -MD -MF "$tmpdepfile" - stat=$? - if test $stat -ne 0; then - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. - # We have to change lines of the first kind to '$object: \'. - sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" - # And for each line of the second kind, we have to emit a 'dep.h:' - # dummy dependency, to avoid the deleted-header problem. - sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" - rm -f "$tmpdepfile" - ;; - -## The order of this option in the case statement is important, since the -## shell code in configure will try each of these formats in the order -## listed in this file. A plain '-MD' option would be understood by many -## compilers, so we must ensure this comes after the gcc and icc options. -pgcc) - # Portland's C compiler understands '-MD'. - # Will always output deps to 'file.d' where file is the root name of the - # source file under compilation, even if file resides in a subdirectory. - # The object file name does not affect the name of the '.d' file. - # pgcc 10.2 will output - # foo.o: sub/foo.c sub/foo.h - # and will wrap long lines using '\' : - # foo.o: sub/foo.c ... \ - # sub/foo.h ... \ - # ... - set_dir_from "$object" - # Use the source, not the object, to determine the base name, since - # that's sadly what pgcc will do too. - set_base_from "$source" - tmpdepfile=$base.d - - # For projects that build the same source file twice into different object - # files, the pgcc approach of using the *source* file root name can cause - # problems in parallel builds. Use a locking strategy to avoid stomping on - # the same $tmpdepfile. - lockdir=$base.d-lock - trap " - echo '$0: caught signal, cleaning up...' >&2 - rmdir '$lockdir' - exit 1 - " 1 2 13 15 - numtries=100 - i=$numtries - while test $i -gt 0; do - # mkdir is a portable test-and-set. - if mkdir "$lockdir" 2>/dev/null; then - # This process acquired the lock. - "$@" -MD - stat=$? - # Release the lock. - rmdir "$lockdir" - break - else - # If the lock is being held by a different process, wait - # until the winning process is done or we timeout. - while test -d "$lockdir" && test $i -gt 0; do - sleep 1 - i=`expr $i - 1` - done - fi - i=`expr $i - 1` - done - trap - 1 2 13 15 - if test $i -le 0; then - echo "$0: failed to acquire lock after $numtries attempts" >&2 - echo "$0: check lockdir '$lockdir'" >&2 - exit 1 - fi - - if test $stat -ne 0; then - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - # Each line is of the form `foo.o: dependent.h', - # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. - # Do two passes, one to just change these to - # `$object: dependent.h' and one to simply `dependent.h:'. - sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" - # Some versions of the HPUX 10.20 sed can't process this invocation - # correctly. Breaking it into two sed invocations is a workaround. - sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ - | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -hp2) - # The "hp" stanza above does not work with aCC (C++) and HP's ia64 - # compilers, which have integrated preprocessors. The correct option - # to use with these is +Maked; it writes dependencies to a file named - # 'foo.d', which lands next to the object file, wherever that - # happens to be. - # Much of this is similar to the tru64 case; see comments there. - set_dir_from "$object" - set_base_from "$object" - if test "$libtool" = yes; then - tmpdepfile1=$dir$base.d - tmpdepfile2=$dir.libs/$base.d - "$@" -Wc,+Maked - else - tmpdepfile1=$dir$base.d - tmpdepfile2=$dir$base.d - "$@" +Maked - fi - stat=$? - if test $stat -ne 0; then - rm -f "$tmpdepfile1" "$tmpdepfile2" - exit $stat - fi - - for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" - do - test -f "$tmpdepfile" && break - done - if test -f "$tmpdepfile"; then - sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" - # Add 'dependent.h:' lines. - sed -ne '2,${ - s/^ *// - s/ \\*$// - s/$/:/ - p - }' "$tmpdepfile" >> "$depfile" - else - make_dummy_depfile - fi - rm -f "$tmpdepfile" "$tmpdepfile2" - ;; - -tru64) - # The Tru64 compiler uses -MD to generate dependencies as a side - # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. - # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put - # dependencies in 'foo.d' instead, so we check for that too. - # Subdirectories are respected. - set_dir_from "$object" - set_base_from "$object" - - if test "$libtool" = yes; then - # Libtool generates 2 separate objects for the 2 libraries. These - # two compilations output dependencies in $dir.libs/$base.o.d and - # in $dir$base.o.d. We have to check for both files, because - # one of the two compilations can be disabled. We should prefer - # $dir$base.o.d over $dir.libs/$base.o.d because the latter is - # automatically cleaned when .libs/ is deleted, while ignoring - # the former would cause a distcleancheck panic. - tmpdepfile1=$dir$base.o.d # libtool 1.5 - tmpdepfile2=$dir.libs/$base.o.d # Likewise. - tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 - "$@" -Wc,-MD - else - tmpdepfile1=$dir$base.d - tmpdepfile2=$dir$base.d - tmpdepfile3=$dir$base.d - "$@" -MD - fi - - stat=$? - if test $stat -ne 0; then - rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" - exit $stat - fi - - for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" - do - test -f "$tmpdepfile" && break - done - # Same post-processing that is required for AIX mode. - aix_post_process_depfile - ;; - -msvc7) - if test "$libtool" = yes; then - showIncludes=-Wc,-showIncludes - else - showIncludes=-showIncludes - fi - "$@" $showIncludes > "$tmpdepfile" - stat=$? - grep -v '^Note: including file: ' "$tmpdepfile" - if test $stat -ne 0; then - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - echo "$object : \\" > "$depfile" - # The first sed program below extracts the file names and escapes - # backslashes for cygpath. The second sed program outputs the file - # name when reading, but also accumulates all include files in the - # hold buffer in order to output them again at the end. This only - # works with sed implementations that can handle large buffers. - sed < "$tmpdepfile" -n ' -/^Note: including file: *\(.*\)/ { - s//\1/ - s/\\/\\\\/g - p -}' | $cygpath_u | sort -u | sed -n ' -s/ /\\ /g -s/\(.*\)/'"$tab"'\1 \\/p -s/.\(.*\) \\/\1:/ -H -$ { - s/.*/'"$tab"'/ - G - p -}' >> "$depfile" - echo >> "$depfile" # make sure the fragment doesn't end with a backslash - rm -f "$tmpdepfile" - ;; - -msvc7msys) - # This case exists only to let depend.m4 do its work. It works by - # looking at the text of this script. This case will never be run, - # since it is checked for above. - exit 1 - ;; - -#nosideeffect) - # This comment above is used by automake to tell side-effect - # dependency tracking mechanisms from slower ones. - -dashmstdout) - # Important note: in order to support this mode, a compiler *must* - # always write the preprocessed file to stdout, regardless of -o. - "$@" || exit $? - - # Remove the call to Libtool. - if test "$libtool" = yes; then - while test "X$1" != 'X--mode=compile'; do - shift - done - shift - fi - - # Remove '-o $object'. - IFS=" " - for arg - do - case $arg in - -o) - shift - ;; - $object) - shift - ;; - *) - set fnord "$@" "$arg" - shift # fnord - shift # $arg - ;; - esac - done - - test -z "$dashmflag" && dashmflag=-M - # Require at least two characters before searching for ':' - # in the target name. This is to cope with DOS-style filenames: - # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. - "$@" $dashmflag | - sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" - rm -f "$depfile" - cat < "$tmpdepfile" > "$depfile" - # Some versions of the HPUX 10.20 sed can't process this sed invocation - # correctly. Breaking it into two sed invocations is a workaround. - tr ' ' "$nl" < "$tmpdepfile" \ - | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ - | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -dashXmstdout) - # This case only exists to satisfy depend.m4. It is never actually - # run, as this mode is specially recognized in the preamble. - exit 1 - ;; - -makedepend) - "$@" || exit $? - # Remove any Libtool call - if test "$libtool" = yes; then - while test "X$1" != 'X--mode=compile'; do - shift - done - shift - fi - # X makedepend - shift - cleared=no eat=no - for arg - do - case $cleared in - no) - set ""; shift - cleared=yes ;; - esac - if test $eat = yes; then - eat=no - continue - fi - case "$arg" in - -D*|-I*) - set fnord "$@" "$arg"; shift ;; - # Strip any option that makedepend may not understand. Remove - # the object too, otherwise makedepend will parse it as a source file. - -arch) - eat=yes ;; - -*|$object) - ;; - *) - set fnord "$@" "$arg"; shift ;; - esac - done - obj_suffix=`echo "$object" | sed 's/^.*\././'` - touch "$tmpdepfile" - ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" - rm -f "$depfile" - # makedepend may prepend the VPATH from the source file name to the object. - # No need to regex-escape $object, excess matching of '.' is harmless. - sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" - # Some versions of the HPUX 10.20 sed can't process the last invocation - # correctly. Breaking it into two sed invocations is a workaround. - sed '1,2d' "$tmpdepfile" \ - | tr ' ' "$nl" \ - | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ - | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" "$tmpdepfile".bak - ;; - -cpp) - # Important note: in order to support this mode, a compiler *must* - # always write the preprocessed file to stdout. - "$@" || exit $? - - # Remove the call to Libtool. - if test "$libtool" = yes; then - while test "X$1" != 'X--mode=compile'; do - shift - done - shift - fi - - # Remove '-o $object'. - IFS=" " - for arg - do - case $arg in - -o) - shift - ;; - $object) - shift - ;; - *) - set fnord "$@" "$arg" - shift # fnord - shift # $arg - ;; - esac - done - - "$@" -E \ - | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ - -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ - | sed '$ s: \\$::' > "$tmpdepfile" - rm -f "$depfile" - echo "$object : \\" > "$depfile" - cat < "$tmpdepfile" >> "$depfile" - sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -msvisualcpp) - # Important note: in order to support this mode, a compiler *must* - # always write the preprocessed file to stdout. - "$@" || exit $? - - # Remove the call to Libtool. - if test "$libtool" = yes; then - while test "X$1" != 'X--mode=compile'; do - shift - done - shift - fi - - IFS=" " - for arg - do - case "$arg" in - -o) - shift - ;; - $object) - shift - ;; - "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") - set fnord "$@" - shift - shift - ;; - *) - set fnord "$@" "$arg" - shift - shift - ;; - esac - done - "$@" -E 2>/dev/null | - sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" - rm -f "$depfile" - echo "$object : \\" > "$depfile" - sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" - echo "$tab" >> "$depfile" - sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -msvcmsys) - # This case exists only to let depend.m4 do its work. It works by - # looking at the text of this script. This case will never be run, - # since it is checked for above. - exit 1 - ;; - -none) - exec "$@" - ;; - -*) - echo "Unknown depmode $depmode" 1>&2 - exit 1 - ;; -esac - -exit 0 - -# Local Variables: -# mode: shell-script -# sh-indentation: 2 -# eval: (add-hook 'before-save-hook 'time-stamp) -# time-stamp-start: "scriptversion=" -# time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC0" -# time-stamp-end: "; # UTC" -# End: diff -Nru mate-utils-1.26.0/.github/FUNDING.yml mate-utils-1.26.1/.github/FUNDING.yml --- mate-utils-1.26.0/.github/FUNDING.yml 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/.github/FUNDING.yml 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,9 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +custom: https://mate-desktop.org/donate/ diff -Nru mate-utils-1.26.0/.github/issue_template.md mate-utils-1.26.1/.github/issue_template.md --- mate-utils-1.26.0/.github/issue_template.md 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/.github/issue_template.md 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,19 @@ +#### Expected behaviour + + +#### Actual behaviour + + +#### Steps to reproduce the behaviour + + +#### MATE general version + + +#### Package version + + +#### Linux Distribution + + +#### Link to bugreport of your Distribution (requirement) diff -Nru mate-utils-1.26.0/git.mk mate-utils-1.26.1/git.mk --- mate-utils-1.26.0/git.mk 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/git.mk 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,400 @@ +# git.mk, a small Makefile to autogenerate .gitignore files +# for autotools-based projects. +# +# Copyright 2009, Red Hat, Inc. +# Copyright 2010,2011,2012,2013 Behdad Esfahbod +# Written by Behdad Esfahbod +# +# Copying and distribution of this file, with or without modification, +# is permitted in any medium without royalty provided the copyright +# notice and this notice are preserved. +# +# The latest version of this file can be downloaded from: +GIT_MK_URL = https://raw.githubusercontent.com/behdad/git.mk/master/git.mk +# +# Bugs, etc, should be reported upstream at: +# https://github.com/behdad/git.mk +# +# To use in your project, import this file in your git repo's toplevel, +# then do "make -f git.mk". This modifies all Makefile.am files in +# your project to -include git.mk. Remember to add that line to new +# Makefile.am files you create in your project, or just rerun the +# "make -f git.mk". +# +# This enables automatic .gitignore generation. If you need to ignore +# more files, add them to the GITIGNOREFILES variable in your Makefile.am. +# But think twice before doing that. If a file has to be in .gitignore, +# chances are very high that it's a generated file and should be in one +# of MOSTLYCLEANFILES, CLEANFILES, DISTCLEANFILES, or MAINTAINERCLEANFILES. +# +# The only case that you need to manually add a file to GITIGNOREFILES is +# when remove files in one of mostlyclean-local, clean-local, distclean-local, +# or maintainer-clean-local make targets. +# +# Note that for files like editor backup, etc, there are better places to +# ignore them. See "man gitignore". +# +# If "make maintainer-clean" removes the files but they are not recognized +# by this script (that is, if "git status" shows untracked files still), send +# me the output of "git status" as well as your Makefile.am and Makefile for +# the directories involved and I'll diagnose. +# +# For a list of toplevel files that should be in MAINTAINERCLEANFILES, see +# Makefile.am.sample in the git.mk git repo. +# +# Don't EXTRA_DIST this file. It is supposed to only live in git clones, +# not tarballs. It serves no useful purpose in tarballs and clutters the +# build dir. +# +# This file knows how to handle autoconf, automake, libtool, gtk-doc, +# gnome-doc-utils, yelp.m4, mallard, intltool, gsettings, dejagnu, appdata, +# appstream, hotdoc. +# +# This makefile provides the following targets: +# +# - all: "make all" will build all gitignore files. +# - gitignore: makes all gitignore files in the current dir and subdirs. +# - .gitignore: make gitignore file for the current dir. +# - gitignore-recurse: makes all gitignore files in the subdirs. +# +# KNOWN ISSUES: +# +# - Recursive configure doesn't work as $(top_srcdir)/git.mk inside the +# submodule doesn't find us. If you have configure.{in,ac} files in +# subdirs, add a proxy git.mk file in those dirs that simply does: +# "include $(top_srcdir)/../git.mk". Add more ..'s to your taste. +# And add those files to git. See vte/gnome-pty-helper/git.mk for +# example. +# + + + +############################################################################### +# Variables user modules may want to add to toplevel MAINTAINERCLEANFILES: +############################################################################### + +# +# Most autotools-using modules should be fine including this variable in their +# toplevel MAINTAINERCLEANFILES: +GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL = \ + $(srcdir)/aclocal.m4 \ + $(srcdir)/autoscan.log \ + $(srcdir)/configure.scan \ + `AUX_DIR=$(srcdir)/$$(cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_AUX_DIR:$$1' ./configure.ac); \ + test "x$$AUX_DIR" = "x$(srcdir)/" && AUX_DIR=$(srcdir); \ + for x in \ + ar-lib \ + compile \ + config.guess \ + config.rpath \ + config.sub \ + depcomp \ + install-sh \ + ltmain.sh \ + missing \ + mkinstalldirs \ + test-driver \ + ylwrap \ + ; do echo "$$AUX_DIR/$$x"; done` \ + `cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_HEADERS:$$1' ./configure.ac | \ + head -n 1 | while read f; do echo "$(srcdir)/$$f.in"; done` +# +# All modules should also be fine including the following variable, which +# removes automake-generated Makefile.in files: +GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN = \ + `cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_FILES:$$1' ./configure.ac | \ + while read f; do \ + case $$f in Makefile|*/Makefile) \ + test -f "$(srcdir)/$$f.am" && echo "$(srcdir)/$$f.in";; esac; \ + done` +# +# Modules that use libtool and use AC_CONFIG_MACRO_DIR() may also include this, +# though it's harmless to include regardless. +GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL = \ + `MACRO_DIR=$(srcdir)/$$(cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_MACRO_DIR:$$1' ./configure.ac); \ + if test "x$$MACRO_DIR" != "x$(srcdir)/"; then \ + for x in \ + libtool.m4 \ + ltoptions.m4 \ + ltsugar.m4 \ + ltversion.m4 \ + lt~obsolete.m4 \ + ; do echo "$$MACRO_DIR/$$x"; done; \ + fi` +# +# Modules that use gettext and use AC_CONFIG_MACRO_DIR() may also include this, +# though it's harmless to include regardless. +GITIGNORE_MAINTAINERCLEANFILES_M4_GETTEXT = \ + `MACRO_DIR=$(srcdir)/$$(cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_MACRO_DIR:$$1' ./configure.ac); \ + if test "x$$MACRO_DIR" != "x$(srcdir)/"; then \ + for x in \ + codeset.m4 \ + extern-inline.m4 \ + fcntl-o.m4 \ + gettext.m4 \ + glibc2.m4 \ + glibc21.m4 \ + iconv.m4 \ + intdiv0.m4 \ + intl.m4 \ + intldir.m4 \ + intlmacosx.m4 \ + intmax.m4 \ + inttypes-pri.m4 \ + inttypes_h.m4 \ + lcmessage.m4 \ + lib-ld.m4 \ + lib-link.m4 \ + lib-prefix.m4 \ + lock.m4 \ + longlong.m4 \ + nls.m4 \ + po.m4 \ + printf-posix.m4 \ + progtest.m4 \ + size_max.m4 \ + stdint_h.m4 \ + threadlib.m4 \ + uintmax_t.m4 \ + visibility.m4 \ + wchar_t.m4 \ + wint_t.m4 \ + xsize.m4 \ + ; do echo "$$MACRO_DIR/$$x"; done; \ + fi` + + + +############################################################################### +# Default rule is to install ourselves in all Makefile.am files: +############################################################################### + +git-all: git-mk-install + +git-mk-install: + @echo "Installing git makefile" + @any_failed=; \ + find "`test -z "$(top_srcdir)" && echo . || echo "$(top_srcdir)"`" -name Makefile.am | while read x; do \ + if grep 'include .*/git.mk' $$x >/dev/null; then \ + echo "$$x already includes git.mk"; \ + else \ + failed=; \ + echo "Updating $$x"; \ + { cat $$x; \ + echo ''; \ + echo '-include $$(top_srcdir)/git.mk'; \ + } > $$x.tmp || failed=1; \ + if test x$$failed = x; then \ + mv $$x.tmp $$x || failed=1; \ + fi; \ + if test x$$failed = x; then : else \ + echo "Failed updating $$x"; >&2 \ + any_failed=1; \ + fi; \ + fi; done; test -z "$$any_failed" + +git-mk-update: + wget $(GIT_MK_URL) -O $(top_srcdir)/git.mk + +.PHONY: git-all git-mk-install git-mk-update + + + +############################################################################### +# Actual .gitignore generation: +############################################################################### + +$(srcdir)/.gitignore: Makefile.am $(top_srcdir)/git.mk $(top_srcdir)/configure.ac + @echo "git.mk: Generating $@" + @{ \ + if test "x$(DOC_MODULE)" = x -o "x$(DOC_MAIN_SGML_FILE)" = x; then :; else \ + for x in \ + $(DOC_MODULE)-decl-list.txt \ + $(DOC_MODULE)-decl.txt \ + tmpl/$(DOC_MODULE)-unused.sgml \ + "tmpl/*.bak" \ + $(REPORT_FILES) \ + $(DOC_MODULE).pdf \ + xml html \ + ; do echo "/$$x"; done; \ + FLAVOR=$$(cd $(top_srcdir); $(AUTOCONF) --trace 'GTK_DOC_CHECK:$$2' ./configure.ac); \ + case $$FLAVOR in *no-tmpl*) echo /tmpl;; esac; \ + if echo "$(SCAN_OPTIONS)" | grep -q "\-\-rebuild-types"; then \ + echo "/$(DOC_MODULE).types"; \ + fi; \ + if echo "$(SCAN_OPTIONS)" | grep -q "\-\-rebuild-sections"; then \ + echo "/$(DOC_MODULE)-sections.txt"; \ + fi; \ + if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ + for x in \ + $(SETUP_FILES) \ + $(DOC_MODULE).types \ + ; do echo "/$$x"; done; \ + fi; \ + fi; \ + if test "x$(DOC_MODULE)$(DOC_ID)" = x -o "x$(DOC_LINGUAS)" = x; then :; else \ + for lc in $(DOC_LINGUAS); do \ + for x in \ + $(if $(DOC_MODULE),$(DOC_MODULE).xml) \ + $(DOC_PAGES) \ + $(DOC_INCLUDES) \ + ; do echo "/$$lc/$$x"; done; \ + done; \ + for x in \ + $(_DOC_OMF_ALL) \ + $(_DOC_DSK_ALL) \ + $(_DOC_HTML_ALL) \ + $(_DOC_MOFILES) \ + $(DOC_H_FILE) \ + "*/.xml2po.mo" \ + "*/*.omf.out" \ + ; do echo /$$x; done; \ + fi; \ + if test "x$(HOTDOC)" = x; then :; else \ + $(foreach project, $(HOTDOC_PROJECTS),echo "/$(call HOTDOC_TARGET,$(project))"; \ + echo "/$(shell $(call HOTDOC_PROJECT_COMMAND,$(project)) --get-conf-path output)" ; \ + echo "/$(shell $(call HOTDOC_PROJECT_COMMAND,$(project)) --get-private-folder)" ; \ + ) \ + for x in \ + .hotdoc.d \ + ; do echo "/$$x"; done; \ + fi; \ + if test "x$(HELP_ID)" = x -o "x$(HELP_LINGUAS)" = x; then :; else \ + for lc in $(HELP_LINGUAS); do \ + for x in \ + $(HELP_FILES) \ + "$$lc.stamp" \ + "$$lc.mo" \ + ; do echo "/$$lc/$$x"; done; \ + done; \ + fi; \ + if test "x$(gsettings_SCHEMAS)" = x; then :; else \ + for x in \ + $(gsettings_SCHEMAS:.xml=.valid) \ + $(gsettings__enum_file) \ + ; do echo "/$$x"; done; \ + fi; \ + if test "x$(appdata_XML)" = x; then :; else \ + for x in \ + $(appdata_XML:.xml=.valid) \ + ; do echo "/$$x"; done; \ + fi; \ + if test "x$(appstream_XML)" = x; then :; else \ + for x in \ + $(appstream_XML:.xml=.valid) \ + ; do echo "/$$x"; done; \ + fi; \ + if test -f $(srcdir)/po/Makefile.in.in; then \ + for x in \ + ABOUT-NLS \ + po/Makefile.in.in \ + po/Makefile.in.in~ \ + po/Makefile.in \ + po/Makefile \ + po/Makevars.template \ + po/POTFILES \ + po/Rules-quot \ + po/stamp-it \ + po/stamp-po \ + po/.intltool-merge-cache \ + "po/*.gmo" \ + "po/*.header" \ + "po/*.mo" \ + "po/*.sed" \ + "po/*.sin" \ + po/$(GETTEXT_PACKAGE).pot \ + intltool-extract.in \ + intltool-merge.in \ + intltool-update.in \ + ; do echo "/$$x"; done; \ + fi; \ + if test -f $(srcdir)/configure; then \ + for x in \ + autom4te.cache \ + configure \ + config.h \ + stamp-h1 \ + libtool \ + config.lt \ + ; do echo "/$$x"; done; \ + fi; \ + if test "x$(DEJATOOL)" = x; then :; else \ + for x in \ + $(DEJATOOL) \ + ; do echo "/$$x.sum"; echo "/$$x.log"; done; \ + echo /site.exp; \ + fi; \ + if test "x$(am__dirstamp)" = x; then :; else \ + echo "$(am__dirstamp)"; \ + fi; \ + if test "x$(findstring libtool,$(LTCOMPILE))" = x -a "x$(findstring libtool,$(LTCXXCOMPILE))" = x -a "x$(GTKDOC_RUN)" = x; then :; else \ + for x in \ + "*.lo" \ + ".libs" "_libs" \ + ; do echo "$$x"; done; \ + fi; \ + for x in \ + .gitignore \ + $(GITIGNOREFILES) \ + $(CLEANFILES) \ + $(PROGRAMS) $(check_PROGRAMS) $(EXTRA_PROGRAMS) \ + $(LIBRARIES) $(check_LIBRARIES) $(EXTRA_LIBRARIES) \ + $(LTLIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LTLIBRARIES) \ + so_locations \ + $(MOSTLYCLEANFILES) \ + $(TEST_LOGS) \ + $(TEST_LOGS:.log=.trs) \ + $(TEST_SUITE_LOG) \ + $(TESTS:=.test) \ + "*.gcda" \ + "*.gcno" \ + $(DISTCLEANFILES) \ + $(am__CONFIG_DISTCLEAN_FILES) \ + $(CONFIG_CLEAN_FILES) \ + TAGS ID GTAGS GRTAGS GSYMS GPATH tags \ + "*.tab.c" \ + $(MAINTAINERCLEANFILES) \ + $(BUILT_SOURCES) \ + $(patsubst %.vala,%.c,$(filter %.vala,$(SOURCES))) \ + $(filter %_vala.stamp,$(DIST_COMMON)) \ + $(filter %.vapi,$(DIST_COMMON)) \ + $(filter $(addprefix %,$(notdir $(patsubst %.vapi,%.h,$(filter %.vapi,$(DIST_COMMON))))),$(DIST_COMMON)) \ + Makefile \ + Makefile.in \ + "*.orig" \ + "*.rej" \ + "*.bak" \ + "*~" \ + ".*.sw[nop]" \ + ".dirstamp" \ + ; do echo "/$$x"; done; \ + for x in \ + "*.$(OBJEXT)" \ + $(DEPDIR) \ + ; do echo "$$x"; done; \ + } | \ + sed "s@^/`echo "$(srcdir)" | sed 's/\(.\)/[\1]/g'`/@/@" | \ + sed 's@/[.]/@/@g' | \ + LC_ALL=C sort | uniq > $@.tmp && \ + mv $@.tmp $@; + +all: $(srcdir)/.gitignore gitignore-recurse-maybe +gitignore: $(srcdir)/.gitignore gitignore-recurse + +gitignore-recurse-maybe: + @for subdir in $(DIST_SUBDIRS); do \ + case " $(SUBDIRS) " in \ + *" $$subdir "*) :;; \ + *) test "$$subdir" = . -o -e "$$subdir/.git" || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) gitignore || echo "Skipping $$subdir");; \ + esac; \ + done +gitignore-recurse: + @for subdir in $(DIST_SUBDIRS); do \ + test "$$subdir" = . -o -e "$$subdir/.git" || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) gitignore || echo "Skipping $$subdir"); \ + done + +maintainer-clean: gitignore-clean +gitignore-clean: + -rm -f $(srcdir)/.gitignore + +.PHONY: gitignore-clean gitignore gitignore-recurse gitignore-recurse-maybe diff -Nru mate-utils-1.26.0/.gitmodules mate-utils-1.26.1/.gitmodules --- mate-utils-1.26.0/.gitmodules 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/.gitmodules 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,4 @@ +[submodule "gsearchtool/mate-submodules"] + path = gsearchtool/mate-submodules + url = https://github.com/mate-desktop/mate-submodules + ignore = untracked diff -Nru mate-utils-1.26.0/gsearchtool/data/Makefile.in mate-utils-1.26.1/gsearchtool/data/Makefile.in --- mate-utils-1.26.0/gsearchtool/data/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/data/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,737 +0,0 @@ -# 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 . - -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 = gsearchtool/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.search-tool.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)$(Utilitiesdir)" \ - "$(DESTDIR)$(appdatadir)" "$(DESTDIR)$(icondir)" -NROFF = nroff -MANS = $(man_MANS) -DATA = $(Utilities_DATA) $(appdata_DATA) $(icon_DATA) -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(srcdir)/org.mate.search-tool.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@ -icondir = $(datadir)/pixmaps/mate-search-tool -icon_DATA = thumbnail_frame.png -gsettingsschema_in_files = org.mate.search-tool.gschema.xml.in -gsettings_SCHEMAS = $(gsettingsschema_in_files:.xml.in=.xml) -appdatadir = $(datadir)/metainfo -appdata_in_files = mate-search-tool.appdata.xml.in -appdata_DATA = $(appdata_in_files:.xml.in=.xml) -man_MANS = mate-search-tool.1 -Utilitiesdir = $(datadir)/applications -Utilities_in_files = mate-search-tool.desktop.in -Utilities_DATA = $(Utilities_in_files:.desktop.in=.desktop) -EXTRA_DIST = \ - $(icon_DATA) \ - $(appdata_in_files) \ - $(Utilities_in_files) \ - $(Utilities_DATA) \ - $(gsettingsschema_in_files) \ - $(man_MANS) - -CLEANFILES = \ - mate-search-tool.appdata.xml \ - mate-search-tool.desktop \ - $(gsettings_SCHEMAS) - -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 gsearchtool/data/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign gsearchtool/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.search-tool.gschema.xml: $(top_builddir)/config.status $(srcdir)/org.mate.search-tool.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-UtilitiesDATA: $(Utilities_DATA) - @$(NORMAL_INSTALL) - @list='$(Utilities_DATA)'; test -n "$(Utilitiesdir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(Utilitiesdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(Utilitiesdir)" || 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)$(Utilitiesdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(Utilitiesdir)" || exit $$?; \ - done - -uninstall-UtilitiesDATA: - @$(NORMAL_UNINSTALL) - @list='$(Utilities_DATA)'; test -n "$(Utilitiesdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(Utilitiesdir)'; $(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-iconDATA: $(icon_DATA) - @$(NORMAL_INSTALL) - @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(icondir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(icondir)" || 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)$(icondir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(icondir)" || exit $$?; \ - done - -uninstall-iconDATA: - @$(NORMAL_UNINSTALL) - @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(icondir)'; $(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)$(Utilitiesdir)" "$(DESTDIR)$(appdatadir)" "$(DESTDIR)$(icondir)"; 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-UtilitiesDATA install-appdataDATA \ - install-iconDATA 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-UtilitiesDATA uninstall-appdataDATA \ - uninstall-iconDATA 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-UtilitiesDATA install-am install-appdataDATA \ - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-iconDATA 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-UtilitiesDATA \ - uninstall-am uninstall-appdataDATA uninstall-iconDATA \ - uninstall-man uninstall-man1 - -.PRECIOUS: Makefile - -.PRECIOUS: $(gsettings_SCHEMAS) -@GSETTINGS_RULES@ - -$(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 $< $@ - -$(Utilities_DATA): $(Utilities_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 $< $@ - -disthook: - cd $(distdir) ; rm -f $(CLEANFILES) - --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 -Nru mate-utils-1.26.0/gsearchtool/data/mate-search-tool.desktop mate-utils-1.26.1/gsearchtool/data/mate-search-tool.desktop --- mate-utils-1.26.0/gsearchtool/data/mate-search-tool.desktop 2021-08-05 19:47:47.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/data/mate-search-tool.desktop 1970-01-01 00:00:00.000000000 +0000 @@ -1,180 +0,0 @@ -[Desktop Entry] -Name[am]=የ ሜት መፈለጊያ መሳሪያ -Name[ar]=أداة بحث متّة -Name[ast]=Ferramienta de gueta de MATE -Name[be]=Пошук файлаў MATE -Name[bg]=Инструмент за търсене на MATE -Name[br]=Benveg klask MATE -Name[ca]=Eina de cerca de MATE -Name[ca@valencia]=Eina de cerca del MATE -Name[cs]=Vyhledávání souborů pro MATE -Name[cy]=Teclyn chwilio MATE -Name[da]=MATE-søgeværktøj -Name[de]=MATE-Suchwerkzeug -Name[el]=Εργαλείο αναζήτησης MATE -Name[en_AU]=MATE Search Tool -Name[en_GB]=MATE Search Tool -Name[es]=Herramienta de búsqueda de MATE -Name[et]=MATE otsimisvahend -Name[fi]=MATE:n hakutyökalu -Name[fr]=Outil de recherche MATE -Name[gl]=Ferramenta de buscas do MATE -Name[he]=כלי החיפוש של MATE -Name[hu]=MATE keresőeszköz -Name[hy]=MATE Որոնման Գործիք -Name[id]=Alat Pencarian MATE -Name[ie]=Utensile de sercha de MATE -Name[it]=Strumento di ricerca di MATE -Name[ja]=MATE 検索ツール -Name[kk]=MATE іздеулер сайманы -Name[ko]=MATE 검색 도구 -Name[lt]=MATE paieškos įrankis -Name[lv]=MATE Meklēšanas Rīks -Name[ms]=Alat Gelintar MATE -Name[nb]=MATE søkeverktøy -Name[nl]=MATE Zoekprogramma -Name[oc]=Aisina de recèrca MATE -Name[pl]=Narzędzie wyszukiwania MATE -Name[pt]=Ferramenta de pesquisa do MATE -Name[pt_BR]=Ferramenta de Busca MATE -Name[ro]=Unealtă de căutare MATE -Name[ru]=Средство поиска MATE -Name[sk]=Vyhľadávací nástroj MATE -Name[sl]=MATE orodje za iskanje -Name[sr]=Мејтов алат претраге -Name[sv]=MATE Sökverktyg -Name[th]=เครื่องมือค้นหาของ MATE -Name[tr]=MATE Arama Aracı -Name[uk]=Знаряддя пошуку MATE -Name[uz]=MATE Qidiruv Vositasi -Name[zh_CN]=MATE 搜索工具 -Name[zh_TW]=MATE 搜尋工具 -Name=MATE Search Tool -Comment[af]=Vind dokumente of gidse om die rekenaar volgens naam of inhoud -Comment[am]=ሰነዶች ወይንም ፎልደሮች በዚህ ኮምፒዩተር ውስጥ በ ስም ወይንም በ ይዞታ ፈልጎ ማግኛ -Comment[ar]=اعثر على المستندات و الملفات على هذا الحاسوب بالاسم أو المحتوى -Comment[as]=নাম বা অন্তৰ্ভুক্ত বিষয় অনুসাৰে এই কম্পিউটাৰে নথিপত্ৰ বা ফোল্ডাৰ অনুসন্ধান কৰক -Comment[ast]=Llocalice documentos y carpetes pol nome o conteníu nesti equipu -Comment[be]=Лакальныя дакументы і каталогі на гэтым камп'ютары паводле назвы ці змесціва -Comment[bg]=Намиране на документи и папки на този компютър по име или съдържание -Comment[bn]=নাম অথবা অন্তর্ভুক্ত বিষয় অনুসারে এই কম্পিউটারে ফাইল অথবা ফোল্ডার অনুসন্ধান করুন -Comment[bn_IN]=নাম অথবা অন্তর্ভুক্ত বিষয় অনুসারে এই কম্পিউটারে ফাইল অথবা ফোল্ডার অনুসন্ধান করুন -Comment[br]=Lec'hiaduriñ an teulioù hag an teuliadoù war an urzhiataer-mañ dre anv pe dre endalc'had -Comment[ca]=Localitzeu els documents i les carpetes en aquest ordinador pel nom o contingut -Comment[ca@valencia]=Localitzeu documents i carpetes en aquest ordinador pel nom o contingut -Comment[cmn]=以名稱或內容尋找此電腦中的文件及資料夾 -Comment[crh]=Bu bilgisayardaki vesiqalarnı ve cilbentlerni isimge yaki mündericege köre qonumlandırıñız -Comment[cs]=Hledat dokumenty a složky v tomto počítači podle názvu či obsahu -Comment[cy]=Lleoli dogfennau neu blygellau ar y cyfrifiadur hwn yn ôl enw neu gynnwys -Comment[da]=Find dokumenter og mapper på denne computer ved navn eller indhold -Comment[de]=Dateien und Ordner, auf diesem Rechner, nach Namen oder Inhalt suchen -Comment[dz]=གློག་རིག་འདི་གུ་ཡོད་པའི་ ཡིག་ཆ་དང་སྣོད་འཛིན་ཚུ་ མིང་གི་ཐོག་ལས་ ཡང་ན་ ནང་དོན་གྱི་ཐོག་ལས་ ག་ཡོད་འཚོལ། -Comment[el]=Εντοπισμός εγγράφων και φακέλων σε αυτό τον υπολογιστή με βάση το όνομα ή το περιεχόμενο -Comment[en_AU]=Locate documents and folders on this computer by name or content -Comment[en_CA]=Locate documents and folders on this computer by name or content -Comment[en_GB]=Locate documents and folders on this computer by name or content -Comment[eo]=Trovi dokumentojn kaj dosierujojn en ĉi tiu komputilo laŭ nomo aŭ enhavo -Comment[es]=Encuentre documentos y carpetas en este equipo por nombre o por contenido -Comment[es_CO]=Buscar documentos y carpetas en este equipo por nombre o contenido -Comment[et]=Arvutis asuvate dokumentide ja kaustade otsimine nime või sisu järgi -Comment[eu]=Lokalizatu dokumentuak eta karpetak ordenagailu honetan izen edo edukiaren arabera -Comment[fa]=پیدا کردن نوشتارها و پوشه‌های موجود در این کامپیوتر با استفاده از نام یا محتوای آنها -Comment[fi]=Etsi asiakirjoja tai kansioita tietokoneelta nimen tai sisällön perusteella -Comment[fr]=Localiser les documents et dossiers de cet ordinateur par leur nom ou leur contenu -Comment[fur]=Beche documents e cartelis su chest computer par nom o par contignût -Comment[fy]=Dokuminten en mappen op dizze kompjûter fine mei namme or ynhâld -Comment[ga]=Aimsigh cáipéisí agus fillteáin ar an ríomhaire seo trí ainm nó ábhar -Comment[gl]=Localizar documentos e cartafoles neste computador por nome ou por contido -Comment[gu]=આ કમ્પ્યૂટર પર નામ અથવા સમાવિષ્ટ દ્વારા દસ્તાવેજો અને ફોલ્ડરો સ્થિત કરો -Comment[he]=איתור מסמכים ותיקיות במחשב זה על פי שם או תוכן -Comment[hi]=नाम व सामग्री के आधार पर इस कंप्यूटर पर दस्तावेज व फोल्डर लोकेट करें -Comment[hr]=Pronalazi zapise i mape u ovom računalu po nazivu ili sadržaju -Comment[hu]=Dokumentumok és mappák keresése név vagy tartalom szerint a számítógépen -Comment[hy]=Դասավորել փաստաթղթերն ու պանակները ըստ անվան կամ պարունակության -Comment[id]=Tentukan lokasi dokumen atau folder pada komputer ini sesuai nama ataupun isinya -Comment[ie]=Trovar documentes e fólderes de ti-ci computator per nómine o contenete -Comment[is]=Staðsetja skrár og möppur á þessari tölvu eftir nafni eða innihaldi -Comment[it]=Individua documenti e cartelle su questo computer per nome o contenuto -Comment[ja]=このコンピュータから名前や内容でドキュメントとフォルダーを特定します -Comment[ka]=ფაილების და დასტების სახელის ან შინაარსი მიხედვით მოძებნა -Comment[kk]=Бұл компьютердегі құжаттар және бумаларды атауы бойынша іздеу -Comment[kn]=ಹೆಸರು ಅಥವ ವಿಷಯಗಳ ಆಧಾರದ ಮೇಲೆ ಈ ಗಣಕ ಯಂತ್ರದಲ್ಲಿನ ದಸ್ತಾವೇಜುಗಳನ್ನು ಮತ್ತು ಕಡತಕೋಶಗಳನ್ನು ಹುಡುಕಿ -Comment[ko]=이 컴퓨터의 문서나 폴더를 이름이나 내용으로 찾습니다 -Comment[ky]=Бул компьютерден аты же мазмуну боюнча иш кагаздарды жана папкаларды табуу -Comment[lt]=Rasti kompiuteryje esančius dokumentus pagal pavadinimą ar turinį -Comment[lv]=Meklē datorā mapes un failus pēc to nosaukumiem un satura -Comment[mai]=नाम आ सामग्री क' आधार पर एहि कंप्यूटर पर दस्ताबेज आ फोल्डर लोकेट करू -Comment[mg]=Hitady tahirin-kevitra sy laha-tahiry araka ny anarany na ny mpiatiny anatin'ity solosaina ity -Comment[mk]=Лоцирај ги документите и папките на овој компјутер по име или содржина -Comment[ml]=പേരു് അല്ലെങ്കില്‍ ഉള്ളടക്കമനുസരിച്ചു് ഈ കമ്പ്യൂട്ടറില്‍ വിവരണങ്ങള്‍ അല്ലെങ്കില്‍ ഫോള്‍ഡറുകള്‍ കണ്ടുപിടിക്കുക -Comment[mr]=या संगणकावरील दस्तऐवज व फोल्डर नाव विषयसूचीनुरूप शोधा -Comment[ms]=Cari dokumen dan folder pada komputer ini berdasarkan nama atau kandungan -Comment[nb]=Finn dokumenter og mapper på denne datamaskinen etter navn eller innhold -Comment[ne]=यस कम्प्युटरमा नाम वा सामाग्री अनुरूप कागजात र फोल्डर स्थापना गर्नुहोस् -Comment[nl]=Zoek documenten en mappen op deze computer op naam of inhoud -Comment[nn]=Finn dokument og mapper på denne datamaskinen etter namn eller innhald -Comment[oc]=Localizar de documents e de repertòris sus aqueste ordenador per nom o per contengut -Comment[or]=ନାମ କିମ୍ବା ସୂଚୀ ଅନୁସାରେ ଏହି କମ୍ପୁଟରରେ ଦଲିଲ ଏବଂ ଫୋଲଡର୍ ମାନଙ୍କର ଅବସ୍ଥିତି ନିର୍ଣ୍ଣୟ କରନ୍ତୁ -Comment[pa]=ਇਹ ਕੰਪਿਊਟਰ ਉੱਤੇ ਦਸਤਾਵੇਜ਼ ਅਤੇ ਫੋਲਡਰਾਂ ਨੂੰ ਨਾਂ ਜਾਂ ਪਰਸੰਗ ਮੁਤਾਬਕ ਲੱਭੋ -Comment[pl]=Wyszukuje dokumenty i katalogi na komputerze po nazwie lub treści -Comment[ps]=په دې سولګر کښې لاسوندونه او پوښۍ په نوم يا منځپانګې وځاييزوﺉ -Comment[pt]=Localizar documentos e pastas neste computador por nome ou conteúdo -Comment[pt_BR]=Localizar documentos e pastas neste computador por nome ou conteúdo -Comment[ro]=Găsiți documente și dosare pe acest calculator după nume sau conținut -Comment[ru]=Искать документы и папки на этом компьютере по имени или по содержанию -Comment[si]=නමින් හෝ අන්තර්ගතයෙන් ලේඛන හෝ බහලුම් පිහිටුම් සොයාගන්න -Comment[sk]=Vyhľadať dokumenty a priečinky na tomto počítači podľa názvu alebo obsahu -Comment[sl]=Krajevno iskanje dokumentov in map po imenu ali vsebini -Comment[sq]=Gjej dokumenta dhe dosje në këtë kompjuter me anë të emrit apo përmbajtjes -Comment[sr]=Пронађите документа и фасцикле на овом рачунару према називу или садржају -Comment[sr@latin]=Pronaći dokumente ili direktorijume na računaru pomiću imena ili sadržaja -Comment[sv]=Lokalisera dokument och mappar på denna dator efter namn eller innehåll -Comment[ta]=இந்த கணினியில் உள்ள ஆவணங்கள் அல்லது அடைவுகளை பெயராலோ உள்ளடக்கத்தாலோ கண்டுபிடிக்கவும் -Comment[te]=నామము లేదా సారముల ద్వారా పత్రములను మరియు సంచయాలను ఈ కంప్యూటర్ లో గుర్తించండి -Comment[th]=ค้นหาเอกสารและโฟลเดอร์ในคอมพิวเตอร์นี้ด้วยชื่อหรือเนื้อหา -Comment[tr]=Bu bilgisayardaki belgeleri ve dizinleri ismi ya da içeriği ile konumlandırın -Comment[ug]=بۇ كومپيۇتېردىكى پۈتۈك ۋە قىسقۇچلارنى ئاتى ياكى مەزمۇنى بويىچە ئورۇن بېكىتىدۇ -Comment[uk]=Шукати документи та теки на цьому комп'ютері за назвою, чи вмістом -Comment[ur]=نام یا مواد سے اس کمپیوٹر میں دستاویزات اور فولڈر تلاش کریں -Comment[uz]=Ushbu kompyuterdagi jildlar va hujjatlarni nomi yoki tarkibi boʻyicha joylashtirish -Comment[vi]=Trên máy tính này, tìm tài liệu và thư mục theo tên hay nội dung -Comment[zh_CN]=按照名称或内容定位此计算机中的文档和文件夹 -Comment[zh_HK]=以名稱或內容尋找此電腦中的文件及資料夾 -Comment[zh_TW]=以名稱或內容尋找此電腦中的文件及資料夾 -Comment=Locate documents and folders on this computer by name or content -Exec=mate-search-tool -# Translators: Do NOT translate or transliterate this text (this is an icon file name)! -Icon=system-search -Terminal=false -Type=Application -StartupNotify=true -Categories=GTK;Utility;Core; -# Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -Keywords[ca]=MATE;cerca;fitxers;trobar;documents;carpetes;ordinador;nom;contingut;buscar;eina; -Keywords[cs]=MATE;vyhledávání;soubory;umístění;dokumenty;dokumentů;složky;složek;počítač;název;obsah;najít;nástroj; -Keywords[da]=MATE;search;files;locate;documents;folders;computer;name;content;find;tool;søg;søgning;filer:find;dokumenter;mapper;navn;indhold;værktøj; -Keywords[es]=MATE;buscar;archivos;localizar;documentos;carpetas;equipo;nombre;contenido;encontrar;herramienta; -Keywords[fr]=MATE;search;files;locate;documents;folders;computer;name;content;find;tool; -Keywords[gl]=MATE;busca;ficheiros;localizar;documentos;cartafoles;computador;nome;contido;atopar;ferramenta; -Keywords[id]=MATE;cari;berkas;temukan;dokumen;folder;komputer;nama;isi;alat;perkakas; -Keywords[it]=MATE;search;files;locate;documents;folders;computer;name;content;find;tool; -Keywords[ja]=MATE;search;files;locate;documents;folders;computer;name;content;find;tool; -Keywords[ko]=MATE;MATE;search;검색;files;파일;locate;위치;documents;문서;folder;폴더;디렉터리;computer;컴퓨터;name;이름;명칭;content;내용;컨텐츠;find;찾기;tool;도구; -Keywords[lt]=MATE;paieška;ieška;failai;vieta;dokumentai;aplankai;kompiuteris;vardas;pavadinimas;turinys;rasti;įrankis; -Keywords[ms]=MATE;gelintar;fail;temui;dokumen;folder;komputer;nama;kandungan;cari;alat; -Keywords[nb]=MATE;søk;filer;let;dokumenter;mapper;datamaskin;navn;innhold;finn;verktøy; -Keywords[nl]=MATE;zoeken;bestanden;vinden;documenten;mappen;computer;naam;inhoud;gereedschap; -Keywords[oc]=MATE;search;files;locate;documents;folders;computer;name;content;find;tool;ordenador;ordinador;ordinator;contengut;fichièr;recèrca;nom;trobar; -Keywords[pl]=MATE;wyszukiwanie;pliki;lokalizować;dokumenty;katalogi;komputer;nazwa;zawartość;znajdź;narzędzie; -Keywords[ru]=MATE;search;files;locate;documents;folders;computer;name;content;find;tool;поиск;файлы;найти;документы;папки;компьютер;имя;содержимое;поиск;утилита; -Keywords[sr]=Мејт;тражи;датотеке;лоцирај;документа;фасцикле;рачунар;назив;садржај;нађи;алат; -Keywords[tr]=MATE;arama;dosyalar;konum;belgeler;dizinler;bilgisayar;ad;içerik;araç; -Keywords[uk]=MATE;search;files;locate;documents;folders;computer;name;content;find;tool;мате;пошук;файли;розташування;документи;теки;комп'ютер;назва;ім'я;вміст;пошук;знайти;інструмент; -Keywords[zh_CN]=MATE;search;files;locate;documents;folders;computer;name;content;find;tool;搜索;文件;定位;文档;文件夹;计算机;名称;内容;查找;工具; -Keywords[zh_TW]=MATE;search;files;locate;documents;folders;computer;name;content;find;tool; -Keywords=MATE;search;files;locate;documents;folders;computer;name;content;find;tool; -OnlyShowIn=MATE; -X-MATE-DocPath=mate-search-tool/mate-search-tool.xml -X-MATE-Bugzilla-Bugzilla=MATE -X-MATE-Bugzilla-Product=mate-utils -X-MATE-Bugzilla-Component=gsearchtool diff -Nru mate-utils-1.26.0/gsearchtool/help/af/index.docbook mate-utils-1.26.1/gsearchtool/help/af/index.docbook --- mate-utils-1.26.0/gsearchtool/help/af/index.docbook 2021-08-05 19:47:48.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/af/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Inleiding - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Gebruik - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Beskrywing - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Gewysigde datum later as - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Lêer is leeg - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Vertoon verborge lêers en rugsteunlêers - - Include hidden and backup files in the search. - - - - Volg simboliese skakels - - Follow symbolic links when searching for files. - - - - Sluit ander lêerstelsels uit - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Opdraglyn - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/af/legal.xml mate-utils-1.26.1/gsearchtool/help/af/legal.xml --- mate-utils-1.26.0/gsearchtool/help/af/legal.xml 2021-08-05 19:47:48.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/af/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/am/index.docbook mate-utils-1.26.1/gsearchtool/help/am/index.docbook --- mate-utils-1.26.0/gsearchtool/help/am/index.docbook 2021-08-05 19:47:48.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/am/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - መግቢያ - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - አጠቃቀም - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - ይጫኑ መጨመሪያ. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - መግለጫ - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - የ ተሻሻለበት ቀን ይበልጣል ከ - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - ፋይሉ ባዶ ነው - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - ባለቤቱ አይታወቅም - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - የተደበቁ እና ተተኪ ፋይሎችን ማሳያ - - Include hidden and backup files in the search. - - - - የ ምልክቱን አገናኝ ይከተሉ - - Follow symbolic links when searching for files. - - - - ሌሎች የ ፋይል ስርአቶች አታካትት - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - የ ትእዛዝ መስመር - - Execute the following command: dconf-editor - - - - - - በፍጥነት መፈለጊያን ማሰናከያ - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - በፍጥነት መፈለጊያ ለ ሁለተኛ ጊዜ ማሰናከያ - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - በፍጥነት መፈለጊያ መንገዶች አያካትትም - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - በፍጥነት መፈለጊያ ለ ሁለተኛ ጊዜ መንገዶች አያካትትም - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - ተጨማሪ ምርጫዎች ማሳያ - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/am/legal.xml mate-utils-1.26.1/gsearchtool/help/am/legal.xml --- mate-utils-1.26.0/gsearchtool/help/am/legal.xml 2021-08-05 19:47:48.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/am/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ar/index.docbook mate-utils-1.26.1/gsearchtool/help/ar/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ar/index.docbook 2021-08-05 19:47:48.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ar/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - مشروع دليل MATE - - - مشروع دليل GNOME - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - آراء وانطباعات - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - مقدمة - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - الاستخدام - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - الوصف - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - تاريخ التّعديل أكثر من - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - الملف فارغ - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - المالك غير معرّف - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - أظهر الملفّات المخبّأة وملفّات الحفظ الاحتياطي - - Include hidden and backup files in the search. - - - - تتبع الوصلات الرمزية - - Follow symbolic links when searching for files. - - - - استبعد أنظمة الملفّات الأخرى - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - سطر الأوامر - - Execute the following command: dconf-editor - - - - - - عطّل البحث السّريع - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - عطّل الفحص الثاني للبحث السّريع - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - المسارات المستثناة من البحث السّريع - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - المسارات المستثناة من البحث السريع الثاني - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - اعرض الخيارات الإضافية - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ar/legal.xml mate-utils-1.26.1/gsearchtool/help/ar/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ar/legal.xml 2021-08-05 19:47:48.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ar/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/as/index.docbook mate-utils-1.26.1/gsearchtool/help/as/index.docbook --- mate-utils-1.26.0/gsearchtool/help/as/index.docbook 2021-08-05 19:47:48.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/as/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - ভূমিকা - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - বিৱৰণ - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - সৰ্বশেষ পৰিবৰ্তনৰ তাৰিখ চিহ্নিত সংখ্যাৰ ঊৰ্ধ্বে - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - ৰিক্ত নথিপত্ৰ - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - অজ্ঞাত মালিকেৰ অধীন - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - আড়াল কৰা আৰু ব্যাক-আপ নথিপত্ৰ প্ৰদৰ্শন কৰা হ'ব - - Include hidden and backup files in the search. - - - - সিম্বলিক লিঙ্ক অনুসৰণ কৰা হ'ব - - Follow symbolic links when searching for files. - - - - অন্যান্য নথিপত্ৰ-প্ৰণালী অন্তৰ্ভুক্ত কৰা ন'হ'ব - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - কমান্ড-লাইন - - Execute the following command: dconf-editor - - - - - - ঝটপট অনুসন্ধান ব্যৱস্থা নিষ্ক্ৰিয় কৰা হ'ব - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - ঝটপট অনুসন্ধান আৰু দ্বিতীয় স্কেন ব্যৱস্থা নিষ্ক্ৰিয় কৰক - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - ঝটপট অনুসন্ধান কৰ্মে উপেক্ষিত পাথ - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - ঝটপট অনুসন্ধান আৰু দ্বিতীয় স্কেন কৰ্মে উপেক্ষিত পাথ - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - অতিৰিক্ত বিকল্প প্ৰদৰ্শন কৰা হ'ব - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/as/legal.xml mate-utils-1.26.1/gsearchtool/help/as/legal.xml --- mate-utils-1.26.0/gsearchtool/help/as/legal.xml 2021-08-05 19:47:48.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/as/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ast/index.docbook mate-utils-1.26.1/gsearchtool/help/ast/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ast/index.docbook 2021-08-05 19:47:49.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ast/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introducción - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usu - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Descripción - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Data de modificación superior a - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - El ficheru ta baleru - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - El propietariu ye desconocíu - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Amosar los ficheros anubríos y les copies de respaldu - - Include hidden and backup files in the search. - - - - Siguir los enllaces simbólicos - - Follow symbolic links when searching for files. - - - - Escluyir otros sistemes de ficheros - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Llinia de comandu - - Execute the following command: dconf-editor - - - - - - Desactivar la «Gueta rápida» - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Desactivar el «Segundo analís de la gueta rápida» - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Gueta rápida de rutes excluyíes - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Segundu analís de la gueta rápida de rutes excluyíes - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Amosar opciones adicionales - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ast/legal.xml mate-utils-1.26.1/gsearchtool/help/ast/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ast/legal.xml 2021-08-05 19:47:49.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ast/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/az/index.docbook mate-utils-1.26.1/gsearchtool/help/az/index.docbook --- mate-utils-1.26.0/gsearchtool/help/az/index.docbook 2021-08-05 19:47:49.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/az/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - İzahat - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Təkmilləşdirmə tarixi bundan _sonra olsun - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Fayl boşdur - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Namə'lum yiyə - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Gizli və ehtiyat fayllarını göstər - - Include hidden and backup files in the search. - - - - Yumuşaq bağları izlə - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Əmr Sətiri - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/az/legal.xml mate-utils-1.26.1/gsearchtool/help/az/legal.xml --- mate-utils-1.26.0/gsearchtool/help/az/legal.xml 2021-08-05 19:47:49.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/az/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/be/index.docbook mate-utils-1.26.1/gsearchtool/help/be/index.docbook --- mate-utils-1.26.0/gsearchtool/help/be/index.docbook 2021-08-05 19:47:49.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/be/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Уводзіны - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - доля - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Апісанне - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - _Дата змянення большая за - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Файл пусты - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Уладальнік не вызначаны - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Паказваць схаваныя і рэзерваваныя файлы - - Include hidden and backup files in the search. - - - - Улічваць сімвальныя спасылкі - - Follow symbolic links when searching for files. - - - - Выключыць астатнія файлавыя сістэмы - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Загадны радок - - Execute the following command: dconf-editor - - - - - - Адключыць Хуткі пошук - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Забараніць другі праход хуткага пошуку - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Шляхі, выключаныя з хуткага пошуку - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Шляхі, выключаныя з другога праходу хуткага пошуку - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Паказаць дадатковыя параметры - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/be/legal.xml mate-utils-1.26.1/gsearchtool/help/be/legal.xml --- mate-utils-1.26.0/gsearchtool/help/be/legal.xml 2021-08-05 19:47:49.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/be/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/bg/index.docbook mate-utils-1.26.1/gsearchtool/help/bg/index.docbook --- mate-utils-1.26.0/gsearchtool/help/bg/index.docbook 2021-08-05 19:47:49.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/bg/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - Проектът за документация на MATE - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Обратна връзка - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Въведение - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Употреба - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Описание - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Датата на промяна е сл_ед - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Файлът е празен - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Собственикът не е разпознат - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Скритите файлове и папки да се показват - - Include hidden and backup files in the search. - - - - Символните връзки се следват - - Follow symbolic links when searching for files. - - - - Изключване на други файлови системи - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Меню Програми - - Choose System Toolsdconf Editor. - - - - Команден ред - - Execute the following command: dconf-editor - - - - - - Спиране на бързо търсене - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Спиране на повторното _бързо търсене - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Пътища, пропускани при бързото търсене - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Пътища, пропускани на втория пас при бързото търсене - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Допълнителни условия - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/bg/legal.xml mate-utils-1.26.1/gsearchtool/help/bg/legal.xml --- mate-utils-1.26.0/gsearchtool/help/bg/legal.xml 2021-08-05 19:47:49.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/bg/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/bn/index.docbook mate-utils-1.26.1/gsearchtool/help/bn/index.docbook --- mate-utils-1.26.0/gsearchtool/help/bn/index.docbook 2021-08-05 19:47:49.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/bn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - ভূমিকা - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - ব্যবহার প্রণালী - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - বিবরণ - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - সর্বশেষ পরিবর্তনের তারিখ চিহ্নিত সংখ্যার ঊর্ধ্বে - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - ফাঁকা ফাইল - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - অজ্ঞাত মালিকের অধীন - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - আড়াল করা ও ব্যাক-আপ ফাইল প্রদর্শন করা হবে - - Include hidden and backup files in the search. - - - - প্রতিকী লিংক অনুসরণ করা হবে - - Follow symbolic links when searching for files. - - - - অন্যান্য ফাইল-সিস্টেম অন্তর্ভুক্ত করা হবে না - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - কমান্ড-লাইন - - Execute the following command: dconf-editor - - - - - - দ্রুত অনুসন্ধান ব্যবস্থা নিষ্ক্রিয় করা হবে - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - দ্রুত অনুসন্ধান ও দ্বিতীয় স্ক্যান ব্যবস্থা নিষ্ক্রিয় করুন - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - দ্রুত অনুসন্ধান কর্মে উপেক্ষিত পাথ - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - দ্রুত অনুসন্ধান ও দ্বিতীয় স্ক্যান কর্মে উপেক্ষিত পাথ - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - অতিরিক্ত অপশন প্রদর্শন করা হবে - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/bn/legal.xml mate-utils-1.26.1/gsearchtool/help/bn/legal.xml --- mate-utils-1.26.0/gsearchtool/help/bn/legal.xml 2021-08-05 19:47:49.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/bn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/bn_IN/index.docbook mate-utils-1.26.1/gsearchtool/help/bn_IN/index.docbook --- mate-utils-1.26.0/gsearchtool/help/bn_IN/index.docbook 2021-08-05 19:47:49.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/bn_IN/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - ভূমিকা - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - ব্যবহার প্রণালী - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - বিবরণ - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - সর্বশেষ পরিবর্তনের তারিখ চিহ্নিত সংখ্যার ঊর্ধ্বে - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - ফাঁকা ফাইল - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - অজ্ঞাত মালিকের অধীন - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - আড়াল করা ও ব্যাক-আপ ফাইল প্রদর্শন করা হবে - - Include hidden and backup files in the search. - - - - সিম্বলিক লিঙ্ক অনুসরণ করা হবে - - Follow symbolic links when searching for files. - - - - অন্যান্য ফাইল-সিস্টেম অন্তর্ভুক্ত করা হবে না - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - কমান্ড-লাইন - - Execute the following command: dconf-editor - - - - - - ঝটপট অনুসন্ধান ব্যবস্থা নিষ্ক্রিয় করা হবে - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - ঝটপট অনুসন্ধান ও দ্বিতীয় স্ক্যান ব্যবস্থা নিষ্ক্রিয় করুন - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - ঝটপট অনুসন্ধান কর্মে উপেক্ষিত পাথ - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - ঝটপট অনুসন্ধান ও দ্বিতীয় স্ক্যান কর্মে উপেক্ষিত পাথ - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - অতিরিক্ত বিকল্প প্রদর্শন করা হবে - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/bn_IN/legal.xml mate-utils-1.26.1/gsearchtool/help/bn_IN/legal.xml --- mate-utils-1.26.0/gsearchtool/help/bn_IN/legal.xml 2021-08-05 19:47:49.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/bn_IN/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/br/index.docbook mate-utils-1.26.1/gsearchtool/help/br/index.docbook --- mate-utils-1.26.0/gsearchtool/help/br/index.docbook 2021-08-05 19:47:49.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/br/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Arver - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Deskrivadur - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Deiziad an daskemm koshoc'h eget - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Goullo eo ar restr - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Dianavezet eo ar perc'henner - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Diskouez ar restroù gwarediñ ha kuzh - - Include hidden and backup files in the search. - - - - Heuliañ an ereoù arouezel - - Follow symbolic links when searching for files. - - - - Ezlakaat ar reizhiad restroù all - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Linenn arc'had - - Execute the following command: dconf-editor - - - - - - Diweredekaat ar c'hlask herrek - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Diweredekaat eil c'hwilervadur ar c'hlask herrek - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Treugoù ezlakaet diouzh ar c'hlask herrek - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Treugoù ezlakaet diouzh eil c'hwilervadur ar c'hlask herrek - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Diskouez an dibarzhioù ouzhpenn - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/br/legal.xml mate-utils-1.26.1/gsearchtool/help/br/legal.xml --- mate-utils-1.26.0/gsearchtool/help/br/legal.xml 2021-08-05 19:47:49.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/br/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/bs/index.docbook mate-utils-1.26.1/gsearchtool/help/bs/index.docbook --- mate-utils-1.26.0/gsearchtool/help/bs/index.docbook 2021-08-05 19:47:49.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/bs/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Opis - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Datum promijenjem prije - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Datoteka je prazna - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Vlasnik nije prepoznat - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Pokaži skrivene datoteke i zaštitne kopije datoteka - - Include hidden and backup files in the search. - - - - Prati simboličke veze - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Komandna linija - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/bs/legal.xml mate-utils-1.26.1/gsearchtool/help/bs/legal.xml --- mate-utils-1.26.0/gsearchtool/help/bs/legal.xml 2021-08-05 19:47:49.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/bs/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ca/index.docbook mate-utils-1.26.1/gsearchtool/help/ca/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ca/index.docbook 2021-08-05 19:47:50.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ca/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,449 +0,0 @@ - - - - - - - -]> - - -
- - - - Manual de la cerca de fitxers - - - Una eina de cerca per trobar fitxers, carpetes i documents al vostre ordinador. - - - 2015-2021 Projecte de documentació de MATE - 2005 Dennis Cranston - 2002 2003 2004 Sun Microsystems - 2000 Alexander Kirillov - - - Projecte de documentació de MATE - - - Projecte de documentació de GNOME - - - - - - Equip de documentació de MATE Mantenidor de cerca de fitxers - Dennis Cranston Mantenidor de cerca de fitxers
dennis_cranston@yahoo.com
- Sun Equip de documentació de GNOME Sun Microsystems
- Alexander Kirillov Projecte de documentació de GNOME
kirillov@math.sunysb.edu
- - - - - - Versió 1.10 del manual de cerca de fitxers Juliol de 2015 - Wolfgang Ulbrich - Mantenidor de cerca de fitxers - - Versió 27 del manual de cerca de fitxers Juny de 2005 - Joachim Noreiko jnoreiko@yahoo.com - Mantenidor de cerca de fitxers - - Versió 2.6 del manual de cerca de fitxers Gener de 2005 - Dennis Cranston dennis_cranston@yahoo.com - Mantenidor de cerca de fitxers - - Versió 2.4 del manual de cerca de fitxers Febrer de 2004 - Equip de documentació de GNOME de Sun - Projecte de documentació de GNOME - - Versió 2.3 del manual de cerca de fitxers Setembre de 2002 - Equip de documentació de GNOME de Sun - Projecte de documentació de GNOME - - Versió 2.2 del manual de cerca de fitxers Agost de 2002 - Equip de documentació de GNOME de Sun - Projecte de documentació de GNOME - - Versió 2.1 del manual de cerca de fitxers Juliol de 2002 - Equip de documentació de GNOME de Sun - Projecte de documentació de GNOME - - Versió 2.0 del manual de cerca de fitxers Maig de 2002 - Equip de documentació de GNOME de Sun - Projecte de documentació de GNOME - - Manual de cerca de fitxers 2000 - Alexander Kirillov kirillov@math.sunysb.edu - Projecte de documentació de GNOME - - - - Aquest manual descriu la versió 1.10 de cerca de fitxers. - - Retroacció - Per informar d'un error o fer un suggeriment sobre l'aplicació de cerca de fitxers o d'aquest manual, seguiu les instruccions de la pàgina de retroacció de MATE. - - - - - Eina de cerca - - - - - - Introducció - L'aplicació Cerca de fitxers us permet cercar fitxers al vostre sistema. Per realitzar una cerca bàsica, podeu teclejar un nom de fitxer o un nom de fitxer parcial, amb comodins o sense. Per refinar la cerca, podeu aplicar opcions de cerca addicionals. - Cerca de fitxers utilitza les ordres d'UNIX find, grep i locate. Per defecte, quan es realitza una cerca bàsica, Cerca de fitxers primer utilitza l'ordre locate, i a continuació, utilitza l'ordre més lenta però més exhaustiva find. - La distinció de majúscules i minúscules depèn del vostre sistema operatiu. Per exemple, a Linux, les ordres find, grep i locate admeten l'opció -i, de manera que totes les cerques distingeixen majúscules i minúscules. - - - - Primers passos - - Podeu iniciar Cerca de fitxers de les maneres següents: - - - Des d'una barra de menús en un tauler - - Seleccioneu LlocsCerca de fitxers... - - - - Des d'un menú principal en un tauler - - Seleccioneu Cerca de fitxers... - - - - Des d'una línia d'ordres - - Executeu l'ordre següent: mate-search-tool - - - - - - - Quan inicieu Cerca de fitxers, es mostra la finestra següent. - - -
- Finestra de Cerca de fitxers - - Mostra la finestra principal de Cerca de fitxers. - -
- - -
- - - - - Utilització - - - Com realitzar una cerca bàsica - - Per realitzar una cerca bàsica d'un fitxer al sistema, realitzeu els passos següents: - - Introduïu el text de cerca al camp El nom conté. El text de cerca pot ser un nom de fitxer complet o parcial, amb comodins o sense, com es mostra a la taula següent: - - - - - - - - - - El nom conté el text - - Exemple - - Resultat - - - - - - Nom de fitxer complet o parcial - - - fitxer.txt - - - Cerca de fitxers cerca tots els fitxers que contenen el text fitxer.txt al nom de fitxer. - - - - - Nom de fitxer parcial combinat amb comodins (*, [, ]) - - - *.[ch] - - - Cerca de fitxers cerca tots els fitxers que tenen l'extensió .c o .h. - - - - - - - Al camp Cerca a la carpeta, seleccioneu la carpeta o el dispositiu des de la qual voleu que comenci Cerca de fitxers. - Feu clic a Cerca per realitzar la cerca. - - - Cerca de fitxers cerca al directori que especifiqueu, així com als subdirectoris del directori. Cerca de fitxers mostra els resultats de la cerca al quadre de llista Resultats de la cerca. Si Cerca de fitxers no troba cap fitxer que coincideixi amb els criteris de la cerca, l'aplicació mostra el missatge «No s'ha trobat cap fitxer» al quadre de llista Resultats de la cerca. - Per defecte, Cerca de fitxers farà una cerca ràpida utilitzant l'ordre locate seguida d'una segona cerca més exhaustiva utilitzant l'ordre find. L'ordre locate és més ràpida perquè utilitza una base de dades d'informació sobre fitxers. Si aquesta base de dades té més d'una setmana d'antiguitat, Cerca de fitxers podria avisar-vos que els resultats de la cerca poden estar desactualitzats i us ofereixen l'opció per inhabilitar la cerca ràpida. Per actualitzar la base de dades, executeu l'ordre updatedb amb l'usuari root. - - - - Com afegir opcions de cerca - Podeu afegir opcions addicionals per cercar un fitxer al sistema. Per afegir opcions de cerca, seguiu els passos següents: - - Feu clic al text Seleccioneu més opcions. - Feu clic a la llista desplegable Opcions disponibles. - Seleccioneu l'opció de cerca que voleu aplicar. - Feu clic a Afegeix. - Especifiqueu la informació de cerca necessària per a l'opció de cerca, tal com es descriu a . - Repetiu els passos anteriors per a cadascuna de les opcions de cerca que voleu aplicar. - - Per treure una opció de cerca de la cerca actual, feu clic al botó Suprimeix que està al costat de l'opció. - Per inhabilitar les opcions de cerca de la cerca actual, feu clic al botó Seleccioneu més opcions. - - - Opcions de cerca - - - - - - - Nom de l'opció - - Descripció - - - - - - Conté el text - - Cerca els fitxers de tipus text pla que contenen el text especificat. - - - - La data de modificació és anterior a - - Cerca els fitxers que s'han modificat abans del període especificat en dies. - - - - La data de modificació és posterior a - - Cerca els fitxers que s'han modificat després del període especificat en dies. - - - - La mida és almenys - - Cerca els fitxers que són iguals o més grans que la mida especificada en kilobytes. - - - - La mida és com a molt - - Cerca els fitxers que són iguals o més petits que la mida especificada en kilobytes. - - - - El fitxer està buit - - Cerca els fitxers buits. - - - - Propietari del fitxer - - Cerca els fitxers que són propietat de l'usuari especificat. Teclegeu el nom de l'usuari al quadre de text proporcionat. - - - - Grup del fitxer - - Cerca els fitxers que són propietat del grup especificat. Teclegeu el nom del grup al quadre de text proporcionat. - - - - No es reconeix el propietari - - Cerca els fitxers que són propietat d'un usuari o grup desconegut del sistema. - - - - El nom no conté - - Cerca els noms de fitxer que no contenen la cadena que introduïu. Introduïu un nom de fitxer complet o un nom de fitxer parcial amb comodins al camp proporcionat. Utilitzeu * per indicar una seqüència de caràcters. Utilitzeu ? per indicar un sol caràcter. La cerca distingeix majúscules i minúscules. - - - - El nom coincideix amb una expressió regular - - Cerca els fitxers que contenen l'expressió regular especificada al seu camí o nom del fitxer. Teclegeu l'expressió regular al quadre de text proporcionat. - - - - Mostra els fitxers ocults i de còpia de seguretat - - Inclou els fitxers ocults i de còpia de seguretat a la cerca. - - - - Segueix els enllaços simbòlics - - Segueix els enllaços simbòlics quan se cerquen fitxers. - - - - Exclou altres sistemes de fitxers - - Cerca als directoris que es troben al mateix sistema de fitxers que el directori d'inici. - - - - -
- -
- - - Com aturar una cerca - Feu clic a Atura per aturar Cerca de fitxers abans que completi la cerca. - - - - Com obrir un fitxer mostrat - Per obrir un fitxer mostrat al quadre de llista Resultats de la cerca, realitzeu uns dels passos següents: - - Feu clic dret al fitxer, i després seleccioneu Obre. - Feu doble clic al fitxer. - - Per obrir la carpeta que conté un fitxer mostrat al quadre de llista Resultats de la cerca, feu clic dret al fitxer, i després seleccioneu Obre la carpeta contenidora. - - - - Com suprimir un fitxer mostrat - Per suprimir un fitxer mostrat al quadre de llista Resultats de la cerca, feu clic dret al fitxer, i després seleccioneu Mou a la paperera. - - - - - - Com desar els resultats de la cerca - Per desar els resultats de l'última cerca realitzada per Cerca de fitxers, feu clic dret a la llista Resultats de la cerca, després seleccioneu Anomena i desa els resultats. Introduïu el nom del fitxer al qual voleu desar els resultats i, a continuació, feu clic a Desa. - - -
- - - - - Ajusts - - Cerca de fitxers proporciona les claus gsettings per modificar el seu comportament. Els valors gsettings es poden canviar amb l'inici de l'Editor de configuracions de les maneres següents: - - - Menú Aplicacions - - Seleccioneu Eines del sistemaEditor dconf. - - - - Línia d'ordres - - Executeu l'ordre següent: dconf-editor - - - - - - Inhabilita la cerca ràpida - Nom de la clau: org.mate.search-tool.disable-quick-search - Valor predeterminat: false - Cerca de fitxers accelera les cerques del nom de fitxer utilitzant l'ordre locate. Locate proporciona una manera segura per indexar i cercar ràpidament els noms de fitxers. Perquè locate es basa en un índex de fitxers, la llista resultats de la cerca pot no estar sempre al dia. - - - - Inhabilita el segon pas de la cerca ràpida - Nom de la clau: org.mate.search-tool.disable-quick-search-second-scan - Valor predeterminat: false - Després completar una cerca ràpida, Cerca de fitxers farà una cerca exhaustiva utilitzant l'ordre find. El propòsit d'aquesta segona exploració és trobar els fitxers que no s'hagin indexat. Els fitxers que coincideixen amb els criteris de cerca s'afegeixen a la llista Resultats de la cerca mantenint la llista actualitzada. - - - - Camins exclosos de la cerca ràpida - Nom de la clau: org.mate.search-tool.quick-search-excluded-paths - Valors predeterminats: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Cerca de fitxers no realitzarà cap cerca ràpida als camins definits per aquesta clau. Les cerques del nom de fitxer als camins definits utilitzaran l'ordre find. S'admeten els comodins «*» i «?». - - - - Camins exclosos del segon pas de la cerca ràpida - Nom de la clau: org.mate.search-tool.quick-search-second-scan-excluded-paths - Valors predeterminats: [/] - Cerca de fitxers no realitzarà una segona exploració després d'una cerca ràpida als camins definits per aquesta clau. Les cerques ràpides als camins definits no seran seguides d'una cerca exhaustiva utilitzant l'ordre find. S'admeten els comodins «*» i «?». - - - - Mostra les opcions addicionals - Nom de la clau: org.mate.search-tool.show-additional-options - Valor predeterminat: false - Aquesta clau determina si la secció Seleccioneu més opcions s'expandeix quan s'inicia Cerca de fitxers. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ca/legal.xml mate-utils-1.26.1/gsearchtool/help/ca/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ca/legal.xml 2021-08-05 19:47:50.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ca/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 enllaç o bé al fitxer COPYING-DOCS que es distribueix amb aquest manual. - 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. - - 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. - - 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: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ca@valencia/index.docbook mate-utils-1.26.1/gsearchtool/help/ca@valencia/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ca@valencia/index.docbook 2021-08-05 19:47:50.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ca@valencia/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - Projecte de documentació del MATE - - - Projecte de documentació de GNOME - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Comentaris - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introducció - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Com començar - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Ús - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Descripció - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - La data de modificació és posterior a - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - El fitxer està buit - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - No es reconeix el propietari - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Mostra els fitxers ocults i de còpia de seguretat - - Include hidden and backup files in the search. - - - - Segueix els enllaços simbòlics - - Follow symbolic links when searching for files. - - - - Exclou altres sistemes de fitxers - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Menú Aplicacions - - Choose System Toolsdconf Editor. - - - - Línia d'ordes - - Execute the following command: dconf-editor - - - - - - Inhabilita la cerca ràpida - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Inhabilita el segon pas de la cerca ràpida - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Camins exclosos de la cerca ràpida - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Camins exclosos del segon pas de la cerca ràpida - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Mostra opcions addicionals - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ca@valencia/legal.xml mate-utils-1.26.1/gsearchtool/help/ca@valencia/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ca@valencia/legal.xml 2021-08-05 19:47:50.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ca@valencia/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 enllaç o bé al fitxer COPYING-DOCS que es distribueix amb aquest manual. - 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. - - 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. - - 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: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/cmn/index.docbook mate-utils-1.26.1/gsearchtool/help/cmn/index.docbook --- mate-utils-1.26.0/gsearchtool/help/cmn/index.docbook 2021-08-05 19:47:50.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/cmn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,595 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Woodman Tuen - - wmtuen@gmail.com - - - - 2005-06 - - Woodman Tuen - - - - - Abel Cheung - - abel@oaka.org - - - - 2003-04 - - Abel Cheung - - - - - 趙惟倫 - - bluebat@member.fsf.org - - - - 2013 - - 趙惟倫 - - - - - Search Tool - - - - - - - 導覽 - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - 用量 - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - 描述 - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - 最後修改時間多於 - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - 檔案是空白的 - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - 無法識別擁有者 - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - 顯示隱藏或備份的檔案或資料夾 - - Include hidden and backup files in the search. - - - - 跟隨符號鏈結 - - Follow symbolic links when searching for files. - - - - 排除其他檔案系統 - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - 命令列 - - Execute the following command: dconf-editor - - - - - - 停用快速搜尋功能 - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - 停用快速搜尋第二次掃描功能 - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - 不包含路徑的快速搜尋 - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - 不包含路徑的快速搜尋第二次掃描 - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - 顯示額外選項 - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/cmn/legal.xml mate-utils-1.26.1/gsearchtool/help/cmn/legal.xml --- mate-utils-1.26.0/gsearchtool/help/cmn/legal.xml 2021-08-05 19:47:50.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/cmn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/crh/index.docbook mate-utils-1.26.1/gsearchtool/help/crh/index.docbook --- mate-utils-1.26.0/gsearchtool/help/crh/index.docbook 2021-08-05 19:47:50.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/crh/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Kullanım - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Betimleme - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Deñiştirilgeni tarih eñ az - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Dosye boştır - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Saibi tanılmağandır - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Gizli ve yedek dosyelerni köster - - Include hidden and backup files in the search. - - - - Simvolik ilişimlerni taqip et - - Follow symbolic links when searching for files. - - - - Diger dosye sistemleri harıç - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Komut satırı - - Execute the following command: dconf-editor - - - - - - Hızlı Aramayı Kapat - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Hızlı Aramada İkincil Taramayı Kapat - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Harici Yollarda Hızlı Ara - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Harici Yollarda İkincil Hızlı Ara - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - İlave İhtiyariyatnı Köster - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/crh/legal.xml mate-utils-1.26.1/gsearchtool/help/crh/legal.xml --- mate-utils-1.26.0/gsearchtool/help/crh/legal.xml 2021-08-05 19:47:50.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/crh/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/cs/index.docbook mate-utils-1.26.1/gsearchtool/help/cs/index.docbook --- mate-utils-1.26.0/gsearchtool/help/cs/index.docbook 2021-08-05 19:47:50.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/cs/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,541 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - 2015-2021 Projekt dokumentace MATE - - 2005 - Dennis Cranston - - 2002 2003 2004 Sun Microsystems - - 2000 - Alexander Kirillov - - - - Dokumentační projekt MATE - - - Dokumentační projekt GNOME - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- Sun Dokumentační tým GNOME Sun Microsystems
- - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Ohlasy - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Úvod - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Začínáme - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Využití - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Příklad - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Klepněte na Přidat. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Popis - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Datum úpravy více než - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Soubor je prázdný - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Vlastníka nelze rozpoznat - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Zobrazovat skryté a záložní soubory - - Include hidden and backup files in the search. - - - - Sledovat symbolické odkazy - - Follow symbolic links when searching for files. - - - - Vyjmout jiné souborové systémy - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - nabídky Aplikace - - Choose System Toolsdconf Editor. - - - - Příkazový řádek - - Execute the following command: dconf-editor - - - - - - Zakázat rychlé hledání - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Zakázat druhý průchod rychlého hledání - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Cesty vyjmuté z rychlého hledání - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Cesty vyjmuté z druhého průchodu rychlého hledání - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Zvolit Zobrazit více možností - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/cs/legal.xml mate-utils-1.26.1/gsearchtool/help/cs/legal.xml --- mate-utils-1.26.0/gsearchtool/help/cs/legal.xml 2021-08-05 19:47:50.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/cs/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - 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. - - 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: - - 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 - - - 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. - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/cy/index.docbook mate-utils-1.26.1/gsearchtool/help/cy/index.docbook --- mate-utils-1.26.0/gsearchtool/help/cy/index.docbook 2021-08-05 19:47:50.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/cy/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Disgrifiad - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Dyddiad addasu yn fwy na - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Mae'r ffeil yn wag - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Heb berchennog adnabyddedig - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Dangos ffeiliau cudd a ffeiliau copi cadw - - Include hidden and backup files in the search. - - - - Dilyn cysylltau symbolaidd - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Llinell orchymyn - - Execute the following command: dconf-editor - - - - - - Analluogi chwilio cyflym - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Analluogi ail sgan chwilio cyflym - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Chwilio cyflym - llwybrau wedi'u heithrio - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Chwilio cyflym - llwybrau wedi'u heithrio o'r ail sgan - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Dangos dewisiadau ychwanegol - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/cy/legal.xml mate-utils-1.26.1/gsearchtool/help/cy/legal.xml --- mate-utils-1.26.0/gsearchtool/help/cy/legal.xml 2021-08-05 19:47:50.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/cy/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/da/index.docbook mate-utils-1.26.1/gsearchtool/help/da/index.docbook --- mate-utils-1.26.0/gsearchtool/help/da/index.docbook 2021-08-05 19:47:50.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/da/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,449 +0,0 @@ - - - - - - - -]> - - -
- - - - Manual for Søg efter filer - - - Et søgeværktøj til at finde filer, mapper og dokumenter på din computer. - - - 2015-2021 MATE-dokumentationsprojektet - 2005 Dennis Cranston - 2002 2003 2004 Sun Microsystems - 2000 Alexander Kirillov - - - MATE-dokumentationsprojektet - - - GNOME-dokumentationsprojektet - - - - - - MATE-Dokumentationsholdet Søg efter filvedligeholder - Dennis Cranston Søg efter filer-vedligeholder
dennis_cranston@yahoo.com
- Sun GNOME-dokumentationsholdet Sun Microsystems
- Alexander Kirillov GNOME-dokumentationsprojektet
kirillov@math.sunysb.edu
- - - - - - Manual for Søg efter filer version 1.10 Juli 2015 - Wolfgang Ulbrich - Søg efter filer-vedligeholder - - Manual for Søg efter filer version 2.7 Juni 2005 - Joachim Noreiko jnoreiko@yahoo.com - Søg efter filer-vedligeholder - - Manual for Søg efter filer version 2.6 Januar 2005 - Dennis Cranston dennis_cranston@yahoo.com - Søg efter filer-vedligeholder - - Manual for Søg efter filer version 2.4 Februar 2004 - Sun GNOME-dokumentationsholdet - GNOME-dokumentationsprojektet - - Manual for Søg efter filer version 2.3 September 2002 - Sun GNOME-dokumentationsholdet - GNOME-dokumentationsprojektet - - Manul for Søg efter filer version 2.2 August 2002 - Sun GNOME-dokumentationsholdet - GNOME-dokumentationsprojektet - - Manual for Søg efter filer version 2.1 Juli 2002 - Sun GNOME-dokumentationsholdet - GNOME-dokumentationsprojektet - - Manual for Søg efter filer version 2.0 Maj 2002 - Sun GNOME-dokumentationsholdet - GNOME-dokumentationsprojektet - - Manual for Søg efter filer 2000 - Alexander Kirillov kirillov@math.sunysb.edu - GNOME-dokumentationsprojektet - - - - Denne manual beskriver version 1.10 af Søg efter filer. - - Tilbagemeldinger - For at rapportere en fejl eller komme med et forslag jævnfør programmet Søg efter filer eller denne manual, så følg retningslinjerne i MATE's side for tilbagemeldinger. - - - - - Søgeværktøj - - - - - - Introduktion - Programmet Søg efter filer gør at du kan søge efter filer på dit system. For at udføre en grundlæggende søgning, kan du taste et filnavn eller et delvist filnavn, med eller uden jokertegn. For at raffinere din søgning kan du anvende yderligere søgemuligheder. - Søg efter filer bruger UNIX-kommandoerne find, grep og locate. Som standard under udførsel af en grundlæggende søgning bruger Søg efter filer først kommandoen locate, og bruger så den langsommere, men mere grundige find. - Store/små bogstaver i søgningen afhænger af dit operativsystem. For eksempel, på Linux understøtter kommandoerne find, grep og locate tilvalget -i, så alle søgninger medtager både store/små bogstaver. - - - - Kom i gang - - Du kan starte Søg efter filer på de følgende måder: - - - Fra en Menulinje på et panel - - Vælg StederSøg efter filer ... - - - - Fra en Hovedmenu på et panel - - Vælg Søg efter filer ... - - - - Fra en kommandolinje - - Kør den følgende kommando: mate-search-tool - - - - - - - Når du starter Søg efter filer, bliver det følgende vindue vist. - - -
- Søg efter filer-vindue - - Viser Søg efter files hovedvindue. - -
- - -
- - - - - Forbrug - - - For at udføre en grundlæggende søgning - - For at udføre en grundlæggende søgning efter en fil på systemet, udfør de følgende trin: - - Indtaste søgeteksten i feltet Navn indeholder. Søgeteksten kan være et filnavn eller et delvist filnavn, med eller uden jokertegn, som vist i den følgende tabel: - - - - - - - - - - Navn indeholder tekst - - Eksempel - - Resultat - - - - - - Fuldt eller delvist filnavn - - - minfil.txt - - - Søg efter filer søger efter alle filer, som indeholder teksten minfil.txt i filnavnet. - - - - - Delvist filnavn kombineret med jokertegn (*, [, ]) - - - *.[ch] - - - Søg efter filer søger efter alle filer som har filendelsen .c eller .h. - - - - - - - I feltet Se i mappe, vælg mappen eller enheden hvorfra du ønsker at Søg efter filer skal begynde søgningen. - Klik Søg for at udføre søgningen. - - - Søg efter filer søger i den mappe du angiver og undermapperne for mappen. Søg efter filer viser resultatet af søgningen i boksen Søgeresultater. Hvis Søg efter filer ikke finder nogle filer, der matcher søgekriterierne, så viser programmet beskeden »Ingen filer fundet« i boksen Søgeresultater. - Som standard vil Søg efter filer udføre en hurtig søgning via kommandoen locate efterfulgt af en mere grundig søgning via kommandoen find. Kommandoen locate er hurtigere da den brugere en database med information om filer. Hvis denne database er mere end en uge gammel, kan Søg efter filer advare dig om at søgeresultaterne kan være forældede og give dig mulighed for at deaktivere hurtig søgning. For at opdatere databasen, kør kommandoen updatedb som administrator. - - - - For at tilføje søgeindstillinger - Du kan tilføje yderligere indstillinger for at søge efter en fil på systemet. For at tilføje søgeindstillinger, udfør de følgende trin: - - Klik på teksten Vælg flere indstillinger. - Klik på rullegardinet Tilgængelige indstillinger. - Vælg søgeindstillingerne du ønsker at anvende. - Klik på Tilføj. - Angiv den krævede søgeinformation for søgeindstillingen, som beskrevet i . - Gentag ovenstående trin for hver søgeindstilling du ønsker at anvende. - - For at fjerne en søgeindstilling fra den nuværende søgning, klik på knappen Fjern ved siden af indstillingen. - For at deaktivere søgeindstillingerne fra den nuværende søgning, klik på teksten Vælg flere indstillinger. - - - Søgeindstillinger - - - - - - - Navn på indstilling - - Beskrivelse - - - - - - Indeholder teksten - - Søg efter filer af typen ren tekst der indeholder den angivne tekst. - - - - Dato ændret mindre end - - Søg efter filer som er ændret mindre end perioden angivet i dage. - - - - Dato ændret længere tilbage end - - Søg efter filer som er ændret længere siden end perioden angivet i dage. - - - - Mindste størrelse - - Søg efter filer som svarer til eller er større end størrelsen angivet i kilobyte. - - - - Største størrelse - - Søger efter filer som er mindre end eller svarer til størrelsen angivet i kilobyte. - - - - Fil er tom - - Søg efter tomme filer. - - - - Ejet af bruger - - Søg efter filer som er ejet af den angivne bruger. Tast navnet på brugere i den angivne tekstboks. - - - - Ejet af gruppe - - Søg efter filer som er ejet af den angivne gruppe. Tast navnet på gruppen i den angivne tekstboks. - - - - Ejer er ukendt - - Søg efter filer som er ejet af en bruger eller en gruppe, som er ukendt for systemet. - - - - Navn indeholder ikke - - Søg efter filnavne som ikke indeholder strenge du indtaster. Indtast et fuldt filnavn eller et delvist filnavn med jokertegn i det angivne felt. Brug * til at indikere en sekvens af tegn. Brug ? til at indikere et enkelte tegn. Søgning tager højde for store/små bogstaver. - - - - Navn matcher regulært udtryk - - Søg efter filer der indeholder det angivne regulære udtryk i deres mappesti eller filnavn. Tast det regulære udtryk i den angivne tekstboks. - - - - Vis skjulte filer og sikkerhedskopier - - Inkluder skjulte filer og sikkerhedskopier i søgningen. - - - - Følg symbolske henvisninger - - Følg symbolske henvisninger under søgning efter filer. - - - - Ekskluder andre filsystemer - - Søg i mapper som er i det samme filsystem som startmappen. - - - - -
- -
- - - For at stoppe en søgning - Klik Stop for at stoppe en søgning før Søg efter filer fuldfører søgningen. - - - - For at åbne en vist fil - For at åbne en fil vist i boksen med Søgeresultater, udfør en af de følgende trin: - - Højreklik på filen, vælg så Åbn. - Dobbeltklik på filen. - - For at åbne mappen der indeholder en fil vist i listeboksen Søgeresultater, højreklik på filen, vælg så Åbn indeholdende mappe. - - - - For at slette en vist fil - For at slette en fil vist i boksen Søgeresultater, højreklik på filen og vælg Flyt til papirkurv. - - - - - - For at gemme søgeresultater - For at gemme resultaterne for den sidste søgning som Søg efter filer udførte, højreklik i listen Søgeresultater, vælg så Gem resultater som. Indtast navnet på filen du ønsker at gemme resultaterne i og klik på Gem. - - -
- - - - - Indstillinger - - Søg efter filer tilbyder gsettings-nøgler til at ændre noget af opførelsen. Gsettings-værdierne kan ændres ved at starte Konfigurationsredigeringsprogrammet på de følgende måder: - - - Programmenuen - - Vælg Systemværktøjerdconf-redigeringsprogram. - - - - Kommandolinje - - Kør den følgende kommando: dconf-editor - - - - - - Deaktiver hurtigsøgning - Key name: org.mate.search-tool.disable-quick-search - Standardværdi: false (falsk) - Søg efter filer øger hastigheden på filnavnssøgning ved at bruge kommandoen locate. Locate tilbyder en sikker metode til at indeksere og hurtig søge efter filnavne. Da locate afhænger af et filindeks, er listen med Søgeresultater ikke altid opdateret. - - - - Deaktiver anden skanning i hurtigsøgning - Key name: org.mate.search-tool.disable-quick-search-second-scan - Standardværdi: false (falsk) - Efter fuldførelse af en hurtig søgning vil Søg efter filer udføre en omhyggelig søgning via kommandoen find. Formålet med denne anden skanning er af finde filer, som ikke er blevet indekseret. Filer som matcher søgekriterierne tilføjes til listen Søgeresultater så listen er opdateret. - - - - Ekskluderede stier i hurtigsøgning - Key name: org.mate.search-tool.quick-search-excluded-paths - Standardværdier: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Søg efter filer vil ikke udføre en hurtig søgning for stier defineret af denne nøgle. Søgninger efter filnavne i de definerede stier vil bruge kommandoen find. Jokertegnene »*« og »?« er understøttet. - - - - Ekskluderede stier for anden skanning i hurtigsøgning - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Standardværdier: [/] - Søg efter filer vil ikke udføre en sekundær skanning efter en hurtig søgning for stierne defineret af denne nøgle. Hurtigsøgninger i de definerede stier vil ikke blive fulgt af en grundig søgning via kommandoen find. Jokertegnene »*« og »?« er understøttet. - - - - Vis flere indstillinger - Key name: org.mate.search-tool.show-additional-options - Standardværdi: false (falsk) - Denne nøgle bestemmer om afsnittet Vælg flere indstillinger er udvidet når Søg efter filer startes. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/da/legal.xml mate-utils-1.26.1/gsearchtool/help/da/legal.xml --- mate-utils-1.26.0/gsearchtool/help/da/legal.xml 2021-08-05 19:47:50.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/da/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 henvisning eller i filen COPYING-DOCS som distribueres sammen med denne manual. - 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. - - 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. - - DOKUMENTET OG ÆNDREDE VERSIONER AF DOKUMENTET STILLES TIL RÅDIGHED UNDER GNU FREE DOCOMENTATION LICENSE MED FØLGENDE BETINGELSER: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/de/index.docbook mate-utils-1.26.1/gsearchtool/help/de/index.docbook --- mate-utils-1.26.0/gsearchtool/help/de/index.docbook 2021-08-05 19:47:50.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/de/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,542 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - 2002 2003 2004 Sun Microsystems - - 2000 - Alexander Kirillov - - - - MATE-Dokumentationsprojekt - - - GNOME-Dokumentationsprojekt - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - Alexander Kirillov GNOME-Dokumentationsprojekt
kirillov@math.sunysb.edu
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Rückmeldungen - Um einen Fehler zu melden oder eine Verbesserung bzgl. der Dateisuche-Anwendung oder dieses Handbuchs vorzuschlagen, folgen Sie den Anweisungen auf der MATE-Rückmeldungsseite. - - - - - - Search Tool - - - - - - - Einführung - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Erste Schritte - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Verwendung - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Beispiel - - Result - - - - - - Full or partial filename - - - - meinedatei.txt - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Klicken Sie auf Hinzufügen. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Beschreibung - - - - - - Enthält den Text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Geändert vor _mehr als - - Search for files that are modified longer than the period specified in days. - - - - Kleinste Größe - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Höchste Größe - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Datei ist leer - - Nach leeren Dateien suchen. - - - - Gehört Benutzer - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Gehört Gruppe - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Besitzer ist unbekannt - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name enthält nicht - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Dateiname stimmt mit regulärem Ausdruck überein - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Verborgene Dateien und Sicherungsdateien anzeigen - - Include hidden and backup files in the search. - - - - Symbolischen Verknüpfungen folgen - - Follow symbolic links when searching for files. - - - - Andere Dateisysteme ausschließen - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Menü Anwendungen - - Choose System Toolsdconf Editor. - - - - Befehlszeile - - Execute the following command: dconf-editor - - - - - - Schnellsuche deaktivieren - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Zweiten Durchlauf der Schnellsuche deaktivieren - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Ausgelassene Pfade bei schneller Suche - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Ausgelassene Pfade beim zweiten Suchlauf einer schnellen Suche - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Zusätzliche Optionen anzeigen - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/de/legal.xml mate-utils-1.26.1/gsearchtool/help/de/legal.xml --- mate-utils-1.26.0/gsearchtool/help/de/legal.xml 2021-08-05 19:47:50.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/de/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 Verknüpfung oder in der mit diesem Handbuch gelieferten Datei COPYING-DOCS. - 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. - - 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. - - DAS DOKUMENT SOWIE MODIFIZIERTE VERSIONEN DAVON WERDEN UNTER DEN BEDINGUNGEN DER GNU FREE DOCUMENTATION LICENSE BEREITGESTELLT, MIT DEM WEITEREN VERSTÄNDNIS, DASS: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/dz/index.docbook mate-utils-1.26.1/gsearchtool/help/dz/index.docbook --- mate-utils-1.26.0/gsearchtool/help/dz/index.docbook 2021-08-05 19:47:51.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/dz/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - བེད་སྤྱོད་ - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - འགྲེལ་བཤད། - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - ཚེས་གྲངས་མངམ་སྦེ་ བསྒྱུར་བཅོས་འབད་ཡོདཔ། - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - ཡིག་སྣོད་སྟོངམ་ཨིན་པས། - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - ཇོ་བདག་ངོས་འཛིན་མེདཔ། - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - སྦ་སྟེ་ཡོད་པའི་ཡིག་སྣོད་དང་ རྒྱབ་ཐག་ཡིག་སྣོད་ཚུ་སྟོན། - - Include hidden and backup files in the search. - - - - བརྡ་མཚོན་འབྲེལ་ལམ་ཚུ་གི་རྗེས་སུ་འབྲང་། - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - བཀོད་ལམ། - - Execute the following command: dconf-editor - - - - - - འཕྲལ་མྱུར་འཚོལ་ཞིབ་ ལྕོགས་མིན་བཟོ། - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - འཕྲལ་མྱུར་འཚོལ་ཞིབ་ ཞིབ་ལྟ་གཉིས་པ་ ལྕོགས་མིན་བཟོ། - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - འཕྲལ་མྱུར་འཚོལ་ཞིབ་ནང་ འགྲུལ་ལམ་ཚུ་ གྲངས་སུ་མེད།། - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - འཕྲལ་མྱུར་འཚོལ་ཞིབ་ ཞིབ་ལྟ་གཉིས་པའི་ནང་ འགྲུལ་ལམ་གྲངས་སུ་མེད། - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - གདམ་ཁ་ཁ་སྐོང་སྟོན། - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/dz/legal.xml mate-utils-1.26.1/gsearchtool/help/dz/legal.xml --- mate-utils-1.26.0/gsearchtool/help/dz/legal.xml 2021-08-05 19:47:51.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/dz/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/el/index.docbook mate-utils-1.26.1/gsearchtool/help/el/index.docbook --- mate-utils-1.26.0/gsearchtool/help/el/index.docbook 2021-08-05 19:47:51.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/el/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - Έργο Τεκμηρίωσης MATE - - - Έργο τεκμηρίωσης GNOME - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Ανάδραση - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Εισαγωγή - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Για να ξεκινήσετε - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Χρήση - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Πατήστε Προσθήκη. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Περιγραφή - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Ημερομηνία τροποποίησης μεγαλύτερη από - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Το αρχείο είναι κενό - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Μη αναγνωρίσιμος ιδιοκτήτης - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Εμφάνιση κρυφών αρχείων και αρχείων ασφαλείας. - - Include hidden and backup files in the search. - - - - Ακολούθηση συμβολικών συνδέσμων - - Follow symbolic links when searching for files. - - - - Να μη συμπεριλαμβάνει άλλα συστήματα αρχείων. - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Μενού Εφαρμογές - - Choose System Toolsdconf Editor. - - - - Γραμμή εντολών - - Execute the following command: dconf-editor - - - - - - Απενεργοποίηση γρήγορης αναζήτησης - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Απενεργοποίηση γρήγορης αναζήτησης δευτερεύουσας σάρωσης - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Γρήγορη αναζήτηση διαδρομών που έχουν εξαιρεθεί - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Γρήγορη αναζήτηση αποκλεισμένων διαδρομών δεύτερης σάρωσης - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Εμφάνιση πρόσθετων επιλογών - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/el/legal.xml mate-utils-1.26.1/gsearchtool/help/el/legal.xml --- mate-utils-1.26.0/gsearchtool/help/el/legal.xml 2021-08-05 19:47:51.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/el/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ - - - Επιτρέπεται η αντιγραφή, η διανομή και / ή η τροποποίηση αυτού του εγγράφου σύμφωνα με τους όρους της Άδειας Τεκμηρίωσης ελευθέρου λογισμικού GNU (GFDL), Έκδοσης 1.1 ή οποιασδήποτε μεταγενέστερης έκδοσης που δημοσιεύεται από το Ίδρυμα Ελεύθερου Λογισμικού χωρίς Μεταβλητές Ενότητες, χωρίς Κείμενα Προσωρινού Εξώφυλλου και Κανένα κείμενο πίσω. Μπορείτε να βρείτε ένα αντίγραφο του GFDL σε αυτό σύνδεσμος ή στο αρχείο COPYING-DOCS που διανέμεται με αυτό το εγχειρίδιο. - Αυτή η τεκμηρίωση είναι μέρος της συλλογής τεκμηρίωσης του MATE όπως διανέμεται υπό τους όρους του GFDL. Εάν επιθυμείτε να διανείμετε αυτή την τεκμηρίωση ξεχωριστά από την συλλογή, μπορείτε να το κάνετε εάν η τεκμηρίωση συνοδεύεται από αντίγραφο της άδειας (GFDL) όπως περιγράφεται στον τομέα 6 της άδειας. - - Πολλά από τα ονόματα που χρησιμοποιούνται από εταιρίες για να ξεχωρίσουν τα προϊόντα και τις υπηρεσίες είναι σήματα κατατεθέν. Όπου αυτά τα ονόματα εμφανίζονται στην τεκμηρίωση MATE, και τα μέλη της ομάδας τεκμηρίωσης MATE έχουν γνώση αυτών, τότε αυτά αναγράφονται με κεφαλαίους χαρακτήρες ή με αρχικούς κεφαλαίους χαρακτήρες. - - Η οθόνη προσβασιμότητας πληκτρολογίου σας δείχνει την κατάσταση των χαρακτηριστικών προσβασιμότητας πληκτρολογίου όταν αυτά χρησιμοποιούνται. Για παράδειγμα, μπορείτε να δείτε ποια πλήκτρα τροποποίησης είναι ενεργά και ποια κουμπιά του ποντικιού πιέζονται μέσω του πληκτρολογίου. - diff -Nru mate-utils-1.26.0/gsearchtool/help/en_AU/index.docbook mate-utils-1.26.1/gsearchtool/help/en_AU/index.docbook --- mate-utils-1.26.0/gsearchtool/help/en_AU/index.docbook 2021-08-05 19:47:51.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/en_AU/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Description - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognised - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Command line - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/en_AU/legal.xml mate-utils-1.26.1/gsearchtool/help/en_AU/legal.xml --- mate-utils-1.26.0/gsearchtool/help/en_AU/legal.xml 2021-08-05 19:47:51.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/en_AU/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/en_CA/index.docbook mate-utils-1.26.1/gsearchtool/help/en_CA/index.docbook --- mate-utils-1.26.0/gsearchtool/help/en_CA/index.docbook 2021-08-05 19:47:51.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/en_CA/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Description - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Command line - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/en_CA/legal.xml mate-utils-1.26.1/gsearchtool/help/en_CA/legal.xml --- mate-utils-1.26.0/gsearchtool/help/en_CA/legal.xml 2021-08-05 19:47:51.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/en_CA/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/en_GB/index.docbook mate-utils-1.26.1/gsearchtool/help/en_GB/index.docbook --- mate-utils-1.26.0/gsearchtool/help/en_GB/index.docbook 2021-08-05 19:47:51.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/en_GB/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,546 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - 2015-2021 MATE Documentation Project - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - Alexander Kirillov GNOME Documentation Project
kirillov@math.sunysb.edu
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Description - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognised - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Bin. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Command line - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/en_GB/legal.xml mate-utils-1.26.1/gsearchtool/help/en_GB/legal.xml --- mate-utils-1.26.0/gsearchtool/help/en_GB/legal.xml 2021-08-05 19:47:51.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/en_GB/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 link or in the file COPYING-DOCS distributed with this manual. - 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. - - 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. - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENCE WITH THE FURTHER UNDERSTANDING THAT: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/eo/index.docbook mate-utils-1.26.1/gsearchtool/help/eo/index.docbook --- mate-utils-1.26.0/gsearchtool/help/eo/index.docbook 2021-08-05 19:47:51.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/eo/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - Projekto de Dokumentado de MATE - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Rimarkoj - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Enkonduko - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Uzado - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Priskribo - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Dosiero estas malplena - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Komandlinio - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/eo/legal.xml mate-utils-1.26.1/gsearchtool/help/eo/legal.xml --- mate-utils-1.26.0/gsearchtool/help/eo/legal.xml 2021-08-05 19:47:51.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/eo/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,55 +0,0 @@ - - - Permeso estas aljuĝita kopii, distribui kaj/aŭ ŝanĝi ĉi tiun dokumenton sur la kondiĉoj de la GNU Licenso de Libera Dokumentado (GFDL), Eldono 1.1 aŭ iu posta eldono eldonita de la Free Software Foundation, sen Invariantaj Sekcioj, aŭ Teksto de Antaŭa aŭ Malantaŭa Kovrilo. Vi povas trovi kopio de la GFDL je ĉi tiun ligo aŭ en la dosiero COPYING-DOCS, distribuita kun ĉi tiu manlibro. - Ĉi tiu manlibro estas parto de kolekto de manlibroj de MATE, distribuita sur la GFDL. Se vi ŝatus distribui ĉi tiun manlibron aparte de la kolekto, vi povas fari tion aldonante kopion de la licenso al la manlibro, kiel priskribita je sekcio 6 de la licenso. - - Multaj el la nomoj uzitaj de kompanioj distingui iliaj produktoj kaj servicioj asertis kiel varmarkoj. Tie, kie tiuj nomoj aperas je iu dokumentado de MATE, kaj la membroj de la Projekto de Dokumentado de MATE estas konsciaj pri tiuj, tiam la nomoj estas majusklaj aŭ la unua letero estas majuskla. - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/es/index.docbook mate-utils-1.26.1/gsearchtool/help/es/index.docbook --- mate-utils-1.26.0/gsearchtool/help/es/index.docbook 2021-08-05 19:47:51.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/es/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,578 +0,0 @@ - - - - - - - -]> - - -
- - - - Manual de Búsqueda de Archivos - - - Una herramienta de búsqueda para encontrar archivos, carpetas y documentos en su computadora. - - - 2015-2021 Proyecto de documentación de MATE - 2005 Dennis Cranston - 2002 2003 2004 Sun Microsystems - 2000 Alexander Kirillov - - - Proyecto de documentación de MATE - - - Proyecto de documentación de GNOME - - - - - - Equipo de documentación de MATE Encargado del mantenimiento del buscador de archivos - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- Sun Equipo de documentación de GNOME Sun Microsystems
- - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Comentarios - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Toni Estevez - - toni.estevez@gmail.com - - - - 2019 - - Toni Estevez - - - - - Jorge González - - jorgegonz@svn.gnome.org - - - - 2007-2010 - - Jorge González - - - - - Francisco Javier F. Serrador - - serrador@cvs.gnome.org - - - - 2003-2006 - - Francisco Javier F. Serrador - - - - - Pablo Gonzalo del Campo - - pablodc@bigfoot.com - - - - 2002-2003 - - Pablo Gonzalo del Campo - - - - Herramienta de Búsqueda - - - - - - Introducción - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Cómo empezar - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Uso - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Clic Añadir. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Descripción - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Fecha de modificación posterior a - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - El archivo está vacío - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - El propietario es desconocido - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Mostrar los archivos ocultos y las copias de seguridad - - Include hidden and backup files in the search. - - - - Seguir los enlaces simbólicos - - Follow symbolic links when searching for files. - - - - Exlcuir otros sistemas de archivos - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Ajustes - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Menú Aplicaciones - - Choose System Toolsdconf Editor. - - - - Línea de órdenes - - Execute the following command: dconf-editor - - - - - - Desactivar la búsqueda rápida - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Desactivar la segunda exploración de la búsqueda rápida - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Rutas excluidas para la búsqueda rápida - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Rutas excluidas de la segunda exploración de la búsqueda rápida - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Mostrar opciones adicionales - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/es/legal.xml mate-utils-1.26.1/gsearchtool/help/es/legal.xml --- mate-utils-1.26.0/gsearchtool/help/es/legal.xml 2021-08-05 19:47:51.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/es/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Se concede permiso para copiar, distribuir y/o modificar este documento según los términos de la Licencia de Documentación Libre (GFDL) de GNU, en la versión 1.1 o en cualquier verisón posterior publicada por la Free Software Foundation, sin secciones invariables ni textos de portada ni de contraportada. Puede encontrar una copia de la GFDL enenlace o en el archivo COPYING-DOCS distribuido con este manual. - Este manual es parte de una colección de manuales de MATE distribuidos conforme a la GFDL. Si quiere distribuir este manual por separado de la colección, puede hacerlo añadiendo una copia de la licencia al manual, tal como se describe en la sección 6 de la licencia. - - Muchos de los nombres utilizados por las empresas para distinguir sus productos y servicios se consideran marcas comerciales. Cuando esos nombres aparecen en cualquier documentación de MATE y los miembros del proyecto de documentación de MATE son conscientes de que se trata de marcas registradas, dichos nombres se escriben en letras mayúsculas o con inical mayúscula. - - EL DOCUMENTO Y LAS VERSIONES MODIFICADAS DEL DOCUMENTO SE PROPORCIONAN SEGÚN LOS TÉRMINOS DE LA LICENCIA DE DOCUMENTACIÓN LIBRE DE GNU CON EL ACUERDO ADICIONAL DE QUE: - - EL DOCUMENTO SE PROPORCIONA «TAL CUAL», SIN GARANTÍA DE NINGÚN TIPO, NI EXPLÍCITA NI IMPLÍCITA, INCLUYENDO, ENTRE OTRAS, LAS GARANTÍAS DE QUE EL DOCUMENTO O UNA VERSIÓN MODIFICADA DEL DOCUMENTO CAREZCA DE DEFECTOS COMERCIALES, SEA ADECUADO A UN PROPÓSITO PARTICULAR O INCUMPLA ALGUNA NORMATIVA. TODO RIESGO EN RELACIÓN CON LA CALIDAD, LA PRECISIÓN Y LA UTILIDAD DEL DOCUMENTO O UNA VERSIÓN MODIFICADA DEL DOCUMENTO RECAE EN USTED. SI EL DOCUMENTO O CUALQUIER VERSIÓN MODIFICADA DEL DOCUMENTO RESULTARA DEFECTUOSO EN CUALQUIER ASPECTO, USTED (Y NO EL REDACTOR INICIAL, EL AUTOR O CUALQUIER CONTRIBUYENTE) ASUMIRÁ TODOS LOS COSTES DE MANTENIMIENTO, REPARACIÓN O CORRECCIÓN NECESARIOS. ESTA RENUNCIA DE GARANTÍA ES UNA PARTE ESENCIAL DE ESTA LICENCIA. NO SE AUTORIZA EL USO DEL DOCUMENTO NI DE CUALQUIER VERSIÓN MODIFICADA DEL DOCUMENTO SALVO EN VIRTUD DE LA PRESENTE CLÁUSULA DE EXENCIÓN DE RESPONSABILIDAD; Y - - - BAJO NINGUNA CIRCUNSTANCIA NI BAJO NINGÚN CONCEPTO LEGAL, YA SEA POR RESPONSABILIDAD CIVIL (INCLUIDA LA NEGLIGENCIA), CONTRACTUAL O DE OTRO TIPO, EL AUTOR, EL REDACTOR INICIAL, CUALQUIER CONTRIBUYENTE O CUALQUIER DISTRIBUIDOR DEL DOCUMENTO O DE UNA VERSIÓN MODIFICADA DEL DOCUMENTO, O CUALQUIER PROVEEDOR DE CUALQUIERA DE DICHAS PARTES, NO SERÁN RESPONSABLES ANTE NINGUNA PERSONA POR NINGÚN DAÑO DIRECTO, INDIRECTO, ESPECIAL, ACCIDENTAL O DERIVADO DE CUALQUIER TIPO, INCLUIDOS, ENTRE OTROS, LOS DAÑOS POR PÉRDIDA DE REPUTACIÓN, INTERRUPCIÓN DEL TRABAJO, FALLO O MAL FUNCIONAMIENTO DEL EQUIPO O CUALQUIER OTRO DAÑO O PÉRDIDA DERIVADO O RELACIONADO CON EL USO DEL DOCUMENTO Y LAS VERSIONES MODIFICADAS DEL DOCUMENTO, INCLUSO SI DICHAS PARTES HAN SIDO INFORMADAS DE LA POSIBILIDAD DE QUE SE PRODUZCAN DICHOS DAÑOS. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/es_AR/index.docbook mate-utils-1.26.1/gsearchtool/help/es_AR/index.docbook --- mate-utils-1.26.0/gsearchtool/help/es_AR/index.docbook 2021-08-05 19:47:51.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/es_AR/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - Proyecto de Documentación para MATE - - - Proyecto de Documentación para GNOME - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Descripción - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Línea de comandos - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/es_AR/legal.xml mate-utils-1.26.1/gsearchtool/help/es_AR/legal.xml --- mate-utils-1.26.0/gsearchtool/help/es_AR/legal.xml 2021-08-05 19:47:51.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/es_AR/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/es_CL/index.docbook mate-utils-1.26.1/gsearchtool/help/es_CL/index.docbook --- mate-utils-1.26.0/gsearchtool/help/es_CL/index.docbook 2021-08-05 19:47:52.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/es_CL/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Uso - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Description - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Línea de comandos - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/es_CL/legal.xml mate-utils-1.26.1/gsearchtool/help/es_CL/legal.xml --- mate-utils-1.26.0/gsearchtool/help/es_CL/legal.xml 2021-08-05 19:47:52.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/es_CL/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/es_CO/index.docbook mate-utils-1.26.1/gsearchtool/help/es_CO/index.docbook --- mate-utils-1.26.0/gsearchtool/help/es_CO/index.docbook 2021-08-05 19:47:52.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/es_CO/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Descripción - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Línea de comandos - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/es_CO/legal.xml mate-utils-1.26.1/gsearchtool/help/es_CO/legal.xml --- mate-utils-1.26.0/gsearchtool/help/es_CO/legal.xml 2021-08-05 19:47:52.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/es_CO/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/es_ES/index.docbook mate-utils-1.26.1/gsearchtool/help/es_ES/index.docbook --- mate-utils-1.26.0/gsearchtool/help/es_ES/index.docbook 2021-08-05 19:47:52.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/es_ES/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Descripción - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Línea de comandos - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/es_ES/legal.xml mate-utils-1.26.1/gsearchtool/help/es_ES/legal.xml --- mate-utils-1.26.0/gsearchtool/help/es_ES/legal.xml 2021-08-05 19:47:52.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/es_ES/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/et/index.docbook mate-utils-1.26.1/gsearchtool/help/et/index.docbook --- mate-utils-1.26.0/gsearchtool/help/et/index.docbook 2021-08-05 19:47:52.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/et/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,620 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Tagasiside - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Ilmar Kerm - - ikerm hot ee - - - - 2001 - - 2002. - - Ilmar Kerm - - - - - Tõivo Leedjärv - - toivo linux ee - - - - 2002 - - 2003. - - Tõivo Leedjärv - - - - - Priit Laes - - plaes plaes org - - - - 2004–2006 - - 2008 - - 2009 - - Priit Laes - - - - - Ivar Smolin - - okul linux ee - - - - 2005–2010 - - 2014–2015 - - 2018. - - Ivar Smolin - - - - - Search Tool - - - - - - - Sissejuhatus - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Kasutus - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Kirjeldus - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Muutmise kuupäev on rohkem kui - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Fail on tühi - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Omanik on tundmatu - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Näidatakse peidetud faile ja varufaile - - Include hidden and backup files in the search. - - - - Järgitakse nimeviideid - - Follow symbolic links when searching for files. - - - - Teised failisüsteemid jäetakse välja - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Käsurida - - Execute the following command: dconf-editor - - - - - - Keela kiirotsing - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Kiirotsingu teise läbivaatuse keelamine - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Kiirotsinugu vahelejäetavad rajad - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Kiirotsinugu teisel läbivaatusel vahelejäetavad rajad - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Näita rohkem valikuid - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/et/legal.xml mate-utils-1.26.1/gsearchtool/help/et/legal.xml --- mate-utils-1.26.0/gsearchtool/help/et/legal.xml 2021-08-05 19:47:52.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/et/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/eu/index.docbook mate-utils-1.26.1/gsearchtool/help/eu/index.docbook --- mate-utils-1.26.0/gsearchtool/help/eu/index.docbook 2021-08-05 19:47:52.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/eu/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,543 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - Zure ordenagailuko fitxategiak, karpetak eta dokumentuak bilatzeko tresna. - - - - 2015-2021 - MATE Documentation Project - - 2005 Dennis Cranston - 2002 2003 2004 Sun Microsystems - 2000 Alexander Kirillov - - - MATEren dokumentazio-proiektua - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Ohar-bidaltzea - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Sarrera - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Erabilera - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Azalpena - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Gutxieneko azken data-aldaketa - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Gehienezko tamaina - - Bilatu kilobytetan zehaztutako tamaina edo txikiagoa duten fitxategiak. - - - - Fitxategia hutsik dago - - Bilatu fitxategi hutsak. - - - - Erabiltzailearena - - Bilatu erabiltzaile zehatz baten fitxategietan. Idatzi erabiltzailearen izena dagokion testu kutxan. - - - - Taldearena - - Bilatu talde zehatz baten fitxategiak. Idatzi taldearen izena dagokion testu kutxan. - - - - Jabea ezezaguna da - - Bilatu sistemarentzat ezezagunak diren erabiltzaile baten edo talde baten fitxategiak. - - - - Izenak ez dauka - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Erakutsi ezkutuko eta babeseko fitxategiak - - Sartu ezkutuko eta babeskopia fitxategiak bilaketan. - - - - Jarraitu esteka sinbolikoei - - Jarraitu esteka sinbolikoei fitxategiak bilatzean. - - - - Baztertu beste fitxategi-sistemak - - Bilatu hasierako direktorioaren fitxategi sisteman dauden direktorioetan. - - - - -
- -
- - - Bilaketa gelditzeko - Klikatu Gelditu Bilatu fitxategiak bilaketa burutu aurretik. - - - - Bistaratutako fitxategia irekitzeko - To open a file displayed in the Search results list box, perform one of the following steps: - - Egin klik eskuineko botoiaz fitxategian eta aukeratu Ireki. - Egin klik bikoitza fitxategian. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - Bistaratutako fitxategia ezabatzeko - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - Bilaketaren emaitzak gordetzeko - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Ezarpenak - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Aplikazioak menua - - Aukeratu System Toolsdconf Editor. - - - - Komando-lerroa - - Exekutatu hurrengo komandoa: dconf-editor - - - - - - Desgaitu bilaketa azkarra - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Desgaitu bilaketa azkarrak 2. aldiz eskaneatzea - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Bilaketa azkarretik baztertutako bide-izenak - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Bilaketa azkarreko 2. eskaneatzetik baztertutako bide-izenak - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Balio lehenetsiak: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Erakutsi aukera gehigarriak - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/eu/legal.xml mate-utils-1.26.1/gsearchtool/help/eu/legal.xml --- mate-utils-1.26.0/gsearchtool/help/eu/legal.xml 2021-08-05 19:47:52.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/eu/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - Eskuliburu hau GFDL lizentziarekin banatzen diren MATE eskuliburuen bildumakoa da. Eskuliburu hau bildumatik bereizita banatu nahi baduzu, bana dezakezu, baina eskuliburuari lizentziaren kopia bat gehitu beharko diozu, lizentzian bertan 6. atalean azaltzen den bezala. - - Enpresek euren produktu eta zerbitzuak bereizteko erabiltzen dituzten izen asko marka erregistratu moduan hartu behar dira. Izen horiek MATEren edozein agiritan agertzen direnean, eta MATEren Dokumentazio Proiektuko kideak marka komertzialak direla konturatu badira, orduan izen horiek maiuskulaz idatzita egongo dira, osorik edo hasierako letra maiuskulaz jarrita. - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/fa/index.docbook mate-utils-1.26.1/gsearchtool/help/fa/index.docbook --- mate-utils-1.26.0/gsearchtool/help/fa/index.docbook 2021-08-05 19:47:52.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/fa/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - شرح - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - تاریخ تغییر بعد از - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - پرونده خالی است - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - مالک نامشخص است - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - نشان دادن پرونده‌های مخفی و پشتیبان - - Include hidden and backup files in the search. - - - - پی‌گیری پیوندهای نمادی - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - سطر فرمان - - Execute the following command: dconf-editor - - - - - - از کار انداختن جستجوی سریع - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - از کار انداختن پویش دوم جستجوی سریع - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - مسیرهای مستثنی جستجوی سریع - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - مسیرهای مستثنی از پویش دوم جستجوی سریع - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - نمایش گزینه‌های اضافی - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/fa/legal.xml mate-utils-1.26.1/gsearchtool/help/fa/legal.xml --- mate-utils-1.26.0/gsearchtool/help/fa/legal.xml 2021-08-05 19:47:52.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/fa/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/fi/index.docbook mate-utils-1.26.1/gsearchtool/help/fi/index.docbook --- mate-utils-1.26.0/gsearchtool/help/fi/index.docbook 2021-08-05 19:47:52.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/fi/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - Maten dokumentointiprojekti - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Palaute - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Johdanto - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Käyttö - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Kuvaus - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Muokattu _aiemmin kuin - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Tiedosto on tyhjä - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Omistaja on tunnistamaton - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Näytä piilo- ja varmuuskopiotiedostot - - Include hidden and backup files in the search. - - - - Seuraa symbolisia linkkejä - - Follow symbolic links when searching for files. - - - - Älä etsi toisilta tiedostojärjestelmistä - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Komentorivi - - Execute the following command: dconf-editor - - - - - - Poista pikaetsintä käytöstä - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Poista pikaetsinnän toinen haku käytöstä - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Pikaetsinnästä pois jätettävät polut - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Pikaetsinnän toisesta hausta pois jätettävät polut - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Näytä lisää ehtoja - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/fi/legal.xml mate-utils-1.26.1/gsearchtool/help/fi/legal.xml --- mate-utils-1.26.0/gsearchtool/help/fi/legal.xml 2021-08-05 19:47:52.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/fi/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/fr/index.docbook mate-utils-1.26.1/gsearchtool/help/fr/index.docbook --- mate-utils-1.26.0/gsearchtool/help/fr/index.docbook 2021-08-05 19:47:53.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/fr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,579 +0,0 @@ - - - - - - - -]> - - -
- - - - Manuel de la recherche de fichiers - - - Un outil de recherche pour trouver des fichiers, des dossiers et des documents sur son ordinateur. - - - 2015-2021 Projet de documentation MATE - 2005 Dennis Cranston - 2002 2003 2004 Sun Microsystems - 2000 Alexander Kirillov - - - Le projet de documentation MATE - - - GNOME Documentation Project - - - - - - Equipe de documentation MATE Recherche de responsables de fichiers - Dennis Cranston Search for Files Mainteneur
dennis_cranston@yahoo.com
- Sun Équipe de documentation GNOME Sun Microsystems
- Alexander Kirillov Équipe de documentation GNOME
kirillov@math.sunysb.edu
- - - - - - Manuel de la Recherche de fichiers V1.10 Juillet 2015 - Wolfgang Ulbrich - Recherche pour Mainteneur de fichiers - - Manuel de la Recherche de fichiers V2.7 Juin 2005 - Joachim Noreiko jnoreiko@yahoo.com - Recherche pour Mainteneur de fichiers - - Manuel de la Recherche de fichiers V2.6 Janvier 2005 - Dennis Cranston dennis_cranston@yahoo.com - Recherche pour Mainteneur de fichiers - - Manuel de la Recherche de fichiers V2.4 Février 2004 - Équipe de documentation Sun GNOME - GNOME Documentation Project - - Manuel de la Recherche de fichiers V2.3 Septembre 2002 - Équipe de documentation Sun GNOME - GNOME Documentation Project - - Manuel de la Recherche de fichiers V2.2 Août 2002 - Équipe de documentation Sun GNOME - GNOME Documentation Project - - Manuel de la Recherche de fichiers V2.1 Juillet 2002 - Équipe de documentation Sun GNOME - GNOME Documentation Project - - Manuel de la Recherche de fichiers V2.0 Mai 2002 - Équipe de documentation Sun GNOME - GNOME Documentation Project - - Manuel de la Recherche de fichiers 2000 - Alexander Kirillov kirillov@math.sunysb.edu - GNOME Documentation Project - - - - Ce manuel décrit la version 1.10 de Search for Files - - Votre avis - Pour signaler un bogue ou faire une suggestion concernant l'application Search for Files ou ce manuel,, suivez les instructions de la MATE Feedback Page. - - - - - - Vincent Renardias - - vincent@ldsol.com - - - - 1998-2000. - - Vincent Renardias - - - - - Joaquim Fellmann - - joaquim@hrnet.fr - - - - 2000. - - Joaquim Fellmann - - - - - Christophe Merlet - - redfox@redfoxcenter.org - - - - 2000-2006. - - Christophe Merlet - - - - - Christophe Fergeau - - teuf@users.sourceforge.net - - - - 2002-2003. - - Christophe Fergeau - - - - - Sun G11n - - gnome_int_l10n@ireland.sun.com - - - - 2002. - - Sun G11n - - - - - Robert-André Mauchin - - zebob.m@pengzone.org - - - - 2006-2008. - - Robert-André Mauchin - - - - - Stéphane Raimbault - - stephane.raimbault@gmail.com - - - - 2007. - - Stéphane Raimbault - - - - - Yannick Tailliez - - ytdispatch-libre@yahoo.com - - - - 2008. - - Yannick Tailliez - - - - - Claude Paroz - - claude@2xlibre.net - - - - 2008-2010. - - Claude Paroz - - - - - Gérard Baylard - - gerard dot b at bbox dot fr - - - - 2010 - - Gérard Baylard - - - - Outil de recherche - - - - - - Introduction - L'application Recherche de fichiers permet de rechercher des fichiers sur son ordinateur. Pour effectuer une recherche élémentaire, il suffit de saisir un nom de fichier, même partiel, avec ou sans caractères génériques. Pour affiner la recherche, il est possible d'appliquer des options de recherche supplémentaires. - La Recherche de fichiers exploite les commandes UNIX find, grep et locate. Par défaut, lors d'une recherche élémentaire, la Recherche de fichiers utilise d'abord la commande locate, et dans un deuxième temps la commande find, plus lente, mais plus efficace. - La sensibilité à la casse (majuscules-minuscules) dépend du système d'exploitation. Par exemple, avec Linux, les commandes find, grep et locate prennent en charge l'option -i, ce qui rend toutes les recherches insensibles à la casse. - - - - Premiers pas - - Recherche de fichiers peut être démarrée par différents moyens : - - - À partir d'une barre de menus dans un tableau de bord - - Choisissez EmplacementsRechercher des fichiers - - - - À partir d'un menu principal dans un tableau de bord - - Choisissez Rechercher des fichiers... - - - - À partir de la ligne de commande - - Exécutez la commande suivante : mate-search-tool - - - - - - - Au démarrage de la Recherche de fichiers, la fenêtre suivante s'affiche. - - -
- Fenêtre de la Recherche de fichiers - - Afficher les fenêtres principales de Search for Files - -
- - -
- - - - - Utilisation - - - Recherche élémentaire - - Pour effectuer une recherche élémentaire d'un fichier, effectuez les opérations suivantes : - - Saisissez le texte de la recherche dans le champ Le nom contient. Le texte de recherche peut être un nom de fichier complet ou partiel, avec ou sans caractères génériques, comme l'illustre le tableau suivant : - - - - - - - - - - Contient le texte - - Exemple - - Résultat - - - - - - Nom de fichier complet ou partiel - - - monfichier.txt - - - La Recherche de fichiers recherche tous les fichiers dont le nom contient le texte monfichier.txt. - - - - - Un nom de fichier partiel avec des caractères génériques (*, [, ]) - - - *.[ch] - - - La Recherche de fichiers recherche tous les fichiers ayant l'extension .c ou .h. - - - - - - - Dans le champ Rechercher dans le dossier, sélectionnez le dossier ou le périphérique à partir duquel la recherche de fichiers se fera. - Cliquez sur Rechercher pour lancer la recherche. - - - La Recherche de fichiers effectue la recherche dans le dossier indiqué et dans ses sous-dossiers. Les résultats de la recherche sont affichés dans la zone de liste Résultats de la recherche. Si aucun fichier ne correspond aux critères de recherche, l'application affiche le message « Aucun fichier trouvé » dans la zone de liste Résultats de la recherche. - Par défaut, la Recherche de fichiers effectue une première recherche rapide à l'aide de la commande locate suivie d'une seconde recherche plus approfondie avec la commande find. La commande locate est plus rapide parce qu'elle utilise une base de données d'informations sur les fichiers. Si cette base de données date de plus d'une semaine, il se peut que la Recherche de fichiers vous avertisse que les résultats de la recherche peuvent ne pas être à jour. Elle vous donnera alors la possibilité de désactiver la recherche rapide. Pour mettre à jour la base de données, exécutez la commande updatedb avec des droits d'administrateur. - - - - Ajout d'options de recherche - Il est possible d'ajouter des options supplémentaires pour la recherche de fichiers. Pour cela, effectuez les opérations suivantes : - - Cliquez sur le texte Sélectionner plus d'options. - Cliquez sur la liste déroulante Options disponibles. - Sélectionnez l'option de recherche de votre choix. - Cliquez sur Ajouter. - Complétez l'information requise par l'option de recherche, comme expliqué dans . - Répétez les étapes précédentes pour chaque option de recherche que vous souhaitez appliquer. - - Pour enlever une option de recherche de la recherche en cours, cliquez sur le bouton Enlever en regard de l'option concernée. - Pour désactiver les options de recherche pour la recherche en cours, cliquez à nouveau sur le texte Sélectionner plus d'options. - - - Options de recherche - - - - - - - Nom de l'option - - Description - - - - - - Contient le texte - - Recherche les fichiers de type texte pur contenant le texte spécifié. - - - - Date de modification inférieure à - - Recherche les fichiers modifiés dans les n derniers jours. - - - - Date de modification supérieure à - - Recherche les fichiers modifiés il y a plus de n jours. - - - - Taille d'au moins - - Recherche les fichiers dont la taille est égale ou plus grande que la valeur saisie en kilooctets. - - - - Taille d'au plus - - Recherche les fichiers dont la taille est égale ou plus petite que la valeur saisie en kilooctets. - - - - Le fichier est vide - - Recherche les fichiers vides. - - - - Appartient à l'utilisateur - - Recherche les fichiers dont le propriétaire est l'utilisateur indiqué. Saisissez le nom de l'utilisateur dans la zone de texte prévue à cet effet. - - - - Appartient au groupe - - Recherche des fichiers dont le propriétaire est le groupe indiqué. Saisissez le nom du groupe dans la zone de texte prévue à cet effet. - - - - Le propriétaire n'est pas reconnu - - Recherche des fichiers dont l'utilisateur ou le groupe propriétaire est inconnu du système. - - - - Le nom ne contient pas - - Recherchez les noms de fichiers qui ne contiennent pas la chaîne que vous entrez. Saisissez un nom de fichier complet ou partiel avec des caractères génériques dans le champ prévu à cet effet. Utilisez * pour indiquer une séquence de caractères. Utilisation ? pour indiquer un seul caractère. La recherche est sensible à la casse. - - - - Le fichier correspond à l'expression régulière - - Recherche des fichiers contenant l'expression régulière spécifiée, soit dans leur chemin d'accès, soit dans leur nom de fichier. Saisissez l'expression régulière dans la zone de texte prévue à cet effet. - - - - Afficher les fichiers cachés et de sauvegarde - - Inclut les fichiers cachés et de sauvegarde dans la recherche. - - - - Suivre les liens symboliques - - Suit les liens symboliques lors de la recherche de fichiers. - - - - Exclure les autres systèmes de fichiers - - Recherche seulement dans les dossiers qui se trouvent sur le même système de fichiers que le dossier de base de la recherche. - - - - -
- -
- - - Interruption d'une recherche - Cliquez sur Arrêter pour interrompre une recherche avant qu'elle soit terminée. - - - - Ouverture d'un fichier affiché - Pour ouvrir un fichier affiché dans la liste Résultats de la recherche, effectuez l'une des opérations suivantes : - - Cliquez avec le bouton droit sur le fichier, puis choisissez Ouvrir. - Double-cliquez sur le fichier. - - Pour ouvrir le dossier contenant un fichier affiché dans le résultats de recherche zone de liste, faites un clic droit sur le fichier, puis choisissez Ouvrir le dossier contenant. - - - - Suppression d'un fichier affiché - Pour supprimer un fichier affiché dans la liste Résultats de la recherche, cliquez avec le bouton droit sur le fichier, puis choisissez Déplacer à la corbeille. - - - - - - Enregistrement des résultats de la recherche - Pour enregistrer les résultats de la dernière recherche effectuée par la Recherche de fichiers, cliquez avec le bouton droit sur la liste des Résultats de la recherche, puis choisissez Enregistrer le résultat sous. Saisissez le nom du fichier dans lequel enregistrer les résultats, puis cliquez sur Enregistrer. - - -
- - - - - Paramètres - - La Recherche de fichiers fournit des clés gsettings pour modifierkeys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - Menu Applications - - Choisissez Outils systèmeÉditeur dconf. - - - - Ligne de commande - - Exécutez la commande suivante : dconf-editor - - - - - - Désactivation de la recherche rapide - Nom de la clé : org.mate.search-tool.disable-quick-search - Valeur par défaut : faux - La Recherche de fichiers accélère la recherche de noms de fichiers en utilisant la commande locate. Locate donne la possibilité d'indexer et de rechercher rapidement et de manière sûre des noms de fichiers. Mais comme locate dépend d'un index de fichiers, les résultats de la recherche ne correspondent pas toujours à l'état actuel du système. - - - - Désactivation de la seconde passe de recherche rapide - Nom de la clé : org.mate.search-tool.disable-quick-search-second-scan - Valeur par défaut : faux - Après une première recherche rapide, la Recherche de fichiers effectue une seconde recherche approfondie avec la commande find. Le but de cette seconde recherche est de trouver des fichiers qui n'ont pas été indexés. Les fichiers correspondant aux critères de recherche sont ajoutés à la liste des Résultats de la recherche afin que cette liste soit bien à jour. - - - - Chemins exclus de la recherche rapide - Nom de la clé : org.mate.search-tool.quick-search-excluded-paths - Valeur par défaut : [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - La Recherche de fichiers n'effectue pas de recherche rapide dans les dossiers contenus dans cette clé. La recherche de noms de fichiers dans ces chemins d'accès utilise la commande find. Les caractères génériques « * » et « ? » sont pris en compte. - - - - Chemins exclus du second balayage de la recherche rapide - Nom de la clé : org.mate.search-tool.quick-search-second-scan-excluded-paths - Valeur par défaut : [/] - La Recherche de fichiers n'effectue pas de seconde recherche dans les chemins d'accès définis par cette clé. La recherche rapide dans ces chemins d'accès n'est pas suivie d'une recherche approfondie avec la commande find. Les caractères génériques « * » et « ? » sont pris en compte. - - - - Afficher les options supplémentaires - Nom de la clé : org.mate.search-tool.show-additional-options - Valeur par défaut : faux - Cette clé détermine si la section Sélectionner plus d'options est développée lors du démarrage de la Recherche de fichiers. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/fr/legal.xml mate-utils-1.26.1/gsearchtool/help/fr/legal.xml --- mate-utils-1.26.0/gsearchtool/help/fr/legal.xml 2021-08-05 19:47:53.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/fr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Permission est accordée de copier, distribuer et/ou modifier ce document selon les termes de la Licence GNU de documentation libre (GFDL), Version 1.1 ou ultérieure publiée par la Free Software Foundation sans section inaltérable, sans texte de première page ni de dernière page de couverture. Vous trouverez une copie (en anglais) de la GFDL en suivant ce lien ou dans le fichier COPYING-DOCS fourni avec le présent manuel. - Ce manuel fait partie de la collection de manuels MATE distribués selon les termes de la licence de documentation libre GNU. Si vous souhaitez distribuer ce manuel indépendamment de la collection, vous devez joindre un exemplaire de la licence au document, comme indiqué dans la section 6 de celle-ci. - - La plupart des noms utilisés par les entreprises pour distinguer leurs produits et services sont des marques déposées. Lorsque ces noms apparaissent dans la documentation MATE et que les membres du projet de Documentation MATE sont informés de l'existence de ces marques déposées, soit ces noms entiers, soit leur première lettre est en majuscule. - - CE DOCUMENT ET SES VERSIONS MODIFIEES SONT FOURNIS SELON LES TERMES DE LA LICENCE GNU FREE DOCUMENTATION EN COMPRENANT QUE : - - LE PRÉSENT DOCUMENT EST FOURNI « TEL QUEL », SANS AUCUNE GARANTIE, EXPRESSE OU IMPLICITE, Y COMPRIS, ET SANS LIMITATION, LES GARANTIES DE BONNE QUALITÉ MARCHANDE OU D'APTITUDE À UN EMPLOI PARTICULIER OU AUTORISÉ DU DOCUMENT OU DE SA VERSION MODIFIÉE. L'UTILISATEUR ASSUME TOUT RISQUE RELATIF À LA QUALITÉ, À LA PERTINENCE ET À LA PERFORMANCE DU DOCUMENT OU DE SA VERSION DE MISE À JOUR. SI LE DOCUMENT OU SA VERSION MODIFIÉE S'AVÉRAIT DÉFECTUEUSE, L'UTILISATEUR (ET NON LE RÉDACTEUR INITIAL, L'AUTEUR, NI TOUT AUTRE PARTICIPANT) ENDOSSERA LES COÛTS DE TOUTE INTERVENTION, RÉPARATION OU CORRECTION NÉCESSAIRE. CETTE DÉNÉGATION DE RESPONSABILITÉ CONSTITUE UNE PARTIE ESSENTIELLE DE CETTE LICENCE. AUCUNE UTILISATION DE CE DOCUMENT OU DE SA VERSION MODIFIÉE N'EST AUTORISÉE AUX TERMES DU PRÉSENT ACCORD, EXCEPTÉ SOUS CETTE DÉNÉGATION DE RESPONSABILITÉ ; - - - EN AUCUNE CIRCONSTANCE ET SOUS AUCUNE INTERPRÉTATION DE LA LOI, QU'IL S'AGISSE DE RESPONSABILITÉ CIVILE (Y COMPRIS LA NÉGLIGENCE), CONTRACTUELLE OU AUTRE, L'AUTEUR, LE RÉDACTEUR INITIAL, TOUT PARTICIPANT ET TOUT DISTRIBUTEUR DE CE DOCUMENT OU DE SA VERSION DE MISE À JOUR AINSI QUE TOUT FOURNISSEUR DE QUELQUE PARTIE QUE CE SOIT NE POURRONT ÊTRE TENUS RESPONSABLES À L'ÉGARD DE QUICONQUE POUR TOUT DOMMAGE DIRECT, INDIRECT, PARTICULIER OU ACCIDENTEL DE TOUT TYPE Y COMPRIS, SANS LIMITATION, LES DOMMAGES LIÉS À LA PERTE DE CLIENTÈLE, AUX ARRÊTS DE TRAVAIL, AUX DÉFAILLANCES ET AUX DYSFONCTIONNEMENTS INFORMATIQUES OU TOUT AUTRE DOMMAGE OU PERTE LIÉE À L'UTILISATION DU PRÉSENT DOCUMENT ET DE SES VERSIONS DE MISE À JOUR, ET CE MÊME SI CES PARTIES ONT ÉTÉ INFORMÉES DE LA POSSIBILITÉ DE TELS DOMMAGES. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/fur/index.docbook mate-utils-1.26.1/gsearchtool/help/fur/index.docbook --- mate-utils-1.26.0/gsearchtool/help/fur/index.docbook 2021-08-05 19:47:53.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/fur/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Descrizion - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Command line - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/fur/legal.xml mate-utils-1.26.1/gsearchtool/help/fur/legal.xml --- mate-utils-1.26.0/gsearchtool/help/fur/legal.xml 2021-08-05 19:47:53.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/fur/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/fy/index.docbook mate-utils-1.26.1/gsearchtool/help/fy/index.docbook --- mate-utils-1.26.0/gsearchtool/help/fy/index.docbook 2021-08-05 19:47:53.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/fy/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Beskriuwing - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Command line - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/fy/legal.xml mate-utils-1.26.1/gsearchtool/help/fy/legal.xml --- mate-utils-1.26.0/gsearchtool/help/fy/legal.xml 2021-08-05 19:47:53.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/fy/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ga/index.docbook mate-utils-1.26.1/gsearchtool/help/ga/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ga/index.docbook 2021-08-05 19:47:53.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ga/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Úsáid - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Cur Síos - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Tá an comhad folamh - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - úinir gan aith - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Líne na n-orduithe - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ga/legal.xml mate-utils-1.26.1/gsearchtool/help/ga/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ga/legal.xml 2021-08-05 19:47:53.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ga/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/gl/index.docbook mate-utils-1.26.1/gsearchtool/help/gl/index.docbook --- mate-utils-1.26.0/gsearchtool/help/gl/index.docbook 2021-08-05 19:47:53.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/gl/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - -
- - - - Manual do Busca de ficheiros - - - Unha ferramenta de busca para atopar ficheiros, cartafoles e documentos no seu computador. - - - 2015-2021 Proxecto de documentación do MATE - 2005 Dennis Cranston - 2002 2003 2004 Sun Microsystems - 2000 Alexander Kirillov - - - Proxecto de documentación do MATE - - - Proxecto de documentación do GNOME - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - Dennis Cranston Mantedor do Busca de ficheiros
dennis_cranston@yahoo.com
- Sun Equipo de documentación do GNOME Sun Microsystems
- Alexander Kirillov Equipo de documentación do GNOME
kirillov@math.sunysb.edu
- - - - - - Manual do Busca de ficheiros V1.10 xullo 2015 - Wolfgang Ulbrich - Mantedor do Busca de ficheiros - - Manual do Busca de ficheiros V2.7 xuño 2005 - Joachim Noreiko jnoreiko@yahoo.com - Mantedor do Busca de ficheiros - - Manual do Busca de ficheiros V2.6 xaneiro 2005 - Dennis Cranston dennis_cranston@yahoo.com - Mantedor do Busca de ficheiros - - Manual do Busca de ficheiros V2.4 febreiro 2004 - Proxecto de documentación do GNOME de Sun - Proxecto de documentación do GNOME - - Manual do Busca de ficheiros V2.3 setembro 2002 - Proxecto de documentación do GNOME de Sun - Proxecto de documentación do GNOME - - Manual do Busca de ficheiros V2.2 agosto 2002 - Proxecto de documentación do GNOME de Sun - Proxecto de documentación do GNOME - - Manual do Busca de ficheiros V2.1 xullo 2002 - Proxecto de documentación do GNOME de Sun - Proxecto de documentación do GNOME - - Manual do Busca de ficheiros V2.0 maio 2002 - Proxecto de documentación do GNOME de Sun - Proxecto de documentación do GNOME - - Manual do Busca de ficheiros 2000 - Alexander Kirillov kirillov@math.sunysb.edu - Proxecto de documentación do GNOME - - - - Este manual describe a versión 1.10 do Busca de ficheiros. - - Comentarios - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - Ferramenta de busca - - - - - - Introdución - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Comezando - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Uso - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Exemplo - - Resultado - - - - - - Full or partial filename - - - - omeuficheiro.txt - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Seleccione a opción de busca que quere aplicar. - Prema en Engadir. - Specify the required search information for the search option, as described in . - Repita os pasos anteriores para cada opción de busca que queira aplicar. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Opcións de busca - - - - - - - Nome da opción - - Descrición - - - - - - Contén o texto - - Busque ficheiros de tipo texto sinxelo que conteñan o texto especificado. - - - - Data de modificación anterior a - - Busca ficheiros modificados antes do período especificado en días. - - - - Data de modificación posterior a - - Busca ficheiros modificados após o período especificado en días. - - - - Tamaño mínimo - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - O ficheiro está baleiro - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Non se recoñece o propietario - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Amosar os ficheiros agochados e as copias de seguridade - - Include hidden and backup files in the search. - - - - Seguir as ligazóns simbólicas - - Follow symbolic links when searching for files. - - - - Excluír outros sistemas de ficheiros - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Axustes - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Menú de aplicacións - - Choose System Toolsdconf Editor. - - - - Liña de ordes - - Execute the following command: dconf-editor - - - - - - Desactivar a busca rápida - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Desactivar a segunda análise da busca rápida - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Rutas excluídas da busca rápida - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Rutas excluídas da segunda análise da busca rápida - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Amosar as opcións adicionais - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/gl/legal.xml mate-utils-1.26.1/gsearchtool/help/gl/legal.xml --- mate-utils-1.26.0/gsearchtool/help/gl/legal.xml 2021-08-05 19:47:53.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/gl/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Autorízase a copia, distribución e/ou modificación deste documento baixo os termos da Licenza de Documentación Libre de GNU (GFDL), versión 1.1 ou calquera outra versión posterior publicada pola Free Software Foundation sen seccións invariantes, sen textos de cuberta e sen textos de cuberta traseira. Pode atopar unha copia da GFDL en ligazón ou no ficheiro COPYING-DOCS distribuído con este manual. - Este manual forma parte da colección de manuais MATE distribuídos baixo a licenza GFDL. Se quere distribuír este manual separadamente da colección, pode facelo engadindo unha copia da licenza ao manual, tal e como está descrito na sección 6 da licenza. - - Moitos dos nomes utilizados polas empresas para distinguir os seus produtos e servizos son reivindicados como marcas comerciais. Cando estes nomes aparecen en calquera documentación de MATE e os membros do Proxecto de documentación de MATE son conscientes das marcas rexistradas, os nomes están en letras maiúsculas ou maiúsculas iniciais. - - O DOCUMENTO E AS VERSIÓNS MODIFICADAS DO DOCUMENTO FORNÉCENSE BAIXO OS TERMOS DA LICENZA LIBRE DE DOCUMENTACIÓN DE GNU CO ACORDO ADICIONAL DE: - - O DOCUMENTO FORNÉCESE «TAL E COMO É», SEN GARANTÍA DE NINGÚN TIPO, NIN EXPLÍCITA NIN IMPLÍCITA INCLUÍNDO, SEN LIMITACIÓN, GARANTÍA DE QUE O DOCUMENTO OU VERSIÓN MODIFICADA DESTE CAREZA DE DEFECTOS COMERCIAIS, SEXA AXEITADO A UN FIN CONCRETO OU INCUMPRA ALGUNHA NORMATIVA. TODO O RISCO RELATIVO Á CALIDADE, PRECISIÓN E UTILIDADE DO DOCUMENTO OU A SÚA VERSIÓN MODIFICADA RECAE EN VOSTEDE. SE CALQUERA DOCUMENTO OU VERSIÓN MODIFICADA DAQUEL RESULTARA DEFECTUOSO EN CALQUERA ASPECTO, VOSTEDE (E NON O REDACTOR INICIAL, AUTOR OU COLABORADOR) ASUMIRÁ OS CUSTOS DE TODA REPARACIÓN, MANTEMENTO OU CORRECCIÓN NECESARIOS. ESTA RENUNCIA DE GARANTÍA É UNHA PARTE ESENCIAL DESTA LICENZA. NON SE AUTORIZA O USO DE NINGÚN DOCUMENTO NIN VERSIÓN MODIFICADA DESTE POLO PRESENTE, SALVO DENTRO DO CUMPRIMENTO DA RENUNCIA; E - - - BAIXO NINGUNHA CIRCUNSTANCIA NIN BAIXO NINGUNHA TEORÍA LEGAL, SEXA POR ERRO (INCLUÍNDO NEGLIXENCIA), CONTRATO OU DE ALGÚN OUTRO MODO, O AUTOR, O ESCRITOR INICIAL, CALQUERA COLABORADOR, OU CALQUERA DISTRIBUIDOR DO DOCUMENTO OU VERSIÓN MODIFICADA DO DOCUMENTO, OU CALQUERA PROVEDOR DE CALQUERA DESAS PARTES, SERÁ RESPONSÁBEL ANTE NINGUNHA PERSOA POR NINGÚN DANO DIRECTO, INDIRECTO, ESPECIAL, INCIDENTAL OU DERIVADO DE NINGÚN TIPO, INCLUÍNDO, SEN LIMITACIÓN DANOS POR PERDA DE MERCANCÍAS, PARO TÉCNICO, FALLO INFORMÁTICO OU MAL FUNCIONAMENTO OU CALQUERA OUTRO POSÍBEL DANO OU PERDAS DERIVADAS OU RELACIONADAS CO USO DO DOCUMENTO OU AS SÚAS VERSIÓNS MODIFICADAS, AÍNDA QUE DITA PARTE TEÑA SIDO INFORMADA DA POSIBILIDADE DE QUE SE PRODUCISEN DITOS DANOS. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/gu/index.docbook mate-utils-1.26.1/gsearchtool/help/gu/index.docbook --- mate-utils-1.26.0/gsearchtool/help/gu/index.docbook 2021-08-05 19:47:53.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/gu/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - પરિચય - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - વપરાશ - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - વર્ણન - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - કરતાં વધુ દિવસોથી તારીખ બદલાયેલ છે - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - ફાઇલ ખાલી છે - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - માલિક ઓળખીતો નથી - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - છુપી અને બેક-અપ ફાઈલો બતાવો - - Include hidden and backup files in the search. - - - - સાંકેતિક કડીઓને અનુસરો - - Follow symbolic links when searching for files. - - - - બીજી ફાઇલસિસ્ટમોને બહાર કાઢો - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - આદેશ વાક્ય - - Execute the following command: dconf-editor - - - - - - ઝડપી શોધ નિષ્ક્રિય કરો - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - બીજી સ્કેનમાં ઝડપી શોધ નિષ્ક્રિય કરો - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - ઝડપી શોધ નહિં સમાવિષ્ટ પથો - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - ઝડપી શોધ દ્વિતીય સ્કેન નહિં સમાવિષ્ટ પથો - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - વધારાના વિકલ્પો બતાવો - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/gu/legal.xml mate-utils-1.26.1/gsearchtool/help/gu/legal.xml --- mate-utils-1.26.0/gsearchtool/help/gu/legal.xml 2021-08-05 19:47:53.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/gu/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ha/index.docbook mate-utils-1.26.1/gsearchtool/help/ha/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ha/index.docbook 2021-08-05 19:47:53.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ha/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Kwatanci - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Command line - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ha/legal.xml mate-utils-1.26.1/gsearchtool/help/ha/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ha/legal.xml 2021-08-05 19:47:53.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ha/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/he/index.docbook mate-utils-1.26.1/gsearchtool/help/he/index.docbook --- mate-utils-1.26.0/gsearchtool/help/he/index.docbook 2021-08-05 19:47:53.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/he/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - מיזם התיעוד של MATE - - - מיזם התיעוד של GNOME - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - משוב - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - היכרות - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - מההתחלה - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - בשימוש - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - לחיצה על הוספה. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - תיאור - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - תאריך השינוי גדול מ - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - הקובץ ריק - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - הבעלים לא מזוהים - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - הצג קבצים מוסתרים וגיבויים - - Include hidden and backup files in the search. - - - - עקוב אחר קישורים - - Follow symbolic links when searching for files. - - - - אל תכלול מערכות קבצים אחרות - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - שורת פקודה - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/he/legal.xml mate-utils-1.26.1/gsearchtool/help/he/legal.xml --- mate-utils-1.26.0/gsearchtool/help/he/legal.xml 2021-08-05 19:47:53.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/he/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/hi/index.docbook mate-utils-1.26.1/gsearchtool/help/hi/index.docbook --- mate-utils-1.26.0/gsearchtool/help/hi/index.docbook 2021-08-05 19:47:54.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/hi/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE प्रलेखन योजना - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - परिचय - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - उपयोग - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - विवरण - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - तिथि परिवर्धित इससे अधिक - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - फ़ाइल खाली है - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - मालिक अज्ञात है - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - छुपे बैकअप फ़ाइलें दिखाएँ - - Include hidden and backup files in the search. - - - - सिंबालिक लिंक्स का अनुसरण करें - - Follow symbolic links when searching for files. - - - - अन्य फ़ाइल-सिस्टम्स भी सम्मिलित करें - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - कमांड लाइन - - Execute the following command: dconf-editor - - - - - - अक्षम क्विक ढूंढें - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - अक्षम क्विक ढूंढें सेकण्ड स्कैन - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - क्विक खोज निकाला पथ - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - क्विक ढूंढें सेकण्ड स्कैन निकाला पथ - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - अधिक विकल्प दिखाएँ - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/hi/legal.xml mate-utils-1.26.1/gsearchtool/help/hi/legal.xml --- mate-utils-1.26.0/gsearchtool/help/hi/legal.xml 2021-08-05 19:47:54.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/hi/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/hr/index.docbook mate-utils-1.26.1/gsearchtool/help/hr/index.docbook --- mate-utils-1.26.0/gsearchtool/help/hr/index.docbook 2021-08-05 19:47:54.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/hr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,529 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - Alat za traženje za nalaženje datoteka, mapa i dokumenata na vašem računalu. - - - - 2015-2021 - MATE Documentation Project - - 2005 Dennis Cranston - 2002 2003 2004 Sun Microsystems - 2000 Alexander Kirillov - - - MATE dokumentacijski projekt - - - GNOME dokumentacijski projekt - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- Sun GNOME dokumentacijski tim Sun Microsystems
- Alexander Kirillov GNOME dokumentacijski projekt
kirillov@math.sunysb.edu
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Povratne informacije - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Uvod - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Započnimo - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - Iz naredbenog retka - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Upotreba - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Klikni Dodaj. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Opis - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Datum promijenjen prije više - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Datoteka je prazna - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Vlasnik nije prepoznat - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Pokaži skrivene datoteke i zaštitne kopije datoteka - - Include hidden and backup files in the search. - - - - Slijedi simboličke linkove - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Postavke - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Ime domene - - Execute the following command: dconf-editor - - - - - - Isključi brzu pretragu - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Isključi brzu pretragu drugog pregledavanja - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Brza pretraga isključenih putanja - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Brza pretraga drugog pregledavanja isključenih putanja - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Prikaži dodatne postavke - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/hr/legal.xml mate-utils-1.26.1/gsearchtool/help/hr/legal.xml --- mate-utils-1.26.0/gsearchtool/help/hr/legal.xml 2021-08-05 19:47:54.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/hr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/hu/index.docbook mate-utils-1.26.1/gsearchtool/help/hu/index.docbook --- mate-utils-1.26.0/gsearchtool/help/hu/index.docbook 2021-08-05 19:47:54.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/hu/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE dokumentációs projekt - - - GNOME dokumentációs projekt - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Visszajelzés - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Bevezetés - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Kezdő lépések - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Használat - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Leírás - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Módosítva több mint - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - A fájl üres - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - A tulajdonos felismerhetetlen - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Rejtett fájlok és biztonsági mentések megjelenítése - - Include hidden and backup files in the search. - - - - Szimbolikus linkek követése - - Follow symbolic links when searching for files. - - - - Más fájlrendszerek kizárása a keresésből - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Alkalmazások menü - - Choose System Toolsdconf Editor. - - - - Parancssor - - Execute the following command: dconf-editor - - - - - - Gyors keresés kikapcsolása - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Gyors keresés második körének kikapcsolása - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - A gyors keresésből kihagyott útvonalak - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - A gyors keresés második köréből kihagyandó útvonalak - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - További beállítások megjelenítése - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/hu/legal.xml mate-utils-1.26.1/gsearchtool/help/hu/legal.xml --- mate-utils-1.26.0/gsearchtool/help/hu/legal.xml 2021-08-05 19:47:54.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/hu/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Jelen dokumentum szabadon másolható, terjeszthető és/vagy módosítható a GNU Free Documentation License (GFDL) 1.1-es verziója vagy a Free Software Foundation által kiadott ennél frissebb verziója alatt, a "Nem változtatható szakaszok", "Címlapszövegek" és a "Hátlapszövegek" kivételével. A GFDL leírása ezzel a hivatkozással érhető el, vagy a jelen dokumentációban található COPYING-DOCS fájlban. - Ez a kézikönyv része a GFDL alatt megjelenő MATE dokumentációk gyűjteményének. A kézikönyv a gyűjteménytől függetlenül szabadon terjeszthető, a licenc másolatát mellékelve a 6. szakaszban leírtaknak megfelelően. - - A cégek különböző, védjegy alá tartozó elnevezéseket használnak termékeik és szolgáltatásuk megkülönböztetéséhez. Ahol ezek a nevek megjelennek bármelyik MATE dokumentációban és a MATE dokumentációs projekt tagjainak tudomásuk van a védjegyről, abban az esetben ezek az elnevezések teljes egészében vagy kezdőbetűik nagybetűsek. - - A DOKUMENTUM ÉS A DOKUMENTUM MÓDOSÍTOTT VERZIÓI A GNU FREE DOCUMENTATION LICENSE FELTÉTELEI SZERINT KERÜLNEK KÖZREADÁSRA, A TOVÁBBIAK ISMERETÉBEN: - - A DOKUMENTUM „JELEN ÁLLAPOTÁBAN” KERÜL KIADÁSRA MINDENFÉLE GARANCIAVÁLLALÁS NÉLKÜL, LEGYEN AZ KIFEJEZETT VAGY BELEÉRTETT, BELEÉRTVE, DE NEM KIZÁRÓLAGOSAN A FORGALOMBA HOZHATÓSÁGRA VAGY ALKALMAZHATÓSÁGRA, A JELEN DOKUMENTUMNAK VAGY ANNAK MÓDOSÍTOTT VERZIÓJÁNAK HIBAMENTESSÉGÉRE VONATKOZÓ GARANCIÁKAT. A DOKUMENTUM VAGY ANNAK MÓDOSÍTOTT VÁLTOZATÁNAK MINŐSÉGÉBŐL ÉS FELHASZNÁLHATÓSÁGÁBÓL FAKADÓ ÖSSZES KOCKÁZAT A FELHASZNÁLÓT TERHELI. HA A DOKUMENTUM BIZONYÍTOTTAN HIBÁS, A FELHASZNÁLÓNAK MAGÁNAK (NEM A DOKUMENTUM ÍRÓJÁNAK, KIADÓJÁNAK VAGY BÁRMELY KÖZREMŰKÖDŐNEK) KELL VÁLLALNIA A JAVÍTÁSHOZ SZÜKSÉGES MINDEN KÖLTSÉGET. A JELEN GARANCIAELUTASÍTÁS A JELEN LICENC LÉNYEGI RÉSZE. A LEFEDETT DOKUMENTUM VAGY ANNAK MÓDOSÍTOTT VERZIÓJÁNAK HASZNÁLATA CSAK A JELEN ELUTASÍTÁSSAL EGYÜTT ENGEDÉLYEZETT, ÉS - - - SEMMILYEN KÖRÜLMÉNYEK KÖZÖTT ÉS SEMMILYEN JOGI MEGFONTOLÁSBÓL, LEGYEN AZ MAGÁNJOGI VÉTKES CSELEKMÉNY (BELEÉRTVE A HANYAGSÁGOT), SZERZŐDÉS VAGY BÁRMELY MÁS DOLOG, NEM FELELŐS ÖN, A LEFEDETT KÓD ELSŐ FEJLESZTŐJE ÉS TÖBBI KÖZREMŰKÖDŐJE VAGY EZEK BÁRMELY SZÁLLÍTÓJA SEMMILYEN MÁS SZEMÉLY FELÉ SEMMILYEN FAJTA KÖZVETLEN, SPECIÁLIS, VÉLETLEN VAGY KÖVETKEZMÉNYES KÁRÉRT, BELEÉRTVE DE NEM KIZÁRÓLAG A HÍRNÉV ELVESZTÉSÉBŐL, MUNKA LEÁLLÁSÁBÓL, SZÁMÍTÓGÉP MEGHIBÁSODÁSÁBÓL VAGY HELYTELEN MŰKÖDÉSÉBŐL SZÁRMAZÓ, VAGY BÁRMELY EGYÉB KERESKEDELMI KÁROKAT ÉS VESZTESÉGEKET, MÉG AKKOR IS, HA AZ ILYEN FÉL INFORMÁLVA LETT AZ ILYEN KÁROK ELŐFORDULÁSÁNAK LEHETŐSÉGÉRŐL. A FELELŐSSÉG EZEN KORLÁTOZÁSA NEM ALKALMAZHATÓ ABBAN AZ ESETBEN, HA HALÁL VAGY SZEMÉLYI SÉRÜLÉS TÖRTÉNT A FÉL HANYAGSÁGÁBÓL KIFOLYÓLAG, OLYAN MÉRTÉKBEN, AMENNYIRE AZ ALKALMAZHATÓ TÖRVÉNYEK MEGTILTJÁK AZ ILYEN KORLÁTOZÁSOKAT. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/hy/index.docbook mate-utils-1.26.1/gsearchtool/help/hy/index.docbook --- mate-utils-1.26.0/gsearchtool/help/hy/index.docbook 2021-08-05 19:47:54.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/hy/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE փաստաթղթավորման նախագիծ - - - GNOME փաստաթղթավորման նախագիծ - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Արձագանք - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Օգտագործում - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Նկարագրություն - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Փոփոխված ամսաթիվը ավել է քան - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - ֆայլը դատարկ է - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Չճանաչված սեփականատեր - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Ցույց տալ թաքնված և պահեստային ֆայլերը - - Include hidden and backup files in the search. - - - - Հետևել խորհրդանշանային հղումներին - - Follow symbolic links when searching for files. - - - - Բացառել այլ ֆայլային համակարգերը - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Հրամանի տող - - Execute the following command: dconf-editor - - - - - - Անջատել Արագ Որոնումը - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Անջատել Արագ Որոնումը Երկրոր Փնտրումը - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Հեռացված Ուղիների Արագ Որոնում - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Արագ Որոնման Երկրորդ Փնտրման Հեռացված Ուղիներ - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Ցույց տալ լրացուցիչ տարբերակներ - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/hy/legal.xml mate-utils-1.26.1/gsearchtool/help/hy/legal.xml --- mate-utils-1.26.0/gsearchtool/help/hy/legal.xml 2021-08-05 19:47:54.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/hy/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/id/index.docbook mate-utils-1.26.1/gsearchtool/help/id/index.docbook --- mate-utils-1.26.0/gsearchtool/help/id/index.docbook 2021-08-05 19:47:54.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/id/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,551 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - 2015-2021 Projek Dokumentasi MATE - - 2005 - Dennis Cranston - - 2002 2003 2004 Sun Microsystems - 2000Alexander Kirillov - - - Projek Dokumentasi MATE - - - Projek Dokumentasi GNOME - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- Sun Tim Dokumentasi GNOME Sun Microsystems
- - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Umpan balik - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Kukuh Syafaat - - syafaatkukuh@gmail.com - - - - 2017. - - Kukuh Syafaat - - - - - Search Tool - - - - - - - Pengantar - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Mulai - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Cara pakai - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Klik Tambah. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Keterangan - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Tanggal modifikasi lebih tua dari - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Berkasnya kosong - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Pemilik tidak dikenal - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Tampilkan berkas dan folder yang tersembunyi - - Include hidden and backup files in the search. - - - - Ikuti taut simbolik - - Follow symbolic links when searching for files. - - - - Tanpa sistem berkas lain - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Pengaturan - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Menu Aplikasi - - Choose System Toolsdconf Editor. - - - - Baris perintah - - Execute the following command: dconf-editor - - - - - - Matikan Pencarian Cepat - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Matikan Pencarian Cepat Tahap Kedua - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Path Yang Tidak Dicari Dalam Pencarian Cepat - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Path Yang Tidak Dicari Dalam Pencarian Cepat Tahap Kedua - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Tampilkan Pilihan Lainnya - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/id/legal.xml mate-utils-1.26.1/gsearchtool/help/id/legal.xml --- mate-utils-1.26.0/gsearchtool/help/id/legal.xml 2021-08-05 19:47:54.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/id/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Hak diberikan untuk menyalin, mendistribusikan, dan/atau mengubah dokumen ini di bawah persyaratan GNU Free Documentation License (GFDL, Lisensi Dokumentasi Bebas GNU), Versi 1.1 atau sebarang versi setelahnya yang dipublikasikan oleh Free Software Foundation tanpa Invariant Section, tanpa Front-Cover Texts, dan tanpa Back-Cover Texts. Anda dapat menemukan salinan dari GFDL pada taut atau di dalam berkas COPYING-DOCS yang didistribusikan bersama manual ini. - Manual ini adalah bagian dari suatu koleksi manual MATE yang disebarkan di bawah GDFL. Bila Anda ingin menyebarkan manual ini secara terpisah dari koleksi, Anda dapat melakukannya dengan menambahkan salinan lisensi ke manual, sebagaimana dijelaskan di bagian 6 dari lisensi. - - Banyak nama yang dipakai oleh perusahaan-perusahaan untuk membedakan produk dan layanan mereka diklaim sebagai merek dagang. Ketika nama-nama tersebut muncul di dalam sebarang dokumentasi MATE, and anggota Projek Dokumentasi MATE disadarkan atas merek dagang tersebut, maka nama-nama akan ditulis dalam huruf besar atau huruf awal huruf besar. - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ie/index.docbook mate-utils-1.26.1/gsearchtool/help/ie/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ie/index.docbook 2021-08-05 19:47:54.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ie/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,569 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - OIS - - mistresssilvara@hotmail.com - - - - 2019 - - OIS - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Descrition - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date de modification es plu quam - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File es vacui - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Possessor es ínreconosset - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Monstrar celat files e files de reserve - - Include hidden and backup files in the search. - - - - Sequer simbolic ligamentes - - Follow symbolic links when searching for files. - - - - Excluder altri fil-sistemas - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Command line - - Execute the following command: dconf-editor - - - - - - Deactivar li rapid sercha - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Monstrar additional criteries - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ie/legal.xml mate-utils-1.26.1/gsearchtool/help/ie/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ie/legal.xml 2021-08-05 19:47:54.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ie/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ig/index.docbook mate-utils-1.26.1/gsearchtool/help/ig/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ig/index.docbook 2021-08-05 19:47:54.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ig/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Nkọwa - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Command line - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ig/legal.xml mate-utils-1.26.1/gsearchtool/help/ig/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ig/legal.xml 2021-08-05 19:47:54.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ig/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/is/index.docbook mate-utils-1.26.1/gsearchtool/help/is/index.docbook --- mate-utils-1.26.0/gsearchtool/help/is/index.docbook 2021-08-05 19:47:54.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/is/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,582 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Samúel Jón Gunnarsson - - sammi@techattack.nu - - - - 2003 - - Samúel Jón Gunnarsson - - - - - Sveinn í Felli - - sv1@fellsnet.is - - - - 2012-2016 - - Sveinn í Felli - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Lýsing - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Skipanalína - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/is/legal.xml mate-utils-1.26.1/gsearchtool/help/is/legal.xml --- mate-utils-1.26.0/gsearchtool/help/is/legal.xml 2021-08-05 19:47:54.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/is/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/it/index.docbook mate-utils-1.26.1/gsearchtool/help/it/index.docbook --- mate-utils-1.26.0/gsearchtool/help/it/index.docbook 2021-08-05 19:47:55.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/it/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,449 +0,0 @@ - - - - - - - -]> - - -
- - - - Manuale di Cerca File - - - Uno strumento per cercare file, cartelle e documenti sul tuo computer. - - - 2015-2021 Progetto Documentazione di MATE - 2005 Dennis Cranston - 2002 2003 2004 Sun Microsystems - 2000 Alexander Kirillov - - - Progetto Documentazione di MATE - - - Progetto Documentazione di GNOME - - - - - - eam Documentazione di MATE Manutentore di Ricerca File - Dennis Cranston Manutentore di Cerca file
dennis_cranston@yahoo.com
- Sun GNOME Documentation Team Sun Microsystems
- Alexander Kirillov Progetto Documentazione di GNOME
kirillov@math.sunysb.edu
- - - - - - Manuale di Cerca File V1.10 Luglio 2015 - Wolfgang Ulbrich - Manutentore di Cerca File - - Manuale di Cerca File V2.7 Giugno 2005 - Joachim Noreiko jnoreiko@yahoo.com - Manutentore di Cerca File - - Manuale di Cerca File V2.6 Gennaio 2005 - Dennis Cranston dennis_cranston@yahoo.com - Manutentore di Cerca File - - Manuale di Cerca File V2.4 Febbraio 2004 - Team Documentazione GNOME Sun - Progetto Documentazione di GNOME - - Manuale di Cerca File V2.3 Settembre 2002 - Team Documentazione GNOME Sun - Progetto Documentazione di GNOME - - Manuale di Cerca FIle V2.2 Agosto 2002 - Team Documentazione GNOME Sun - Progetto Documentazione di GNOME - - Manuale di Cerca File V2.1 Luglio 2002 - Team Documentazione GNOME Sun - Progetto Documentazione di GNOME - - Manuale di Cerca FIle V2.0 Maggio 2002 - Team Documentazione GNOME Sun - Progetto Documentazione di GNOME - - Manuale di Cerca FIle 2000 - Alexander Kirillov kirillov@math.sunysb.edu - Progetto Documentazione di GNOME - - - - Questo manuale si riferisce alla versione 1.10.1 di Cerca FIle. - - Commenti - Per segnalare un malfunzionamento o un suggerimento per Cerca file o su questo manuale, seguire le indicazioni nella Pagina di feedback di MATE. - - - - - Cerca File - - - - - - Introduzione - L'applicazione Cerca Fileconsente di cercare file nel sistema. Per eseguire una ricerca di base, è possibile digitare un nome di file completo o parziale, con o senza caratteri jolly. Per affinare la ricerca, è possibile applicare ulteriori filtri di ricerca. - Cerca File sfrutta i comandi UNIX find, grep e locate. Durante le ricerche semplici, Cerca File usa prima il comando locate e poi, per approfondire la ricerca, il comando find, più lento ma più raffinato. - La differenziazione tra lettere maiuscole o minuscole dipende dal sistema operativo. Ad esempio, in Linux i comandi find, grep, e locate supportano l'opzione -i così che la ricerca ignori la distinzione tra caratteri maiuscoli e minuscoli. - - - - Introduzione - - È possibile avviare Cerca File nei seguenti modi: - - - Dalla barra dei menu sul pannello - - Selezionare RisorseStrumento di ricerca di MATE - - - - Dal Menu principale sul pannello - - Selezionare Strumento di ricerca di MATE. - - - - Da una riga di comando - - Eseguire il seguente comando: mate-search-tool - - - - - - - Quando si avvia Cerca File, viene mostrata la seguente finestra. - - -
- Finestra di Cerca File - - Finestra principale di Cerca File. - -
- - -
- - - - - Uso - - - Eseguire una ricerca - - Per effettuare una ricerca, seguire questi passaggi: - - Inserire il testo nel campo Il nome contiene. Il testo della ricerca può essere un nome completo di file o parziale ,con o senza caratteri jolly, come indicato nella tabella seguente: - - - - - - - - - - Testo cercato - - Esempio - - Risultato - - - - - - Nome completo o parziale del file - - - miofile.txt - - - Cerca File cercherà tutti i file che contengono miofile.txt nel nome del file. - - - - - Nome parziale del file assieme a caratteri jolly (*, [, ]) - - - *.[ch] - - - Cerca File cercherà tutti i file che hanno estensione .c o .h. - - - - - - - Nel campo Cerca nella cartella, selezionare la cartella o il dispositivo in cui si desidera che Cerca File inizi la ricerca. - Fare clic su Trova per avviare la ricerca. - - - Cerca File cercherà nella cartella specificata e nelle sue sottocartelle. Cerca File visualizzerà tutti i risultati nella casella Risultati della ricerca. Se Cerca File non trova alcun file corrispondente ai criteri di ricerca, l'applicazione visualizza il messaggio "Nessun file trovato" nella casella Risultati della ricerca. - Per impostazione predefinita, Cerca File esegue una ricerca rapida utilizzando il comando locate seguito da una seconda ricerca più approfondita utilizzando il comando di find. Il comando locate è più veloce perché utilizza un database di informazioni sui file. Se questo database ha più di una settimana di vita, Cerca File potrebbe avvisarti che i risultati della ricerca potrebbero non essere aggiornati e darti la possibilità di disabilitare la ricerca rapida. Per aggiornare il database, eseguire il comando updatedb come utente root. - - - - Aggiungere opzioni di ricerca - È possibile aggiungere ulteriori opzioni per la ricerca dei file nel sistema. Per farlo, seguire questi passaggi: - - Fare clic sul testo Seleziona altre opzioni. - Fare clic sull'elenco a discesa Opzioni disponibili. - Selezionare l'opzione di ricerca che si desidera utilizzare. - Fare clic su Aggiungi - Specificare le informazioni di ricerca necessarie per l'opzione scelta, come descritto in . - Ripetere i passaggi precedenti per ogni opzione di ricerca che si vuole utilizzare. - - Per rimuovere un'opzione di ricerca fare clic sul tasto Rimuovi accanto all'opzione. - Per disabilitare le opzioni di ricerca per la ricerca corrente, fare clic sul testo Selezione altre opzioni - - - Opzioni di ricerca - - - - - - - Nome opzione - - Descrizione - - - - - - Contiene il testo - - Cerca file o documenti di testo che contengano il testo specificato. - - - - Modificato da meno di - - Cerca i file che sono stati modificati più recentemente del periodo di tempo specificato. - - - - Modificato da più di - - Cerca i file che sono stati modificati meno recentemente del periodo di tempo specificato. - - - - Dimensione almeno di - - Cerca file che hanno almeno la dimensione in kilobyte uguale o maggiore di quella specificata. - - - - Dimensione massima di - - Cerca file che hanno al massimo dimensione in kilobyte minore o uguale a quella specificata. - - - - Il file è vuoto - - Cerca file vuoti - - - - Posseduto dall'utente - - Cerca file che sono posseduti dall'utente specificato. Inserirei il nome dell'utente nella casella di testo fornita. - - - - Posseduto dal gruppo - - Cerca file che sono posseduti dal gruppo specificato. Inserire il nome del gruppo nella casella di testo fornita. - - - - Il proprietario è non riconosciuto - - Cerca file che sono posseduti da un utente o da un gruppo che è sconosciuto al sistema. - - - - Il nome non contiene - - Cerca i nomi di file che non contengono la stringa inserita. Inserisci un nome di file completo o parziale con caratteri jolly nell'apposito campo. Utilizzare * per indicare una sequenza di caratteri e ? per indicare un singolo carattere. La ricerca è sensibile alla distinzione tra maiuscole e minuscole. - - - - Il nome corrisponde all'espressione regolare - - Cerca i file che contengono l'espressione regolare specificata nel percorso in cui si trova o nel nome del file. Digitare l'espressione regolare nell'apposita casella di testo. - - - - Mostra file nascosti e di backup - - Include nella ricerca i file nascosti e di backup - - - - Segui i collegamenti simbolici - - Segue i collegamenti simbolici quando si cercano dei file. - - - - Escludi altri file system - - Cerca nelle cartelle che si trovano sullo stesso file system della directory di partenza. - - - - -
- -
- - - Per fermare una ricerca - Fare clic su Ferma per interrompere una ricerca prima che Cerca File completi la ricerca. - - - - Aprire un file trovato - Per aprire un file mostrato nei Risultati della ricerca si può: - - Fare clic con il tasto destro e selezionare Apri. - Eseguire un doppio-clic sul file - - Per aprire la cartella in cui si trova il file mostrato nei Risultati della ricerca, fare clic col pulsante destro del mouse sul file e selezionare Apri la cartella contenitore. - - - - Eliminare un file trovato - Per eliminare un file mostrato nei Risultati della ricerca fare clic col pulsante destro del mouse sul file e selezionare Sposta nel cestino. - - - - - - Per salvare i risultati di ricerca - Per salvare i risultati dell'ultima ricerca di Cerca File fare clic col pulsante destro sui Risultati della ricerca e selezionare Salva risultati come. Inserire il nome del file in cui salvare i risultati e premere Salva. - - -
- - - - - Impostazioni - - Cerca File fornisce delle chiavi gsettings per modificare il suo comportamento. I valori di gsettings possono essere modificati avviando l'Editor di configurazione nei seguenti metodi: - - - menù Applicazioni - - Selezionare Strumenti di sistemadconf Editor. - - - - Riga di comando - - Eseguire il seguente comando: dconf-editor - - - - - - Disabilita ricerca rapida - Nome chiave: org.mate.search-tool.disable-quick-search - Valore predefinito: falso - Cerca File velocizza la ricerca nei nomi dei file usando il comando locate. Locate fornisce un modo sicuro per indicizzare e cercare rapidamente i nomi dei file. Dato che locate si basa su un indice, i Risultati della ricerca potrebbero non essere sempre aggiornati. - - - - Disabilita il secondo passaggio di ricerca rapida - Nome chiave: org.mate.search-tool.disable-quick-search-second-scan - Valore predefinito: falso - Dopo aver completato una ricerca rapida, Cerca File esegue una ricerca approfondita col comando find. Lo scopo di questa seconda scansione è di trovare i file che non sono stati indicizzati. I file che corrispondono ai criteri di ricerca vengono aggiunti ai Risultati della ricerca per renderla sempre aggiornata. - - - - Percorsi esclusi dalla ricerca rapida - Nome chiave: org.mate.search-tool.quick-search-excluded-paths - Valori predefiniti: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Cerca file non eseguirà una ricerca rapida dei percorsi definiti in questa chiave. La ricerca del nome del file nei percorsi definiti utilizzerà il comando find. I caratteri jolly '*' e '?' sono supportati. - - - - Percorsi esclusi dal secondo passaggio della ricerca rapida - Nome chiave: org.mate.search-tool.quick-search-second-scan-excluded-paths - Valori predefiniti: [/] - Cerca File non eseguirà una seconda scansione dopo la ricerca rapida dei percorsi definiti da questa chiave. La ricerca rapida nei percorsi definiti non sarà seguita da una ricerca approfondita con il comando find. I caratteri jolly '*' e '?' sono supportati. - - - - Mostra opzioni aggiuntive - Nome chiave: org.mate.search-tool.show-additional-options - Valore predefinito: falso - Questa chiave determina se la sezione Seleziona altre opzioni deve essere espansa all'avvio di Cerca File. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/it/legal.xml mate-utils-1.26.1/gsearchtool/help/it/legal.xml --- mate-utils-1.26.0/gsearchtool/help/it/legal.xml 2021-08-05 19:47:55.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/it/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - È concesso il permesso di copiare, distribuire e/o modificare questo documento in base ai termini della GNU Free Documentation License (GFDL), Versione 1.1 o qualsiasi versione successiva pubblicata dalla Free Software Foundation senza sezioni invarianti, senza testi di copertina e nessun testo di retro copertina. Puoi trovare una copia del GFDL qui collegamento o nel file COPYING-DOCS distribuito con questo manuale. - Questo manuale fa parte di una raccolta di manuali MATE distribuita in conformità con la GFDL. Per poter distribuire questo manuale separatamente, è necessario inserirvi una copia della licenza, come descritto nella sezione 6 della licenza. - - Molti dei nomi usati dalle aziende per distinguere i propri prodotti e servizi sono rivendicati come marchi. Quando questi nomi compaiono nella documentazione di MATE, e i partecipanti al MATE Documentation Project sono consapevoli del loro utilizzo, essi vengono scritti in lettere maiuscole o con l'iniziale maiuscola. - - IL DOCUMENTO E LE VERSIONI MODIFICATE DEL DOCUMENTO VENGONO RILASCIATE SECONDO I TERMINI DELLA GNU FREE DOCUMENTATION LICENSE TENENDO PRESENTE CHE: - - IL DOCUMENTO VIENE FORNITO SENZA GARANZIE DI ALCUN TIPO, ESPLICITE O IMPLICITE, INCLUSE, MA SENZA LIMITAZIONE, LE GARANZIE ATTESTANTI CHE IL DOCUMENTO O LE SUE VERSIONI MODIFICATE SIANO PRIVI DI DIFETTI, COMMERCIALIZZABILI, IDONEI A UN DETERMINATO SCOPO O CHE NON VIOLINO DIRITTI DI TERZI. SI DECLINA QUALUNQUE RESPONSABILITÀ RIGUARDO AI RISCHI INERENTI LA QUALITÀ, L'ACCURATEZZA E LE PRESTAZIONI DEL DOCUMENTO O DI UNA SUA VERSIONE MODIFICATA. QUALORA UN DOCUMENTO O UNA SUA VERSIONE MODIFICATA DOVESSERO PRESENTARE QUALUNQUE TIPO DI DIFETTO, IL COSTO DI EVENTUALI INTERVENTI DI ASSISTENZA, RIPARAZIONE O CORREZIONE SARÀ A CARICO DELL'UTENTE (NON DEL REDATTORE INIZIALE, DELL'AUTORE O DI ALTRI COLLABORATORI). QUESTA LIMITAZIONE DELLA GARANZIA COSTITUISCE PARTE ESSENZIALE DELLA LICENZA. L'USO DEL DOCUMENTO O DELLE SUE VERSIONI MODIFICATE È CONSENTITO SOLO ENTRO I TERMINI DI QUESTA LIMITAZIONE DELLA GARANZIA; - - - IN NESSUNA CIRCOSTANZA E PER NESSUNA RAGIONE LEGALE, INCLUSI I PRINCIPI DI COLPA (INCLUSA LA NEGLIGENZA), ACCORDO CONTRATTUALE O ALTRO, SARÀ POSSIBILE CONSIDERARE L'AUTORE, IL REDATTORE INIZIALE, GLI ALTRI COLLABORATORI, QUALUNQUE DISTRIBUTORE DEL DOCUMENTO O DI UNA SUA VERSIONE MODIFICATA O QUALUNQUE FORNITORE DELLE PERSONE CITATE, RESPONSABILE NEI CONFRONTI DI QUALUNQUE PERSONA PER DANNI DIRETTI, INDIRETTI, SPECIALI, INCIDENTALI O CONSEGUENTI DI QUALUNQUE NATURA, INCLUSI, MA SENZA LIMITAZIONE, I DANNI PER PERDITA DI AVVIAMENTO, INTERRUZIONE DEL LAVORO, GUASTO O MALFUNZIONAMENTO DEL COMPUTER O QUALUNQUE ALTRO DANNO O PERDITA DERIVANTE O CORRELATA ALL'USO DEL DOCUMENTO O DI UNA SUA VERSIONE MODIFICATA, ANCHE QUALORA LE PERSONE CITATE FOSSERO STATE INFORMATE DELLA POSSIBILITÀ DI TALI DANNI. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ja/index.docbook mate-utils-1.26.1/gsearchtool/help/ja/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ja/index.docbook 2021-08-05 19:47:55.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ja/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,449 +0,0 @@ - - - - - - - -]> - - -
- - - - ファイル検索マニュアル - - - コンピュータ上のファイル、フォルダ、文書を検索するためのツールです。 - - - 2015-2021 MATE 文書化プロジェクト - 2005 Dennis Cranston - 2002 2003 2004 サン・マイクロシステムズ - 2000 Alexander Kirillov - - - MATE 文書化プロジェクト - - - GNOME 文書化プロジェクト - - - - - - MATE 文書化チーム ファイルの検索 メンテナー - Dennis Cranston ファイルの検索 メンテナー
dennis_cranston@yahoo.com
- Sun GNOME 文書チーム サン・マイクロシステムズ
- Alexander Kirillov GNOME 文書化プロジェクト
kirillov@math.sunysb.edu
- - - - - - ファイル検索マニュアル 1.10 版 2015年7月 - Wolfgang Ulbrich - ファイルの検索 メンテナー - - ファイル検索マニュアル 2.7 版 2005年6月 - Joachim Noreiko jnoreiko@yahoo.com - ファイルの検索 メンテナー - - ファイル検索マニュアル 2.6 版 2005年1月 - Dennis Cranston dennis_cranston@yahoo.com - ファイルの検索 メンテナー - - ファイル検索マニュアル 2.4 版 2004年2月 - Sun GNOME 文書化チーム - GNOME 文書化プロジェクト - - ファイル検索マニュアル 2.3 版 2002年9月 - Sun GNOME 文書化チーム - GNOME 文書化プロジェクト - - ファイル検索マニュアル 2.2 版 2002年8月 - Sun GNOME 文書化チーム - GNOME 文書化プロジェクト - - ファイル検索マニュアル 2.1 版 2002年1月 - Sun GNOME 文書化チーム - GNOME 文書化プロジェクト - - ファイル検索マニュアル 2.0 版 2002年5月 - Sun GNOME 文書化チーム - GNOME 文書化プロジェクト - - ファイル検索マニュアル 2000年 - Alexander Kirillov kirillov@math.sunysb.edu - GNOME 文書化プロジェクト - - - - これは、ファイル検索マニュアル 1.10 版について説明しています。 - - フィードバック - ファイル検索アプリと本マニュアルに関するバグや提案を報告するには、MATE フィードバックページの方法に従ってください。 - - - - - MATE 検索ツール - - - - - - はじめに - ファイル検索アプリを使えば、システム上のファイルを検索することができます。基本的な検索を行うには、ファイル名またはファイル名の一部をワイルドカード付きかなしで入力します。検索結果を絞り込むには、検索で追加オプションを適用することができます。 - ファイルの検索ツールは、findgrep、および locate の UNIX コマンドを使用します。既定では、基本的な検索を行う場合、ファイルの検索はまず locate コマンドを使用し、次に処理がやや遅くても一層詳細な検索を行える find コマンドを使用します。 - 検索時の大文字・小文字の区別は、お使いのオペレーティング・システムによって異なります。たとえば、Linux では、findgreplocate の各コマンドは -i オプションをサポートしています。したがって、検索では、大文字と小文字をまったく区別しません。 - - - - はじめましょう - - ファイルの検索は、次の方法で開始できます。 - - - パネルのメニューバーより - - 場所MATE 検索ツールを選択します - - - - パネルのメインメニューより - - MATE 検索ツールを選択します - - - - コマンドラインより - - 次のコマンドを実行してください。mate-search-tool - - - - - - - ファイルの検索を起動したら、次のウィンドウが表示されます。 - - -
- ファイルの検索ウィンドウ - - は、「ファイル検索」のメインウィンドウを表示します。 - -
- - -
- - - - - 使い方 - - - 基本的な検索を行うには - - システム・ファイルの基本的な検索を行うには、次の手順を実行してください。 - - ファイル名が次を含むという入力欄に検索文字を入力します。検索文字には、次の表に示すように、ワイルドカードの有無にかかわらず、ファイル名またはファイル名の一部とすることができます。 - - - - - - - - - - 文字列を含んだ名前とは - - 一例 - - 結果 - - - - - - 完全なファイル名またはその一部 - - - 私のファイル.txt - - - ファイルの検索は、ファイル名に 私のファイル.txt という文字列を含むファイルすべてを検索します。 - - - - - ファイル名の一部にワイルドカード(*, [, ])を組み合わせたもの - - - *.[ch] - - - ファイルの検索は、拡張子が .c または .h のファイルすべてを検索します。 - - - - - - - 対象となるフォルダという入力欄で、ファイルの検索を開始するフォルダまたはデバイスを選択します。 - 検索をクリックすると、検索を実行します。 - - - ファイルの検索では、指定したディレクトリとそのサブディレクトリ内を検索します。ファイルの検索は、検索結果を検索結果のリストボックスに表示します。もし、ファイルの検索が検索条件に一致するファイルを見つけられなかった場合は、「ファイルが見つかりません」というメッセージをファイルの検索ボックスに表示します。 - 既定では、ファイルの検索は、locate コマンドによるクイックサーチの後、find コマンドによる詳細な再検索を行います。locate コマンドは、ファイルに関する情報のデータベースを使用するのでかなり高速です。このデータベースが 1 週間以上前のものである場合、ファイルの検索は検索結果が古くなっている可能性があることを警告し、クイック検索を無効にするオプションを提供します。データベースを更新するには、root ユーザーで updatedb コマンドを実行してください。 - - - - 検索条件を追加するには - システム上のファイルを検索するために、オプションを追加できます。オプションを追加するには、次の手順を実行してください。 - - 追加オプションの選択という文字列をクリックします。 - 適用する検索条件 のドロップダウンリストをクリックしま。 - 適用したい検索条件を選択します。 - 追加をクリックします。 - 検索オプションで必要な検索情報を指定します。これはに記載されているとおりです。 - 適用したい検索オプションごとに、前述の手順を繰り返します。 - - 今行っている検索からオプションを削除するには、オプションのそばにある削除ボタンをクリックします。 - 現在の検索で、検索オプションを無効にするには、追加オプションの選択という文字列をクリックします。 - - - 検索条件 - - - - - - - オプション名 - - 説明 - - - - - - 次の文字列を含む - - 指定された文字列を含む、プレーンテキスト形式のファイルを検索します。 - - - - 次の日数より前に変更した - - 日数で指定した期間以内に変更されたファイルを検索します。 - - - - 次の日数より後に変更した - - 日数で指定した期間を超えて変更されたファイルを検索します。 - - - - 次のサイズよりも大きい - - キロバイト単位で指定したサイズと等しいか、それ以上のサイズのファイルを検索します。 - - - - 次のサイズよりも小さい - - キロバイト単位で指定したサイズと等しいか、それ以下のサイズのファイルを検索します。 - - - - ファイルが空である - - 空のファイルを検索します。 - - - - 次のユーザーが所有する - - 指定したユーザーが所有するファイルを検索します。ユーザー名を用意されたテキストボックスに入力してください。 - - - - 次のグループが所有する - - 指定したグループが所有するファイルを検索します。グループ名を用意されたテキストボックスに入力してください。 - - - - 所有者が不明である - - システムに知られていない、ユーザーやグループが所有するファイルを検索します。 - - - - 次の名前を含まない - - 入力した文字列を含まないファイル名を検索します。完全なファイル名、またはワイルドカードを使った部分名を指定フィールドに入力します。一連の文字を表すには * を使用します。? は1文字を表します。検索では、大文字と小文字が区別されます。 - - - - 名前が次の正規表現に一致する - - ディレクトリパスまたはファイル名の中に、指定された正規表現を含むファイルを検索します。表示されるテキストボックスに正規表現を入力してください。 - - - - 隠しファイル/フォルダを表示する - - 隠しファイルやバックアップファイルも検索対象にします。 - - - - シンボリックリンクをたどる - - ファイルを検索するとき、シンボリックリンクをたどります。 - - - - 他のファイルシステムを除く - - 開始ディレクトリと同じファイルシステム内にあるディレクトリを検索します。 - - - - -
- -
- - - 検索を停止するには - ファイルの検索が検索を完了する前に検索を停止するには、停止をクリックします。 - - - - 表示されたファイルを開くには - 検索した結果リストボックスに表示されたファイルを開くには、次のいずれかの手順を実行します。 - - ファイルの上で右クリックし、開くを選択してください。 - ファイルをダブルクリックしてください。 - - 検索した結果リストボックスに表示されたフォルダの中のファイルを開くには、そのファイルを右クリックして、これを含むフォルダを開くを選択します。 - - - - 表示されたファイルを削除するには - 検索結果リストボックスに表示されたファイルを削除するには、そのファイルを右クリックし、ゴミ箱へ移動するを選択します。 - - - - - - 検索結果を保存するには - ファイルの検索で最後に実行した検索の結果を保存するには、検索した結果の一覧内で右クリックし、結果を別名で保存を選択します。結果を保存するファイル名を入力して、「保存」をクリックします。 - - -
- - - - - 設定 - - ファイルの検索では、gsettings キーを使用して、動作の一部を変更できます。gsettings の値は、設定エディタを次のように起動して変更できます。 - - - アプリケーション・メニュー - - システムツールdconf エディタを選択します。 - - - - コマンドライン - - 次のコマンドを実行してください。 dconf-editor - - - - - - クイック検索を無効にする - キーの名前: org.mate.search-tool.disable-quick-search - 初期値: false - ファイルの検索では、locate コマンドを使用してファイル名の検索が高速化されます。locate を使用すると、ファイル名を安全にインデックス化し速く検索できます。locate はファイルの索引に依存するため、検索結果の一覧が常に最新であるとは限りません。 - - - - クイック検索の二回目のスキャンを無効にする - キーの名前: org.mate.search-tool.disable-quick-search-second-scan - 初期値: false - クイック検索が完了すると、ファイルの検索では、find コマンドを使用して完全な検索が実行されます。この2回目の検索の目的は、インデックス化されていないファイルを検索することです。検索基準に一致するファイルが検索した結果の一覧に追加され、この一覧が最新の状態に保たれます。 - - - - クィック検索で除外するパス - キーの名前: org.mate.search-tool.quick-search-excluded-paths - 既定値: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - ファイルの検索では、このキーによって定義されたパスのクイック検索は実行されません。定義されたパス内のファイル名検索には、find コマンドが使用されます。ワイルドカードの「*」および「?」に対応しています。 - - - - クィック検索の二回目のスキャンで除外するパス - キーの名前: org.mate.search-tool.quick-search-second-scan-excluded-paths - 既定値: [/] - ファイルの検索では、このキーによって定義されたパスのクイック検索後に、2回目のスキャンは実行されません。定義されたパスのクイック検索の後に、find コマンドを使用した完全な検索が実行されることはありません。ワイルドカードの「*」および「?」に対応しています。 - - - - 追加オプションを表示するかどうか - キーの名前: org.mate.search-tool.show-additional-options - 初期値: false - 検索オプション 追加オプションの選択 を有効にしてファイルの検索を起動するかどうかを選択します。 - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ja/legal.xml mate-utils-1.26.1/gsearchtool/help/ja/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ja/legal.xml 2021-08-05 19:47:55.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ja/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - この文書をフリーソフトウェア財団発行の GNU フリー文書利用許諾契約 (第 1.1 版かそれ以降から1つを選択) が定める条件の下で複製、頒布、あるいは改変することを許可します。変更不可部分、表カバーテキスト、裏カバーテキストは存在しません。この利用許諾契約の複製物はリンク、またはこの文書と共に配布されている COPYING-DOCS というファイルに中に記載されています。 - 本文書は GFDL の下で配布されているその他の MATE マニュアル集の一部でです。これらのマニュアルとは別に本文書を別個に配布する場合は、GFDL の第6節で説明しているように、そのマニュアル集に対してライセンスの複製を添付してください。 - - 企業が自らの製品とサービスを区別する目的で使用する名称の多くは、登録商標であると主張しています。こうした名称が MATE の文書の中に記載されていて、この登録商標が MATE 文書化プロジェクトのメンバーによって了解されている箇所については、名称が大文字または頭文字を大文字で表示しています。 - - この文書およびその修正版は、以下の点を理解したという前提で、GNU 自由文書ライセンス の条件の下で配布されています: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ka/index.docbook mate-utils-1.26.1/gsearchtool/help/ka/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ka/index.docbook 2021-08-05 19:47:55.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ka/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - შესავალი - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - აღწერა - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - შეცვლის·თარიღი _მეტია·ვიდრე - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - ფაილი ცარიელია - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - მფლობელი უცნობია - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - დამალული და სარეზერვო ფაილების ჩვენება - - Include hidden and backup files in the search. - - - - სიმბოლურ ბმულზე მიყოლა - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - ბრძანების ველი: - - Execute the following command: dconf-editor - - - - - - სწრაფი ძებნის გამორთვა - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - სწრაფი ძებნისას მეორადი სკანირების გამორთვა - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - სწრაფი ძებნისას გამოსატოვებელი გეზები - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - სწრაფი ძებნის მეორადი სკანირებისას გამოსატოვებელი გეზები - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - დამატებითი პირობები - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ka/legal.xml mate-utils-1.26.1/gsearchtool/help/ka/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ka/legal.xml 2021-08-05 19:47:55.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ka/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/kab/index.docbook mate-utils-1.26.1/gsearchtool/help/kab/index.docbook --- mate-utils-1.26.0/gsearchtool/help/kab/index.docbook 2021-08-05 19:47:55.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/kab/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - Asenfaṛ n tsemlit n MATE - - - Asenfaṛ n tsemlit n GNOME - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Tazwart - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Asnummel - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Iγewwaren - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Command line - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/kab/legal.xml mate-utils-1.26.1/gsearchtool/help/kab/legal.xml --- mate-utils-1.26.0/gsearchtool/help/kab/legal.xml 2021-08-05 19:47:55.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/kab/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/kk/index.docbook mate-utils-1.26.1/gsearchtool/help/kk/index.docbook --- mate-utils-1.26.0/gsearchtool/help/kk/index.docbook 2021-08-05 19:47:55.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/kk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Басы - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Қолданылуы - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Анықтамасы - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Өзгертілген күні келесіден үлкенірек - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Файл бос - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Иесі танылмады - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Жасырын мен қор көшірме файлдарын көрсету - - Include hidden and backup files in the search. - - - - Символдық сілтемелерден өту - - Follow symbolic links when searching for files. - - - - Басқа файлдық жүйелерді елемеу - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Командалық жол - - Execute the following command: dconf-editor - - - - - - Жылдам іздеу мүмкіндігін сөндіру - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Қосымша опцияларды көрсету - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/kk/legal.xml mate-utils-1.26.1/gsearchtool/help/kk/legal.xml --- mate-utils-1.26.0/gsearchtool/help/kk/legal.xml 2021-08-05 19:47:55.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/kk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/kn/index.docbook mate-utils-1.26.1/gsearchtool/help/kn/index.docbook --- mate-utils-1.26.0/gsearchtool/help/kn/index.docbook 2021-08-05 19:47:55.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/kn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - ಪರಿಚಯ - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - ಬಳಕೆ - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - ವಿವರಣೆ - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - ಈ ದಿನಾಂಕಕ್ಕಿಂತ ನಂತರ ಮಾರ್ಪಡಿಸಲಾಗಿದ್ದು - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - ಕಡತವು ಖಾಲಿ ಇದೆ - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - ಗುರುತಿಸಲಾಗದ ಮಾಲಿಕತ್ವವನ್ನು ಹೊಂದಿರುವ - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - ಅಡಗಿಸಲಾದ ಹಾಗು ಬ್ಯಾಕ್ಅಪ್‌ ಕಡತಗಳನ್ನು ತೋರಿಸು - - Include hidden and backup files in the search. - - - - ಸಾಂಕೇತಿಕ ಕೊಂಡಿಗಳನ್ನು ಅನುಸರಿಸು - - Follow symbolic links when searching for files. - - - - ಇತರೆ ಕಡತವ್ಯವಸ್ಥೆಗಳನ್ನು ಹೊರತುಪಡಿಸಿ - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - ಆಜ್ಞಾ ಸಾಲು - - Execute the following command: dconf-editor - - - - - - ಕ್ಷಿಪ್ರ ಹುಡುಕನ್ನು ಅಶಕ್ತಗೊಳಿಸು - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - ಕ್ಷಿಪ್ರ ಹುಡುಕು ಎರಡನೆಯ ಶೋಧನೆಯನ್ನು ಅಶಕ್ತಗೊಳಿಸು - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - ಕ್ಷಿಪ್ರ ಹುಡುಕುವಿಕೆಯಿಂದ ಹೊರತಾಗಿಸಬೇಕಾದ ಮಾರ್ಗಗಳು - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - ಕ್ಷಿಪ್ರ ಹುಡುಕುವಿಕೆಯ ಎರಡನೆ ಬಾರಿ ಶೋಧಿಸುವಿಕೆಯಿಂದ ಹೊರತಾಗಿಸಬೇಕಾದ ಮಾರ್ಗಗಳು - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - ಹೆಚ್ಚುವರಿ ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/kn/legal.xml mate-utils-1.26.1/gsearchtool/help/kn/legal.xml --- mate-utils-1.26.0/gsearchtool/help/kn/legal.xml 2021-08-05 19:47:55.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/kn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ko/index.docbook mate-utils-1.26.1/gsearchtool/help/ko/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ko/index.docbook 2021-08-05 19:47:55.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ko/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,479 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - 2015-2021 MATE 문서화 프로젝트 - - 2005 - Dennis Cranston - - 2002 2003 2004 Sun Microsystems - - 2000 - Alexander Kirillov - - - - MATE 문서화 프로젝트 - - - GNOME 문서화 프로젝트 - - - - - - MATE 문서화 팀 파일 유지관리자 검색 - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- Sun GNOME 문서화 팀 Sun Microsystems
- Alexander Kirillov GNOME 문서화 프로젝트
kirillov@math.sunysb.edu
- - - - - - 파일 설명서에 대한 검색 V1.10 2015년 7월 - Wolfgang Ulbrich - - Search for Files Maintainer - - 파일 설명서에 대한 검색 V2.7 2005년 6월 - Joachim Noreiko jnoreiko@yahoo.com - Search for Files Maintainer - - 파일 설명서에 대한 검색 V2.6 1월 2005 - Dennis Cranston dennis_cranston@yahoo.com - Search for Files Maintainer - - 파일 설명서에 대한 검색 V2.4 2월 2004 - Sun GNOME 문서화 팀 - GNOME 문서화 프로젝트 - - 파일 설명서에 대한 검색 V2.3 9월 2002 - Sun GNOME 문서화 팀 - GNOME 문서화 프로젝트 - - 파일 설명서에 대한 검색 V2.2 8월 2002 - Sun GNOME 문서화 팀 - GNOME 문서화 프로젝트 - - 파일 설명서에 대한 검색 V2.1 2002년 7월 - Sun GNOME 문서화 팀 - GNOME 문서화 프로젝트 - - 파일 설명서에 대한 검색 V2.0 5월 2002 - Sun GNOME 문서화 팀 - GNOME 문서화 프로젝트 - - 파일 설명서에 대한 검색 2000 - Alexander Kirillov kirillov@math.sunysb.edu - GNOME 문서화 프로젝트 - - - - This manual describes version 1.10 of Search for Files. - - - 피드백 - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - 검색 도구 - - - - - - 소개 - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - 시작하기 - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - 파일 검색 기본 창을 표시합니다. - -
- - -
- - - - - 사용법 - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - 적용할 검색 옵션을 선택하십시오. - Click Add. - Specify the required search information for the search option, as described in . - 적용할 각 검색 옵션에 대해 위의 단계를 반복합니다. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - 설명 - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - 이후에 바뀐 기간 - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - 비어 있는 파일 - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - 소유자를 알 수 없음 - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - 숨겨진 파일 또는 백업 파일 보기 - - Include hidden and backup files in the search. - - - - 심볼릭 링크 따라가기 - - Follow symbolic links when searching for files. - - - - 다른 파일 시스템 제외 - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - 프로그램 메뉴 - - Choose System Toolsdconf Editor. - - - - 명령 행 - - Execute the following command: dconf-editor - - - - - - 빠른 검색 사용하지 않음 - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - 빠른 검색 2단계 사용하지 않음 - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - 빠른 검색 제외할 경로 - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - 빠른 검색 2단계 제외할 경로 - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - 추가 옵션 보기 - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ko/legal.xml mate-utils-1.26.1/gsearchtool/help/ko/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ko/legal.xml 2021-08-05 19:47:55.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ko/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - GNU 자유 문서화 사용 허가서(GFDL), 버전 1.1 또는 자유 소프트웨어 재단에서 게시한 모든 이후 버전의 조건에 따라 이 문서를 복사, 배포 및/또는 수정할 수 있는 권한이 부여됩니다. 뒷 표지 텍스트 없음. GFDL의 사본은 여기 또는 이 설명서와 함께 배포된 COPYING-DOCS 파일에서 찾을 수 있습니다. - 본 설명서는 GFDL에 따라 배포된 MATE 설명서 컬렉션의 일부입니다. 본 설명서를 컬렉션과 별도로 배포하려는 경우에는 라이센스 조항 6에 따라 라이센스 사본을 설명서에 추가하면 됩니다. - - 기업의 제품과 서비스를 식별하기 위해 사용된 많은 이름은 상표로 간주됩니다. MATE 문서에 사용된 이름과 MATE 문서화 프로젝트의 구성원은 해당 상표로, 모두 대문자로 표시되거나 첫 글자가 대문자로 표시되어 있습니다. - - 문서의 문서 및 수정된 버전은 gnu 자유 문서 라이센스의 조건에 따라 제공되며, 다음 사항을 더 잘 이해하고 있습니다: - - 문서는 "있는 그대로"로 제공되며 상품성, 특정 목적에의 적합성 또는 준수에 대한 보증을 비롯한 일체의 명시적 또는 암시적인 보증을 제한 없이 부인합니다. 문서 및 수정판의 품질, 정확성 및 성능에 대한 책임은 전적으로 사용자에게 있습니다. 문서 또는 수정판에 대한 오류를 입증하려면 사용자(원저작자, 저작자 또는 배포자 아님)는 필요한 서비스, 수리 및 수정 비용을 부담해야 합니다. 본 보증 부인은 라이센스의 필수 부분에 해당합니다. 본 보증 부인을 따르지 않는 모든 문서나 수정판은 사용할 수 없습니다. - - - 또한 불법 행위(부주의 포함), 계약 또는 직접, 간접, 특별, 부수적 및 파생적인 모든 손해(영업권 손실, 작업 중지, 컴퓨터 오류 및 고장 또는 본 문서나 수정판의 사용으로 인해 발생하거나 관련된 기타 모든 손실 및 이러한 손실 가능성에 대해 미리 공지한 경우에도 제한되지 않음)에 대해서는 어떠한 상황이나 법률적인 이론 하에서도 본 문서 또는 수정판의 저작자, 원저자, 모든 배포자 또는 공급자는 책임을 지지 않습니다. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ku/index.docbook mate-utils-1.26.1/gsearchtool/help/ku/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ku/index.docbook 2021-08-05 19:47:55.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ku/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Daxuyanî - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Dosya vala ye - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Rêzika Fermanan - - Execute the following command: dconf-editor - - - - - - Lêgerîna Bilez Bigire - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ku/legal.xml mate-utils-1.26.1/gsearchtool/help/ku/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ku/legal.xml 2021-08-05 19:47:55.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ku/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ky/index.docbook mate-utils-1.26.1/gsearchtool/help/ky/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ky/index.docbook 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ky/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Колдонлушу - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Баяндамасы - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Файл бош - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Командалык сап - - Execute the following command: dconf-editor - - - - - - Тез издөөнү өчүрүү - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Кошумча опцияларды көрсөтүү - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ky/legal.xml mate-utils-1.26.1/gsearchtool/help/ky/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ky/legal.xml 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ky/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/lt/index.docbook mate-utils-1.26.1/gsearchtool/help/lt/index.docbook --- mate-utils-1.26.0/gsearchtool/help/lt/index.docbook 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/lt/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,531 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - 2005 Dennis Cranston - 2002 2003 2004 Sun Microsystems - 2000 Alexander Kirillov - - - MATE dokumentacijos projektas - - - GNOME dokumentacijos projektas - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- Sun GNOME dokumentacijos komanda Sun Microsystems
- Alexander Kirillov GNOME dokumentacijos projektas
kirillov@math.sunysb.edu
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Atsiliepimai - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Įžanga - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Darbo pradžia - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Naudojimas - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Spauskite pridėti. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Aprašymas - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Pakeista prieš daugiau nei - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Failas yra tuščias - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Neatpažintas savininkas - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Rodyti paslėptus ir atsarginius failus - - Include hidden and backup files in the search. - - - - Sekti simbolinėmis nuorodomis - - Follow symbolic links when searching for files. - - - - Neieškoti kitose failų sistemose - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Nustatymai - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Programų meniu - - Choose System Toolsdconf Editor. - - - - Komandinė eilutė - - Execute the following command: dconf-editor - - - - - - Išjungti sparčiąją paiešką - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Išjungti sparčiosios paieškos antrą skaitymą - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Sparčiosios paieškos išskirti keliai - Key name: org.mate.search-tool.quick-search-excluded-paths - Numatytosios reikšmės: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Sparčiosios paieškos antro skaitymo išskirti keliai - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Rodyti daugiau parametrų - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/lt/legal.xml mate-utils-1.26.1/gsearchtool/help/lt/legal.xml --- mate-utils-1.26.0/gsearchtool/help/lt/legal.xml 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/lt/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Suteikiamas leidimas kopijuoti, platinti ir/arba modifikuoti šį dokumentą pagal GNU laisvosios dokumentacijos licenciją (GFDL), versiją 1.1 arba bet kurią kitą vėlesnę, publikuotą Laisvosios programinės įrangos fondo (FSF), be invariantinių skyrių, priekinių ir galinių viršelių tekstų. Galite perskaityti GFDL čia nuoroda arba COPYING-DOCS faile, pridėtame prie šio žinyno. - Šis žinynas yra MATE žinynų rinkinio, platinamo GFDL sąlygomis, dalis. Jeigu norite dalintis šiuo žinynu atskirai nuo šio rinkinio, galite tą daryti pridėdami šios licencijos kopiją, kaip nurodyta 6 šios licencijos dalyje. - - Nemažai įmonių, jų produktų ir paslaugų pavadinimai laikomi prekės ženklais. Kuomet šie pavadinimai pasirodo bet kur MATE dokumentacijoje, ir MATE dokumentacijos projekto nariai atkreipia į juos dėmesį, šie pavadinimai radomi didžiosiomis raidėmis arba pradedami didžiąja raide. - - DOKUMENTAS IR MODIFIKUOTOS JO VERSIJOS PATEIKIAMOS GNU LAISVOSIOS DOKUMENTACIJOS LICENCIJOS SĄLYGOMIS SU TOLESNIU SUPRATIMU, KAD: - - DOKUMENTAS PATEIKIAMAS TOKS, KOKS YRA, BE BET KOKIOS RŪŠIES GARANTIJŲ, IŠREIKŠTŲ AR PAREIKŠTŲ, NERIBOTAI LAIKANT, KAD DOKUMENTAS AR JO MODIFIKUOTA VERSIJA YRA BE KLAIDŲ, TINKAMA KONKREČIAI PASKIRČIAI ARBA NEPAŽEIDŽIANTI TAM TIKRŲ TEISIŲ. VISA ŠIO DOKUMENTO AR JO MODIFIKUOTOS VERSIJOS KOKYBĖS, TIKSLUMO IR VEIKIMO PRIKLAUSO JUMS. ESANT BET KOKIAM ŠIO DOKUMENTO AR JO MODIFIKUOTOS VERSIJOS TRŪKUMUI, JŪS (NE PIRMINIS RAŠYTOJAS, AUTORIUS AR KITAS PAGALBININKAS) PRISIIMATE REIKIAMO APTARNAVIMO, REMONTO AR TAISYMO IŠLAIDAS. ŠIS ATSAKOMYBĖS ATSISAKYMAS YRA ESMINĖ ŠIOS LICENCIJOS DALIS. TOLIAU NELEIDŽIAMAS JOKS ŠIO DOKUMENTO AR MODIFIKUOTOS VERSIJOS NAUDOJIMAS, IŠSKYRUS PAGAL ŠĮ ATSAKOMYBĖS ATSISAKYMĄ; IR - - - ESANT JOKIOMS APLINKYMBĖMS IR JOKIAI TEISINEI TEORIJAI AR DELIKTUI (ĮSKAITANT APLAIDUMĄ), SUTARČIAI AR KITAIS ATŽVILGIAIS, ŠIO DOKUMETNO AR JO MODIFIKUOTOS VERSIJOS AUTORIUS, PRADINIS RAŠYTOJAS, BET KURIS PAGALBININKAS ARBA BET KURIS PLATINTOJAS NĖRA ATSAKINGAS BET KURIAM ASMENIUI UŽ BET KOKIUS TIESIOGINIUS, NETIESIOGINIUS, YPATINGUS, ATSITIKTINIUS AR PASEKMINIUS NUOSTOLIUS, ĮSKAITANT DARBO SUSTOJIMĄ, KOMPIUTERIO GEDIMUS AR BET KURIUOS KITUS NUOSTOLIUS ARBA PRARADIMUS, KYLANČIUS IŠ ARBA SUSIJUSIUS SU ŠIO DOKUMENTO AR JO MODIFIKUOTŲ VERSIJŲ NAUDOJIMU, NET JEI IR VIENA IŠ PUSIŲ YRA INFORMUOTA APIE TOKIŲ NUOSTOLIŲ GALIMYBĘ. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/lv/index.docbook mate-utils-1.26.1/gsearchtool/help/lv/index.docbook --- mate-utils-1.26.0/gsearchtool/help/lv/index.docbook 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/lv/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Ievads - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Izmantojums - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Apraksts - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Izmaiņu datums lielāks par - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Fails ir tukšs - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Īpašnieks ir neatpazīts - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Rādīt slēptos un rezerves kopiju failus - - Include hidden and backup files in the search. - - - - Sekot simboliskajām saitēm - - Follow symbolic links when searching for files. - - - - Izslēgt citas failu sistēmas - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Komandrinda - - Execute the following command: dconf-editor - - - - - - Atslēgt ātro meklēšanu - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Atslēgt ātrās meklēšanas otru pārlasi - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Ceļi, ko ignorēt ātrajā meklēšanā - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Ceļi, ko ignorēt ātrajā meklēšanā otrajā kārtā - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Rādīt papildus iespējas - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/lv/legal.xml mate-utils-1.26.1/gsearchtool/help/lv/legal.xml --- mate-utils-1.26.0/gsearchtool/help/lv/legal.xml 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/lv/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/mai/index.docbook mate-utils-1.26.1/gsearchtool/help/mai/index.docbook --- mate-utils-1.26.0/gsearchtool/help/mai/index.docbook 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/mai/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - परिचय - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - प्रयोग - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - विवरण - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - एकरासँ बेसी तिथि परिवर्धित - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - फाइल खाली अछि - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - मालिक अपरिचित अछि - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - नुकल बैकअप फ़ाइल देखाबू - - Include hidden and backup files in the search. - - - - सांकेतिक लिंक क' अनुसरण करू - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - कमांड लाइन - - Execute the following command: dconf-editor - - - - - - तेज खोज असमर्थ करू - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - क्विक खोजू सेकण्ड स्कैन असमर्थ करू - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - तेज खोज निकालल पथ - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - तेज खोज दूसरा स्कैन निकालल गेल पथ - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - बेसी विकल्प देखाबू - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/mai/legal.xml mate-utils-1.26.1/gsearchtool/help/mai/legal.xml --- mate-utils-1.26.0/gsearchtool/help/mai/legal.xml 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/mai/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/Makefile.am mate-utils-1.26.1/gsearchtool/help/Makefile.am --- mate-utils-1.26.0/gsearchtool/help/Makefile.am 2021-08-05 19:45:13.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/Makefile.am 2023-05-09 13:31:58.000000000 +0000 @@ -21,8 +21,8 @@ HELP_MEDIA = figures/mate-search-tool_window.png if USE_NLS -# Add linguas to be ignored, e.g. IGNORE_HELP_LINGUAS = pt ca de es fr -IGNORE_HELP_LINGUAS = pt +# Add linguas to be ignored, e.g. IGNORE_HELP_LINGUAS = ca de es fr +IGNORE_HELP_LINGUAS = HELP_LINGUAS = $(if $(IGNORE_HELP_LINGUAS), \ $(filter-out $(IGNORE_HELP_LINGUAS),$(subst /,,$(dir $(wildcard */*.po)))), \ $(subst /,,$(dir $(wildcard */*.po))) ) diff -Nru mate-utils-1.26.0/gsearchtool/help/Makefile.in mate-utils-1.26.1/gsearchtool/help/Makefile.in --- mate-utils-1.26.0/gsearchtool/help/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,559 +0,0 @@ -# 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 . -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 = gsearchtool/help -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 = -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__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.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@ -HELP_ID = mate-search-tool -HELP_FILES = index.docbook legal.xml -HELP_MEDIA = figures/mate-search-tool_window.png - -# Add linguas to be ignored, e.g. IGNORE_HELP_LINGUAS = pt ca de es fr -@USE_NLS_TRUE@IGNORE_HELP_LINGUAS = pt -@USE_NLS_FALSE@HELP_LINGUAS = -@USE_NLS_TRUE@HELP_LINGUAS = $(if $(IGNORE_HELP_LINGUAS), \ -@USE_NLS_TRUE@ $(filter-out $(IGNORE_HELP_LINGUAS),$(subst /,,$(dir $(wildcard */*.po)))), \ -@USE_NLS_TRUE@ $(subst /,,$(dir $(wildcard */*.po))) ) - -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 gsearchtool/help/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign gsearchtool/help/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): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -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 -installdirs: -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: - -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-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-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: - -.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-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-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 - -.PRECIOUS: Makefile - - -@YELP_HELP_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 -Nru mate-utils-1.26.0/gsearchtool/help/mate-search-tool.omf.in mate-utils-1.26.1/gsearchtool/help/mate-search-tool.omf.in --- mate-utils-1.26.0/gsearchtool/help/mate-search-tool.omf.in 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/mate-search-tool.omf.in 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + user's guide + + + + diff -Nru mate-utils-1.26.0/gsearchtool/help/mg/index.docbook mate-utils-1.26.1/gsearchtool/help/mg/index.docbook --- mate-utils-1.26.0/gsearchtool/help/mg/index.docbook 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/mg/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Fanoritsoritana - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Datin'ny fanovana maherin'ny - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Foana ilay rakitras - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Tsy fantatra ny tompony - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Asehoy ireo rakitra sy laha-tahiry miafina - - Include hidden and backup files in the search. - - - - Araho ireo rohy misolo tena - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Lazam-baiko - - Execute the following command: dconf-editor - - - - - - Atsaharo ny karoka faingana - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Atsaharo ny fikarohan'ny fanindroan'ny karoka faingana - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Sori-dàlana tsy anaovana karoka faingana - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Sori-dàlana tsy anaovana fikarohana fanindroan'ny karoka faingana - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Asehoy ireo safidy fanampiny - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/mg/legal.xml mate-utils-1.26.1/gsearchtool/help/mg/legal.xml --- mate-utils-1.26.0/gsearchtool/help/mg/legal.xml 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/mg/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/mk/index.docbook mate-utils-1.26.1/gsearchtool/help/mk/index.docbook --- mate-utils-1.26.0/gsearchtool/help/mk/index.docbook 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/mk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Претставување - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Употреба - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Опис - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Дата на промена повеќе од - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Датотеката е празна - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Сопственикот не е препознат - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Покажи ги скриените и резервните датотеки - - Include hidden and backup files in the search. - - - - Следи ги симболичките врски - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Командна линија - - Execute the following command: dconf-editor - - - - - - Исклучи брзо пребарување - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Исклучи брзо пребарување и скенирање - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Брз пребарување во исклучените патеки - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Пoкажи додатни опции - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/mk/legal.xml mate-utils-1.26.1/gsearchtool/help/mk/legal.xml --- mate-utils-1.26.0/gsearchtool/help/mk/legal.xml 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/mk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ml/index.docbook mate-utils-1.26.1/gsearchtool/help/ml/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ml/index.docbook 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ml/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - അവതരണം - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - ഉപയോഗം - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - വിവരണം - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - തീയതി മാറ്റിയിരിക്കുന്നു, എത്ര ദിവസം കൂടുതല്‍ - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - ഫയല്‍ ശൂന്യമാണ് - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - ഉടമയെ തിരിച്ചറിയാനായില്ല - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - അദൃശ്യമായതും ബാക്കപ്പ് ഫയലുകളും കാണിക്കുക - - Include hidden and backup files in the search. - - - - സിംബോളിക് ലിങ്കുകള്‍ ഉപയോഗിക്കുക - - Follow symbolic links when searching for files. - - - - മറ്റ് ഫയല്‍സിസ്റ്റമുകള്‍ മാറ്റുക - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - ആജ്ഞാ സ്ഥാനം - - Execute the following command: dconf-editor - - - - - - പെട്ടെന്നുളള തിരച്ചില്‍ പ്രവര്‍ത്തന രഹിതമാക്കുക - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - രണ്ടാമത്തെ പരിശോധനയില്‍ പെട്ടെന്നുളള തിരച്ചില്‍ പ്രവര്‍ത്തന രഹിതമാക്കുക - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - പെട്ടെന്നുള്ള തെരച്ചില്‍ ഉള്‍പ്പെടുത്താത്ത പാഥുകള്‍ - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - പെട്ടെന്നുള്ള തെരച്ചിലില്‍ രണ്ടാമത്തെ പരിശോധന ഉള്‍പ്പെടുത്താത്ത പാഥുകള്‍ - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - അറുതല്‍ ഉപാധികള്‍ കാണിക്കുക - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ml/legal.xml mate-utils-1.26.1/gsearchtool/help/ml/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ml/legal.xml 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ml/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/mn/index.docbook mate-utils-1.26.1/gsearchtool/help/mn/index.docbook --- mate-utils-1.26.0/gsearchtool/help/mn/index.docbook 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/mn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Тодорхойлолт - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Файл хоосон - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Эзэмшигч тодорхойгүй - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Далдалсан ба нөөц файлуудыг харуулах - - Include hidden and backup files in the search. - - - - Дагалдах символик холбоос - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Тушаалын мөр - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/mn/legal.xml mate-utils-1.26.1/gsearchtool/help/mn/legal.xml --- mate-utils-1.26.0/gsearchtool/help/mn/legal.xml 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/mn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/mr/index.docbook mate-utils-1.26.1/gsearchtool/help/mr/index.docbook --- mate-utils-1.26.0/gsearchtool/help/mr/index.docbook 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/mr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - परिचय - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - वापर - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - वर्णन - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - यापेक्षा अधिकवेळा बदल केलेली दिनांक - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - फाइल रिकामी आहे - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - मालक अपरिचीत आहे - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - लपवलेल्या व प्रतिकृत फाइलं दर्शवा - - Include hidden and backup files in the search. - - - - चिन्हांकीत जोडणी अनुसरा - - Follow symbolic links when searching for files. - - - - इतर फाइलप्रणाली वगळा - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - आदेश पंक्ती - - Execute the following command: dconf-editor - - - - - - त्वरीत शोध अकार्यान्वीत करा - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - त्वरीत शोध सेकंद स्कॅन अकार्यान्वीत करा - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - त्वरीत शोध सोडलेले मार्ग - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - त्वरीत शोध सेकंद स्कॅनने सोडलेले मार्ग - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - अतिरिक्त पर्याय दर्शवा - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/mr/legal.xml mate-utils-1.26.1/gsearchtool/help/mr/legal.xml --- mate-utils-1.26.0/gsearchtool/help/mr/legal.xml 2021-08-05 19:47:56.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/mr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ms/index.docbook mate-utils-1.26.1/gsearchtool/help/ms/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ms/index.docbook 2021-08-05 19:47:57.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ms/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,449 +0,0 @@ - - - - - - - -]> - - -
- - - - Gelintar Panduan Fail - - - Satu alat gelintar untuk mencari fail, folder dan dokumen dalam komputer anda. - - - 2015-2021 Projek Dokumentasi MATE - 2005 Dennis Cranston - 2002 2003 2004 Sun Microsystems - 2000 Alexander Kirillov - - - Projek Dokumentasi MATE - - - Projek Dokumentasi GNOME - - - - - - Pasukan Pendokumenan MATE Penyelenggara Gelintar Fail - Dennis Cranston Gelintar untuk Penyelenggara Fail
dennis_cranston@yahoo.com
- Sun Pasukan Dokumentasi GNOME Sun Microsystems
- Alexander Kirillov Projek Dokumentasi GNOME
kirillov@math.sunysb.edu
- - - - - - Gelintar Panduan Fail V1.10 Julai 2015 - Wolfgang Ulbrich - Gelintar Penyelenggara Fail - - Gelintar Panduan Fail V2.7 Jun 2005 - Joachim Noreiko jnoreiko@yahoo.com - Gelintar Penyelenggara Fail - - Gelintar Panduan Fail V2.6 Januari 2005 - Dennis Cranston dennis_cranston@yahoo.com - Gelintar Penyelenggara Fail - - Gelintar Panduan Fail V2.4 Februari 2004 - Pasukan Dokumentasi Sun GNOME - Projek Dokumentasi GNOME - - Gelintar Panduan Fail V2.3 September 2002 - Pasukan Dokumentasi Sun GNOME - Projek Dokumentasi GNOME - - Gelintar Panduan Fail V2.2 Ogos 2002 - Pasukan Dokumentasi Sun GNOME - Projek Dokumentasi GNOME - - Gelintar Panduan Fail V2.1 Julai 2002 - Pasukan Dokumentasi Sun GNOME - Projek Dokumentasi GNOME - - Gelintar Panduan Fail V2.0 Mei 2002 - Pasukan Dokumentasi Sun GNOME - Projek Dokumentasi GNOME - - Gelintar Panduan Fail 2000 - Alexander Kirillov kirillov@math.sunysb.edu - Projek Dokumentasi GNOME - - - - Panduan ini menerangkan versi 1.10 bagi Gelintar Fail. - - Maklumbalas - Untuk melaporkan pepijat atau membuat saranan berkenaan aplikasi Gelintar Fail atau panduan ini, ikuti arahan di dalam Halaman Maklumbalas MATE. - - - - - Alat Gelintar - - - - - - Pengenalan - Aplikasi Gelintar Fail membolehkan anda gelintar fail dalam sistem anda. Untuk melakukan gelintar asas, anda boleh taip nama fail atau sebahagian nama fail, dengan atau tanpa kad liar. Untuk takrifkan gelintar anda, anda boleh laksanakan pilihan gelintar tambahan. - Gelintar Fail menggunakan perintah UNIX find, grep, dan locate. Secara lalai, ketika melakukan gelintar asas mula-mulaGelintar Fail menggunakan perintah locate, dan kemudian menggunakan perintah lebih lambat tetapi menyeluruh find. - Sensitiviti kata gelintar bergantung pada sistem pengoperasian anda. Sebagai contoh, pada Linux, perintah find, grep, dan locate menyokong pilihan -i, supaya semua gelintar bersifat tak sensitif-kata. - - - - Membiasakan Diri - - Anda boleh memulakan Gelintar Fail dengan cara berikut: - - - Melalui Palang Menu dalam panel - - Pilih Tempat Gelintar Fail... - - - - Melalui Menu Utama dalam panel - - Pilih Gelintar Fail... - - - - Melalui baris perintah - - Lakukan perintah berikut: mate-search-tool - - - - - - - Ketika anda memulakan Gelintar Fail, tetingkap berikut dipaparkan. - - -
- Tetingkap Gelintar Fail - - Menunjukkan tetingkap utama Gelintar Fail. - -
- - -
- - - - - Penggunaan - - - Melakukan Gelintar Asas - - Untuk melakukan gelintar fail asas dalam sistem, buat langkah-langkah berikut: - - Masukkan teks gelintar di dalam medan Nama dikandungi. Teks gelintar boleh jadi nama fail atau sebahagian nama fail, dengan atau tanpa kad liar, seperti jadual di bawah: - - - - - - - - - - Teks Mengandungi Nama - - Contoh - - Hasil - - - - - - Nama fail penuh atau sebahagian - - - myfile.txt - - - Gelintar Fail menggelintar semua fail yang mengandungi teks myfile.txt di dalam nama fail. - - - - - Sebahagian nama fail digabungkan dengan kad liar (*, [, ]) - - - *.[ch] - - - Gelintar Fail menggelintar semua fail yang mempunyai sambungan .c atau .h. - - - - - - - Dalam medan Cari dalam folder, pilih folder atau peranti yang anda mahu Gelintar Fail memulakan penggelintaran. - Klik Cari untuk melakukan penggelintaran. - - - Gelintar Fail menggelintar direktori dan subdirektori yang anda tentukan. Gelintar Fail akan memaparkan hasil gelintar di dalam kotak senarai Hasil gelintar. Jika Gelintar Fail tidak menemui mana-mana fail yang sepadan dengan kriteria gelintar, aplikasi akan paparkan mesej "Tiada fail ditemui" dalam kotak senarai Hasil Gelintar. - Secara lalai, Gelintar Fail akan melakukan satu gelintar pantas menggunakan perintah locate diikuti dengan gelintar kedua yang lebih menyeluruh iaitu melalui perintah find. Perintah locate lebih pantas kerana ia menggunakan pangkalan data maklumat berkenaan fail. Jika pangkalan data ini berusia lebih dari seminggu, Gelintar Fail memberi amaran yang mana hasil gelintar mungkin sudah lapuk dan beri satu pilihan untuk melumpuhkan gelintar pantas. Bagi mengemaskini pangkalan data, jalankan perintah updatedb sebagai pengguna root. - - - - Menambah Pilihan Gelintar - Anda boleh menambah pilihan untuk menggelintar fail di dalam sistem. Untuk menambah pilihan gelintar, buat langkah-langkah berikut: - - Klik pada teks Pilih lagi pilihan. - Klik pada senarai tarik-turun Pilihan tersedia. - Pilih pilihan gelintar yang mahu dilaksanakan. - Klik Tambah. - Nyatakan maklumat gelintar diperlukan untuk pilihan gelintar, seperti dijelaskan dalam . - Ulang langkah di atas bagi setiap pilihan gelintar yang mahu dilaksanakan. - - Untuk membuang satu pilihan gelintar dari gelintar semasa, klik pada butang Buang di sebelah pilihan. - Untuk lumpuhkan pilihan gelintar dar gelintar semasa, klik pada teks Pilih lagi pilihan. - - - Pilihan Gelintar - - - - - - - Nama Pilihan - - Keterangan - - - - - - Mengandungi teks - - Gelintar fail bagi jenis teks biasa yang mengandungi teks tertentu. - - - - Tarikh diubahsuai kurang dari - - Gelintar fail yang diubahsuai kurang dari tempoh yang ditentukan dalam hari. - - - - Tarikh diubahsuai lebih dari - - Gelintar fail yang diubahsuai lebih dari tempoh yang ditentukan dalam hari. - - - - Saiz sekurang-kurangnya - - Gelintar fail yang sama atau lebih besar dari saiz ditentukan dalam kilobait. - - - - Saiz tidak melebihi - - Gelintar fail yang lebih kecil atau sama dari saiz ditentukan dalam kilobait. - - - - Fail adalah kosong - - Gelintar fail kosong. - - - - Dimiliki pengguna - - Gelintar fail yang dimiliki oleh pengguna tertentu. Taip nama pengguna dalam kotak teks yang disediakan. - - - - Dimiliki kumpulan - - Gelintar fail yang dimiliki oleh kumpulan tertentu. Taip nama kumpulan dalam kotak teks yang disediakan. - - - - Pemilik tidak dikenali - - Gelintar fail milik pengguna atau kumpulan yang tidak diketahui pada sistem. - - - - Nama tidak mengandungi - - Gelintar nama fail yang tidak mengandungi rentetan yang anda masukkan. Masukkan satu nama fail lengkap atau sebahagian nama fail dengan kad liar di dalam medan yang disediakan. Guna * untuk tentukan satu jujukan aksara. Guna ? untuk tentukan satu aksara. Penggelintaran adalah sensitif-kata. - - - - Nama sepadan ungkapan nalar - - Gelintar fail yang mengandungi ungkapan nalar tertentu dalam laluan atau nama fail direktorinya. Taip ungkapan nalar dalam kotak teks yang disediakan. - - - - Papar fail sandar dan tersembunyi - - Termasuk fail tersembunyi dan sandar dalam penggelintaran. - - - - Ikut pautan simbolik - - Ikuti pautan simbolik ketika menggelintar fail. - - - - Asingkan sistem fail lain - - Gelintar dalam direktori yang berada dala sistem fail yang sama seperti direktori mula. - - - - -
- -
- - - Menghentikan Penggelintaran - Klik Henti untuk hentikan gelintar sebelum Gelintar Fail selesaikan penggelintaran. - - - - Membuka Fail Dipaparkan - Untuk membuka fail dipapar dalam kotak senarai Hasil gelintar, lakukan salah satu dari langkah-langkah berikut: - - Klik-kanan pada fail, kemudian pilih Buka. - Dwi-klik pada fail. - - Untuk membuka folder yang mengandungi sebuah fail dipapar dalam kotak senarai Hasil gelintar, klik-kanan pada fail, kemudian pilih Buka Folder Dikandungi. - - - - Memadam Fail Dipaparkan - Untuk memadam sebuah fail dipapar dalam kotak senarai Hasil gelintar, klik-kanan pada fail, kemudian pilih Alih ke Tong Sampah. - - - - - - Menyimpan Hasil Gelintar - Untuk menyimpan hasil gelintar terakhir yang dibuat oleh Gelintar Fail, klik-kanan dalam senaraiHasil gelintar, kemudian pilih Simpan Hasil Sebagai. Masukkan nama fail yang anda mahu simpan, kemudian klik Simpan. - - -
- - - - - Tetapan - - Gelintar Fail menyediakan kunci gsettings untuk mengubahsuai beberapa kelakuannya. Nilai gsettings boleh diubah dengan memulakan Penyunting Konfigurasi dalam langkah-langkah berikut: - - - Menu Aplikasi - - Pilih Alatan SistemPenyunting dconf. - - - - Baris perintah - - Lakukan perintah berikut: dconf-editor - - - - - - Lumpuhkan Gelintar Pantas - Nama kunci: org.mate.search-tool.disable-quick-search - Nilai lalai: false - Gelintar Fail mempercepatkan penggelintaran nama fail dengan menggunakan perintah locate. Perintah locate menyediakan satu cara selamat untuk mengindeks dan gelintar nama fail secara pantas. Oleh kerana perintah locate bergantung pada indeks fail, senarai Hasil gelintar tidak selalunya dikemaskinikan. - - - - Lumpuhkan Imbasan Kedua bagi Gelintar Pantas - Nama kunci: org.mate.search-tool.disable-quick-search-second-scan - Nilai lalai: false - Selepas gelintar pantas selesai, Gelintar Fail akan melakukan gelintar menyeluruh menggunakan perintah find. Tujuan imbas kedua ini adalah untuk mencari fail yang belum lagi diindekskan. Fail yang sepadan dengan kriteria gelintar ditambah ke dalam senarai Hasil gelintar yang senantiasa dikemaskinikan. - - - - Laluan Terasing bagi Gelintar Pantas - Nama kunci: org.mate.search-tool.quick-search-excluded-paths - Nilai lalai: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Gelintar Fail tidak akan lakukan gelintar pantas bagi laluan yang ditakrif oleh kunci ini. Nama fail yang digelintar dalam laluan ditakrif akan menggunakan perintah find. Kad liar '*' dan '?' disokong. - - - - Laluan Terasing Imbasan Kedua bagi Gelintar Pantas - Nama kunci: org.mate.search-tool.quick-search-second-scan-excluded-paths - Nilai lalai: [/] - Gelintar Fail tidak akan lakukan imbas kedua selepas gelintar pantas bagi laluan yang ditakrif oleh kunci ini. Gelintar pantas dalam laluan ditakrif tidak akan diikuti dengan gelintar menyeluruh melalui perintah find. Kad liar '*' dan '?' disokong. - - - - Papar Pilihan Tambahan - Nama kunci: org.mate.search-tool.show-additional-options - Nilai lalai: false - Kunci ini tentukan jika seksyen Pilih lagi pilihan dikembangkan bila Gelintar Fail bermula. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ms/legal.xml mate-utils-1.26.1/gsearchtool/help/ms/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ms/legal.xml 2021-08-05 19:47:57.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ms/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Keizinan diberi untuk menyalin, mengedar dan/atau mengubahsuai dokumen ini bawah terma Lesen Dokumentasi Bebas GNU (GDFL), bagi Versi 1.1 atau mana-mana versi terkemudian yang telah diterbitkan oleh Free Software Foundation tanpa Seksyen Tak Varian, tanpa Teks Muka-Hadapan, dan tanpa Teks Muka Belakang. Anda boleh temui satu salinan GFDL di dalam pautan atau di dalam fail COPYING-DOCS yang disertakan bersama-sama panduan ini. - Panduan ini adalah sebahagian dari koleksi panduan MATE yang diedar bawah GFDL. Jika anda mahu edar panduan ini secara berasingan dari koleksi asalnya, anda boleh membuat sedemikian dengan menambah satu salinan lesen ke dalam panduan sepertimana yang dijelaskan dalam seksyen 6 lesen tersebut. - - Kebanyakan nama digunakan oleh syarikat untuk membezakan produk dan perkhidmatan mereka dituntut sebagai tanda dagangan. Jika nama tersebut ada di dalam dokumentasi MATE, dan ahli-ahli Projek Dokumentasi MATE sedar akan tanda dagangan tersebut, kerana nama-nama tersebut telah di huruf besarkan atau huruf awalnya telah dihuruf besarkan. - - DOKUMEN DAN VERSI UBAHSUAI DOKUMEN DISEDIAKAN BAWAH TERMA LESEN DOKUMENTASI BEBAS GNU DENGAN PERKARA BERIKUT: - - DOKUMEN DISEDIAKAN SEBAGAI DASAR "SEBAGAIMANA ADANYA", TANPA JAMINAN ATAS APA JUA, SAMA ADA DIUNGKAP ATAU DILAKSANA, TERMASUKLAH, TANPA HAD, JAMINAN TERHADAP DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN ADALAH BEBAS MASALAH KEBOLEHNIAGAAN. SESUAI ATAS TUJUAN TERTENTU ATAU BUKAN-PELANGGARAN. KESELURUHAN RISIKO ATAS KUALITI, KETEPATAN, DAN PRESTASI DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN TERLETAK PADA DIRI ANDA. SEKIRANYA TERDAPAT MANA-MANA DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN YANG BERMASALAH DALAM APA JUA BENTUK, ANDA (BUKAN PENULIS, PENGARANG ATAU MANA-MANA PENYUMBANG ASAL) MENANGGUNG KOS APA JUA PERKHIDMATAN, PEMBAIKAN ATAU PEMBETULAN YANG DIPERLUKAN. PENAFIAN JAMINAN INI TERBENTUK SEBAGAI BAHAGIAN PENTING LESEN INI. MAKA TIDAK PENGGUNAAN MANA-MANA DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN DIIZINKAN KECUALI TERTAKLUK DI BAWAH PENAFIAN INI; DAN - - - TANPA DI BAWAH APA-APA KEADAAN DAN TEORI PERUNDANGAN, SAMA ADA DALAM TORT (TERMASUKLAH KECUAIAN), KONTRAK, ATAU SEUMPAMA DENGANNYA, SI PENGARANG, PENULIS ASAL, MANA-MANA PENYUMBANG, ATAU MANA-MANA PENGEDAR DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN, ATAU MANA-MANA PEMBEKAL ATAS APA JUA KUMPULAN, JUGA PADA MANA-MANA INDIVIDU ATAS KEROSAKAN SECARA LANGSUNG ATAU TIDAK LANGSUNG, SECARA KHUSUS, TIDAK SENGAJA ATAU, KEROSAKAN LANJUTAN TERHADAP SESIAPA SAHAJA, TERMASUKLAH TANPA HAD BAGI KEROSAKAN NAMA BAIK, GANGGUAN KERJA, KEGAGALAN ATAU KEROSAKAN KOMPUTER, ATAU MANA-MANA MAHUPUN SEMUA KEROSAKAN LAIN BERKAITAN PENGGUNAAN DOKUMEN DAN VERSI UBAHSUAI DOKUMEN, WALAUPUN PIHAK TERSEBUT TELAH DIMAKLUMKAN ADANYA KEBARANGKALIAN KEROSAKAN SEBEGITU BOLEH BERLAKU. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/nb/index.docbook mate-utils-1.26.1/gsearchtool/help/nb/index.docbook --- mate-utils-1.26.0/gsearchtool/help/nb/index.docbook 2021-08-05 19:47:57.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/nb/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,551 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - 2002 2003 2004 Sun Microsystems - - 2000 - Alexander Kirillov - - - - MATE dokumentasjonsprosjekt - - - GNOME dokumentasjonsprosjekt - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Tilbakemelding - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduksjon - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Kom i gang - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Bruk - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Eksempel - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Klikk Legg til. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Beskrivelse - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Endringsdato mer enn - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Filen er tomt - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Eier gjenkjennes ikke - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Vis skjulte filer og sikkerhetskopier - - Include hidden and backup files in the search. - - - - Følg symbolske lenker - - Follow symbolic links when searching for files. - - - - Utelat andre filsystemer - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Alternativer - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Kommandolinje - - Execute the following command: dconf-editor - - - - - - Deaktiver hurtigsøk - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Deaktiver andre gangs søk i hurtigsøk - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Utelatte stier for hurtigsøk - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Utelatte stier for andre gangs søk ved hurtigsøk - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Vis flere alternativer - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/nb/legal.xml mate-utils-1.26.1/gsearchtool/help/nb/legal.xml --- mate-utils-1.26.0/gsearchtool/help/nb/legal.xml 2021-08-05 19:47:57.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/nb/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/nds/index.docbook mate-utils-1.26.1/gsearchtool/help/nds/index.docbook --- mate-utils-1.26.0/gsearchtool/help/nds/index.docbook 2021-08-05 19:47:57.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/nds/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - gebruk - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Beschrieven - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Command line - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Tosättliche Optschoonen opwiesen - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/nds/legal.xml mate-utils-1.26.1/gsearchtool/help/nds/legal.xml --- mate-utils-1.26.0/gsearchtool/help/nds/legal.xml 2021-08-05 19:47:57.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/nds/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ne/index.docbook mate-utils-1.26.1/gsearchtool/help/ne/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ne/index.docbook 2021-08-05 19:47:57.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ne/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - परिचय - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - प्रयोग - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - वर्णन - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - यसभन्दा बढी परिमार्जित मिति - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - फाइल खाली छ - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - मालिक परिचित छैन - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - लुकेको र जगेडा फाइल देखाउनुहोस् - - Include hidden and backup files in the search. - - - - प्रतिकात्माक लिङ्क अनुगमन गर्नुहोस् - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - आदेश रेखा - - Execute the following command: dconf-editor - - - - - - छिटो खोजी अक्षम बनाउनुहोस् - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - दोस्रो स्क्यान छरितो खोजी अक्षम पार्नुहोस् - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - छाडिएका बाटा छिटो खोज्नुहोस् - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - दोस्रो स्क्यानमा छाडिएका बाटोहरू छिटो खोजी गर्नुहोस् - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - थप विकल्पहरू देखाउनुहोस् - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ne/legal.xml mate-utils-1.26.1/gsearchtool/help/ne/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ne/legal.xml 2021-08-05 19:47:57.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ne/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/nl/index.docbook mate-utils-1.26.1/gsearchtool/help/nl/index.docbook --- mate-utils-1.26.0/gsearchtool/help/nl/index.docbook 2021-08-05 19:47:57.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/nl/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,544 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - 2002 2003 2004 Sun Microsystems - - 2000 - Alexander Kirillov - - - - MATE Documentatie Project - - - GNOME Documentatie Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - Alexander Kirillov GNOME Documentatie Project
kirillov@math.sunysb.edu
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Terukoppeling - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introductie - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Gebruik - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Voorbeeld - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Beschrijving - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - M_eer dan (dagen) geleden gewijzigd - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Bestand is leeg - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Eigenaar wordt niet herkend - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Toon verborgen bestanden en reservekopiebestanden - - Include hidden and backup files in the search. - - - - Volg symbolische koppelingen - - Follow symbolic links when searching for files. - - - - Andere bestandssystemen uitsluiten - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Opdrachtregel - - Execute the following command: dconf-editor - - - - - - Snelzoeken uitschakelen - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Tweede onderzoek bij snelzoeken uitschakelen - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Uitgesloten paden bij snelzoeken - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Uitgesloten paden bij snelzoeken tweede onderzoek - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Extra opties tonen - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/nl/legal.xml mate-utils-1.26.1/gsearchtool/help/nl/legal.xml --- mate-utils-1.26.0/gsearchtool/help/nl/legal.xml 2021-08-05 19:47:57.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/nl/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - Deze handleiding maakt deel uit van een verzameling MATE handleidingen onder de GFDL. Als u deze handleiding afzonderlijk wil verspreiden, dan kan u dit door een kopie van de licentie van de handleiding toe te voegen, zoals beschreven in hoofdstuk 6 van de licentie. - - Vele van de namen zoals gebruikt bij bedrijven om hun producten en services te onderscheiden zijn geclaimd als handelsmerken. Wanneer deze namen voorkomen in enige MATE documentatie, en de leden van het MATE Documentatie Project hiervan bewust zijn gemaakt, dan zullen deze namen in hoofdletters zijn of beginnen met hoofdletters. - - HET DOCUMENT EEN AANGEPASTE VERSIES VAN HET DOCUMENT WORDEN AANGEBODEN ONDER DE VOORWAARDEN VAN DE GNU FREE DOCUMENTATION LICENTIE MET HET BEGRIP DAT: - - HET DOCUMENT IS AANGEBODEN OP EEN "ZOALS HET IS" BASIS, ZONDER ENIGE VORM VAN GARANTIE, ZOWEL UITGESPROKEN ALS GEÏMPLICEERD, INCLUSIEF, ZONDER BEPERKINGEN, GARANTIES DAT HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET DOCUMENT VRIJ VERHANDELBARE GEBREKEN OF GESCHIKT IS VOOR EEN BEPAALD DOEL IS, OF GEEN INBREUK MAAKT. HET VOLLEDIGE RISICO BETREFFEND DE KWALITEIT, ACCURAATHEID, EN PRESTATIES VAN HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET DOCUMENT LIGT BIJ U. INDIEN HET DOCUMENT DEFECT BLIJKT TE ZIJN IN ENIGE VORM, U (NIET DE INITIËLE SCHRIJVER, AUTEUR OF ENIGE BIJDRAGER) ZAL DE KOSTEN KOSTEN VOOR ENIGE NODIGE SERVICE, REPARATIE OF CORRECTIE OP ZICH NEMEN. DEZE DISCLAIMER BETREFT DE GARANTIE IS EEN ESSENTIEEL ONDERDEEL VAN DEZE LICENTIE. GEEN ENKEL GEBRUIK VAN DIT DOCUMENT OF AANGEPASTE VERSIE VAN HET DOCUMENT IS TOEGESTAAN ALS VOLGT ZONDER DEZE DISCLAIMER; EN - - - 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. - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/nn/index.docbook mate-utils-1.26.1/gsearchtool/help/nn/index.docbook --- mate-utils-1.26.0/gsearchtool/help/nn/index.docbook 2021-08-05 19:47:57.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/nn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Dokumentasjonsprosjekt - - - GNOME Dokumentasjonsprosjekt - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Tilbakemelding - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Innføring - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Bruk - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Skildring - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Sist endra meir enn så mange dagar sidan - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Fila er tom - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Kjenner ikkje att eigaren - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Vis gøymte filer og tryggleikskopiar - - Include hidden and backup files in the search. - - - - Følg symbolske lenkjer - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Kommandolinje - - Execute the following command: dconf-editor - - - - - - Deaktiver snøggsøk - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Deaktiver andre gongs søk i snøggsøk - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Utelatte stigar for snøggsøk - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Utelatte stigar for andre gongs søk ved snøggsøk - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Vis fleire alternativ - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/nn/legal.xml mate-utils-1.26.1/gsearchtool/help/nn/legal.xml --- mate-utils-1.26.0/gsearchtool/help/nn/legal.xml 2021-08-05 19:47:57.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/nn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/nso/index.docbook mate-utils-1.26.1/gsearchtool/help/nso/index.docbook --- mate-utils-1.26.0/gsearchtool/help/nso/index.docbook 2021-08-05 19:47:57.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/nso/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Tlhaloso - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Command line - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/nso/legal.xml mate-utils-1.26.1/gsearchtool/help/nso/legal.xml --- mate-utils-1.26.0/gsearchtool/help/nso/legal.xml 2021-08-05 19:47:57.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/nso/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/oc/index.docbook mate-utils-1.26.1/gsearchtool/help/oc/index.docbook --- mate-utils-1.26.0/gsearchtool/help/oc/index.docbook 2021-08-05 19:47:57.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/oc/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,500 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - 2015-2021 MATE Documentation Project - 2005 Dennis Cranston - 2002 2003 2004 Sun Microsystems - 2000 Alexander Kirillov - - - Projècte de documentacion de MATE - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - Dennis Cranston Search for Files Maintainer
dennis_cranston@yahoo.com
- Sun GNOME Documentation Team Sun Microsystems
- Alexander Kirillov GNOME Documentation Project
kirillov@math.sunysb.edu
- - - - - - Search for Files Manual V1.10 July 2015 - Wolfgang Ulbrich - Search for Files Maintainer - - Search for Files Manual V2.7 June 2005 - Joachim Noreiko jnoreiko@yahoo.com - Search for Files Maintainer - - Search for Files Manual V2.6 January 2005 - Dennis Cranston dennis_cranston@yahoo.com - Search for Files Maintainer - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Comentaris - Per senhalar una avaria o per formular una suggestion a prepaus de la Recèrca de fichièrs a o aqueste manual, seguissètz las instruccions dins la pagina de comentaris de MATE. - - - - - Aisina de recèrca - - - - - - Introduccion - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Començar - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Utilizacion - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Exemple - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Clicar Apondre. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Nom de l’opcion - - Descripcion - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Data de modificacion superiora a - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Lo fichièr es void - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Proprietari pas reconegut - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Seguir los ligams simbolics - - Follow symbolic links when searching for files. - - - - Exclure los autres sistèma de fichièrs - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Paramètres - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Menú Aplicacions - - Choose System Toolsdconf Editor. - - - - Linha de comanda - - Execute the following command: dconf-editor - - - - - - Desactivar la recèrca rapida - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Afichar las opcions addicionalas - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/oc/legal.xml mate-utils-1.26.1/gsearchtool/help/oc/legal.xml --- mate-utils-1.26.0/gsearchtool/help/oc/legal.xml 2021-08-05 19:47:57.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/oc/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Autorizacion vos es donada de copiar, distribuir e/o modificar aqueste document segon los tèrmes de la Licéncia GNU Free Documentation License (GFDL), Version 1.1 o ulteriora publicada per la Free Software Foundation sens seccion inalterabla, sens tèxt de primièra pagina de cubèrta ni tèxt de darrièra pagina de cubèrta. Trobaretz un exemplari de la GFDL en seguissent aqueste ligam o dins lo fichièr COPYING-DOCS provesit amb lo present manual. - Aqueste manual fa part de la colleccion de manuals de MATE distribuits jols tèrmes de la licéncia de documentacion liura GNU. Se volètz distribuir aqueste document a despart de la colleccion, o podètz far en ajustant un exemplar de la licéncia al manual, coma indicat a la seccion 6 de la licéncia. - - La màger part dels noms utilizats per las entrepresas per distinguir lors produches e servicis son de marcas depausadas. Quand aqueles noms apareisson dins la documentacion MATE e que los membres del projècte de Documentacion MATE son informats de l’existéncia d’aquelas marcas depausadas, siá aqueles noms entièrs, siá lor primièra letra es en majuscula. - - LOS DOCUMENTS E LAS VERSIONS MODIFICADAS D’AQUESTE DOCUMENT SON FORNITS JOLS TÈRMES DE LA LICÉNCIA DE DOCUMENTACION LIURA GNU ESTANT QUE : - - LO DOCUMENT ES PROVESIT « TAL COMA ES » SENS CAP DE GARANTIDA DE QUIN TIPE QUE SIÁ, EXPLICITA O IMPLICADA, AQUÒ INCLUTZ, SENS CAP DE LIMIT, LAS GARANTIDAS QUE LO DOCUMENT O UNA VERSION MODIFICADA NON AJA PAS CAP DE DEFAUT, QUE SIÁ COMERCIABLE, QUE SIÁ ADAPTAT PER UN USATGE PARTICULAR O QUE ENFRANGA PAS LA LEI. TOT LO RISC RESPÈCTE A LA QUALITAT, L’EXACTITUD O LAS QUALITATS TECNICAS DEL DOCUMENT O DE SAS VERSIONS MODIFICADAS ES VÒSTRE. SE PER CAS LO DOCUMENT O UNA VERSION MODIFICADA S’AVERÈSSE DEFECTUÓS AL RESPÈCTE DE QUIN ASPÈCTE QUE SIÁ, VOSAUTRES (NON PAS LO REDACTOR INICIAL, L’AUTOR O QUIN CONTRIBUIDOR QUE SIÁ) ASSUMISSÈTZ LO CÒST DE TOTA MANTENENÇA, REPARACION O CORRECCION NECESSÀRIA. AQUESTA DESCARGA DE GARANTIDA CONSTITUÍS UNA PART ESSENCIALA D’AQUESTA LICÉNCIA. CAP D’UTILIZACION D’AQUESTE DOCUMENT O VERSION MODIFICADA ES AUTORIZADA LEVAT JOS AQUESTA DESCARGA DE GARANTIDA E - - - EN CAP DE CIRCONSTÀNCIA E JOS CAP D’INTERPRETACION LEGALA, QUE SIÁ DE RESPONSABILITAT CIVILA (NEGLIGÉNCIA INCLUSA), CONTRACTUALA O AUTRA, L’AUTOR, LO REDACTOR INICIAL, TOT CONTRIBUIDOR E TOT DISTRIBUIDOR D’AQUESTE DOCUMENT O DE SA VERSION MODIFICADA NI CAP DE PROVESIDOR D’AQUESTES PARTS SERÀN PAS RESPONSABLES AL RESPÈCTE DE QUIN DAMATGE DIRÈCTE, INDIRÈCTE, ESPECIAL O ACCIDENTAL QUE SIÁ DE TOT TIPE E TANBEN, SENS LIMITACION, LOS DAMATGES LIGATS A LA PÈRDA DE CLIENTÈLA, LAS INTERRUPCIONS DE TRABALH, ALS DEFALHIMENTS E DISFONCIONAMENTS INFORMATICS O TOTA AUTRA PÈRDA LIGADA A L’UTILIZACION DEL DOCUMENT E DE SAS VERSIONS MODIFICADAS, ATAL METEIS S’AQUESTES PART ÈRAN AVISATS DE LA POSSIBILITAT D’AQUESTES DAMATGES. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/or/index.docbook mate-utils-1.26.1/gsearchtool/help/or/index.docbook --- mate-utils-1.26.0/gsearchtool/help/or/index.docbook 2021-08-05 19:47:58.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/or/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - ପରିଚୟ - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - ବ୍ୟବହାର ବିଧି - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - ବର୍ଣ୍ଣନା - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - ତାରିଖ ପରିବର୍ତ୍ତିତ ଏହାଠାରୁ ବେଶି - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - ଫାଇଲଟି ଖାଲି ଅଛି - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - ମାଲିକଙ୍କୁ ଚିହ୍ନି ହେଲା ନାହିଁ - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - ଲୁକ୍କାୟିତ ଏବଂ ନକଲ ସଂରକ୍ଷଣ ଫାଇଲ ମାନଙ୍କୁ ଦେଖାନ୍ତୁ - - Include hidden and backup files in the search. - - - - ପ୍ରତୀକାତ୍ମକ ସମ୍ପର୍କକୁ ଅନୁସରଣ କରନ୍ତୁ - - Follow symbolic links when searching for files. - - - - ଅନ୍ଯ ଫାଇଲତନ୍ତ୍ର ମାନଙ୍କୁ ବାହାର କରନ୍ତୁ - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - ଆଦେଶ ରେଖା - - Execute the following command: dconf-editor - - - - - - ଶୀଘ୍ର ସନ୍ଧାନକୁ ନିଷ୍କ୍ରିୟ କରି ଦିଅନ୍ତୁ - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - ଶୀଘ୍ର ସନ୍ଧାନ ଏବଂ ଦ୍ବତୀୟ ଥର କ୍ରମବୀକ୍ଷଣକୁ ନିଷ୍କ୍ରିୟ କରି ଦିଅନ୍ତୁ - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - ଶୀଘ୍ର ସନ୍ଧାନ ବହିର୍ଭୂତ ପଥ - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - ଶୀଘ୍ର ସନ୍ଧାନ ଏବଂ ଦ୍ବତୀୟ ଥର କ୍ରମବୀକ୍ଷଣ ବହିର୍ଭୂତ ପଥ - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - ଅତିରିକ୍ତ ବିକଲ୍ପ ମାନଙ୍କୁ ଦେଖାନ୍ତୁ - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/or/legal.xml mate-utils-1.26.1/gsearchtool/help/or/legal.xml --- mate-utils-1.26.0/gsearchtool/help/or/legal.xml 2021-08-05 19:47:58.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/or/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/pa/index.docbook mate-utils-1.26.1/gsearchtool/help/pa/index.docbook --- mate-utils-1.26.0/gsearchtool/help/pa/index.docbook 2021-08-05 19:47:58.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/pa/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - ਗਨੋਮ ਦਸਤਾਵੇਜ਼ ਪ੍ਰੋਜੈਕਟ - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - ਸੁਝਾਅ - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - ਜਾਣ ਪਛਾਣ - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - ਵਰਤੋਂ - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - ਵੇਰਵਾ - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - ਸੋਧ ਮਿਤੀ ਤੋਂ ਜਿਆਦਾ - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - ਫਾਇਲ ਖਾਲੀ ਹੈ - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - ਮਾਲਕ ਪਛਾਣ-ਰਹਿਤ ਹੈ - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - ਲੁਕਵੀਆਂ ਅਤੇ ਬੈਕਅੱਪ ਫਾਇਲਾਂ ਵੇਖੋ - - Include hidden and backup files in the search. - - - - ਨਿਸ਼ਾਨ ਸਬੰਧ ਦਾ ਪਿੱਛਾ ਕਰੋ - - Follow symbolic links when searching for files. - - - - ਹੋਰ ਫਾਇਲ-ਸਿਸਟਮ ਅੱਡ ਰੱਖੋ - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - ਕਾਰਜ ਮੇਨੂ - - Choose System Toolsdconf Editor. - - - - ਕਮਾਂਡ ਲਾਈਨ - - Execute the following command: dconf-editor - - - - - - ਤੇਜ਼ ਖੋਜ ਆਯੋਗ - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - ਤੇਜ਼ ਖੋਜ ਦੂਜੀ ਜਾਂਚ ਆਯੋਗ - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - ਤੇਜ਼ ਖੋਜ ਛੱਡੇ ਮਾਰਗ - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - ਤੇਜ਼ ਖੋਜ ਦੂਜੀ ਪੜਤਾਲ ਵਿੱਚ ਛੱਡੇ ਮਾਰਗ - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - ਹੋਰ ਚੋਣ ਵੇਖਾਓ - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/pa/legal.xml mate-utils-1.26.1/gsearchtool/help/pa/legal.xml --- mate-utils-1.26.0/gsearchtool/help/pa/legal.xml 2021-08-05 19:47:58.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/pa/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - ਇਹ ਦਸਤਾਵੇਜ਼ ਗਨੋਮ ਦਸਤਾਵੇਜ਼ ਭੰਡਾਰ ਦਾ ਭਾਗ ਹੈ, ਜੋ ਕਿ GFDL ਦੇ ਅਧੀਨ ਜਾਰੀ ਕੀਤਾ ਗਿਆ ਹੈ। ਜੇ ਤੁਸੀਂ ਇਹ ਦਸਤਾਵੇਜ਼ ਨੂੰ ਭੰਡਾਰ ਤੋਂ ਬਿਨਾਂ ਵੰਡਣਾ ਚਾਹੁੰਦੇ ਹੋ ਤਾਂ ਤੁਸੀਂ ਇਹ ਲਾਈਸੈਂਸ ਦੇ ਭਾਗ 6 ਵਿੱਚ ਦੱਸੇ ਮੁਤਾਬਕ ਦਸਤਾਵੇਜ਼ ਨਾਲ ਲਾਈਸੈਂਸ ਦੀ ਇੱਕ ਨਕਲ ਜੋੜ ਕੇ ਕਰ ਸਕਦੇ ਹੋ। - - ਕੰਪਨੀਆਂ ਵਲੋਂ ਆਪਣੇ ਉਤਪਾਦਾਂ ਅਤੇ ਸੇਵਾਵਾਂ ਲਈ ਵਰਤੇ ਗਏ ਕਈ ਨਾਂ ਮਾਰਕੇ ਹਨ। ਜਦੋਂ ਵੀ ਉਹ ਨਾਂ ਕਿਸੇ ਗਨੋਮ ਦਸਤਾਵੇਜ਼ ਪ੍ਰੋਜੈਕਟ ਵਿੱਚ ਆਉਦੇ ਹਨ ਅਤੇ ਗਨੋਮ ਦਸਤਾਵੇਜ਼ ਪ੍ਰੋਜੈਕਟ ਦੇ ਮੈਂਬਰ ਹਨ ਤਾਂ ਉਨ੍ਹਾਂ ਮਾਰਕਿਆਂ ਬਾਰੇ ਜਾਣਕਾਰੀ ਦੇਣ ਲਈ, ਉਹਨਾਂ ਨੇ ਦੇ ਨਾਂ ਵੱਡੇ ਅੱਖਰਾਂ ਵਿੱਚ ਜਾਂ ਪਹਿਲੇਂ ਅੱਖਰ ਵੱਡੇ ਰੱਖੇ ਗਏ ਹਨ। - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/pl/index.docbook mate-utils-1.26.1/gsearchtool/help/pl/index.docbook --- mate-utils-1.26.0/gsearchtool/help/pl/index.docbook 2021-08-05 19:47:58.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/pl/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,542 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - 2015-2021 dokumentacja projektu MATE - 2005 Dennis Cranston - 2002 2003 2004 Sun Microsystems - 2000 Alexander Kirillov - - - Projekt dokumentacji MATE - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Opinia - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Wprowadzenie - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Użycie - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Kliknij Dodaj - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Opcje wyszukiwania - - - - - - - Nazwa opcji - - Opis - - - - - - Zawiera tekst - - Wyszukaj pliki tekstowe zawierające podany tekst. - - - - Data modyfikacji mniejsza niż - - Wyszukaj pliki zmodyfikowane wcześniej niż okres podany w dniach. - - - - Czas od modyfikacji przekracza - - Wyszukaj pliki zmodyfikowane dawniej niż okres podany w dniach. - - - - Rozmiar do - - Wyszukaj pliki o rozmiarze równym lub większym niż rozmiar podany w kilobajtach. - - - - Rozmiar do - - Wyszukaj pliki o rozmiarze równym lub mniejszym niż rozmiar podany w kilobajtach. - - - - Plik jest pusty - - Wyszukaj puste pliki. - - - - Użytkownik, który jest właścicielem - - Wyszukaj pliki, których właścicielem jest podany użytkownik. Wpisz nazwę użytkownika w polu tekstowym. - - - - Grupa, która jest właścicielem - - Wyszukaj pliki, których właścicielem jest dana grupa. Wpisz nazwę grupy w polu tekstowym. - - - - Właściciel nierozpoznany - - Search for files that are owned by a user or group that is unknown to the system. - - - - Nazwa nie zawiera - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Wyświetlanie plików ukrytych i zapasowych - - Wyszukiwanie w plikach ukrytych i zapasowych - - - - Podążanie za dowiązaniami symbolicznymi - - Podążaj za dowiązaniami podczas wyszukiwania. - - - - Bez innych systemów plików - - Wyszukaj w katalogach, które mają taki sam system plików jak katalog startowy. - - - - -
- -
- - - Zatrzymanie wyszukiwania - Click Stop to stop a search before Search for Files completes the search. - - - - Otwiera wyświetlony plik - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - Aby zapisać wyniki wyszukiwania - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Ustawienia - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Wiersz poleceń - - Execute the following command: dconf-editor - - - - - - Wyłączenie szybkiego wyszukiwania - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Wyłączenie drugiego przebiegu szybkiego wyszukiwania - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Ścieżki wyłączone z szybkiego wyszukiwania - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Ścieżki wyłączone z drugiego przebiegu szybkiego wyszukiwania - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Wyświetlanie dodatkowych opcji - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/pl/legal.xml mate-utils-1.26.1/gsearchtool/help/pl/legal.xml --- mate-utils-1.26.0/gsearchtool/help/pl/legal.xml 2021-08-05 19:47:58.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/pl/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Udziela się zgody na kopiowanie, dystrybucję i/lub modyfikację tego tekstu na warunkach licencji GNU Free Documentation License (GFDL) w wersji 1.1 lub nowszej, opublikowanej przez Free Software Foundation bez Sekcji Niezmiennych, bez Strony Tytułowej i bez Treści Okładki. Kopia tekstu licencji GFDL umieszczona została pod tym odnośnik lub w pliku COPYING-DOCS rozpowszechnianym razem z tą instrukcją. - Ten podręcznik jest częścią zestawu podręczników MATE rozpowszechnianych na licencji GFDL. Jeżeli chcesz rozpowszechnić tą instrukcję osobno od zestawu, możesz to zrobić dodając kopię licencji do podręcznika, jak opisano w dziale 6 tej licencji. - - Wiele nazw używanych przez firmy do rozróżnienia ich produktów i usług jest zgłoszonych jako znaki towarowe. W przypadku pojawienia się tych nazw w dowolnej dokumentacji MATE, a członkowie Projektu Dokumentacji MATE są świadomi tych znaków towarowych, wówczas nazwy są pisane wielkimi literami lub pierwszymi wielkimi literami. - - DOKUMENT I ZMODYFIKOWANE WERSJE DOKUMENTU SĄ DOSTARCZANE NA WARUNKACH LICENCJI WOLNEJ DOKUMENTACJI GNU Z DALSZYM ZROZUMIENIEM, ŻE: - - DOKUMENT JEST DOSTARCZANY W STANIE „TAK JAK JEST”, BEZ JAKIEGOKOLWIEK WYRAŻENIA, DOMNIEMANIA GWARANCJI, W TYM MIĘDZY INNYMI GWARANCJI, ŻE DOKUMENT LUB ZMODYFIKOWANA WERSJA DOKUMENTU JEST WOLNA OD WAD HANDLOWYCH LUB DO OKREŚLONEGO CELU -NARUSZENIE. CAŁKOWITE RYZYKO DOTYCZĄCE JAKOŚCI, DOKŁADNOŚCI I WYDAJNOŚCI DOKUMENTU LUB ZMODYFIKOWANEJ WERSJI DOKUMENTU SPOCZYWA NA UŻYTKOWNIKU. JEŻELI JAKIKOLWIEK DOKUMENT LUB ZMODYFIKOWANA WERSJA OKAŻE SIĘ WADLIWA POD JAKIMKOLWIEK WZGLĘGEM, UŻYTKOWNIK (NIE WSTĘPNY PISARZ, AUTOR CZY ŻADEN WSPÓŁPRACOWNIK) PONOSI KOSZTY WSZELKICH NIEZBĘDNYCH SERWISÓW, NAPRAW LUB POPRAWEK. NINIEJSZE WYŁĄCZENIE GWARANCJI STANOWI ISTOTNĄ CZĘŚĆ LICENCJI. ZGODNIE Z NINIEJSZYM WYŁĄCZENIEM ODPOWIEDZIALNOŚCI NIE JEST ZEZWOLONE NA KORZYSTANIE Z JAKICHKOLWIEK DOKUMENTÓW LUB ZMODYFIKOWANYCH WERSJI DOKUMENTU; ORAZ - - - W ŻADNYM PRZYPADKU I W ŻADNEJ TEORII PRAWNEJ, CZY W DZIAŁANIU CZYNNYM (W TYM ZANIEDBANIA), UMOWY LUB W INNY SPOSÓB, AUTOR, PISARZ WSTĘPNY, WSPÓŁPRACOWNIK ANI DYSTRYBUTOR DOKUMENTU LUB ZMODYFIKOWANA WERSJA DOKUMENTU TAKICH STRON NIE PONOSI ODPOWIEDZIALNOŚCI WOBEC JAKICHKOLWIEK OSÓB ZA JAKIEKOLWIEK BEZPOŚREDNIE, POŚREDNIE, SZCZEGÓLNE, PRZYPADKOWE LUB WTÓRNE SZKODY JAKIEGOKOLWIEK CHARAKTERU, W TYM MIĘDZY INNYMI USZKODZENIA ZA UTRATĘ WŁAŚCIWOŚCI, PRZERWY W PRACY, AWARIE LUB INNE USZKODZENIA KOMPUTERA LUB STRATY WYNIKAJĄCE Z KORZYSTANIA Z DOKUMENTU I ZMODYFIKOWANYCH WERSJI DOKUMENTU, NAWET JEŚLI STRONA ZOSTAŁA POINFORMOWANA O MOŻLIWOŚCI WYSTĄPIENIA TAKICH SZKÓD. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ps/index.docbook mate-utils-1.26.1/gsearchtool/help/ps/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ps/index.docbook 2021-08-05 19:47:58.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ps/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - کارونه - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - سپړاوی - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - دوتنه تشه ده - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - پټې او شاتړ دوتنې ښودل - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - بولۍ ليکه - - Execute the following command: dconf-editor - - - - - - ژر لټون ناتوانول - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - زياتي غوراوي ښودل - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ps/legal.xml mate-utils-1.26.1/gsearchtool/help/ps/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ps/legal.xml 2021-08-05 19:47:58.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ps/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/pt/pt.po mate-utils-1.26.1/gsearchtool/help/pt/pt.po --- mate-utils-1.26.0/gsearchtool/help/pt/pt.po 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/pt/pt.po 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,1033 @@ +# +# Translators: +# Carlos Moreira, 2021 +# clefebvre , 2021 +# Wolfgang Ulbrich , 2021 +# ogalho Carlos Dias Martins , 2021 +# Rui , 2021 +# Manuela Silva , 2021 +# José Vieira , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2021-06-04 20:34+0200\n" +"PO-Revision-Date: 2021-09-21 19:07+0000\n" +"Last-Translator: José Vieira , 2021\n" +"Language-Team: Portuguese (https://app.transifex.com/mate/teams/13566/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. Put one translator per line, in the form NAME , YEAR1, YEAR2 +msgctxt "_" +msgid "translator-credits" +msgstr "" +"Hugo Carvalho , 2018\n" +"José Vieira , 2021" + +#. (itstool) path: articleinfo/title +#: C/index.docbook:23 +msgid "Search for Files Manual" +msgstr "" + +#. (itstool) path: abstract/para +#: C/index.docbook:26 +msgid "A search tool to find files, folders and documents on your computer." +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:31 +msgid "2015-2021 MATE Documentation Project" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:35 +msgid "2005 Dennis Cranston" +msgstr "2005 Dennis Cranston" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:39 +msgid "" +"2002 2003 2004 Sun " +"Microsystems" +msgstr "" +"2002 2003 2004 Sun " +"Microsystems" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:45 +msgid "2000 Alexander Kirillov" +msgstr "2000 Alexander Kirillov" + +#. (itstool) path: publisher/publishername +#: C/index.docbook:58 +msgid "MATE Documentation Project" +msgstr "Projeto de Documentação do MATE" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:61 C/index.docbook:155 C/index.docbook:163 +#: C/index.docbook:171 C/index.docbook:179 C/index.docbook:187 +#: C/index.docbook:197 +msgid "GNOME Documentation Project" +msgstr "Projecto de Documentação do GNOME" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:67 +msgid "" +"MATE Documentation Team Search for" +" Files Maintainer " +msgstr "" + +#. (itstool) path: affiliation/address +#: C/index.docbook:78 +#, no-wrap +msgid "dennis_cranston@yahoo.com" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:73 +msgid "" +"Dennis Cranston " +"Search for Files Maintainer <_:address-1/> " +msgstr "" +"Dennis Cranston " +"Responsável pela Pesquisa de Ficheiros <_:address-1/> " +"" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:81 +msgid "" +"Sun GNOME Documentation Team " +" Sun Microsystems <_:address-1/> " +"" +msgstr "" +"Sun Equipa de Documentação GNOME " +" Sun Microsystems <_:address-1/> " +"" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:89 +msgid "" +"Alexander Kirillov " +"GNOME Documentation Project
" +"kirillov@math.sunysb.edu
" +msgstr "" +"Alexander Kirillov " +"Projeto de Documentação GNOME
" +"kirillov@math.sunysb.edu
" + +#. (itstool) path: revdescription/para +#: C/index.docbook:125 +msgid "Wolfgang Ulbrich" +msgstr "Wolfgang Ulbrich" + +#. (itstool) path: revdescription/para +#: C/index.docbook:127 C/index.docbook:137 C/index.docbook:147 +msgid "Search for Files Maintainer" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:121 +msgid "" +"Search for Files Manual V1.10 July 2015 " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:134 +msgid "Joachim Noreiko jnoreiko@yahoo.com" +msgstr "Joachim Noreiko jnoreiko@yahoo.com" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:130 +msgid "" +"Search for Files Manual V2.7 June 2005 " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:144 +msgid "Dennis Cranston dennis_cranston@yahoo.com" +msgstr "Dennis Cranston dennis_cranston@yahoo.com" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:140 +msgid "" +"Search for Files Manual V2.6 January " +"2005 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:154 C/index.docbook:162 C/index.docbook:170 +#: C/index.docbook:178 C/index.docbook:186 +msgid "Sun GNOME Documentation Team" +msgstr "Equipa de Documentação Sun GNOME" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:150 +msgid "" +"Search for Files Manual V2.4 February " +"2004 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:158 +msgid "" +"Search for Files Manual V2.3 September " +"2002 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:166 +msgid "" +"Search for Filesl Manual V2.2 August " +"2002 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:174 +msgid "" +"Search for Files Manual V2.1 July 2002 " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:182 +msgid "" +"Search for Files Manual V2.0 May 2002 " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:194 +msgid "Alexander Kirillov kirillov@math.sunysb.edu" +msgstr "Alexander Kirillov kirillov@math.sunysb.edu" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:190 +msgid "" +"Search for Files Manual 2000 " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: articleinfo/releaseinfo +#: C/index.docbook:202 +msgid "This manual describes version 1.10 of Search for Files." +msgstr "" + +#. (itstool) path: legalnotice/title +#: C/index.docbook:205 +msgid "Feedback" +msgstr "Opinião" + +#. (itstool) path: legalnotice/para +#: C/index.docbook:206 +msgid "" +"To report a bug or make a suggestion regarding the Search for Files " +"application or this manual, follow the directions in the MATE Feedback " +"Page." +msgstr "" + +#. (itstool) path: article/indexterm +#: C/index.docbook:212 +msgid "Search Tool" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:220 +msgid "Introduction" +msgstr "Introdução" + +#. (itstool) path: sect1/para +#: C/index.docbook:221 +msgid "" +"The Search for Files application enables you to " +"search for files on your system. To perform a basic search, you can type a " +"filename or a partial filename, with or without wildcards. To refine your " +"search, you can apply additional search options." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:222 +msgid "" +"Search for Files uses the " +"find, grep, and " +"locate UNIX commands. By default, when performing a basic" +" search Search for Files first uses the " +"locate command, and then uses the slower but more " +"thorough find command." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:223 +msgid "" +"The case sensitivity of the search depends on your operating system. For " +"example, on Linux, the find, grep, and" +" locate commands support the -i " +"option, so all searches are case-insensitive." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:227 +msgid "Getting Started" +msgstr "Iniciação" + +#. (itstool) path: sect1/para +#: C/index.docbook:229 +msgid "" +"You can start Search for Files in the following " +"ways:" +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:233 +msgid "From a Menu Bar on a panel" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:235 +msgid "" +"Choose PlacesSearch for " +"Files..." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:239 +msgid "From a Main Menu on a panel" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:241 +msgid "" +"Choose Search for " +"Files..." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:245 +msgid "From a command line" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:247 +msgid "Execute the following command: mate-search-tool" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:254 +msgid "" +"When you start Search for Files, the following " +"window is displayed." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:258 +msgid "Search for Files Window" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:262 +msgctxt "_" +msgid "" +"external ref='figures/mate-search-tool_window.png' " +"md5='bb0f097535682e53e6bd43c66f0373c7'" +msgstr "" +"external ref='figures/mate-search-tool_window.png' " +"md5='bb0f097535682e53e6bd43c66f0373c7'" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:260 +msgid "" +" Shows Search for Files " +"main window. " +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:277 +msgid "Usage" +msgstr "Utilização" + +#. (itstool) path: sect2/title +#: C/index.docbook:280 +msgid "To Perform a Basic Search" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:282 +msgid "" +"To perform a basic search for a file on the system, perform the following " +"steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:284 +msgid "" +"Enter the search text in the Name contains field. The " +"search text can be a filename or partial filename, with or without " +"wildcards, as shown in the following table:" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:294 +msgid "Name Contains Text" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:296 +msgid "Example" +msgstr "Examplo" + +#. (itstool) path: entry/para +#: C/index.docbook:298 +msgid "Result" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:304 +msgid "Full or partial filename" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:308 +msgid "myfile.txt" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:312 +msgid "" +"Search for Files searches for all files that " +"contain the text myfile.txt in the filename." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:318 +msgid "Partial filename combined with wildcards (*, [, ])" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:322 +msgid "*.[ch]" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:326 +msgid "" +"Search for Files searches for all files that have" +" extension .c or .h." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:334 +msgid "" +"In the Look in folder field, select the folder or " +"device from which you want Search for Files to " +"begin the search." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:336 +msgid "Click Find to perform the search." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:339 +msgid "" +"Search for Files searches in the directory that " +"you specify and the subdirectories of the directory. Search for" +" Files displays the results of the search in the " +"Search results list box. If Search for " +"Files does not find any files that match the search criteria, " +"the application displays the message \"No files found\" in the " +"Search results list box." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:343 +msgid "" +"By default, Search for Files will perform a quick" +" search using the locate command followed by a more " +"thorough second search using the find command. The " +"locate command is faster because it uses a database of " +"information about files. If this database is more than a week old, " +"Search for Files could warn you that the search " +"results may be out of date and give you the option of disabling the quick " +"search. To update the database, run the command updatedb " +"as the root user." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:347 +msgid "To Add Search Options" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:348 +msgid "" +"You can add additional options to search for a file on the system. To add " +"search options, perform the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:350 +msgid "Click on the Select more options text." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:351 +msgid "Click on the Available options drop-down list." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:352 +msgid "Select the search option that you want to apply." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:353 +msgid "Click Add." +msgstr "Clique em Adicionar." + +#. (itstool) path: listitem/para +#: C/index.docbook:354 +msgid "" +"Specify the required search information for the search option, as described " +"in ." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:355 +msgid "Repeat the above steps for each search option that you want to apply." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:357 +msgid "" +"To remove a search option from the current search, click on the " +"Remove button next to the option." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "" +"To disable the search options from the current search, click on the " +"Select more options text." +msgstr "" + +#. (itstool) path: table/title +#: C/index.docbook:361 +msgid "Search Options" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:368 +msgid "Option Name" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:370 +msgid "Description" +msgstr "Descrição" + +#. (itstool) path: entry/para +#: C/index.docbook:376 +msgid "Contains the text" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:378 +msgid "Search for files of type plain text that contain the specified text." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:382 +msgid "Date modified less than" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:384 +msgid "" +"Search for files that are modified less than the period specified in days." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:388 +msgid "Date modified more than" +msgstr "Data de alteração à mais de" + +#. (itstool) path: entry/para +#: C/index.docbook:390 +msgid "" +"Search for files that are modified longer than the period specified in days." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:394 +msgid "Size at least" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:396 +msgid "" +"Search for files that are equal to or larger than the size specified in " +"kilobytes." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:400 +msgid "Size at most" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:402 +msgid "" +"Search for files that are smaller than or equal to the size specified in " +"kilobytes." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:406 +msgid "File is empty" +msgstr "Ficheiro está vazio" + +#. (itstool) path: entry/para +#: C/index.docbook:408 +msgid "Search for empty files." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:412 +msgid "Owned by user" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:414 +msgid "" +"Search for files that are owned by the user specified. Type the name of the " +"user in the text box provided." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:418 +msgid "Owned by group" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:420 +msgid "" +"Search for files that are owned by the group specified. Type the name of the" +" group in the text box provided." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:424 +msgid "Owner is unrecognized" +msgstr "Proprietário não reconhecido" + +#. (itstool) path: entry/para +#: C/index.docbook:426 +msgid "" +"Search for files that are owned by a user or group that is unknown to the " +"system." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:430 +msgid "Name does not contain" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:432 +msgid "" +"Search for filenames that do not contain the string that you enter. Enter a " +"full filename or a partial filename with wildcards in the field provided. " +"Use * to indicate a sequence of characters. Use ? to indicate a single " +"character. The search is case-sensitive." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:436 +msgid "Name matches regular expression" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:438 +msgid "" +"Search for files that contain the specified regular expression in their " +"directory path or filename. Type the regular expression in the text box " +"provided." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:442 +msgid "Show hidden and backup files" +msgstr "Mostrar ficheiros escondidos e cópias de segurança" + +#. (itstool) path: entry/para +#: C/index.docbook:444 +msgid "Include hidden and backup files in the search." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:448 +msgid "Follow symbolic links" +msgstr "Seguir ligações simbólicas" + +#. (itstool) path: entry/para +#: C/index.docbook:450 +msgid "Follow symbolic links when searching for files." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:454 +msgid "Exclude other filesystems" +msgstr "Excluir outros sistemas de ficheiros" + +#. (itstool) path: entry/para +#: C/index.docbook:456 +msgid "" +"Search in directories that are in the same filesystem as the start " +"directory." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:466 +msgid "To Stop a Search" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:467 +msgid "" +"Click Stop to stop a search before " +"Search for Files completes the search." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:471 +msgid "To Open a Displayed File" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:472 +msgid "" +"To open a file displayed in the Search results list " +"box, perform one of the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:474 +msgid "Right-click on the file, then choose Open." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:475 +msgid "Double-click on the file." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:477 +msgid "" +"To open the folder that contains a file displayed in the Search " +"results list box, right-click on the file, then choose " +"Open Containing Folder." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:481 +msgid "To Delete a Displayed File" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:482 +msgid "" +"To delete a file displayed in the Search results list " +"box, right-click on the file, then choose Move to " +"Trash." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:493 +msgid "To Save the Search Results" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:494 +msgid "" +"To save the results of the last search that Search for " +"Files performed, right-click in the Search " +"results list, then choose Save Results " +"As. Enter the name of the file to which you want to save the " +"results, then click Save." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:502 +msgid "Settings" +msgstr "Definições" + +#. (itstool) path: sect1/para +#: C/index.docbook:504 +msgid "" +"Search for Files provides gsettings keys to " +"modify some of its behavior. The gsettings values can be changed by starting" +" the Configuration Editor in the following ways:" +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:508 +msgid "Applications menu" +msgstr "Menu de Aplicações" + +#. (itstool) path: listitem/para +#: C/index.docbook:510 +msgid "" +"Choose System Toolsdconf " +"Editor." +msgstr "" +"Escolha Ferramentas do " +"SistemaEditor dconf." + +#. (itstool) path: varlistentry/term +#: C/index.docbook:514 +msgid "Command line" +msgstr "Linha de comando" + +#. (itstool) path: listitem/para +#: C/index.docbook:516 +msgid "Execute the following command: dconf-editor" +msgstr "Execute o seguinte comando: dconf-editor" + +#. (itstool) path: sect2/title +#: C/index.docbook:522 +msgid "Disable Quick Search" +msgstr "Desativar Procura Rápida" + +#. (itstool) path: sect2/para +#: C/index.docbook:523 +msgid "Key name: org.mate.search-tool.disable-quick-search" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:524 C/index.docbook:531 C/index.docbook:552 +msgid "Default value: false" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:525 +msgid "" +"Search for Files speeds up file name searches by " +"using the locate command. Locate " +"provides a secure way to index and quickly search for file names. Because " +"locate relies on a file index, the Search " +"results list may not always be up to date." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:529 +msgid "Disable Quick Search Second Scan" +msgstr "Desativar a Repetição da Procura Rápida" + +#. (itstool) path: sect2/para +#: C/index.docbook:530 +msgid "Key name: org.mate.search-tool.disable-quick-search-second-scan" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:532 +msgid "" +"After completing a quick search, Search for Files" +" will perform a thorough search using the find command. " +"The purpose of this second scan is to find files that have not been indexed." +" Files that match the search criteria are added to the Search " +"results list keeping the list up to date." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:536 +msgid "Quick Search Excluded Paths" +msgstr "Caminhos excluídos da Procura Rápida" + +#. (itstool) path: sect2/para +#: C/index.docbook:537 +msgid "Key name: org.mate.search-tool.quick-search-excluded-paths" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:538 +msgid "Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*]" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:539 +msgid "" +"Search for Files will not perform a quick search " +"for paths defined by this key. File name searches in the defined paths will " +"use the find command. The wildcards '*' and '?' are " +"supported." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:543 +msgid "Quick Search Second Scan Excluded Paths" +msgstr "Caminhos Excluídos da Repetição da Procura Rápida" + +#. (itstool) path: sect2/para +#: C/index.docbook:544 +msgid "Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:545 +msgid "Default values: [/]" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:546 +msgid "" +"Search for Files will not perform a second scan " +"after a quick search for the paths defined by this key. Quick searches in " +"the defined paths will not be followed by a thorough search using the " +"find command. The wildcards '*' and '?' are supported." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:550 +msgid "Show Additional Options" +msgstr "Mostrar Opções Adicionais" + +#. (itstool) path: sect2/para +#: C/index.docbook:551 +msgid "Key name: org.mate.search-tool.show-additional-options" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:553 +msgid "" +"This key determines if the Select more options section " +"is expanded when Search for Files is started." +msgstr "" + +#. (itstool) path: para/ulink +#: C/legal.xml:9 +msgid "link" +msgstr "atalho" + +#. (itstool) path: legalnotice/para +#: C/legal.xml: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-1/> or in the file COPYING-DOCS distributed " +"with this manual." +msgstr "" +"É dada permissão para copiar, distribuir e/ou alterar este documento sob os " +"termos da Licença de Documentação Livre GNU (GFDL), Versão 1.1 ou qualquer " +"outra posteriormente publicada pela Free Software Foundation sem quaisquer " +"Secções Invariantes, Textos de Capa ou Prefácios, e sem Textos Finais ou " +"Posfácios. Poderá encontrar uma cópia da GFDL neste <_:ulink-1/> ou no " +"ficheiro COPYING-DOCS distribuído com este 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 "" +"Este manual é parte de uma coleção de manuais MATE distribuídos sob a GFDL. " +"Se desejar distribuir este manual separadamente da coleção, poderá fazê-lo " +"desde que lhe adicione uma cópia da licença, tal como descrito na secção 6 " +"desta licença." + +#. (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 "" +"Muitos dos nomes utilizados pelas empresas para distinguir os seus produtos " +"e serviços são reclamados como marcas registadas. Onde esses nomes surgirem " +"em qualquer documentação MATE, e aos membros do Projeto de Documentação do " +"MATE for dado conhecimento dessas marcas registadas, estes nomes estarão " +"todos em maiúsculas ou com a primeira letra de cada palavra em maiú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 "" +"ESTE DOCUMENTO É DISPONIBILIZADO NUMA BASE \"TAL COMO ESTÁ\", SEM QUALQUER " +"GARANTIA DE QUALQUER TIPO, NEM EXPRESSA NEM IMPLÍCITA, INCLUINDO, MAS SEM " +"LIMITAR, GARANTIAS DE QUE O DOCUMENTO OU VERSÃO ALTERADA DO DOCUMENTO SE " +"ENCONTRA LIVRE DE DEFEITOS PARA COMERCIALIZAÇÃO, ADEQUADO A UM PROPÓSITO " +"ESPECÍFICO OU QUE NÃO INFRINJA. A TOTALIDADE DO RISCO DE QUALIDADE, " +"PORMENORIZAÇÃO, E DESEMPENHO DO DOCUMENTO OU VERSÃO ALTERADA DO DOCUMENTO É " +"SUA. CASO ALGUM DOCUMENTO OU VERSÃO ALTERADA SE DEMONSTRE DEFICIENTE EM " +"QUALQUER ASPETO, O LEITOR (E NÃO O AUTOR INICIAR, OU QUALQUER CONTRIBUINTE " +"POSTERIOR) ASSUME O CUSTO DE TODO O SERVIÇO DE REPARAÇÃO, ASSISTÊNCIA OU " +"CORREÇÃO QUE POSSE SER NECESSÁRIO. ESTA DESRESPONSABILIZAÇÃO DE GARANTIA " +"CONSTITUI UMA PARTE ESSENCIAL DESTA LICENÇA. NENHUMA UTILIZAÇÃO DE QUALQUER " +"DOCUMENTO OU VERSÃO ALTERADO DO DOCUMENTO SE ENCONTRA AUTORIZADA EXCETO SE " +"SUJEITA A ESTA DESRESPONSABILIZAÇÃO; E" + +#. (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 "" +"SOB QUAISQUER CIRCUNSTÂNCIAS E TEORIA LEGAL, QUER SEJA POR ERRO (INCLUINDO " +"NEGLIGÊNCIA), CONTRATO, OU QUALQUER OUTRO MOTIVO, PODERÁ O AUTOR, ESCRITOR " +"INICIAL, QUALQUER CONTRIBUINTE, OU QUALQUER DISTRIBUIDOR DO DOCUMENTO OU " +"VERSÃO ALTERADA DO DOCUMENTO, OU QUALQUER FORNECEDOR DE UMA DESSAS PARTES, " +"SER RESPONSÁVEL PERANTE QUALQUER PESSOA POR QUAISQUER DANOS DIRETOS, " +"INDIRETOS, ESPECIAIS, ACIDENTAIS OU CONSEQUENCIAIS DE QUALQUER TIPO " +"INCLUINDO, SEM LIMITAR, DANOS POR PERCA DE BOM NOME (GOODWILL), PARAGENS DE " +"TRABALHO, FALHA OU MAU FUNCIONAMENTO INFORMÁTICO, OU QUALQUER E TODOS OS " +"OUTROS DANOS OU PERCAS DECORRENTES OU RELACIONADAS COM A UTILIZAÇÃO DO " +"DOCUMENTO E VERSÕES ALTERADAS DO DOCUMENTO, MESMO QUE TAL PARTE TENHA SIDO " +"INFORMADA DA POSSIBILIDADE DE OCORREREM TAIS DANOS." + +#. (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 "" +"O DOCUMENTO E VERSÕES MODIFICADAS DO DOCUMENTO SÃO DISPONIBILIZADAS NOS " +"TERMOS DA LICENÇA DE DOCUMENTAÇÃO LIVRE GNU (GNU FREE DOCUMENTATION LICENSE)" +" COM O SUBSEQUENTE ENTENDIMENTO DE QUE: <_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/gsearchtool/help/pt_BR/index.docbook mate-utils-1.26.1/gsearchtool/help/pt_BR/index.docbook --- mate-utils-1.26.0/gsearchtool/help/pt_BR/index.docbook 2021-08-05 19:47:58.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/pt_BR/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,536 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - 2005 Dennis Cranston - 2002 2003 2004 Sun Microsystems - 2000 Alexander Kirillov - - - Projeto de Documentação do MATE - - - Projeto de Documentação do GNOME - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- Sun GNOME Equipe de Documentação Sun Microsystems
- - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Retorno - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introdução - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Começando - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Uso - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Exemplo - - Resultado - - - - - - Full or partial filename - - - - meuarquivo.txt - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Adicionar. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Opções de busca - - - - - - - Opção de Nome - - Descrição - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Última modificação depois de - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Arquivo vazio - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Proprietário não reconhecido - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Mostrar arquivos ocultos e de backup - - Include hidden and backup files in the search. - - - - Seguir links simbólicos - - Follow symbolic links when searching for files. - - - - Excluir outros sistemas de arquivos - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Configurações - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Menu Aplicativos - - Choose System Toolsdconf Editor. - - - - Linha de comando - - Execute the following command: dconf-editor - - - - - - Desabilitar a busca rápida - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Desabilitar a segunda varredura da busca rápida - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Caminhos excluídos da busca rápida - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Caminhos excluídos da segunda varredura da busca rápida - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Mostra opções adicionais - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/pt_BR/legal.xml mate-utils-1.26.1/gsearchtool/help/pt_BR/legal.xml --- mate-utils-1.26.0/gsearchtool/help/pt_BR/legal.xml 2021-08-05 19:47:58.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/pt_BR/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - É concedida permissão para copiar, distribuir e / ou modificar este documento sob os termos da Licença de Documentação Livre GNU (GFDL), Versão 1.1 ou qualquer versão posterior publicada pela Free Software Foundation sem Seções Invariantes, sem Textos de Capa Frontal e sem textos de contracapa. Você pode encontrar uma cópia da GFDL no link ou no arquivo COPYING-DOCS distribuído com este manual. - Esse manual é parte de uma coleção de manuais do MATE distribuída sob a GFDL. Se você quiser distribuir essa manual separado da coleção, pode fazê-lo adicionando uma cópia da licença ao manual, como descrito na seção 6 da licença. - - Muitos dos nomes usados por companhias para distinguir seus produtos e serviços são marcas registradas. Quando esses nomes ocorrem em alguma parte da documentação do MATE, e os membros do Projeto de documentação do MATE estiverem cientes de serem marcas registradas, esses nomes estarão maiúsculas ou com as iniciais em maiúsculas. - - O DOCUMENTO E AS VERSÕES MODIFICADAS DO DOCUMENTO SÃO FORNECIDOS DE ACORDO COM OS TERMOS DA LICENÇA DE DOCUMENTAÇÃO GRATUITA DA GNU COM O ENTENDIMENTO COMPREENDIDO DE QUE: - - O DOCUMENTO É FORNECIDO COMO UMA BASE "COMO ESTÁ", SEM GARANTIAS DE QUALQUER TIPO, TANTO EXPRESSA OU IMPLÍCITA, INCLUINDO, SEM LIMITAÇÃO, GARANTIAS DE QUE O DOCUMENTO OU VERSÃO MODIFICADA DO DOCUMENTO É COMERCIALIZÁVEL, LIVRE DE DEFEITOS, PRÓPRIO PARA UM PROPÓSITO ESPECÍFICO OU SEM INFRAÇÕES. TODO O RISCO A RESPEITO DA QUALIDADE, EXATIDÃO, E DESEMPENHO DO DOCUMENTO OU VERSÕES MODIFICADAS DO DOCUMENTO É SEU. SE ALGUM DOCUMENTO OU VERSÃO MODIFICADA SE PROVAR DEFEITUOSO EM QUALQUER ASPECTO, VOCÊ (NÃO O ESCRITOR INICIAL, AUTOR OU QUALQUER CONTRIBUIDOR) ASSUME O CUSTO DE QUALQUER SERVIÇO NECESSÁRIO, REPARO OU CORREÇÃO. ESTA RENÚNCIA DE GARANTIAS CONSTITUI UMA PARTE ESSENCIAL DESTA LICENÇA. NENHUM USO DESTE DOCUMENTO OU VERSÃO MODIFICADA DESTE DOCUMENTO É AUTORIZADO SE NÃO FOR SOB ESTA RENÚNCIA; E - - - SOB NENHUM CIRCUNSTÂNCIA E SOB NENHUMA TEORIA LEGAL, TANTO EM DADO (INCLUINDO NEGLIGÊNCIA), CONTRATO, OU OUTROS, DEVEM O AUTOR, ESCRITOR INICIAL, QUALQUER CONTRIBUIDOR, OU QUALQUER DISTRIBUIDOR DO DOCUMENTO OU VERSÃO MODIFICADA DO DOCUMENTO, OU QUALQUER FORNECEDOR DE ALGUMA DESSAS PARTES, SER CONSIDERADOS RESPONSÁVEIS A QUALQUER PESSOA POR QUALQUER DANO, SEJA DIRETO, INDIRETO, ESPECIAL, ACIDENTAL OU CONSEQÜENCIAL DE QUALQUER INDIVÍDUO, INCLUINDO, SEM LIMITAÇÃO, DANOS POR PERDA DE BOA VONTADE, TRABALHO PARADO, FALHA NO COMPUTADOR OU MAL FUNCIONAMENTO, OU QUALQUER E TODOS OS OUTROS DANOS OU PERDAS RESULTANTES OU RELACIONADAS AO USO DO DOCUMENTO E VERSÕES MODIFICADAS, MESMO QUE TAL PARTE TENHA SIDO INFORMADA DA POSSIBILIDADE DE TAIS DANOS. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ro/index.docbook mate-utils-1.26.1/gsearchtool/help/ro/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ro/index.docbook 2021-08-05 19:47:58.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ro/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introducere - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Utilizare - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Descriere - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Data modificării mai _mare decât - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Fișierul este gol - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Deținătorul nu este recunoscut - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Afișează fișierele ascunse și copiile de siguranță - - Include hidden and backup files in the search. - - - - Urmează legăturile simbolice - - Follow symbolic links when searching for files. - - - - Exclude alte sisteme de fișiere - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Linie de comandă - - Execute the following command: dconf-editor - - - - - - Dezactivare căutare rapidă - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Dezactivează a doua scanare pentru căutare rapidă - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Căi excluse pentru căutări rapide - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Căi excluse pentru a doua scanare pentru căutări rapide - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Afișează opțiuni suplimentare - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ro/legal.xml mate-utils-1.26.1/gsearchtool/help/ro/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ro/legal.xml 2021-08-05 19:47:58.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ro/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ru/index.docbook mate-utils-1.26.1/gsearchtool/help/ru/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ru/index.docbook 2021-08-05 19:47:58.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ru/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,457 +0,0 @@ - - - - - - - -]> - - -
- - - - Руководство пользователя приложения «Поиск файлов» - - - Приложение для поиска файлов, папок и документов на компьютере. - - - - 2015-2021 - MATE Documentation Project - - 2005 Dennis Cranston - 2002 2003 2004 Sun Microsystems - 2000 Alexander Kirillov - - - Проект документирования MATE - - - Проект документирования GNOME - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - Dennis Cranston Сопровождающий приложения «Поиск файлов»
dennis_cranston@yahoo.com
- Sun Команда документирования GNOME Sun Microsystems
- Alexander Kirillov Проект документирования GNOME
kirillov@math.sunysb.edu
- - - - - - Руководство пользователя приложения «Поиск файлов», версия 1.10 Июль 2015 г. - Wolfgang Ulbrich - Сопровождающий приложения «Поиск файлов» - - Руководство пользователя приложения «Поиск файлов», версия 2.7 Июнь 2005 г. - Joachim Noreiko jnoreiko@yahoo.com - Сопровождающий приложения «Поиск файлов» - - Руководство пользователя приложения «Поиск файлов», версия 2.6 Январь 2005 г. - Dennis Cranston dennis_cranston@yahoo.com - Сопровождающий приложения «Поиск файлов» - - Руководство пользователя приложения «Поиск файлов», версия 2.4 Февраль 2004 г. - Команда документирования GNOME компании Sun - Проект документирования GNOME - - Руководство пользователя приложения «Поиск файлов», версия 2.3 Сентябрь 2002 г. - Команда документирования GNOME компании Sun - Проект документирования GNOME - - Руководство пользователя приложения «Поиск файлов», версия 2.2 Август 2002 г. - Команда документирования GNOME компании Sun - Проект документирования GNOME - - Руководство пользователя приложения «Поиск файлов», версия 2.1 Июль 2002 г. - Команда документирования GNOME компании Sun - Проект документирования GNOME - - Руководство пользователя приложения «Поиск файлов», версия 2.0 Май 2002 г. - Команда документирования GNOME компании Sun - Проект документирования GNOME - - Руководство пользователя приложения «Поиск файлов» 2000 г. - Alexander Kirillov kirillov@math.sunysb.edu - Проект документирования GNOME - - - - В этом руководстве описана работа с приложением «Поиск файлов» версии 1.10. - - Обратная связь - Чтобы сообщить об ошибке или внести предложение, связанное с приложением «Поиск файлов» или этим руководством, следуйте инструкциям на странице обратной связи MATE. - - - - - Средство поиска - - - - - - Введение - Приложение Поиск файлов позволяет выполнять поиск файлов в системе. Для выполнения простого поиска следует ввести имя файла или его часть, с шаблонами или без. Чтобы уточнить поисковый запрос, можно применить дополнительные параметры поиска. - Приложение Поиск файлов использует команды UNIX find, grep и locate. При выполнении простого поиска приложение Поиск файлов по умолчанию сначала использует команду locate, а затем работающую менее быстро, но более тщательно команду find. - Чувствительность поиска к регистру зависит от операционной системы. Например, в Linux команды find, grep и locate поддерживают параметр -i, поэтому любой поиск нечувствителен к регистру. - - - - Начало работы - - Запустить приложение Поиск файлов можно следующими способами: - - - Из строки меню на панели - - Выберите пункт меню МестаПоиск файлов... - - - - Из главного меню на панели - - Выберите Поиск файлов... - - - - Из командной строки - - Выполните следующую команду: mate-search-tool - - - - - - - При запуске приложения Поиск файлов будет показано следующее окно. - - -
- Окно приложения «Поиск файлов» - - Главное окно приложения «Поиск файлов». - -
- - -
- - - - - Использование - - - Выполнение простого поиска - - Для выполнения простого поиска файла в системе выполните следующие действия: - - Введите текст для поиска в поле Имя содержит. Это может быть имя файла или его часть, с шаблонами или без, как показано в следующей таблице: - - - - - - - - - - Имя содержит текст - - Пример - - Результат - - - - - - Имя файла или его часть - - - myfile.txt - - - Приложение Поиск файлов выполняет поиск всех файлов, имена которых содержат текст myfile.txt. - - - - - Часть имени файла с шаблонами (*, [, ]) - - - *.[ch] - - - Приложение Поиск файлов выполняет поиск всех файлов с расширением .c или .h. - - - - - - - В поле Искать в папке выберите папку или устройство, на котором приложению Поиск файлов следует выполнить поиск. - Нажмите кнопку Найти для выполнения поиска. - - - Приложение Поиск файлов выполняет поиск в указанном каталоге и соответствующих вложенных каталогах. Результаты поиска, выполненного приложением Поиск файлов, отображаются в списке Результаты поиска. Если приложению Поиск файлов не удалось найти соответствующие условиям поиска файлы, в списке Результаты поиска будет показано сообщение «Файлы не найдены». - По умолчанию приложение Поиск файлов сначала выполняет быстрый поиск с помощью команды locate, а затем более тщательный повторный поиск с помощью команды find. Команда locate работает быстрее благодаря использованию базы данных со сведениями о файлах. Если эта база данных не обновлялась больше недели, приложение Поиск файлов выведет предупреждение о том, что результаты поиска могут быть устаревшими; пользователю будет предложено отключить быстрый поиск. Чтобы обновить базу данных, выполните команду updatedb от имени пользователя с привилегиями администратора. - - - - Добавление параметров поиска - Для поиска файла в системе можно использовать дополнительные параметры. Чтобы добавить параметры поиска, выполните следующие действия: - - Щёлкните по тексту Дополнительные параметры. - Щёлкните по раскрывающемуся списку Доступные параметры. - Выберите параметр поиска, который следует применить. - Нажмите кнопку Добавить. - Укажите необходимые сведения для выбранного параметра, как описано в разделе . - Для добавления других параметров поиска повторяйте описанные выше действия. - - Чтобы удалить параметр поиска из текущего поиска, нажмите расположенную рядом с ним кнопку Удалить. - Чтобы отключить выбранные параметры поиска для текущего поиска, щёлкните по тексту Дополнительные параметры. - - - Параметры поиска - - - - - - - Название параметра - - Описание - - - - - - Содержит текст - - Поиск простых текстовых файлов, которые содержат указанный текст. - - - - Дата изменения меньше, чем - - Поиск файлов, давность изменения которых меньше указанного количества дней. - - - - Дата изменения больше, чем - - Поиск файлов, давность изменения которых больше указанного количества дней. - - - - Размер не меньше - - Поиск файлов, размер которых равен или превышает указанное количество килобайт. - - - - Размер не больше - - Поиск файлов, размер которых меньше или равен указанному количеству килобайт. - - - - Файл пуст - - Поиск пустых файлов. - - - - Принадлежит пользователю - - Поиск файлов, владельцем которых является указанный пользователь. Введите имя пользователя в соответствующем текстовом поле. - - - - Принадлежит группе - - Поиск файлов, владельцем которых является указанная группа. Введите имя группы в соответствующем текстовом поле. - - - - Владелец не определён - - Поиск файлов, владельцем которых является неизвестный системе пользователь или группа. - - - - Имя не содержит - - Поиск файлов, которые не содержат указанную строку. Введите в соответствующем поле имя файла полностью или частично (с шаблонами). Используйте «*» для обозначения последовательности символов. Используйте «?» для обозначения отдельного символа. Поиск чувствителен к регистру. - - - - Имя совпадает с регулярным выражением - - Поиск файлов, которые содержат указанное регулярное выражение в пути или имени. - - - - Показывать скрытые файлы и резервные копии - - Включить скрытые файлы и резервные копии в поиск. - - - - Следовать по символьным ссылкам - - Следовать по символьным ссылкам при поиске файлов. - - - - Исключить другие файловые системы - - Поиск в каталогах, находящихся в той же файловой системе, что и начальный каталог. - - - - -
- -
- - - Остановка поиска - Нажмите кнопку Остановить для остановки поиска до того, как он будет завершён приложением Поиск файлов. - - - - Открытие отображаемого файла - Чтобы открыть файл, показанный в списке Результаты поиска, выполните одно из следующих действий: - - Щёлкните по файлу правой кнопкой мыши и выберите в контекстном меню пункт Открыть. - Дважды щёлкните по файлу. - - Чтобы открыть папку, которая содержит показанный в списке Результаты поиска файл, щёлкните по нему правой кнопкой мыши и выберите в контекстном меню пункт Открыть содержащую папку. - - - - Удаление отображаемого файла - Чтобы удалить файл, показанный в списке Результаты поиска, щёлкните по нему правой кнопкой мыши и выберите в контекстном меню пункт Удалить в корзину. - - - - - - Сохранение результатов поиска - Чтобы сохранить результаты последнего поиска, выполненного приложением Поиск файлов, щёлкните по списку Результаты поиска и выберите в контекстном меню пункт Сохранить результаты как.... Введите имя файла, в котором следует сохранить результаты, и нажмите кнопку «Сохранить». - - -
- - - - - Настройка - - Приложение Поиск файлов предоставляет ключи gsettings, с помощью которых можно настроить некоторые аспекты его поведения. Чтобы изменить значения gsettings, запустите Редактор dconf. Существуют следующие способы запуска этого редактора: - - - Меню Приложения - - Выберите пункт меню СистемныеРедактор dconf. - - - - Командная строка - - Выполните следующую команду: dconf-editor - - - - - - Отключить быстрый поиск - Имя ключа: org.mate.search-tool.disable-quick-search - Значение по умолчанию: false - Приложение Поиск файлов ускоряет выполнение поиска с помощью команды locate. Locate позволяет безопасно индексировать и быстро находить файлы. Так как работа командыlocate зависит от индекса файлов, возможно, что данные в списке Результаты поиска не всегда будут актуальными. - - - - Запретить второй проход быстрого поиска - Имя ключа: org.mate.search-tool.disable-quick-search-second-scan - Значение по умолчанию: false - После завершения быстрого поиска приложение Поиск файлов выполняет более тщательный поиск с помощью команды find. Цель второго прохода — найти файлы, которые не были проиндексированы. Файлы, которые соответствуют условию поиска, добавляются в список Результаты поиска, что делает его актуальным. - - - - Пути, исключённые из быстрого поиска - Имя ключа: org.mate.search-tool.quick-search-excluded-paths - Значения по умолчанию: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Приложение Поиск файлов не будет выполнять быстрый поиск по заданным этим ключом путям. Для поиска файлов по заданным путям будет использоваться команда find. Поддерживаются шаблоны «*» и «?». - - - - Пути, исключённые из второго прохода быстрого поиска - Имя ключа: org.mate.search-tool.quick-search-second-scan-excluded-paths - Значения по умолчанию: [/] - Приложение Поиск файлов не будет выполнять второй проход по заданным этим ключом путям. Это означает, что по заданным путям будет выполнен только быстрый поиск, но не более тщательный поиск с помощью команды find. Поддерживаются шаблоны «*» и «?». - - - - Показывать дополнительные параметры - Имя ключа: org.mate.search-tool.show-additional-options - Значение по умолчанию: false - Этот ключ определяет, будет ли область Дополнительные параметры развёрнута при запуске приложения Поиск файлов. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ru/legal.xml mate-utils-1.26.1/gsearchtool/help/ru/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ru/legal.xml 2021-08-05 19:47:58.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ru/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Разрешается копировать, распространять и / или изменять этот документ в соответствии с условиями лицензии GNU Free Documentation License (GFDL), версии 1.1 или любой более поздней версии, опубликованной Фондом свободного программного обеспечения без каких-либо инвариантных разделов, без добавления текста в начале или в конце. Вы можете найти копию GFDL здесь ссылка или в файле COPYING-DOCS, распространяемом вместе с этим руководством. - Этот документ является частью документации MATE, распространяемой на условиях лицензии GFDL. Если вы хотите распространять этот документ отдельно от общей документации, вы должны приложить копию лицензии к документу, как написано в части 6 лицензии. - - Некоторые имена и марки используются компаниями для обозначения их продуктов и услуг и являются торговыми марками. Там, где эти имена присутствуют в документации и где участники проекта документирования MATE знают об этом, имена выделяются заглавными буквами или начальной заглавной буквой. - - ДОКУМЕНТ И ИЗМЕНЁННЫЕ ВЕРСИИ ДОКУМЕНТА ПРЕДОСТАВЛЯЮТСЯ ПО УСЛОВИЯМ ЛИЦЕНЗИИ БЕСПЛАТНОЙ ДОКУМЕНТАЦИИ GNU С ПОНИМАНИЕМ, ЧТО: - - ДОКУМЕНТ РАСПРОСТРАНЯЕТСЯ «КАК ЕСТЬ», БЕЗ ВСЯКИХ ГАРАНТИЙ, ЯВНЫХ ИЛИ НЕЯВНЫХ, ВКЛЮЧАЯ, БЕЗ ОГРАНИЧЕНИЙ, ГАРАНТИИ ТОГО, ЧТО ДОКУМЕНТ ИЛИ ИЗМЕНЁННАЯ ВЕРСИЯ ДОКУМЕНТА СВОБОДНА ОТ ДЕФЕКТОВ, ПРИГОДНА К ПРОДАЖЕ, ПРИГОДНА К ИСПОЛЬЗОВАНИЮ В ОПРЕДЕЛЁННЫХ ЦЕЛЯХ ИЛИ НЕ НАРУШАЕТ ЗАКОНЫ. ВЕСЬ РИСК, КАСАЮЩИЙСЯ КАЧЕСТВА, ТОЧНОСТИ ИЛИ ПРАВИЛЬНОСТИ ДОКУМЕНТА ИЛИ ИЗМЕНЁННЫХ ВЕРСИЙ ДОКУМЕНТА, ЛЕЖИТ НА ВАС. ЕСЛИ ДОКУМЕНТ ИЛИ ИЗМЕНЁННАЯ ВЕРСИЯ ДОКУМЕНТА ИМЕЕТ НЕДОСТАТКИ, ВЫ (А НЕ АВТОР ДОКУМЕНТА ИЛИ ЕГО ПОМОЩНИК) БЕРЁТЕ НА СЕБЯ СТОИМОСТЬ ЛЮБОЙ НЕОБХОДИМОЙ ДОРАБОТКИ, КОРРЕКЦИИ ИЛИ ВОССТАНОВЛЕНИЯ. ЭТОТ ОТКАЗ ОТ ГАРАНТИЙ СОСТАВЛЯЕТ ВАЖНУЮ ЧАСТЬ ЛИЦЕНЗИИ. НИКАКОЕ ИСПОЛЬЗОВАНИЕ ДОКУМЕНТА ИЛИ ИЗМЕНЁННОЙ ВЕРСИИ ДОКУМЕНТА НЕ ДОПУСКАЕТСЯ БЕЗ ДАННОГО ПРЕДУПРЕЖДЕНИЯ И - - - НИ ПРИ КАКИХ ОБСТОЯТЕЛЬСТВАХ И НИ ПРИ КАКОМ ЗАКОННОМ СПОСОБЕ, НИ ПО КАКОМУ СОГЛАШЕНИЮ ИЛИ ДРУГОЙ ПРИЧИНЕ, АВТОР, СОЗДАТЕЛЬ, ПОМОЩНИКИ ИЛИ РАСПРОСТРАНИТЕЛИ ДОКУМЕНТА НЕ НЕСУТ ОТВЕТСТВЕННОСТЬ ЗА ПРЯМОЙ, КОСВЕННЫЙ, СПЕЦИАЛЬНЫЙ, СЛУЧАЙНЫЙ ИЛИ ПРЕДНАМЕРЕННЫЙ УЩЕРБ ЛЮБОГО СВОЙСТВА, ВКЛЮЧАЯ, БЕЗ ОГРАНИЧЕНИЯ, ПОТЕРЮ ЖЕЛАНИЯ, РАБОТОСПОСОБНОСТИ, КОМПЬЮТЕРНЫЕ СБОИ ИЛИ ПОЛОМКИ, ИЛИ ЛЮБОЙ ДРУГОЙ УЩЕРБ ИЛИ ПОТЕРИ, ВОЗНИКАЮЩИЕ ВСЛЕДСТВИЕ ИЛИ СВЯЗАННЫЕ С ИСПОЛЬЗОВАНИЕМ ДОКУМЕНТА ИЛИ ИЗМЕНЁННЫХ ВЕРСИЙ ДОКУМЕНТА, ДАЖЕ ЕСЛИ СТОРОНА БЫЛА УВЕДОМЛЕНА О ВОЗМОЖНОСТИ ТАКОГО УЩЕРБА. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/si/index.docbook mate-utils-1.26.1/gsearchtool/help/si/index.docbook --- mate-utils-1.26.0/gsearchtool/help/si/index.docbook 2021-08-05 19:47:58.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/si/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - භාවිතය - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - විස්තරය - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - වෙනස්කල දිනය වැඩියි - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - හිස් ගොනුවකි - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - හිමිකරු නොහදුනන - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - සගවා ඇති ගොනු සහ බහාළුම් පෙන්වන්න - - Include hidden and backup files in the search. - - - - සංකේතාත්මක සබැදි අනුගමනය කරන්න - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - රේඛීය විධාන - - Execute the following command: dconf-editor - - - - - - ක්ෂණික සෙවුම අක්‍රීය කරන්න - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - ක්ෂණික සෙවුමේ දෙවන පරිලෝකණය අක්‍රීය කරන්න - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - අතිරේඛ විකල්ප පෙන්වන්න - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/si/legal.xml mate-utils-1.26.1/gsearchtool/help/si/legal.xml --- mate-utils-1.26.0/gsearchtool/help/si/legal.xml 2021-08-05 19:47:58.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/si/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/sk/index.docbook mate-utils-1.26.1/gsearchtool/help/sk/index.docbook --- mate-utils-1.26.0/gsearchtool/help/sk/index.docbook 2021-08-05 19:47:59.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/sk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,544 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - 2002 2003 2004 Sun Microsystems - - 2000 - Alexander Kirillov - - - - MATE Dokumentačný projekt - - - GNOME Dokumentačný projekt - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- Sun GNOME Dokumentačný tím Sun Microsystems
- - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Reakcia - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Úvod - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Začíname - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Využitie - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Stlačte Pridať. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Popis - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Čas zmeny viac ako - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Súbor je prázdny - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Nerozpoznaný vlastník - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Zobraziť skryté a záložné súbory - - Include hidden and backup files in the search. - - - - Nasledovať symbolické odkazy - - Follow symbolic links when searching for files. - - - - Vynechať iné súborové systémy - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Príkazový riadok - - Execute the following command: dconf-editor - - - - - - Zakázať rýchle hľadanie - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Zakázať druhý cyklus rýchleho hľadania - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Cesty vynechané z rýchleho hľadania - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Cesty vynechané z druhého cyklu rýchleho hľadania - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Zobraziť ďalšie možnosti - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/sk/legal.xml mate-utils-1.26.1/gsearchtool/help/sk/legal.xml --- mate-utils-1.26.0/gsearchtool/help/sk/legal.xml 2021-08-05 19:47:59.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/sk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Je povolené kopírovať, šíriť a upravovať tento dokument pod podmienkami GNU Free Documentation License(GFDL), verzie 1.1 alebo akýchkoľvek ďaľších verzí poublikovaných Free Softvare Foundation s Nemennými sekciami, bez vrchných a bez spodných textov. Kópiu GFDL môžete nájsť na na odkaz alebo v súbore COPYING-DOCS ktorý je distribuovaný spolu s týmto manuálom. - Tento manuál je časť s kolekcie MATE manuálov ktoré sú distribuované pod GFDL. Ak chcete distribuovať tento manuál bez celej kolekcie, môžete to spraviť ak ku nemu pridáte kópiu licencie, ako je to vysvetlené v sekcií 6 v licencí. - - Veľa z mien používaných spoločnosťami sú ich ochranné známky. V MATE dokumentácií sa používajú mnohé ochranné známky a členovia MATE Dokumentačného projektu ich preto odlišujú začiatočnými písmenami. - - DOKUMENT A ZMENENÉ VERZIE TOHTO DOKUMENTU SA POSKYTUJÚ ZA ĎAĽŠÍCH PODMIENOK GNU FREE DOCUMENTATION LICENSE S POCHOPENÍM TOHTO: - - DOKUMNET SA POSKYTUJE "TAK AKO JE", BEZ ZÁRUKY AKÉHOKOĽVEK DRUHU, ČI UŽ VÝSLOVNÉHO, VYPLÝVAJÚCEHO, A BEZ ZÁRUKY ŽE TENTO DOKUMENT JE BEZ AKÝCHKOĽVEK CHÝB, ALEBO VHODNÝ PRE KONKRÉTNY ÚČEL ALEBO OPRÁVNENIE. VŠETKA ZODPOVEDNOSŤ ZA KVALITU, PRESNOSŤ A ÚČINNOSŤ DOKUMENTU JE NA VÁS. AK SA DOKUMENT ALEBO JEHO MODIFIKÁCIA UKÁŽE PREUKÁZATEĽNE VADNÁ, MÔŽETE(ALE NIE AK STE POČIATOČNÝ AUTOR, AUTOR ALEBO AKÝKOĽVEK PRISPIEVATEĽ) PREVZIAŤ NÁKLADY NA UDRŽIAVANIE, OPRAVOVANIE A OPRAVU. TOTO VYHLÁSENIE SA POKLADÁ ZA NEODDELITELNÚ SÚČASŤ LICENCIE. NA POUŽÍVANIE DOKUMENTOV ALEBO ICH ZMENENÝCH VERZÍ SA VZŤAHUJE TÁTO LICENCIA OKREM TOHTO VYLÚČENIA ZODPOVEDNOSTI; A - - - V ŽIADNOM PRÍPADE A ZA ŽIADNYCH PRÁVNYCH TEÓRIÍ, ČI ÚMYSELNÉ UBLÍŽENIE (AJ Z NEDBANLIVOSTI), ZMLUVOU, ALEBO INAK SA AUTOR, POČIATOČNÝ SPISOVATEĽ, VŠETCI PRISPIEVATELIA, DISTRIBÚTOR DOKUMENTU ALEBO JEHO MODIFIKOVANEJ VERZIE, ALEBO DODÁVATEĽ AKEJKOĽVEK STRANY, NEZODPOVEDÁ ŽIADNEJ OSOBE ZA AKÉKOĽVEK PRIAME, NEPRIAME, ZVLÁŠTNE, NÁHODNÉ, ALEBO VYPLÝVAJÚCE ŠKODY AKÉHOKOĽVEK CHARAKTERU, AKO OBMEDZENIA, STRATA DOBRÉHO MENA, PRERUŠENIE PRÁCE, ZLYHANIE POČÍTAČA ČI PORUCHY, ALEBO AKÉKOĽVEK INÉ ŠKODY A STRATY KTORÉ VZNIKNÚ, ALEBO SA BUDÚ VZŤAHOVAŤ NA POUŽÍVANIE TOHOTO DOKUMENTU ČI ZMENENÝCH VERZIÍ TOHTO DOKUMENTU AJ KEĎ STRANA BOLA INFORMOVANÁ O MOŽNOSTI TAKÝCHTO ŠKÔD. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/sl/index.docbook mate-utils-1.26.1/gsearchtool/help/sl/index.docbook --- mate-utils-1.26.0/gsearchtool/help/sl/index.docbook 2021-08-05 19:47:59.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/sl/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Projektna dokumentacija - - - GNOME Projektna dokumentacija - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Odziv - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Uvod - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Uporaba - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Opis - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Datum spremembe, starejši kot - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Datoteka je prazna - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Lastnik ni prepoznan - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Pokaži skrite datoteke in varnostne kopije - - Include hidden and backup files in the search. - - - - Sledi simbolnim povezavam - - Follow symbolic links when searching for files. - - - - Izključi druge datotečne sisteme - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Ukazna vrstica - - Execute the following command: dconf-editor - - - - - - Onemogoči hitro iskanje - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Onemogoči drugo preiskovanje med hitrim iskanjem - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Iz hitrega iskanja izločene poti - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Iz drugega preiskovanja hitrega iskanja izločene poti - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Pokaži dodatne možnosti - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/sl/legal.xml mate-utils-1.26.1/gsearchtool/help/sl/legal.xml --- mate-utils-1.26.0/gsearchtool/help/sl/legal.xml 2021-08-05 19:47:59.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/sl/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/sq/index.docbook mate-utils-1.26.1/gsearchtool/help/sq/index.docbook --- mate-utils-1.26.0/gsearchtool/help/sq/index.docbook 2021-08-05 19:47:59.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/sq/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - Dokumentimi Projektit MATE - - - Dokumentimi Projektit GNOME - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Sugjerime - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - paraqitje - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Përdorimi - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Përshkrimi - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - I ndryshuar nga më shumë se - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File është bosh - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Pronari nuk njihet - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Shfaq files e fshehur dhe të backup - - Include hidden and backup files in the search. - - - - Ndiq lidhjet simbolike - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Rreshti i komandës - - Execute the following command: dconf-editor - - - - - - Ç'aktivo kërkimin e shpejtë - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Ç'aktivo kërkimin e shpejtë skanimi i dytë - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Pozicionet e përjashtuara nga kërkimi i shpejtë - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Pozicionet e përjashtuara nga kërkimi i shpejtë skanimi i dytë - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Shfaq opcionet e tjera - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/sq/legal.xml mate-utils-1.26.1/gsearchtool/help/sq/legal.xml --- mate-utils-1.26.0/gsearchtool/help/sq/legal.xml 2021-08-05 19:47:59.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/sq/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,70 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - Ky manual është pjesë e një koleksioni të manualeve të MATE të shpërndara nën GFDL. Nëse dëshironi ta shpërndani këtë manual veçmas nga koleksioni, mund ta bëni duke shtuar një kopje të licencës në manual, siç përshkruhet në seksionin 6 të licencës. - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/sr/index.docbook mate-utils-1.26.1/gsearchtool/help/sr/index.docbook --- mate-utils-1.26.0/gsearchtool/help/sr/index.docbook 2021-08-05 19:47:59.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/sr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,449 +0,0 @@ - - - - - - - -]> - - -
- - - - Упутство за Алат претраге - - - Алат претраге за налажење датотека, фасцикли и докумената на рачунару. - - - 2015-2021 Пројекат Мејтове документације - 2005 Денис Кранстон - 2002 2003 2004 Sun Microsystems - 2000 Александер Кирилов - - - Пројекат Мејтове документације - - - Пројекат Гномове документације - - - - - - Тим Мејтове документације Одржавалац Алата претраге - Денис Кранстон Одржавалац Алата претраге
dennis_cranston@yahoo.com
- Sun Тим Гномове документације Sun Microsystems
- Александер Кирилов Пројекат Гномове документације
kirillov@math.sunysb.edu
- - - - - - Упутство Алата претраге и1.10 Јул 2015 - Волфганг Улбрих - Одржавалац Алата претраге - - Упутство Алата претраге и2.7 Јун 2005 - Јоаким Нореико jnoreiko@yahoo.com - Одржавалац Алата претраге - - Упутство Алата претраге и2.6 Јануар 2005 - Денис Кранстон dennis_cranston@yahoo.com - Одржавалац Алата претраге - - Упутство Алата претраге и2.4 Фебруар 2004 - Тим Sun Гномове документације - Пројекат Гномове документације - - Упутство Алата претраге и2.3 Септембар 2002 - Тим Sun Гномове документације - Пројекат Гномове документације - - Упутство Алата претраге и2.2 Август 2002 - Тим Sun Гномове документације - Пројекат Гномове документације - - Упутство Алата претраге и2.1 Јул 2002 - Тим Sun Гномове документације - Пројекат Гномове документације - - Упутство Алата претраге и2.0 Мај 2002 - Тим Sun Гномове документације - Пројекат Гномове документације - - Упутство Алата претраге 2000 - Александер Кирилов kirillov@math.sunysb.edu - Пројекат Гномове документације - - - - Ово упутство описује издање 1.10 Алата претраге. - - Примедбе - Да бисте пријавили грешку или дали предлог у вези програма Алат претраге или овог упутства, пратите смернице на Мејтовој страници за примедбе. - - - - - Алат претраге - - - - - - Увод - Програм Алат претраге вам омогућава да тражите датотеке на вашем систему. Да обавите основну претрагу, можете да упишете назив датотеке или делимични назив исте, са или без џокера. Да побољшате вашу претрагу, можете применити додатне опције претраге. - Алат претраге користи ЈУНИКС наредбе „find“, „grep“, и „locate“. По основи, када обавља основну претрагу Алат претраге прво користи наредбу „locate“, а затим користи спорију али детаљнију наредбу „find“. - Разликовање величине слова претраге зависи од вашег оперативног система. На пример, на Линуксу, наредбе „find“, „grep“, и „locate“ подржавају опцију „-i“, тако да ни једна претрага не разликује величину слова. - - - - Први кораци - - Можете да покренете Алат претраге на следеће начине: - - - Из „Траке изборника“ на панелу - - Изаберите „ПречицеАлат претраге... - - - - Из „Главног изборника“ на панелу - - Изаберите „Алат претраге... - - - - Наредбом у терминалу - - Извршите следећу наредбу: mate-search-tool - - - - - - - Када покренете Алат претраге, биће приказан следећи прозор. - - -
- Прозор Алата претраге - - Приказује главни прозор Алата претраге. - -
- - -
- - - - - Употреба - - - Обављање основне претраге - - Да обавите основну претрагу за датотеком на систему, урадите следеће: - - Упишите текст претраге у поље „Назив садржи“. Текст претраге може бити пун или делимичан назив датотеке, са или без џокера, као што је приказано у следећој табели: - - - - - - - - - - Текст за „Назив сдадржи“ - - Пример - - Резултат - - - - - - Пун или делимичан назив датотеке - - - neka_datoteka.txt - - - Алат претраге тражи све датотеке које садрже текст „neka_datoteka.txt“ у називу датотеке. - - - - - Делимичан назив датотеке у комбинацији са џокерима (*, [, ]) - - - *.[ch] - - - Алат претаге тражи све датотеке које имају проширење „.c“ или „.h“. - - - - - - - У пољу „Тражи у фасцикли“, изаберите фасциклу или уређај у коме желите да Алат претраге започне претрагу. - Кликните на дугме „Нађи“ да обавите претрагу. - - - Алат претраге тражи у фасцикли коју сте навели и у њеним садржаним фасциклама. Алат претраге приказује резултате претраге на списку резултата претраге. Ако Алат претраге не нађе ниједну датотеку која одгобара критеријуму претраге, приказује поруку „Нисам нашао ниједну датотеку“ на списку Резултати претраге. - По основи, Алат претраге ће обавити брзу претрагу користећи наредбу „locate“ за којом следи друга детаљнија претрага коришћењем наредбе „find“. Наредба „locate“ је бржа јер користи базу података информација о датотекама. Ако је та база података старија од једне седмице, Алат претраге може да вас упозори да су резултати претраге престари и да вам да опцију искључивања брзе претраге. Да освежите базу података, покрените наредбу „updatedb“ као администратор. - - - - Додавање опција претраге - Можете додати додатне опције за тражење датотеке на систем. Да додате опције претраге, урадите следеће: - - Кликните на текст „Изабери још опција“. - Кликните на падајући списак „Доступна правила“. - Изаберите опцију претраге коју желите да примените. - Кликните Додај. - Наведите захтевану информацију претраге за опцију претраге, као што је описано у одељку . - Поновите горње кораке за сваку опцију претраге коју желите да примените. - - Да уклоните опцију претраге из тренутне претраге, кликните на дугме „Уклони“ поред опције. - Да искључите опције претраге из тренутне претраге, кликните на текст „Изабери још опција“. - - - Опције претраге - - - - - - - Назив опције - - Опис - - - - - - Садржи текст - - Тражиће датотеке обичног текста које садрже наведени текст. - - - - Измењене пре мање од - - Тражиће датотеке које су измењене у времену мањем од периода наведеног у данима. - - - - Измењено пре више од - - Тражиће датотеке које су измењене у времену већем од периода наведеног у данима. - - - - Најмање величине - - Тражиће датотеке које су једнаке или веће од величине наведене у килобајтима. - - - - Највеће величине - - Тражиће датотеке које су мање или једнаке величини наведеној у килобајтима. - - - - Празна датотека - - Тражиће празне датотеке. - - - - У власништву корисника - - Тажиће датотеке које су у власништву наведеног корисника. Упишите име корисника у достављеном пољу за текст. - - - - У власништву групе - - Тажиће датотеке које су у власништву наведене групе. Упишите назив групе у достављеном пољу за текст. - - - - Власник је непознат - - Тражиће датотеке које су у власништву корисника или групе који су непознати на систему. - - - - Назив не садржи - - Тражиће називе датотека који не садрже ниску коју упишете. Упишите пун или делимичан назив датотеке са џокерима у достављеном пољу. Користите * да назначите низ знакова. Користите ? да назначите један знак. Претрага разликује величину слова. - - - - Назив одговара регуларном изразу - - Тражиће датотеке које садрже наведени регуларни израз у путањама њихових фасцикли или називу датотеке. Упишите регуларни израз у достављеном пољу за текст. - - - - Прикажи скривене и резервне датотеке - - Укључиће скривене и датотеке резерви у претрагу. - - - - Прати симболичке везе - - Пратиће симболичке везе када тражи датотеке. - - - - Искључи остале системе датотека - - Тражиће у фасциклама које су на истом систему датотека као полазна фасцикла. - - - - -
- -
- - - Заустављање претраге - Кликните на дугме „Заустави“ да зауставите претрагу пре него што Алат претраге обави претрагу. - - - - Отварање приказане датотеке - Да отворите приказану датотеку са списка „Резултати претраге“, урадите једно од следећег: - - Десни клик на датотеку, затим изаберите „Отвори“. - Два пута кликните на датотеку. - - Да отворите фасциклу која садржи датотеку приказану на списку „Резултати претраге“, десни клик на датотеку, затим изаберите „Отвори садржајну фасциклу“. - - - - Брисање приказане датотеке - Да обришете датотеку приказану на списку „Резултати претраге“, десни клик на датотеку, затим изаберите „Премести у смеће“. - - - - - - Чување резултата претраге - Да сачувате резултате последње претраге коју је обавио Алат претраге, десни клик на списак „Резултати претраге“, затим изаберите „Сачувај резултате као“. Упишите назив датотеке у којој желите да сачувате резултате, затим кликните „Сачувај“. - - -
- - - - - Поставке - - Алат претраге обезбеђује кључеве г-подешавања за измену неких од његових подешавања. Вредности г-подешавања се могу изменити покретањем „Уређивача подешавања“ на следеће начине: - - - Изборник „Програми“ - - Изаберите „Системске алаткеУређивач д-подешавања“. - - - - Наредба - - Извршите следећу наредбу: dconf-editor - - - - - - Искључује брзу претрагу - Назив кључа: org.mate.search-tool.disable-quick-search - Основна вредност: неизабрано - Алат претраге убрзава тражење назива датотеке коришћењем наредбе „locate“. Наредба „locate“ обезбеђује безбедан начин за индексирање и брзо тражење назива датотека. Како се „locate“ ослања на индекс датотека, „Резултати претраге“ можда неће увек бити најсвежији. - - - - Искључује други преглед брзе претраге - Назив кључа: org.mate.search-tool.disable-quick-search-second-scan - Основна вредност: неизабрано - Након обављене брзе претраге, Алат претраге обавиће детаљнију претрагу користећи наредбу „find“. Сврха овог другог прегледања јесте налажење датотека које нису индексиране. Датотеке које задовољавају услов претраге се додају на списак „Резултата претраге“ и тако се уједно и освежава списак. - - - - Искључене путање из брзе претраге - Назив кључа: org.mate.search-tool.quick-search-excluded-paths - Основне вредности: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Алат претраге неће обавити брзу претрагу за путање дефинисане овим кључем. Тражења назива датотека у дефинисаним путањама користитће наредбу „find“. Џокери * и ? су подржани. - - - - Искључене путање из другог прегледа брзе претраге - Назив кључа: org.mate.search-tool.quick-search-second-scan-excluded-paths - Основна вредност: [/] - Алат претраге неће обавити други преглед након брзе претраге за путање дефинисане овим кључем. Након брзих претрага у дефинисаним путањама неће следити детаљнија претрага помоћу наредбе „find“. Џокери * и ? су подржани. - - - - Приказује додатне могућности - Назив кључа: org.mate.search-tool.show-additional-options - Основна вредност: неизабрано - Овај кључ одређује да ли је одељак „Изабери још опција“ раширен приликом покретања Алата претраге. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/sr/legal.xml mate-utils-1.26.1/gsearchtool/help/sr/legal.xml --- mate-utils-1.26.0/gsearchtool/help/sr/legal.xml 2021-08-05 19:47:59.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/sr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Дозвољено је умножавање, расподела, вршење измена овог документа под условима Гну-ове Лиценце Слободне Документације (ГЛСД), верзије 1.1 или било које касније верзије без непромењивих одељака, текста на насловној и последњој страни, а коју је објавила Задужбина Слободног Софтвера. Примерак ГЛСД можете пронаћи на овој веза или у датотеци „COPYING-DOCS“ која је приложена уз ово упутство. - Ово упутство је део скупа Мејтових докумената објављених под GFDL. Уколико желите да расподељујете ово упутство одвојено од скупа, то можете урадити додавањем примерка лиценце документу, како је описано у одељку 6 саме лиценце. - - Многи називи које компаније користе у циљу препознатљивости својих производа и услуга представљају робне марке. Када (уколико) се такви називи појављују(спомињу) у било којем Мејтовом документу, а чланови Мејтовог документационог пројекта имају сазнања о томе, тада су називи исписани великим словима или са великим почетним словима. - - OVAJ DOKUMENT I NJEGOVE IZMENJENE VERZIJE SU DOSTUPNE POD USLOVIMA GNU-OVE SLOBODNE DOKUMENTACIONE DOZVOLE UZ DODATNU SAGLASNOST DA: - - ДОКУМЕНТ ЈЕ ДОСТУПАН СА СВИМ СВОЈИМ ДОБРИМ И ЛОШИМ СТРАНАМА БЕЗ БИЛО КАКВОГ ЈАМСТВА, БИЛО ОНО ИЗРЕЧЕНО ИЛИ НЕ, УКЉУЧУЈУЋИ БЕЗ ОГРАНИЧЕЊА, ЈАМСТВО ДА ЈЕ ОВАЈ ДОКУМЕНТ ИЛИ ЊЕГОВА ИЗМЕЊЕНА ВЕРЗИЈА БЕЗ НЕДОСТАТАКА, СПРЕМАН ЗА ТРЖИШТЕ, СВРСИСХОДАН И НЕ НАРУШАВА ЗАКОНСКЕ НОРМЕ. ЦЕЛОКУПАН РИЗИК КОЈИ СЕ ОДНОСИ НА КВАЛИТЕТ, ТАЧНОСТ И ДОМЕТ (УЧИНАК) ДОКУМЕНТА ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ СНОСИ КОРИСНИК. УКОЛИКО СЕ У БИЛО КОЈЕМ ДОКУМЕНТУ ИЛИ ЊЕГОВОЈ ИЗМЕЊЕНОЈ ВЕРЗИЈИ ПОЈАВИ НЕДОСТАТАК (ГРЕШКА) БИЛО КОЈЕ ВРСТЕ, КОРИСНИК (А НЕ АУТОР ИЗВОРНЕ ВЕРЗИЈЕ, БИЛО КОЈИ ДРУГИ АУТОР ИЛИ САРАДНИК) СНОСИ СВЕ ТРОШКОВЕ НЕОПХОДНОГ СЕРВИСИРАЊА, ПОПРАВКЕ ИЛИ ИСПРАВКЕ. ОВО ОГРАНИЧЕЊЕ ЈАМСТВА ПРЕДСТАВЉА САСТАВНИ ДЕО ОВЕ ДОЗВОЛЕ. УПОТРЕБА БИЛО КОЈЕГ ДОКУМЕНТА ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ НИЈЕ ДОЗВОЉЕНА ОСИМ ПОД УСЛОВИМА ОВОГ ОГРАНИЧЕЊА ЈАМСТВА. - - - НИ ПОД КАКВИМ ОКОЛНОСТИМА ИЛИ ЗАКОНУ, БИЛО ЗБОГ КРШЕЊА (ИЛИ НЕМАРА) УГОВОРА, ИЛИ НА БИЛО КОЈИ ДРУГИ НАЧИН, АУТОР (ПРВОБИТНЕ ВЕРЗИЈЕ), САРАДНИК ИЛИ ИСПОРУЧИВАЛАЦ ДОКУМЕНТА ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ, НИТИ ДОБАВЉАЧ БИЛО КОЈЕ ОД НАВЕДЕНИХ СТРАНА НЕЋЕ СНОСИТИ МАТЕРИЈАЛНУ ОДГОВОРНОСТ ЗА НАСТАЛА ДИРЕКТНА, ИНДИРЕКТНА, ПОСЕБНА, СЛУЧАЈНА ИЛИ ТИМЕ НАСТАЛА ОШТЕЋЕЊА БИЛО КОЈЕ ВРСТЕ УКЉУЧУЈУЋИ, БЕЗ ОГРАНИЧЕЊА, ШТЕТУ НАНЕСЕНУ УГЛЕДУ ФИРМЕ, ПРЕСТАНКУ ПРОИЗВОДЊЕ, ОТКАЗИВАЊЕ РАДА РАЧУНАРА ИЛИ КВАРА КАО И ЗА СВЕ ОСТАЛЕ ШТЕТЕ ИЛИ ГУБИТКЕ НАСТАЛЕ УСЛЕД КОРИШЋЕЊА ДОКУМЕНТА И ЊЕГОВИХ ИЗМЕЊЕНИХ ВЕРЗИЈА ЧАК И АКО ЈЕ ОШТЕЋЕНА СТРАНА БИЛА ОБАВЕШТЕНА О МОГУЋНОСТИ НАСТАНКА ТЕ ШТЕТЕ. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/sr@latin/index.docbook mate-utils-1.26.1/gsearchtool/help/sr@latin/index.docbook --- mate-utils-1.26.0/gsearchtool/help/sr@latin/index.docbook 2021-08-05 19:47:59.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/sr@latin/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Uvod - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Upotreba - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Opis - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Promenjeno pre _više od - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Datoteka je prazna - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Vlasnik je neprepoznatljiv - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Prikaži sakrivene i rezervne datoteke - - Include hidden and backup files in the search. - - - - Prati simboličke veze - - Follow symbolic links when searching for files. - - - - Isključi ostale sisteme datoteka - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Naredba - - Execute the following command: dconf-editor - - - - - - Isključi brzu pretragu - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Isključi drugi pregled brze pretrage - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Isključenje putanje iz brze pretrage - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Isključenje putanje iz drugog pregleda brze pretrage - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Prikaži dodatne mogućnosti - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/sr@latin/legal.xml mate-utils-1.26.1/gsearchtool/help/sr@latin/legal.xml --- mate-utils-1.26.0/gsearchtool/help/sr@latin/legal.xml 2021-08-05 19:47:59.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/sr@latin/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/sv/index.docbook mate-utils-1.26.1/gsearchtool/help/sv/index.docbook --- mate-utils-1.26.0/gsearchtool/help/sv/index.docbook 2021-08-05 19:47:59.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/sv/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,544 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - 2005Dennis Cranston - 2002 2003 2004 Sun Microsystems - 2000 Alexander Kirillov - - - Dokumentationsprojekt för MATE - - - Dokumentationsprojekt för GNOME - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Återkoppling - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduktion - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - Från en kommandorad - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Användning - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Exempel - - Resultat - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Klicka på Lägg till. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Beskrivning - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Ändringsdatum större än - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Filen är tom - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Ägaren är okänd - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Visa dolda filer och säkerhetskopior - - Include hidden and backup files in the search. - - - - Följ symboliska länkar - - Follow symbolic links when searching for files. - - - - Exkludera andra filsystem - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Inställningar - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Program-menyn - - Choose System Toolsdconf Editor. - - - - Kommandorad - - Execute the following command: dconf-editor - - - - - - Inaktivera snabbsökning - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Inaktivera andra genomsökning i snabbsökning - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Exkluderade sökvägar vid snabbsökning - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Exkluderade sökvägar vid andra genomsökningen i snabbsökning - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Standardvärde: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Visa ytterligare alternativ - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/sv/legal.xml mate-utils-1.26.1/gsearchtool/help/sv/legal.xml --- mate-utils-1.26.0/gsearchtool/help/sv/legal.xml 2021-08-05 19:47:59.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/sv/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - Denna handbok utgör en av flera MATE-handböcker som distribueras under villkoren i GFDL. Om du vill distribuera denna handbok separat från övriga handböcker kan du göra detta genom att lägga till en kopia av licensavtalet i handboken enligt instruktionerna i avsnitt 6 i licensavtalet. - - Flera namn på produkter och tjänster är registrerade varumärken. I de fall dessa namn förekommer i MATE-dokumentation - och medlemmarna i MATE-dokumentationsprojektet är medvetna om dessa varumärken - är de skrivna med versaler eller med inledande versal. - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ta/index.docbook mate-utils-1.26.1/gsearchtool/help/ta/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ta/index.docbook 2021-08-05 19:47:59.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ta/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - அறிமுகம் - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - பயன்பாடு - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - விவரம் - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - மாற்றப்பட்ட தேதி அதிகபட்சம் - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - கோப்பு காலியாக உள்ளது - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - உரிமையாளர் கண்டரியமுடியவில்லை - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - மறைந்த மற்றும் காப்பு கோப்புகளை காட்டவும் - - Include hidden and backup files in the search. - - - - குறியீட்டு இணைப்புகளை பின்தொடர் - - Follow symbolic links when searching for files. - - - - மற்ற கோப்பு அமைப்புகளை விலக்கவும் - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - கட்டளை வரி - - Execute the following command: dconf-editor - - - - - - விரைவு தேடலை செயல்நீக்கு - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - விரைவு தேடல் இரண்டாம் வருடலை செயல்நீக்கு - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - பாதைகளை சேர்க்காமல் விரைவாக தேடவும் - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - பாதைகளை சேர்க்காமல் இரண்டாவது வருடலுக்கு விரைவாக தேடவும் - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - கூடுதல் விருப்பங்களை காட்டு - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ta/legal.xml mate-utils-1.26.1/gsearchtool/help/ta/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ta/legal.xml 2021-08-05 19:47:59.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ta/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/te/index.docbook mate-utils-1.26.1/gsearchtool/help/te/index.docbook --- mate-utils-1.26.0/gsearchtool/help/te/index.docbook 2021-08-05 19:47:59.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/te/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,569 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Praveen Illa - - mail2ipn@gmail.com - - - - 2014 - - Praveen Illa - - - - - Search Tool - - - - - - - ఉపోద్ఘాతము - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - వినిమయం - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - వివరణ - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - తేది కంటే ఎక్కువ మార్చబడినది - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - దస్త్రం ఖాళీగావుంది - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - యజమాని గుర్తింపులేనివాడు - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - దాచబడిన మరియు భద్రపరచు దస్త్రములు చూపుము - - Include hidden and backup files in the search. - - - - చిహ్న పూరితజోడిలను అనుసరించు - - Follow symbolic links when searching for files. - - - - ఇతర దస్త్రవ్యవస్థలను తీసివేయి - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - ఆదేశ పంక్తి - - Execute the following command: dconf-editor - - - - - - తొందరగా వెతుకుటను నిరుపయోగపరచు - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - రెండవ సంశోధనను తొందరగా వెతుకుటను నిరుపయోగపరచు - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - తొందరగా వెతుకుట త్రోవలను బహిష్కరించినది - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - రెండవ సంశోధనను తొందరగా వెతుకుటను బహిష్కరించినది - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - అత్యధికముగా చేర్పబడిన ఇఛ్ఛాపూర్వకములు చూపుము - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/te/legal.xml mate-utils-1.26.1/gsearchtool/help/te/legal.xml --- mate-utils-1.26.0/gsearchtool/help/te/legal.xml 2021-08-05 19:47:59.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/te/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/th/index.docbook mate-utils-1.26.1/gsearchtool/help/th/index.docbook --- mate-utils-1.26.0/gsearchtool/help/th/index.docbook 2021-08-05 19:48:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/th/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,569 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - โครงการเอกสาร MATE - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - ร่วมเสนอแนะ - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Akom Chotiphantawanon - - knight2000@gmail.com - - - - 2016 - - Akom Chotiphantawanon - - - - - Search Tool - - - - - - - เกริ่นนำ - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - วิธีใช้ - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - คำอธิบาย - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - แก้ไขครั้งล่าสุด_ก่อน - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - แฟ้มเปล่าไม่มีข้อมูล - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - ไม่รู้จักเจ้าของ - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - แสดงแฟ้มสำรอง และแฟ้มที่ถูกซ่อน - - Include hidden and backup files in the search. - - - - ติดตามลิงก์สัญลักษณ์ - - Follow symbolic links when searching for files. - - - - ไม่รวมระบบแฟ้มอื่น - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - เมนู โปรแกรม - - Choose System Toolsdconf Editor. - - - - บรรทัดคำสั่ง - - Execute the following command: dconf-editor - - - - - - ปิดการค้นหาแบบเร็ว - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - ปิดการค้นรอบสองของการค้าหาแบบเร็ว - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - พาธที่ไม่รวมในการค้นอย่างเร็ว - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - พาธที่ไม่รวมในการค้นอย่างเร็วรอบสอง - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - แสดงตัวเลือกอื่นๆ - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/th/legal.xml mate-utils-1.26.1/gsearchtool/help/th/legal.xml --- mate-utils-1.26.0/gsearchtool/help/th/legal.xml 2021-08-05 19:48:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/th/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - คู่มือนี้ เป็นส่วนหนึ่งของชุดคู่มือ MATE ที่เผยแพร่ภายใต้ GFDL ถ้าคุณต้องการเผยแพร่คู่มือนี้แยกต่างหากจากชุด คุณสามารถทำได้โดยเพิ่มสำเนาของสัญญาอนุญาตไปกับคู่มือ ตามที่อธิบายในข้อ 6 ของสัญญาอนุญาต - - มีชื่อหลายชื่อที่บริษัทต่างๆ ใช้แยกความแตกต่างของผลิตภัณฑ์และบริการของตนจากบริษัทอื่น และอ้างเป็นเครื่องหมายการค้า ที่ใดก็ตามที่ชื่อเหล่านั้นปรากฏในเอกสารของ MATE และสมาชิกโครงการเอกสาร MATE ได้รับทราบเกี่ยวกับเครื่องหมายการค้าเหล่านั้น ชื่อเหล่านั้นจะเขียนด้วยตัวพิมพ์ใหญ่ หรือขึ้นต้นด้วยตัวพิมพ์ใหญ่ - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/tr/index.docbook mate-utils-1.26.1/gsearchtool/help/tr/index.docbook --- mate-utils-1.26.0/gsearchtool/help/tr/index.docbook 2021-08-05 19:48:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/tr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,637 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - 2005 Dennis Cranston - 2002 2003 2004 Sun Microsystems - 2000 Alexander Kirillov - - - MATE Belgelendirme Projesi - - - GNOME Belgelendirme Projesi - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- Sun GNOME Belgelendirme Projesi Sun Microsystems
- - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Geri bildirim - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Fatih Demir - - kabalak@kabalak.net - - - - 2000. - - Fatih Demir - - - - - Görkem Çetin - - gorkem@gelecek.com.tr - - - - 2002/2003. - - Görkem Çetin - - - - - Barış Çicek - - baris@teamforce.name.tr - - - - 2004 - - 2008 - - 2009. - - Barış Çicek - - - - - Muhammet Kara - - muhammet.k@gmail.com - - - - 2011. - - Muhammet Kara - - - - - hsngrms - - dead-bodies-everywhere@hotmail.com - - - - 2012 - - hsngrms - - - - - Atilla Öntaş - - tarakbumba@gmail.com - - - - 2014 - - Atilla Öntaş - - - - - Emre FIRAT - - emrefirat93@gmail.com - - - - 2013 - - 2014 - - 2015 - - Emre FIRAT - - - - - Search Tool - - - - - - - Başlangıç - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Başlangıç - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Kullanım - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Ekle düğmesine tıklayın. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Tanımlama - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - En son ne kadar zaman sonra değiştirildiği - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Dosya boş - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Sahibi tanımsız - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Gizli ve yedek dosyaları göster - - Include hidden and backup files in the search. - - - - Sembolik bağlantıları izle - - Follow symbolic links when searching for files. - - - - Diğer dosya sistemleri hariç - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Ayarlar - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Uygulamalar menüsü - - Choose System Toolsdconf Editor. - - - - Komut satırı - - Execute the following command: dconf-editor - - - - - - Hızlı Aramayı Kapat - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Hızlı Aramada İkincil Taramayı Kapat - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Harici Yollarda Hızlı Ara - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Harici Yollarda İkincil Hızlı Ara - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - İlave Seçenekleri Göster - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/tr/legal.xml mate-utils-1.26.1/gsearchtool/help/tr/legal.xml --- mate-utils-1.26.0/gsearchtool/help/tr/legal.xml 2021-08-05 19:48:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/tr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Bu belgeyi kopyalama, dağıtma ve/veya değiştirme izni, değişmez bölümsüz, ön kapak metinsiz ve arka kapak metinsiz şekilde GNU Free Documentation License (GNU Özgür Belgeleme Lisansı, GFDL), sürüm 1.1 ya da Free Software Foundation tarafından yayınlanan daha yeni bir sürüm kapsamında verilmiştir. GFDL'in bir kopyasını bu bağlantı ya da bu kılavuzla dağıtılan COPYING-DOCS dosyasında bulabilirsiniz. - Bu kılavuz, GFDL (GNU Özgür Belgelendirme Lisansı) kapsamında yayınlanan MATE kılavuzları koleksiyonunun bir parçasıdır. Bu kılavuzu koleksiyondan ayrı bir biçimde dağıtmak istiyorsanız, lisansın 6. bölümünde açıklandığı gibi kılavuza lisansın bir kopyasını ilave ederek yapabilirsiniz. - - Firmalar tarafından ürün ve hizmetlerinin ayırt edilmeleri için kullandıkları isimlerin birçoğu tescilli marka olarak ayrılmıştır. Bu isimlerin MATE belgelendirilmesinde yer alması ve MATE Belgelendirme Projesi mensupları bu tescilli markalardan haberdar edildikleri durumda, isimlerin ilk harfi ya da tamamı büyük harflerle yazılır. - - BELGE VE BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİ GNU FREE DOCUMENTATION LICENSE (YANİ GNU ÖZGÜR BELGE LİSANSI) KAPSAMINDA, ŞU KONULARDA ANLAŞMAYLA SUNULMUŞTUR: - - BELGE OLDUĞU GİBİ, AÇIK VEYA ZIMNİ HİÇBİR TÜRLÜ GARANTİ OLMADAN SUNULMUŞTUR, Kİ BUNA SINIRLAMA OLMAKSIZIN BELGE VEYA BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİNİN BELLİ BİR AMACA UYGUN OLMALARI, KUSURDAN ARINMIŞ OLMALARI VEYA HAK İHLALİNDE BULUNMAMALARI GARANTİLERİ OLMAMASI DA DAHİLDİR. BELGE VE BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİNİN KALİTESİ, DOĞRULUĞU VE PERFORMANSINA İLİŞKİN TÜM RİSK SİZE AİTTİR. HERHANGİ BİR BELGE VEYA BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMÜNÜN KUSURLU OLMASI HALİNDE, GEREKLİ SERVİS, ONARIM VE DÜZELTMENİN ÜCRETİNİ SİZ ÜSTLENİRSİNİZ (İLK YAZAR, HAZIRLAYAN VEYA HERHANGİ BİR KATILIMCI DEĞİL). BU GARANTİ REDDİ BU LİSANSIN TEMEL BİR PARÇASINI OLUŞTURMAKTADIR. HERHANGİ BİR BELGENİN VEYA BELGENİN DEĞİŞTİRİLMİŞ BİR SÜRÜMÜNÜN KULLANIMINA SADECE BU GARANTİ REDDİ ALTINDA İZİN VERİLMİŞTİR; VE - - - HİÇBİR KOŞULDA VE HİÇBİR YASAL TEORİDE, Kİ BU TAZMİNAT YÜKÜMLÜLÜĞÜ (İHMAK DE DAHİL), KONTRATO VEYA BAŞKA BİR ŞEKİLİ DE İÇERİR, BELGEYİ VE BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİNİ İLK YAZAN, YAZAR, HERHANGİ BİR KATKIDA BULUNAN, DAĞITAN VEYA BU TARAFLARIN HERHANGİ BİR TEDARİKÇİSİ HERHANGİ DOĞRUDAN, DOLAYLI, ÖZEL, ARIZİ ZARARLARDAN HERHANGİ BİR KİŞİ SORUMLU DEĞİLDİR, Kİ BUNA BU TÜR KAYIPLAR HAKKINDA BU TARFAFIN BİLGİLENDİRİLMİŞ OLMASI GEREKSE BİLE SINIRLANMAMIŞ OLMAK ÜZERE ŞEREFİYE KAYBI, İŞ DURMASI, BİLGİSAYAR BOZULMASI VE YANLIŞ ÇALIŞMASI VEYA BELGENİN VE BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİNİN KULLANIMINDAN VEYA KULLANIMIYLA İLİŞKİLİ TÜM KAYIPLAR DAHİLDİR. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ug/index.docbook mate-utils-1.26.1/gsearchtool/help/ug/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ug/index.docbook 2021-08-05 19:48:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ug/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - تونۇشتۇرۇش - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - ئىشلىتىلىشى - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - چۈشەندۈرۈش - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - ئۆزگەرتكەن ۋاقتىدىن كېيىن(_D) - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - ھۆججەت بوش - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - ئىگىسى نامەلۇم - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - يوشۇرۇن ۋە زاپاس ھۆججەتنى كۆرسەت - - Include hidden and backup files in the search. - - - - بەلگە ئۇلىنىشىغا ئەگەش - - Follow symbolic links when searching for files. - - - - باشقا ھۆججەت سىستېمىسىنى ئۆز ئىچىگە ئالمايدۇ - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - بۇيرۇق قۇرى - - Execute the following command: dconf-editor - - - - - - تېز ئىزدەشنى چەكلە - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - تېز ئىزدەشنى ئىككىنچى قېتىم تەكشۈرۈشنى چەكلە - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - تېز ئىزدەش سىرتىدىكى يول - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - تېز ئىزدەشنى ئىككىنچى قېتىم تەكشۈرۈش سىرتىدىكى يول - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - قوشۇمچە تاللانما كۆرسەت - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ug/legal.xml mate-utils-1.26.1/gsearchtool/help/ug/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ug/legal.xml 2021-08-05 19:48:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ug/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/uk/index.docbook mate-utils-1.26.1/gsearchtool/help/uk/index.docbook --- mate-utils-1.26.0/gsearchtool/help/uk/index.docbook 2021-08-05 19:48:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/uk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,483 +0,0 @@ - - - - - - - -]> - - -
- - - - Пошук файлів вручну - - - Знадіб пошуку для знаходження на вашому комп'ютері файлів, тек та документів. - - - - 2015-2021 - MATE Documentation Project - - 2005 Деніс Кренстон - 2002 2003 2004 Sun Microsystems - 2000 Олександр Кірілов - - - Проєкт документування MATE - - - Проєкт документації GNOME - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- Sun Команда документування GNOME Sun Microsystems
- Олександр Кірілов Проєкт документації GNOME
kirillov@math.sunysb.edu
- - - - - - Пошук файлів вручну V1.10 Липень 2015 - Вольфґанґ Ульбріх - Search for Files Maintainer - - Пошук файлів вручну V2.7 Червень 2005 - Йоахім Норіко jnoreiko@yahoo.com - Search for Files Maintainer - - Керівництво з пошуку файлів V2.6 Січень 2005 - Деніс Кренстон dennis_cranston@yahoo.com - Search for Files Maintainer - - Пошук файлів вручну V2.4 Лютий 2004 - Сан Команда Документування GNOME - Проєкт документації GNOME - - Пошук файлів вручну V2.3 Вересень 2002 - Сан Команда Документування GNOME - Проєкт документації GNOME - - Пошук файлів вручну V2.2 Серпень 2002 - Сан Команда Документування GNOME - Проєкт документації GNOME - - Пошук файлів вручну V2.1 Липень 2002 - Сан Команда Документування GNOME - Проєкт документації GNOME - - Пошук файлів вручну V2.0 Травень 2002 - Сан Команда Документування GNOME - Проєкт документації GNOME - - Пошук файлів вручну 2000 - Олександр Кірілов kirillov@math.sunysb.edu - Проєкт документації GNOME - - - - Це керівництво описує версію 1.10 Знадобу пошуку файлів. - - Зворотній зв'язок - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - Знадіб пошуку - - - - - - Вступ - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Початок роботи - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Використання - - - To Perform a Basic Search - - Щоб виконати базовий пошук файлу у системі, виконайте такі дії: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - Додавання параметрів пошуку - Ви можете додати додаткові параметри пошуку файлу у системі. Щоб додати параметри пошуку, виконайте такі дії: - - Click on the Select more options text. - Click on the Available options drop-down list. - Виберіть параметр пошуку, який потрібно застосувати. - Натисніть Додати. - Вкажіть необхідну інформацію пошуку для параметру пошуку, як описано в . - Повторіть описані вище кроки для кожного параметру пошуку, який ви волієте застосувати. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Параметри пошуку - - - - - - - Option Name - - Опис - - - - - - Містить текст - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Да_та останньої зміни більша за - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Файл порожній - - Пошук порожніх файлів. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Власник невідомий - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Показувати приховані файли та резервні копії файлів - - Include hidden and backup files in the search. - - - - Переходити за символічними посиланнями - - Follow symbolic links when searching for files. - - - - Не шукати на иньших файлових системах - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Налаштування - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Меню Програми - - Choose System Toolsdconf Editor. - - - - Командний рядок - - Execute the following command: dconf-editor - - - - - - Вимкнути "Швидкий пошук" - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Вимкнути друге сканування швидкого пошуку - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Шляхи, що виключені зі швидкого пошуку - Key name: org.mate.search-tool.quick-search-excluded-paths - Типові значення: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Шляхи, що виключені з другого проходу швидкого пошуку - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Типове значення: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Показувати додаткові параметри - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/uk/legal.xml mate-utils-1.26.1/gsearchtool/help/uk/legal.xml --- mate-utils-1.26.0/gsearchtool/help/uk/legal.xml 2021-08-05 19:48:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/uk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Дозволяється копіювати, розповсюджувати і / або змінювати цей документ у відповідности з умовами ліцензії GNU Free Documentation License (GFDL), версії 1.1 або будь-якої пізнішої версії, оголошеній Фундацією вільного програмного забезпечення без будь-яких інваріянтних розділів, без додавання тексту на початку або в кінці. Ви можете знайти копію GFDL тут посилання або у файлі COPYING-DOCS, розповсюджуваному разом з цим керівництвом. - Цей посібник є частиною збірки документації MATE, яка розповсюджується на умовах ліцензії GFDL. Якщо ви бажаєте розповсюджувати цей посібник окремо від збірки, можете це зробити додавши до нього копію ліцензії, як описано в пункті 6 ліцензії. - - Деякі назви, які використовуються компаніями для розповсюдження своїх продуктів та послуг є торговими марками. Якщо такі назви зустрічаються в документації MATE і учасникам проєкту документування MATE відомо, що вони є торговими марками, тоді ці назви виділяться великими літерами або починаються з великої літери. - - ДОКУМЕНТ Й ЗМІНЕНІ ВЕРСІЇ ДОКУМЕНТУ НАДАЮТЬСЯ ЗА УМОВАМИ ЛІЦЕНЗІЇ БЕЗКОШТОВНОЇ ДОКУМЕНТАЦІЇ GNU З РОЗУМІННЯМ ЩО: - - ДОКУМЕНТ НАДАЄТЬСЯ \"ЯК Є\", БЕЗ БУДЬ-ЯКИХ ГАРАНТІЇ, ЯВНИХ ЧИ НЕЯВНИХ, ВКЛЮЧАЮЧИ, АЛЕ НЕ ОБМЕЖУЮЧИСЬ, ГАРАНТІЙ ЩО ЦЕЙ ДОКУМЕНТ ЧИ ЗМІНЕНА ВЕРСІЯ ДОКУМЕНТА ВІЛЬНІ ВІД ДЕФЕКТІВ, ПРИДАТНІ ДО ПРОДАЖУ, ВІДПОВІДАЮТЬ ПЕВНІЙ МЕТІ АБО НЕ ПОРУШУЮТЬ ЧИЇСЬ ПРАВА. ВЕСЬ РИЗИК ЗА ЯКІСТЬ, ТОЧНІСТЬ, ТА ЧИННІСТЬ ЦЬОГО ДОКУМЕНТУ АБО ЙОГО ЗМІНЕНИХ ВЕРСІЙ ЛЕЖИТЬ НА ВАС. ЯКЩО БУДЬ-ЯКИЙ ДОКУМЕНТ ЧИ ЗМІНЕНА ВЕРСІЯ БУДУТЬ ВИЗНАНІ ДЕФЕКТНИМИ У БУДЬ-ЯКОМУ ВІДНОШЕННІ, ВИ (НЕ ПОЧАТКОВИЙ УКЛАДАЧ, АВТОР АБО БУДЬ-ЯКИЙ СПІВАВТОР) БЕРЕТЕ НА СЕБЕ ВИТРАТИ ЗА БУДЬ-ЯКЕ НЕОБХІДНЕ ОБСЛУГОВУВАННЯ, РЕМОНТ ЧИ ВИПРАВЛЕННЯ. ЦЯ ВІДМОВА ВІД ГАРАНТІЙ СКЛАДАЄ ВАЖЛИВУ ЧАСТИНУ ЦІЄЇ ЛІЦЕНЗІЇ. НЕ ДОПУСКАЄТЬСЯ ВИКОРИСТАННЯ ЦЬОГО ДОКУМЕНТУ АБО ЙОГО ЗМІНЕНОЇ ВЕРСІЇ БЕЗ ПРИЙНЯТТЯ ЦІЄЇ ВІДМОВИ; ТА - - - НІ ЗА ЯКИХ ОБСТАВИН ТА ЗА БУДЬ-ЯКОГО ЗАКОНОДАВСТВА, ЧИ ТО ГРОМАДЯНСЬКОЇ ВІДПОВІДАЛЬНОСТІ (ВКЛЮЧАЮЧИ ХАЛАТНІСТЬ), ДОГОВОРУ, ЧИ ЧОГОСЬ ІНШОГО, АВТОР, ПОЧАТКОВИЙ УКЛАДАЧ, БУДЬ-ЯКИЙ СПІВАВТОР, АБО ДИСТРИБ'ЮТОР ДОКУМЕНТУ ЧИ ЗМІНЕНОЇ ВЕРСІЇ ДОКУМЕНТУ, АБО БУДЬ-ЯКИЙ ПОСТАЧАЛЬНИК БУДЬ-ЯКОЇ З ЦИХ СТОРІН, НЕ НЕСЕ ВІДПОВІДАЛЬНІСТЬ ПЕРЕД БУДЬ-ЯКОЮ ОСОБОЮ ЗА БУДЬ-ЯКІ ПРЯМІ, НЕПРЯМІ, ОСОБЛИВІ, ВИПАДКОВІ, АБО ІСТОТНІ ЗБИТКИ БУДЬ-ЯКОГО ХАРАКТЕРУ ВКЛЮЧАЮЧИ, АЛЕ НЕ ОБМЕЖУЮЧИСЬ, ЗБИТКАМИ ВІД ВТРАТИ ПРЕСТИЖУ, ЗУПИНКИ РОБОТИ, ЗБОЇВ АБО НЕСПРАВНОСТЕЙ КОМП'ЮТЕРА, АБО БУДЬ-ЯКІ ІНШІ ЗБИТКИ АБО ВТРАТИ ЩО ВИНИКЛИ БЕЗВІДНОСНО АБО ВНАСЛІДОК ВИКОРИСТАННЯ ЦЬОГО ДОКУМЕНТУ ТА ЗМІНЕНИХ ВЕРСІЙ ЦЬОГО ДОКУМЕНТУ, НАВІТЬ ЯКЩО ЦІ СТОРОНИ, МОЖЛИВО, БУЛИ ПРОІНФОРМОВАНІ ПРО МОЖЛИВІСТЬ ТАКИХ ЗБИТКІВ. - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/ur/index.docbook mate-utils-1.26.1/gsearchtool/help/ur/index.docbook --- mate-utils-1.26.0/gsearchtool/help/ur/index.docbook 2021-08-05 19:48:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ur/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - تعارف - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - استعمال - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - تفصیل - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - ‫تبدیلی کی تاریخ اس سے زیادہ - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - فائل خالی ہے - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - غیر تسلیم شدہ کی ملکیت ہے - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - پوشیدہ اور بیک اپ فائلیں دکھائیں - - Include hidden and backup files in the search. - - - - علامتی روابط کا پیچھا کریں - - Follow symbolic links when searching for files. - - - - دیگر فائل نظاموں کو مستثنی کریں - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - کمانڈ لائن - - Execute the following command: dconf-editor - - - - - - فوری تلاش معطل کریں - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - فوری تلاش ثانوی سکین معطل کریں - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - فوری تلاش کے مستثنی پاتھ - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - فوری تلاش ثانوی سکین کے مستثنی پاتھ - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - اضافی اختیارات دکھائیں - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/ur/legal.xml mate-utils-1.26.1/gsearchtool/help/ur/legal.xml --- mate-utils-1.26.0/gsearchtool/help/ur/legal.xml 2021-08-05 19:48:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/ur/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/uz/index.docbook mate-utils-1.26.1/gsearchtool/help/uz/index.docbook --- mate-utils-1.26.0/gsearchtool/help/uz/index.docbook 2021-08-05 19:48:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/uz/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Ishlatilishi - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Taʼrifi - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Fayl bo'sh - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Command line - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/uz/legal.xml mate-utils-1.26.1/gsearchtool/help/uz/legal.xml --- mate-utils-1.26.0/gsearchtool/help/uz/legal.xml 2021-08-05 19:48:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/uz/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/vi/index.docbook mate-utils-1.26.1/gsearchtool/help/vi/index.docbook --- mate-utils-1.26.0/gsearchtool/help/vi/index.docbook 2021-08-05 19:48:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/vi/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Giới thiệu - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Sử dụng - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Mô tả - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Có ngày sửa đổi sau - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Tập tin rỗng - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Người sở hữu không được nhận diện - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Hiển thị các tập tin bị ẩn và tập tin sao lưu - - Include hidden and backup files in the search. - - - - Theo liên kết biểu tượng - - Follow symbolic links when searching for files. - - - - Bỏ qua hệ thống tệp tin khác - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Dòng lệnh - - Execute the following command: dconf-editor - - - - - - Tắt Tìm nhanh - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Tắt Việc Ra Quét Thứ hai Tìm Nhanh - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Đường dẫn bị Loại trừ Tìm nhanh - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Đường dẫn bị Loại trừ Việc Ra Quét Thứ hai Tìm Nhanh - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Hiện tùy chọn thêm - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/vi/legal.xml mate-utils-1.26.1/gsearchtool/help/vi/legal.xml --- mate-utils-1.26.0/gsearchtool/help/vi/legal.xml 2021-08-05 19:48:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/vi/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/wa/index.docbook mate-utils-1.26.1/gsearchtool/help/wa/index.docbook --- mate-utils-1.26.0/gsearchtool/help/wa/index.docbook 2021-08-05 19:48:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/wa/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Discrijhaedje - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Li fitchî est vude - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Shuve les loyéns simbolikes - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Roye di comande - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/wa/legal.xml mate-utils-1.26.1/gsearchtool/help/wa/legal.xml --- mate-utils-1.26.0/gsearchtool/help/wa/legal.xml 2021-08-05 19:48:00.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/wa/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/xh/index.docbook mate-utils-1.26.1/gsearchtool/help/xh/index.docbook --- mate-utils-1.26.0/gsearchtool/help/xh/index.docbook 2021-08-05 19:48:01.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/xh/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Inkcazelo - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Umhla kulungiswe ngaphezu kwe - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - Ifayili ayiphathanga nto - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Umniniyo akahoywa - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Ibonisa iifayile ezifihliweyo nezigciniweyo kuvimba - - Include hidden and backup files in the search. - - - - Ilandela amakhonkco omfuziselo - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Umgca woMyalelo - - Execute the following command: dconf-editor - - - - - - Yenza kungaSebenzi ukuKhangela okuKhawulezayo - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Yenza kungaSebenzi ukukhangela okuKhawulezayo kwiSkeni sesiBini - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Iindlela eziBekwe Bucal kuKhangelo oluKhawulezayo - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Iindlela eziBekelwe Bucala zeSkeni sesiBini zokuKhangela okuKhawulezayo - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Bonisa ezongeziweyo ezinokukhethwa - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/xh/legal.xml mate-utils-1.26.1/gsearchtool/help/xh/legal.xml --- mate-utils-1.26.0/gsearchtool/help/xh/legal.xml 2021-08-05 19:48:01.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/xh/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/yo/index.docbook mate-utils-1.26.1/gsearchtool/help/yo/index.docbook --- mate-utils-1.26.0/gsearchtool/help/yo/index.docbook 2021-08-05 19:48:01.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/yo/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Àpèjúwe - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Command line - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/yo/legal.xml mate-utils-1.26.1/gsearchtool/help/yo/legal.xml --- mate-utils-1.26.0/gsearchtool/help/yo/legal.xml 2021-08-05 19:48:01.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/yo/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/zh_CN/index.docbook mate-utils-1.26.1/gsearchtool/help/zh_CN/index.docbook --- mate-utils-1.26.0/gsearchtool/help/zh_CN/index.docbook 2021-08-05 19:48:01.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/zh_CN/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,683 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - 2015-2021 MATE 文档团队 - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE 文档项目 - - - GNOME 文档项目 - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - 反馈 - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Christopher Meng - - i@cicku.me - - - - 2012-2013 - - Christopher Meng - - - - - ravix - - dr.neemous@gmail.com - - - - 2013 - - ravix - - - - - Dianjin Wang - - 1132321739qq@gmail.com - - - - 2012 - - Dianjin Wang - - - - - Cravix - - dr.neemous@gmail.com - - - - 2013 - - Cravix - - - - - nyanyh - - rebuilty@gmail.com - - - - 2013 - - nyanyh - - - - - liulitchi - - xingzuo88@qq.com - - - - 2013 - - liulitchi - - - - - 玉堂白鹤 - - yjwork@qq.com - - - - 2015 - - 玉堂白鹤 - - - - - Mingye Wang - - arthur200126@gmail.com - - - - 2015-2016 - - Mingye Wang - - - - - 白铭骢 - - jeffbai@aosc.xyz - - - - 2015-2016 - - 白铭骢 - - - - - 刘子兴 - - liushuyu@aosc.xyz - - - - 2015-2016 - - 刘子兴 - - - - - Search Tool - - - - - - - 介绍 - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - 入门 - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - 用法 - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - 点击 添加. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - 描述 - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - 修改日期多于(_Y) - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - 文件为空 - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - 未知的所属用户 - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - 显示隐藏文件和备份文件 - - Include hidden and backup files in the search. - - - - 跟随符号连接 - - Follow symbolic links when searching for files. - - - - 排除其它文件系统 - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - 应用程序菜单 - - Choose System Toolsdconf Editor. - - - - 命令行 - - Execute the following command: dconf-editor - - - - - - 禁用快速搜索 - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - 禁用快速搜索第二次扫描 - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - 快速搜索排除的路径 - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - 快速搜索第二次扫描排除的路径 - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - 选择额外选项 - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/zh_CN/legal.xml mate-utils-1.26.1/gsearchtool/help/zh_CN/legal.xml --- mate-utils-1.26.0/gsearchtool/help/zh_CN/legal.xml 2021-08-05 19:48:01.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/zh_CN/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 对于本文档的复制、分发和/或修改必须遵循自由软件基金会 (Free Software Foundation) 发布的 GNU 自由文档许可证 (GFDL) 版本 1.1 或更高版本,该许可证没有固定的部分、没有封面和背页文本。您可以在此 链接 或者随本文档一并发行的 COPYING-DOCS 中找到 GFDL 的副本。 - 本手册是在 GFDL 许可之下分发的 MATE 手册集合的一部分。如果想要单独分发此手册,可以在手册中添加该许可证的一份副本然后分发,如该许可证的第 6 部分所述。 - - 各个公司使用的许多用于区别它们产品和服务的名称都声明为商标。在所有的 MATE 文档以及 MATE 文档项目的成员中,这些名称都是以全大写字母或首字母大写显示,从而表明它们是商标。 - - 本文档和文档是根据 GNU 免费文档许可协议的条款提供的,并且还有进一步的阐述: - - 文档按“原样”提供,不提供任何明示或暗示的保证,包括但不限于:文档或文档的修改版本没有适销性方面的缺陷、适合特定目的的适用性,以及没有侵权行为。您将自行承担本文档以及文档修改版本的质量、准确性以及性能方面的风险。如果任何文档或文档修改版本存在缺陷,您(而不是最初的编写者、作者或撰写人)将承担所有必需的服务、维修或更正的费用。此免责声明是本许可证的重要组成部分。如果不接受此免责声明,那么您就没有权利使用任何文档或文档的修改版本;并且 - - - 无论在任何情况以及在任何法律理论下,本文档或文档修改版本的作者、最初的编写者、任何撰写人或任何分发者,或者任意这些方的任何提供者都不对任何人由于使用本文档或文档修改版本引起或带来的任何直接的、间接的、特殊的、偶然的或继发的损失承担任何民事(包括疏忽)、合同或其它方面的责任,这些损失包括但不限于信誉损失、工作停止、计算机失败或故障,或任何以及所有其它损失或由此引发的或与之相关的损失,即使这些方已被告知存在出现此类损失的可能性时也是如此。 - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/zh_HK/index.docbook mate-utils-1.26.1/gsearchtool/help/zh_HK/index.docbook --- mate-utils-1.26.0/gsearchtool/help/zh_HK/index.docbook 2021-08-05 19:48:01.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/zh_HK/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - 導覽 - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - 用量 - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - 描述 - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - 最後修改時間多於 - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - 檔案是空白的 - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - 無法識別擁有者 - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - 顯示隱藏或備份的檔案或資料夾 - - Include hidden and backup files in the search. - - - - 跟隨符號連結 - - Follow symbolic links when searching for files. - - - - 排除其他檔案系統 - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - 命令列 - - Execute the following command: dconf-editor - - - - - - 停用快速搜尋功能 - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - 停用快速搜尋第二次掃描功能 - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - 不包含路徑的快速搜尋 - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - 不包含路徑的快速搜尋第二次掃描 - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - 顯示額外選項 - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/zh_HK/legal.xml mate-utils-1.26.1/gsearchtool/help/zh_HK/legal.xml --- mate-utils-1.26.0/gsearchtool/help/zh_HK/legal.xml 2021-08-05 19:48:01.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/zh_HK/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/zh_TW/index.docbook mate-utils-1.26.1/gsearchtool/help/zh_TW/index.docbook --- mate-utils-1.26.0/gsearchtool/help/zh_TW/index.docbook 2021-08-05 19:48:01.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/zh_TW/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,569 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE文件專案 - - - GNOME文件專案 - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - 回饋 - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Walter Cheuk - - wwycheuk@gmail.com - - - - 2016. - - Walter Cheuk - - - - - Search Tool - - - - - - - 導覽 - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - 用量 - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - 描述 - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - 最後修改時間多於 - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - 檔案是空白的 - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - 無法識別擁有者 - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - 顯示隱藏或備份的檔案或資料夾 - - Include hidden and backup files in the search. - - - - 跟隨符號連結 - - Follow symbolic links when searching for files. - - - - 排除其他檔案系統 - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - 命令列 - - Execute the following command: dconf-editor - - - - - - 停用快速搜尋功能 - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - 停用快速搜尋第二次掃描功能 - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - 不包含路徑的快速搜尋 - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - 不包含路徑的快速搜尋第二次掃描 - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - 顯示額外選項 - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/zh_TW/legal.xml mate-utils-1.26.1/gsearchtool/help/zh_TW/legal.xml --- mate-utils-1.26.0/gsearchtool/help/zh_TW/legal.xml 2021-08-05 19:48:01.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/zh_TW/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/help/zu/index.docbook mate-utils-1.26.1/gsearchtool/help/zu/index.docbook --- mate-utils-1.26.0/gsearchtool/help/zu/index.docbook 2021-08-05 19:48:01.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/zu/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - - - - -]> - - -
- - - - Search for Files Manual - - - - A search tool to find files, folders and documents on your computer. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Dennis Cranston - - - 2002 - 2003 - 2004 - Sun Microsystems - - - 2000 - Alexander Kirillov - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Search for Files Maintainer - - - - Dennis - Cranston - - Search for Files Maintainer -
dennis_cranston@yahoo.com
-
-
- - Sun - GNOME Documentation Team - - Sun Microsystems -
- - - - Alexander - Kirillov - - GNOME Documentation Project -
kirillov@math.sunysb.edu
-
-
- - - - - - - Search for Files Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - Search for Files Maintainer - - - - Search for Files Manual V2.7 - June 2005 - - Joachim Noreiko - jnoreiko@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.6 - January 2005 - - Dennis Cranston - dennis_cranston@yahoo.com - - Search for Files Maintainer - - - - Search for Files Manual V2.4 - February 2004 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.3 - September 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Filesl Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - GNOME Documentation Project - - - - Search for Files Manual - 2000 - - Alexander Kirillov - kirillov@math.sunysb.edu - - GNOME Documentation Project - - - - - This manual describes version 1.10 of Search for Files. - - - Feedback - To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page. - - - - - - - Search Tool - - - - - - - Introduction - The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options. - Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command. - The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive. - - - - Getting Started - - You can start Search for Files in the following ways: - - - - From a Menu Bar on a panel - - Choose PlacesSearch for Files... - - - - From a Main Menu on a panel - - Choose Search for Files... - - - - From a command line - - Execute the following command: mate-search-tool - - - - - - - When you start Search for Files, the following window is displayed. - - -
- Search for Files Window - - - - - - Shows Search for Files main window. - - - -
- - -
- - - - - Usage - - - To Perform a Basic Search - - To perform a basic search for a file on the system, perform the following steps: - - Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table: - - - - - - - - - - Name Contains Text - - Example - - Result - - - - - - Full or partial filename - - - - myfile.txt - - - - Search for Files searches for all files that contain the text myfile.txt in the filename. - - - - - - Partial filename combined with wildcards (*, [, ]) - - - - *.[ch] - - - - Search for Files searches for all files that have extension .c or .h. - - - - - - - - In the Look in folder field, select the folder or device from which you want Search for Files to begin the search. - - Click Find to perform the search. - - - - Search for Files searches in the directory that you specify and the subdirectories of the directory. -Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message "No files found" in the Search results list box. - - By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user. - - - - To Add Search Options - You can add additional options to search for a file on the system. To add search options, perform the following steps: - - Click on the Select more options text. - Click on the Available options drop-down list. - Select the search option that you want to apply. - Click Add. - Specify the required search information for the search option, as described in . - Repeat the above steps for each search option that you want to apply. - - To remove a search option from the current search, click on the Remove button next to the option. - To disable the search options from the current search, click on the Select more options text. - - - Search Options - - - - - - - Option Name - - Ukulanda - - - - - - Contains the text - - Search for files of type plain text that contain the specified text. - - - - Date modified less than - - Search for files that are modified less than the period specified in days. - - - - Date modified more than - - Search for files that are modified longer than the period specified in days. - - - - Size at least - - Search for files that are equal to or larger than the size specified in kilobytes. - - - - Size at most - - Search for files that are smaller than or equal to the size specified in kilobytes. - - - - File is empty - - Search for empty files. - - - - Owned by user - - Search for files that are owned by the user specified. Type the name of the user in the text box provided. - - - - Owned by group - - Search for files that are owned by the group specified. Type the name of the group in the text box provided. - - - - Owner is unrecognized - - Search for files that are owned by a user or group that is unknown to the system. - - - - Name does not contain - - Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive. - - - - Name matches regular expression - - Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided. - - - - Show hidden and backup files - - Include hidden and backup files in the search. - - - - Follow symbolic links - - Follow symbolic links when searching for files. - - - - Exclude other filesystems - - Search in directories that are in the same filesystem as the start directory. - - - - -
- -
- - - To Stop a Search - Click Stop to stop a search before Search for Files completes the search. - - - - To Open a Displayed File - To open a file displayed in the Search results list box, perform one of the following steps: - - Right-click on the file, then choose Open. - Double-click on the file. - - To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder. - - - - To Delete a Displayed File - To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash. - - - - - - To Save the Search Results - To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save. - - -
- - - - - Settings - - Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways: - - - - Applications menu - - Choose System Toolsdconf Editor. - - - - Command line - - Execute the following command: dconf-editor - - - - - - Disable Quick Search - Key name: org.mate.search-tool.disable-quick-search - Default value: false - Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date. - - - - Disable Quick Search Second Scan - Key name: org.mate.search-tool.disable-quick-search-second-scan - Default value: false - After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date. - - - - Quick Search Excluded Paths - Key name: org.mate.search-tool.quick-search-excluded-paths - Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported. - - - - Quick Search Second Scan Excluded Paths - Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths - Default values: [/] - Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported. - - - - Show Additional Options - Key name: org.mate.search-tool.show-additional-options - Default value: false - This key determines if the Select more options section is expanded when Search for Files is started. - - - - -
diff -Nru mate-utils-1.26.0/gsearchtool/help/zu/legal.xml mate-utils-1.26.1/gsearchtool/help/zu/legal.xml --- mate-utils-1.26.0/gsearchtool/help/zu/legal.xml 2021-08-05 19:48:01.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/help/zu/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/gsearchtool/libmateui-deprecated/Makefile.in mate-utils-1.26.1/gsearchtool/libmateui-deprecated/Makefile.in --- mate-utils-1.26.0/gsearchtool/libmateui-deprecated/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/libmateui-deprecated/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,732 +0,0 @@ -# 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 . - -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 = gsearchtool/libmateui-deprecated -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 = -CONFIG_CLEAN_VPATH_FILES = -LTLIBRARIES = $(noinst_LTLIBRARIES) -am__DEPENDENCIES_1 = -libmateui_deprecated_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) -am_libmateui_deprecated_la_OBJECTS = \ - libmateui_deprecated_la-gsearchtool-entry.lo -libmateui_deprecated_la_OBJECTS = \ - $(am_libmateui_deprecated_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) -am__v_lt_0 = --silent -am__v_lt_1 = -libmateui_deprecated_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(libmateui_deprecated_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -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 = -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__maybe_remake_depfiles = depfiles -am__depfiles_remade = \ - ./$(DEPDIR)/libmateui_deprecated_la-gsearchtool-entry.Plo -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -SOURCES = $(libmateui_deprecated_la_SOURCES) -DIST_SOURCES = $(libmateui_deprecated_la_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp -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@ -noinst_LTLIBRARIES = libmateui-deprecated.la -libmateui_deprecated_la_CFLAGS = \ - $(GLIB_CFLAGS) \ - $(GTK_CFLAGS) \ - $(WARN_CFLAGS) - -libmateui_deprecated_la_LIBADD = \ - $(GLIB_LIBS) \ - $(GTK_LIBS) - -libmateui_deprecated_la_SOURCES = \ - gsearchtool-entry.h \ - gsearchtool-entry.c - -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(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 gsearchtool/libmateui-deprecated/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign gsearchtool/libmateui-deprecated/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): - -clean-noinstLTLIBRARIES: - -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) - @list='$(noinst_LTLIBRARIES)'; \ - locs=`for p in $$list; do echo $$p; done | \ - sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ - sort -u`; \ - test -z "$$locs" || { \ - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } - -libmateui-deprecated.la: $(libmateui_deprecated_la_OBJECTS) $(libmateui_deprecated_la_DEPENDENCIES) $(EXTRA_libmateui_deprecated_la_DEPENDENCIES) - $(AM_V_CCLD)$(libmateui_deprecated_la_LINK) $(libmateui_deprecated_la_OBJECTS) $(libmateui_deprecated_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmateui_deprecated_la-gsearchtool-entry.Plo@am__quote@ # am--include-marker - -$(am__depfiles_remade): - @$(MKDIR_P) $(@D) - @echo '# dummy' >$@-t && $(am__mv) $@-t $@ - -am--depfiles: $(am__depfiles_remade) - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< - -libmateui_deprecated_la-gsearchtool-entry.lo: gsearchtool-entry.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmateui_deprecated_la_CFLAGS) $(CFLAGS) -MT libmateui_deprecated_la-gsearchtool-entry.lo -MD -MP -MF $(DEPDIR)/libmateui_deprecated_la-gsearchtool-entry.Tpo -c -o libmateui_deprecated_la-gsearchtool-entry.lo `test -f 'gsearchtool-entry.c' || echo '$(srcdir)/'`gsearchtool-entry.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmateui_deprecated_la-gsearchtool-entry.Tpo $(DEPDIR)/libmateui_deprecated_la-gsearchtool-entry.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsearchtool-entry.c' object='libmateui_deprecated_la-gsearchtool-entry.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmateui_deprecated_la_CFLAGS) $(CFLAGS) -c -o libmateui_deprecated_la-gsearchtool-entry.lo `test -f 'gsearchtool-entry.c' || echo '$(srcdir)/'`gsearchtool-entry.c - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 $(LTLIBRARIES) -installdirs: -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: - -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 clean-noinstLTLIBRARIES \ - mostlyclean-am - -distclean: distclean-am - -rm -f ./$(DEPDIR)/libmateui_deprecated_la-gsearchtool-entry.Plo - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -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-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f ./$(DEPDIR)/libmateui_deprecated_la-gsearchtool-entry.Plo - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ - clean-generic clean-libtool clean-noinstLTLIBRARIES \ - cscopelist-am ctags ctags-am distclean distclean-compile \ - distclean-generic distclean-libtool distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - 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-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - --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 -Nru mate-utils-1.26.0/gsearchtool/Makefile.in mate-utils-1.26.1/gsearchtool/Makefile.in --- mate-utils-1.26.0/gsearchtool/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,727 +0,0 @@ -# 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 . -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 = gsearchtool -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 = -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 = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir distdir-am -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in AUTHORS -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -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@ -SUBDIRS = data help mate-submodules libmateui-deprecated src -all: all-recursive - -.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 gsearchtool/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign gsearchtool/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): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -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: - -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-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ - check-am clean clean-generic clean-libtool cscopelist-am ctags \ - ctags-am distclean distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am 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-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - installdirs-am maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ - ps ps-am tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - --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 -Nru mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/eggdesktopfile.c mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/eggdesktopfile.c --- mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/eggdesktopfile.c 2021-08-05 19:43:42.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/eggdesktopfile.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,1538 +0,0 @@ -/* eggdesktopfile.c - Freedesktop.Org Desktop Files - * Copyright (C) 2007 Novell, Inc. - * - * Based on mate-desktop-item.c - * Copyright (C) 1999, 2000 Red Hat Inc. - * Copyright (C) 2001 George Lebl - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License - * as published by the Free Software Foundation; either version 2 of - * the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; see the file COPYING.LIB. If not, - * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include "eggdesktopfile.h" - -#include -#include - -#include -#include - -#if defined(GDK_WINDOWING_X11) || defined(HAVE_X11) -#include -#endif - -struct EggDesktopFile { - GKeyFile *key_file; - char *source; - - char *name, *icon; - EggDesktopFileType type; - char document_code; -}; - -/** - * egg_desktop_file_new: - * @desktop_file_path: path to a Freedesktop-style Desktop file - * @error: error pointer - * - * Creates a new #EggDesktopFile for @desktop_file. - * - * Return value: the new #EggDesktopFile, or %NULL on error. - **/ -EggDesktopFile * -egg_desktop_file_new (const char *desktop_file_path, GError **error) -{ - GKeyFile *key_file; - - key_file = g_key_file_new (); - if (!g_key_file_load_from_file (key_file, desktop_file_path, 0, error)) - { - g_key_file_free (key_file); - return NULL; - } - - return egg_desktop_file_new_from_key_file (key_file, desktop_file_path, - error); -} - -/** - * egg_desktop_file_new_from_data_dirs: - * @desktop_file_path: relative path to a Freedesktop-style Desktop file - * @error: error pointer - * - * Looks for @desktop_file_path in the paths returned from - * g_get_user_data_dir() and g_get_system_data_dirs(), and creates - * a new #EggDesktopFile from it. - * - * Return value: the new #EggDesktopFile, or %NULL on error. - **/ -EggDesktopFile * -egg_desktop_file_new_from_data_dirs (const char *desktop_file_path, - GError **error) -{ - EggDesktopFile *desktop_file; - GKeyFile *key_file; - char *full_path; - - key_file = g_key_file_new (); - if (!g_key_file_load_from_data_dirs (key_file, desktop_file_path, - &full_path, 0, error)) - { - g_key_file_free (key_file); - return NULL; - } - - desktop_file = egg_desktop_file_new_from_key_file (key_file, - full_path, - error); - g_free (full_path); - return desktop_file; -} - -/** - * egg_desktop_file_new_from_dirs: - * @desktop_file_path: relative path to a Freedesktop-style Desktop file - * @search_dirs: NULL-terminated array of directories to search - * @error: error pointer - * - * Looks for @desktop_file_path in the paths returned from - * g_get_user_data_dir() and g_get_system_data_dirs(), and creates - * a new #EggDesktopFile from it. - * - * Return value: the new #EggDesktopFile, or %NULL on error. - **/ -EggDesktopFile * -egg_desktop_file_new_from_dirs (const char *desktop_file_path, - const char **search_dirs, - GError **error) -{ - EggDesktopFile *desktop_file; - GKeyFile *key_file; - char *full_path; - - key_file = g_key_file_new (); - if (!g_key_file_load_from_dirs (key_file, desktop_file_path, search_dirs, - &full_path, 0, error)) - { - g_key_file_free (key_file); - return NULL; - } - - desktop_file = egg_desktop_file_new_from_key_file (key_file, - full_path, - error); - g_free (full_path); - return desktop_file; -} - -/** - * egg_desktop_file_new_from_key_file: - * @key_file: a #GKeyFile representing a desktop file - * @source: the path or URI that @key_file was loaded from, or %NULL - * @error: error pointer - * - * Creates a new #EggDesktopFile for @key_file. Assumes ownership of - * @key_file (on success or failure); you should consider @key_file to - * be freed after calling this function. - * - * Return value: the new #EggDesktopFile, or %NULL on error. - **/ -EggDesktopFile * -egg_desktop_file_new_from_key_file (GKeyFile *key_file, - const char *source, - GError **error) -{ - EggDesktopFile *desktop_file; - char *version, *type; - - if (!g_key_file_has_group (key_file, EGG_DESKTOP_FILE_GROUP)) - { - g_set_error (error, EGG_DESKTOP_FILE_ERROR, - EGG_DESKTOP_FILE_ERROR_INVALID, - _("File is not a valid .desktop file")); - g_key_file_free (key_file); - return NULL; - } - - version = g_key_file_get_value (key_file, EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_VERSION, - NULL); - if (version) - { - double version_num; - char *end; - - version_num = g_ascii_strtod (version, &end); - if (*end) - { - g_warning ("Invalid Version string '%s' in %s", - version, source ? source : "(unknown)"); - } - else if (version_num > 1.0) - { - /* Translators: Version here is capitalized because it refers to a - * field in the desktop file */ - g_set_error (error, EGG_DESKTOP_FILE_ERROR, - EGG_DESKTOP_FILE_ERROR_INVALID, - _("Unrecognized desktop file Version '%s'"), version); - g_free (version); - g_key_file_free (key_file); - return NULL; - } - g_free (version); - } - - desktop_file = g_new0 (EggDesktopFile, 1); - desktop_file->key_file = key_file; - - if (g_path_is_absolute (source)) - desktop_file->source = g_filename_to_uri (source, NULL, NULL); - else - desktop_file->source = g_strdup (source); - - desktop_file->name = g_key_file_get_string (key_file, EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_NAME, error); - if (!desktop_file->name) - { - egg_desktop_file_free (desktop_file); - return NULL; - } - - type = g_key_file_get_string (key_file, EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_TYPE, error); - if (!type) - { - egg_desktop_file_free (desktop_file); - return NULL; - } - - if (!strcmp (type, "Application")) - { - char *exec, *p; - - desktop_file->type = EGG_DESKTOP_FILE_TYPE_APPLICATION; - - exec = g_key_file_get_string (key_file, - EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_EXEC, - error); - if (!exec) - { - egg_desktop_file_free (desktop_file); - g_free (type); - return NULL; - } - - /* See if it takes paths or URIs or neither */ - for (p = exec; *p; p++) - { - if (*p == '%') - { - if (p[1] == '\0' || strchr ("FfUu", p[1])) - { - desktop_file->document_code = p[1]; - break; - } - p++; - } - } - - g_free (exec); - } - else if (!strcmp (type, "Link")) - { - char *url; - - desktop_file->type = EGG_DESKTOP_FILE_TYPE_LINK; - - url = g_key_file_get_string (key_file, - EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_URL, - error); - if (!url) - { - egg_desktop_file_free (desktop_file); - g_free (type); - return NULL; - } - g_free (url); - } - else if (!strcmp (type, "Directory")) - desktop_file->type = EGG_DESKTOP_FILE_TYPE_DIRECTORY; - else - desktop_file->type = EGG_DESKTOP_FILE_TYPE_UNRECOGNIZED; - - g_free (type); - - /* Check the Icon key */ - desktop_file->icon = g_key_file_get_string (key_file, - EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_ICON, - NULL); - if (desktop_file->icon && !g_path_is_absolute (desktop_file->icon)) - { - char *ext; - - /* Lots of .desktop files still get this wrong */ - ext = strrchr (desktop_file->icon, '.'); - if (ext && (!strcmp (ext, ".png") || - !strcmp (ext, ".xpm") || - !strcmp (ext, ".svg"))) - { - g_warning ("Desktop file '%s' has malformed Icon key '%s'" - "(should not include extension)", - source ? source : "(unknown)", - desktop_file->icon); - *ext = '\0'; - } - } - - return desktop_file; -} - -/** - * egg_desktop_file_free: - * @desktop_file: an #EggDesktopFile - * - * Frees @desktop_file. - **/ -void -egg_desktop_file_free (EggDesktopFile *desktop_file) -{ - g_key_file_free (desktop_file->key_file); - g_free (desktop_file->source); - g_free (desktop_file->name); - g_free (desktop_file->icon); - g_free (desktop_file); -} - -/** - * egg_desktop_file_get_source: - * @desktop_file: an #EggDesktopFile - * - * Gets the URI that @desktop_file was loaded from. - * - * Return value: @desktop_file's source URI - **/ -const char * -egg_desktop_file_get_source (EggDesktopFile *desktop_file) -{ - return desktop_file->source; -} - -/** - * egg_desktop_file_get_desktop_file_type: - * @desktop_file: an #EggDesktopFile - * - * Gets the desktop file type of @desktop_file. - * - * Return value: @desktop_file's type - **/ -EggDesktopFileType -egg_desktop_file_get_desktop_file_type (EggDesktopFile *desktop_file) -{ - return desktop_file->type; -} - -/** - * egg_desktop_file_get_name: - * @desktop_file: an #EggDesktopFile - * - * Gets the (localized) value of @desktop_file's "Name" key. - * - * Return value: the application/link name - **/ -const char * -egg_desktop_file_get_name (EggDesktopFile *desktop_file) -{ - return desktop_file->name; -} - -/** - * egg_desktop_file_get_icon: - * @desktop_file: an #EggDesktopFile - * - * Gets the value of @desktop_file's "Icon" key. - * - * If the icon string is a full path (that is, if g_path_is_absolute() - * returns %TRUE when called on it), it points to a file containing an - * unthemed icon. If the icon string is not a full path, it is the - * name of a themed icon, which can be looked up with %GtkIconTheme, - * or passed directly to a theme-aware widget like %GtkImage or - * %GtkCellRendererPixbuf. - * - * Return value: the icon path or name - **/ -const char * -egg_desktop_file_get_icon (EggDesktopFile *desktop_file) -{ - return desktop_file->icon; -} - -gboolean -egg_desktop_file_has_key (EggDesktopFile *desktop_file, - const char *key, - GError **error) -{ - return g_key_file_has_key (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, key, - error); -} - -char * -egg_desktop_file_get_string (EggDesktopFile *desktop_file, - const char *key, - GError **error) -{ - return g_key_file_get_string (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, key, - error); -} - -char * -egg_desktop_file_get_locale_string (EggDesktopFile *desktop_file, - const char *key, - const char *locale, - GError **error) -{ - return g_key_file_get_locale_string (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, key, locale, - error); -} - -gboolean -egg_desktop_file_get_boolean (EggDesktopFile *desktop_file, - const char *key, - GError **error) -{ - return g_key_file_get_boolean (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, key, - error); -} - -double -egg_desktop_file_get_numeric (EggDesktopFile *desktop_file, - const char *key, - GError **error) -{ - return g_key_file_get_double (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, key, - error); -} - -int -egg_desktop_file_get_integer (EggDesktopFile *desktop_file, - const char *key, - GError **error) -{ - return g_key_file_get_integer (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, key, - error); -} - -char ** -egg_desktop_file_get_string_list (EggDesktopFile *desktop_file, - const char *key, - gsize *length, - GError **error) -{ - return g_key_file_get_string_list (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, key, length, - error); -} - -char ** -egg_desktop_file_get_locale_string_list (EggDesktopFile *desktop_file, - const char *key, - const char *locale, - gsize *length, - GError **error) -{ - return g_key_file_get_locale_string_list (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, key, - locale, length, - error); -} - -/** - * egg_desktop_file_can_launch: - * @desktop_file: an #EggDesktopFile - * @desktop_environment: the name of the running desktop environment, - * or %NULL - * - * Tests if @desktop_file can/should be launched in the current - * environment. If @desktop_environment is non-%NULL, @desktop_file's - * "OnlyShowIn" and "NotShowIn" keys are checked to make sure that - * this desktop_file is appropriate for the named environment. - * - * Furthermore, if @desktop_file has type - * %EGG_DESKTOP_FILE_TYPE_APPLICATION, its "TryExec" key (if any) is - * also checked, to make sure the binary it points to exists. - * - * egg_desktop_file_can_launch() does NOT check the value of the - * "Hidden" key. - * - * Return value: %TRUE if @desktop_file can be launched - **/ -gboolean -egg_desktop_file_can_launch (EggDesktopFile *desktop_file, - const char *desktop_environment) -{ - char *try_exec, *found_program; - char **only_show_in, **not_show_in; - gboolean found; - int i; - - if (desktop_file->type != EGG_DESKTOP_FILE_TYPE_APPLICATION && - desktop_file->type != EGG_DESKTOP_FILE_TYPE_LINK) - return FALSE; - - if (desktop_environment) - { - only_show_in = g_key_file_get_string_list (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_ONLY_SHOW_IN, - NULL, NULL); - if (only_show_in) - { - for (i = 0, found = FALSE; only_show_in[i] && !found; i++) - { - if (!strcmp (only_show_in[i], desktop_environment)) - found = TRUE; - } - - g_strfreev (only_show_in); - - if (!found) - return FALSE; - } - - not_show_in = g_key_file_get_string_list (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_NOT_SHOW_IN, - NULL, NULL); - if (not_show_in) - { - for (i = 0, found = FALSE; not_show_in[i] && !found; i++) - { - if (!strcmp (not_show_in[i], desktop_environment)) - found = TRUE; - } - - g_strfreev (not_show_in); - - if (found) - return FALSE; - } - } - - if (desktop_file->type == EGG_DESKTOP_FILE_TYPE_APPLICATION) - { - try_exec = g_key_file_get_string (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_TRY_EXEC, - NULL); - if (try_exec) - { - found_program = g_find_program_in_path (try_exec); - g_free (try_exec); - - if (!found_program) - return FALSE; - g_free (found_program); - } - } - - return TRUE; -} - -/** - * egg_desktop_file_accepts_documents: - * @desktop_file: an #EggDesktopFile - * - * Tests if @desktop_file represents an application that can accept - * documents on the command line. - * - * Return value: %TRUE or %FALSE - **/ -gboolean -egg_desktop_file_accepts_documents (EggDesktopFile *desktop_file) -{ - return desktop_file->document_code != 0; -} - -/** - * egg_desktop_file_accepts_multiple: - * @desktop_file: an #EggDesktopFile - * - * Tests if @desktop_file can accept multiple documents at once. - * - * If this returns %FALSE, you can still pass multiple documents to - * egg_desktop_file_launch(), but that will result in multiple copies - * of the application being launched. See egg_desktop_file_launch() - * for more details. - * - * Return value: %TRUE or %FALSE - **/ -gboolean -egg_desktop_file_accepts_multiple (EggDesktopFile *desktop_file) -{ - return (desktop_file->document_code == 'F' || - desktop_file->document_code == 'U'); -} - -/** - * egg_desktop_file_accepts_uris: - * @desktop_file: an #EggDesktopFile - * - * Tests if @desktop_file can accept (non-"file:") URIs as documents to - * open. - * - * Return value: %TRUE or %FALSE - **/ -gboolean -egg_desktop_file_accepts_uris (EggDesktopFile *desktop_file) -{ - return (desktop_file->document_code == 'U' || - desktop_file->document_code == 'u'); -} - -static void -append_quoted_word (GString *str, - const char *s, - gboolean in_single_quotes, - gboolean in_double_quotes) -{ - const char *p; - - if (!in_single_quotes && !in_double_quotes) - g_string_append_c (str, '\''); - else if (!in_single_quotes && in_double_quotes) - g_string_append (str, "\"'"); - - if (!strchr (s, '\'')) - g_string_append (str, s); - else - { - for (p = s; *p != '\0'; p++) - { - if (*p == '\'') - g_string_append (str, "'\\''"); - else - g_string_append_c (str, *p); - } - } - - if (!in_single_quotes && !in_double_quotes) - g_string_append_c (str, '\''); - else if (!in_single_quotes && in_double_quotes) - g_string_append (str, "'\""); -} - -static void -do_percent_subst (EggDesktopFile *desktop_file, - char code, - GString *str, - GSList **documents, - gboolean in_single_quotes, - gboolean in_double_quotes) -{ - GSList *d; - char *doc; - - switch (code) - { - case '%': - g_string_append_c (str, '%'); - break; - - case 'F': - case 'U': - for (d = *documents; d; d = d->next) - { - doc = d->data; - g_string_append (str, " "); - append_quoted_word (str, doc, in_single_quotes, in_double_quotes); - } - *documents = NULL; - break; - - case 'f': - case 'u': - if (*documents) - { - doc = (*documents)->data; - g_string_append (str, " "); - append_quoted_word (str, doc, in_single_quotes, in_double_quotes); - *documents = (*documents)->next; - } - break; - - case 'i': - if (desktop_file->icon) - { - g_string_append (str, "--icon "); - append_quoted_word (str, desktop_file->icon, - in_single_quotes, in_double_quotes); - } - break; - - case 'c': - if (desktop_file->name) - { - append_quoted_word (str, desktop_file->name, - in_single_quotes, in_double_quotes); - } - break; - - case 'k': - if (desktop_file->source) - { - append_quoted_word (str, desktop_file->source, - in_single_quotes, in_double_quotes); - } - break; - - case 'D': - case 'N': - case 'd': - case 'n': - case 'v': - case 'm': - /* Deprecated; skip */ - break; - - default: - g_warning ("Unrecognized %%-code '%%%c' in Exec", code); - break; - } -} - -static char * -parse_exec (EggDesktopFile *desktop_file, - GSList **documents, - GError **error) -{ - char *exec, *p, *command; - gboolean escape, single_quot, double_quot; - GString *gs; - - exec = g_key_file_get_string (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_EXEC, - error); - if (!exec) - return NULL; - - /* Build the command */ - gs = g_string_new (NULL); - escape = single_quot = double_quot = FALSE; - - for (p = exec; *p != '\0'; p++) - { - if (escape) - { - escape = FALSE; - g_string_append_c (gs, *p); - } - else if (*p == '\\') - { - if (!single_quot) - escape = TRUE; - g_string_append_c (gs, *p); - } - else if (*p == '\'') - { - g_string_append_c (gs, *p); - if (!single_quot && !double_quot) - single_quot = TRUE; - else if (single_quot) - single_quot = FALSE; - } - else if (*p == '"') - { - g_string_append_c (gs, *p); - if (!single_quot && !double_quot) - double_quot = TRUE; - else if (double_quot) - double_quot = FALSE; - } - else if (*p == '%' && p[1]) - { - do_percent_subst (desktop_file, p[1], gs, documents, - single_quot, double_quot); - p++; - } - else - g_string_append_c (gs, *p); - } - - g_free (exec); - command = g_string_free (gs, FALSE); - - /* Prepend "xdg-terminal " if needed (FIXME: use gvfs) */ - if (g_key_file_has_key (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_TERMINAL, - NULL)) - { - GError *terminal_error = NULL; - gboolean use_terminal = - g_key_file_get_boolean (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_TERMINAL, - &terminal_error); - if (terminal_error) - { - g_free (command); - g_propagate_error (error, terminal_error); - return NULL; - } - - if (use_terminal) - { - gs = g_string_new ("xdg-terminal "); - append_quoted_word (gs, command, FALSE, FALSE); - g_free (command); - command = g_string_free (gs, FALSE); - } - } - - return command; -} - -static GSList * -translate_document_list (EggDesktopFile *desktop_file, GSList *documents) -{ - gboolean accepts_uris = egg_desktop_file_accepts_uris (desktop_file); - GSList *ret, *d; - - for (d = documents, ret = NULL; d; d = d->next) - { - const char *document = d->data; - gboolean is_uri = !g_path_is_absolute (document); - char *translated; - - if (accepts_uris) - { - if (is_uri) - translated = g_strdup (document); - else - translated = g_filename_to_uri (document, NULL, NULL); - } - else - { - if (is_uri) - translated = g_filename_from_uri (document, NULL, NULL); - else - translated = g_strdup (document); - } - - if (translated) - ret = g_slist_prepend (ret, translated); - } - - return g_slist_reverse (ret); -} - -static void -free_document_list (GSList *documents) -{ - GSList *d; - - for (d = documents; d; d = d->next) - g_free (d->data); - g_slist_free (documents); -} - -/** - * egg_desktop_file_parse_exec: - * @desktop_file: a #EggDesktopFile - * @documents: a list of document paths or URIs - * @error: error pointer - * - * Parses @desktop_file's Exec key, inserting @documents into it, and - * returns the result. - * - * If @documents contains non-file: URIs and @desktop_file does not - * accept URIs, those URIs will be ignored. Likewise, if @documents - * contains more elements than @desktop_file accepts, the extra - * documents will be ignored. - * - * Return value: the parsed Exec string - **/ -char * -egg_desktop_file_parse_exec (EggDesktopFile *desktop_file, - GSList *documents, - GError **error) -{ - GSList *translated, *docs; - char *command; - - docs = translated = translate_document_list (desktop_file, documents); - command = parse_exec (desktop_file, &docs, error); - free_document_list (translated); - - return command; -} - -static gboolean -parse_link (EggDesktopFile *desktop_file, - EggDesktopFile **app_desktop_file, - GSList **documents, - GError **error) -{ - char *url; - GKeyFile *key_file; - - url = g_key_file_get_string (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_URL, - error); - if (!url) - return FALSE; - *documents = g_slist_prepend (NULL, url); - - /* FIXME: use gvfs */ - key_file = g_key_file_new (); - g_key_file_set_string (key_file, EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_NAME, - "xdg-open"); - g_key_file_set_string (key_file, EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_TYPE, - "Application"); - g_key_file_set_string (key_file, EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_EXEC, - "xdg-open %u"); - *app_desktop_file = egg_desktop_file_new_from_key_file (key_file, NULL, NULL); - return TRUE; -} - -#if defined(GDK_WINDOWING_X11) || defined(HAVE_X11) -static char * -start_startup_notification (GdkDisplay *display, - EggDesktopFile *desktop_file, - const char *argv0, - int screen, - int workspace, - guint32 launch_time) -{ - static int sequence = 0; - char *startup_id; - char *description, *wmclass; - char *screen_str, *workspace_str; - - g_assert(GDK_IS_X11_DISPLAY (display)); - - if (g_key_file_has_key (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_STARTUP_NOTIFY, - NULL)) - { - if (!g_key_file_get_boolean (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_STARTUP_NOTIFY, - NULL)) - return NULL; - wmclass = NULL; - } - else - { - wmclass = g_key_file_get_string (desktop_file->key_file, - EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_STARTUP_WM_CLASS, - NULL); - if (!wmclass) - return NULL; - } - - if (launch_time == (guint32)-1) - launch_time = gdk_x11_display_get_user_time (display); - startup_id = g_strdup_printf ("%s-%lu-%s-%s-%d_TIME%lu", - g_get_prgname (), - (unsigned long)getpid (), - g_get_host_name (), - argv0, - sequence++, - (unsigned long)launch_time); - - description = g_strdup_printf (_("Starting %s"), desktop_file->name); - screen_str = g_strdup_printf ("%d", screen); - workspace_str = workspace == -1 ? NULL : g_strdup_printf ("%d", workspace); - - gdk_x11_display_broadcast_startup_message (display, "new", - "ID", startup_id, - "NAME", desktop_file->name, - "SCREEN", screen_str, - "BIN", argv0, - "ICON", desktop_file->icon, - "DESKTOP", workspace_str, - "DESCRIPTION", description, - "WMCLASS", wmclass, - NULL); - - g_free (description); - g_free (wmclass); - g_free (screen_str); - g_free (workspace_str); - - return startup_id; -} - -static void -end_startup_notification (GdkDisplay *display, - const char *startup_id) -{ - gdk_x11_display_broadcast_startup_message (display, "remove", - "ID", startup_id, - NULL); -} - -#define EGG_DESKTOP_FILE_SN_TIMEOUT_LENGTH (30 /* seconds */) - -typedef struct { - GdkDisplay *display; - char *startup_id; -} StartupNotificationData; - -static gboolean -startup_notification_timeout (gpointer data) -{ - StartupNotificationData *sn_data = data; - - end_startup_notification (sn_data->display, sn_data->startup_id); - g_object_unref (sn_data->display); - g_free (sn_data->startup_id); - g_free (sn_data); - - return FALSE; -} - -static void -set_startup_notification_timeout (GdkDisplay *display, - const char *startup_id) -{ - StartupNotificationData *sn_data; - - sn_data = g_new (StartupNotificationData, 1); - sn_data->display = g_object_ref (display); - sn_data->startup_id = g_strdup (startup_id); - - g_timeout_add_seconds (EGG_DESKTOP_FILE_SN_TIMEOUT_LENGTH, - startup_notification_timeout, sn_data); -} -#endif // GDK_WINDOWING_X11 - -static GPtrArray * -array_putenv (GPtrArray *env, char *variable) -{ - guint i, keylen; - - if (!env) - { - char **envp; - - env = g_ptr_array_new (); - - envp = g_listenv (); - for (i = 0; envp[i]; i++) - { - const char *value; - - value = g_getenv (envp[i]); - g_ptr_array_add (env, g_strdup_printf ("%s=%s", envp[i], - value ? value : "")); - } - g_strfreev (envp); - } - - keylen = strcspn (variable, "="); - - /* Remove old value of key */ - for (i = 0; i < env->len; i++) - { - char *envvar = env->pdata[i]; - - if (!strncmp (envvar, variable, keylen) && envvar[keylen] == '=') - { - g_free (envvar); - g_ptr_array_remove_index_fast (env, i); - break; - } - } - - /* Add new value */ - g_ptr_array_add (env, g_strdup (variable)); - - return env; -} - -static gboolean -egg_desktop_file_launchv (EggDesktopFile *desktop_file, - GSList *documents, va_list args, - GError **error) -{ - EggDesktopFileLaunchOption option; - GSList *translated_documents = NULL, *docs = NULL; - char *command, **argv; - int argc, i; - gboolean success, current_success; - GdkDisplay *display; - char *startup_id; - - GPtrArray *env = NULL; - char **variables = NULL; - GdkScreen *screen = NULL; - int workspace = -1; - const char *directory = NULL; - guint32 launch_time = (guint32)-1; - GSpawnFlags flags = G_SPAWN_SEARCH_PATH; - GSpawnChildSetupFunc setup_func = NULL; - gpointer setup_data = NULL; - - GPid *ret_pid = NULL; - int *ret_stdin = NULL, *ret_stdout = NULL, *ret_stderr = NULL; - char **ret_startup_id = NULL; - - if (documents && desktop_file->document_code == 0) - { - g_set_error (error, EGG_DESKTOP_FILE_ERROR, - EGG_DESKTOP_FILE_ERROR_NOT_LAUNCHABLE, - _("Application does not accept documents on command line")); - return FALSE; - } - - /* Read the options: technically it's incorrect for the caller to - * NULL-terminate the list of options (rather than 0-terminating - * it), but NULL-terminating lets us use G_GNUC_NULL_TERMINATED, - * it's more consistent with other glib/gtk methods, and it will - * work as long as sizeof (int) <= sizeof (NULL), and NULL is - * represented as 0. (Which is true everywhere we care about.) - */ - while ((option = va_arg (args, EggDesktopFileLaunchOption))) - { - switch (option) - { - case EGG_DESKTOP_FILE_LAUNCH_CLEARENV: - if (env) - g_ptr_array_free (env, TRUE); - env = g_ptr_array_new (); - break; - case EGG_DESKTOP_FILE_LAUNCH_PUTENV: - variables = va_arg (args, char **); - for (i = 0; variables[i]; i++) - env = array_putenv (env, variables[i]); - break; - - case EGG_DESKTOP_FILE_LAUNCH_SCREEN: - screen = va_arg (args, GdkScreen *); - break; - case EGG_DESKTOP_FILE_LAUNCH_WORKSPACE: - workspace = va_arg (args, int); - break; - - case EGG_DESKTOP_FILE_LAUNCH_DIRECTORY: - directory = va_arg (args, const char *); - break; - case EGG_DESKTOP_FILE_LAUNCH_TIME: - launch_time = va_arg (args, guint32); - break; - case EGG_DESKTOP_FILE_LAUNCH_FLAGS: - flags |= va_arg (args, GSpawnFlags); - /* Make sure they didn't set any flags that don't make sense. */ - flags &= ~G_SPAWN_FILE_AND_ARGV_ZERO; - break; - case EGG_DESKTOP_FILE_LAUNCH_SETUP_FUNC: - setup_func = va_arg (args, GSpawnChildSetupFunc); - setup_data = va_arg (args, gpointer); - break; - - case EGG_DESKTOP_FILE_LAUNCH_RETURN_PID: - ret_pid = va_arg (args, GPid *); - break; - case EGG_DESKTOP_FILE_LAUNCH_RETURN_STDIN_PIPE: - ret_stdin = va_arg (args, int *); - break; - case EGG_DESKTOP_FILE_LAUNCH_RETURN_STDOUT_PIPE: - ret_stdout = va_arg (args, int *); - break; - case EGG_DESKTOP_FILE_LAUNCH_RETURN_STDERR_PIPE: - ret_stderr = va_arg (args, int *); - break; - case EGG_DESKTOP_FILE_LAUNCH_RETURN_STARTUP_ID: - ret_startup_id = va_arg (args, char **); - break; - - default: - g_set_error (error, EGG_DESKTOP_FILE_ERROR, - EGG_DESKTOP_FILE_ERROR_UNRECOGNIZED_OPTION, - _("Unrecognized launch option: %d"), - GPOINTER_TO_INT (option)); - success = FALSE; - goto out; - } - } - - if (screen) - { - display = gdk_screen_get_display (screen); - char *display_name = g_strdup (gdk_display_get_name (display)); - char *display_env = g_strdup_printf ("DISPLAY=%s", display_name); - env = array_putenv (env, display_env); - g_free (display_name); - g_free (display_env); - } - else - { - display = gdk_display_get_default (); - screen = gdk_display_get_default_screen (display); - } - - translated_documents = translate_document_list (desktop_file, documents); - docs = translated_documents; - - success = FALSE; - - do - { - command = parse_exec (desktop_file, &docs, error); - if (!command) - goto out; - - if (!g_shell_parse_argv (command, &argc, &argv, error)) - { - g_free (command); - goto out; - } - g_free (command); - - startup_id = NULL; - -#if defined(GDK_WINDOWING_X11) || defined(HAVE_X11) - if (GDK_IS_X11_DISPLAY (display)) - { - int screen_num; - - screen_num = gdk_x11_screen_get_screen_number (screen); - startup_id = start_startup_notification (display, desktop_file, - argv[0], screen_num, - workspace, launch_time); - if (startup_id) - { - char *startup_id_env = g_strdup_printf ("DESKTOP_STARTUP_ID=%s", - startup_id); - env = array_putenv (env, startup_id_env); - g_free (startup_id_env); - } - } -#else - // Suppress unused variable warnings when not compiling with X - (void)workspace; - (void)launch_time; -#endif - - if (env != NULL) - g_ptr_array_add (env, NULL); - - current_success = - g_spawn_async_with_pipes (directory, - argv, - env ? (char **)(env->pdata) : NULL, - flags, - setup_func, setup_data, - ret_pid, - ret_stdin, ret_stdout, ret_stderr, - error); - g_strfreev (argv); - - if (startup_id) - { - if (current_success) - { -#if defined(GDK_WINDOWING_X11) || defined(HAVE_X11) - if (GDK_IS_X11_DISPLAY (display)) - { - set_startup_notification_timeout (display, startup_id); - } -#endif - - if (ret_startup_id) - *ret_startup_id = startup_id; - else - g_free (startup_id); - } - else - g_free (startup_id); - } - else if (ret_startup_id) - *ret_startup_id = NULL; - - if (current_success) - { - /* If we successfully launch any instances of the app, make - * sure we return TRUE and don't set @error. - */ - success = TRUE; - error = NULL; - - /* Also, only set the output params on the first one */ - ret_pid = NULL; - ret_stdin = ret_stdout = ret_stderr = NULL; - ret_startup_id = NULL; - } - } - while (docs && current_success); - - out: - if (env) - { - g_ptr_array_set_free_func (env, g_free); - g_ptr_array_free (env, TRUE); - } - free_document_list (translated_documents); - - return success; -} - -/** - * egg_desktop_file_launch: - * @desktop_file: an #EggDesktopFile - * @documents: a list of URIs or paths to documents to open - * @error: error pointer - * @...: additional options - * - * Launches @desktop_file with the given arguments. Additional options - * can be specified as follows: - * - * %EGG_DESKTOP_FILE_LAUNCH_CLEARENV: (no arguments) - * clears the environment in the child process - * %EGG_DESKTOP_FILE_LAUNCH_PUTENV: (char **variables) - * adds the NAME=VALUE strings in the given %NULL-terminated - * array to the child process's environment - * %EGG_DESKTOP_FILE_LAUNCH_SCREEN: (GdkScreen *screen) - * causes the application to be launched on the given screen - * %EGG_DESKTOP_FILE_LAUNCH_WORKSPACE: (int workspace) - * causes the application to be launched on the given workspace - * %EGG_DESKTOP_FILE_LAUNCH_DIRECTORY: (char *dir) - * causes the application to be launched in the given directory - * %EGG_DESKTOP_FILE_LAUNCH_TIME: (guint32 launch_time) - * sets the "launch time" for the application. If the user - * interacts with another window after @launch_time but before - * the launched application creates its first window, the window - * manager may choose to not give focus to the new application. - * Passing 0 for @launch_time will explicitly request that the - * application not receive focus. - * %EGG_DESKTOP_FILE_LAUNCH_FLAGS (GSpawnFlags flags) - * Sets additional #GSpawnFlags to use. See g_spawn_async() for - * more details. - * %EGG_DESKTOP_FILE_LAUNCH_SETUP_FUNC (GSpawnChildSetupFunc, gpointer) - * Sets the child setup callback and the data to pass to it. - * (See g_spawn_async() for more details.) - * - * %EGG_DESKTOP_FILE_LAUNCH_RETURN_PID (GPid **pid) - * On a successful launch, sets *@pid to the PID of the launched - * application. - * %EGG_DESKTOP_FILE_LAUNCH_RETURN_STARTUP_ID (char **startup_id) - * On a successful launch, sets *@startup_id to the Startup - * Notification "startup id" of the launched application. - * %EGG_DESKTOP_FILE_LAUNCH_RETURN_STDIN_PIPE (int *fd) - * On a successful launch, sets *@fd to the file descriptor of - * a pipe connected to the application's stdin. - * %EGG_DESKTOP_FILE_LAUNCH_RETURN_STDOUT_PIPE (int *fd) - * On a successful launch, sets *@fd to the file descriptor of - * a pipe connected to the application's stdout. - * %EGG_DESKTOP_FILE_LAUNCH_RETURN_STDERR_PIPE (int *fd) - * On a successful launch, sets *@fd to the file descriptor of - * a pipe connected to the application's stderr. - * - * The options should be terminated with a single %NULL. - * - * If @documents contains multiple documents, but - * egg_desktop_file_accepts_multiple() returns %FALSE for - * @desktop_file, then egg_desktop_file_launch() will actually launch - * multiple instances of the application. In that case, the return - * value (as well as any values passed via - * %EGG_DESKTOP_FILE_LAUNCH_RETURN_PID, etc) will only reflect the - * first instance of the application that was launched (but the - * %EGG_DESKTOP_FILE_LAUNCH_SETUP_FUNC will be called for each - * instance). - * - * Return value: %TRUE if the application was successfully launched. - **/ -gboolean -egg_desktop_file_launch (EggDesktopFile *desktop_file, - GSList *documents, GError **error, - ...) -{ - va_list args; - gboolean success; - EggDesktopFile *app_desktop_file; - - switch (desktop_file->type) - { - case EGG_DESKTOP_FILE_TYPE_APPLICATION: - va_start (args, error); - success = egg_desktop_file_launchv (desktop_file, documents, - args, error); - va_end (args); - break; - - case EGG_DESKTOP_FILE_TYPE_LINK: - if (documents) - { - g_set_error (error, EGG_DESKTOP_FILE_ERROR, - EGG_DESKTOP_FILE_ERROR_NOT_LAUNCHABLE, - _("Can't pass document URIs to a 'Type=Link' desktop entry")); - return FALSE; - } - - if (!parse_link (desktop_file, &app_desktop_file, &documents, error)) - return FALSE; - - va_start (args, error); - success = egg_desktop_file_launchv (app_desktop_file, documents, - args, error); - va_end (args); - - egg_desktop_file_free (app_desktop_file); - free_document_list (documents); - break; - - case EGG_DESKTOP_FILE_TYPE_UNRECOGNIZED: - case EGG_DESKTOP_FILE_TYPE_DIRECTORY: - default: - g_set_error (error, EGG_DESKTOP_FILE_ERROR, - EGG_DESKTOP_FILE_ERROR_NOT_LAUNCHABLE, - _("Not a launchable item")); - success = FALSE; - break; - } - - return success; -} - - -GQuark -egg_desktop_file_error_quark (void) -{ - return g_quark_from_static_string ("egg-desktop_file-error-quark"); -} - - -G_LOCK_DEFINE_STATIC (egg_desktop_file); -static EggDesktopFile *egg_desktop_file; - -static void -egg_set_desktop_file_internal (const char *desktop_file_path, - gboolean set_defaults) -{ - GError *error = NULL; - - G_LOCK (egg_desktop_file); - if (egg_desktop_file) - egg_desktop_file_free (egg_desktop_file); - - egg_desktop_file = egg_desktop_file_new (desktop_file_path, &error); - if (error) - { - g_warning ("Could not load desktop file '%s': %s", - desktop_file_path, error->message); - g_error_free (error); - } - - if (set_defaults && egg_desktop_file != NULL) { - /* Set localized application name and default window icon */ - if (egg_desktop_file->name) - g_set_application_name (egg_desktop_file->name); - if (egg_desktop_file->icon) - { - if (g_path_is_absolute (egg_desktop_file->icon)) - gtk_window_set_default_icon_from_file (egg_desktop_file->icon, NULL); - else - gtk_window_set_default_icon_name (egg_desktop_file->icon); - } - } - - G_UNLOCK (egg_desktop_file); -} - -/** - * egg_set_desktop_file: - * @desktop_file_path: path to the application's desktop file - * - * Creates an #EggDesktopFile for the application from the data at - * @desktop_file_path. This will also call g_set_application_name() - * with the localized application name from the desktop file, and - * gtk_window_set_default_icon_name() or - * gtk_window_set_default_icon_from_file() with the application's - * icon. Other code may use additional information from the desktop - * file. - * See egg_set_desktop_file_without_defaults() for a variant of this - * function that does not set the application name and default window - * icon. - * - * Note that for thread safety reasons, this function can only - * be called once, and is mutually exclusive with calling - * egg_set_desktop_file_without_defaults(). - **/ -void -egg_set_desktop_file (const char *desktop_file_path) -{ - egg_set_desktop_file_internal (desktop_file_path, TRUE); -} - -/** - * egg_set_desktop_file_without_defaults: - * @desktop_file_path: path to the application's desktop file - * - * Creates an #EggDesktopFile for the application from the data at - * @desktop_file_path. - * See egg_set_desktop_file() for a variant of this function that - * sets the application name and default window icon from the information - * in the desktop file. - * - * Note that for thread safety reasons, this function can only - * be called once, and is mutually exclusive with calling - * egg_set_desktop_file(). - **/ -void -egg_set_desktop_file_without_defaults (const char *desktop_file_path) -{ - egg_set_desktop_file_internal (desktop_file_path, FALSE); -} - -/** - * egg_get_desktop_file: - * - * Gets the application's #EggDesktopFile, as set by - * egg_set_desktop_file(). - * - * Return value: the #EggDesktopFile, or %NULL if it hasn't been set. - **/ -EggDesktopFile * -egg_get_desktop_file (void) -{ - EggDesktopFile *retval; - - G_LOCK (egg_desktop_file); - retval = egg_desktop_file; - G_UNLOCK (egg_desktop_file); - - return retval; -} diff -Nru mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/eggdesktopfile.h mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/eggdesktopfile.h --- mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/eggdesktopfile.h 2021-08-05 19:43:42.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/eggdesktopfile.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,152 +0,0 @@ -/* eggdesktopfile.h - Freedesktop.Org Desktop Files - * Copyright (C) 2007 Novell, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License - * as published by the Free Software Foundation; either version 2 of - * the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; see the file COPYING.LIB. If not, - * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - */ - -#ifndef __EGG_DESKTOP_FILE_H__ -#define __EGG_DESKTOP_FILE_H__ - -#include - -G_BEGIN_DECLS - -typedef struct EggDesktopFile EggDesktopFile; - -typedef enum { - EGG_DESKTOP_FILE_TYPE_UNRECOGNIZED, - - EGG_DESKTOP_FILE_TYPE_APPLICATION, - EGG_DESKTOP_FILE_TYPE_LINK, - EGG_DESKTOP_FILE_TYPE_DIRECTORY -} EggDesktopFileType; - -EggDesktopFile *egg_desktop_file_new (const char *desktop_file_path, - GError **error); -EggDesktopFile *egg_desktop_file_new_from_data_dirs (const char *desktop_file_path, - GError **error); -EggDesktopFile *egg_desktop_file_new_from_dirs (const char *desktop_file_path, - const char **search_dirs, - GError **error); -EggDesktopFile *egg_desktop_file_new_from_key_file (GKeyFile *key_file, - const char *source, - GError **error); -void egg_desktop_file_free (EggDesktopFile *desktop_file); -const char *egg_desktop_file_get_source (EggDesktopFile *desktop_file); -EggDesktopFileType egg_desktop_file_get_desktop_file_type (EggDesktopFile *desktop_file); -const char *egg_desktop_file_get_name (EggDesktopFile *desktop_file); -const char *egg_desktop_file_get_icon (EggDesktopFile *desktop_file); -gboolean egg_desktop_file_can_launch (EggDesktopFile *desktop_file, - const char *desktop_environment); -gboolean egg_desktop_file_accepts_documents (EggDesktopFile *desktop_file); -gboolean egg_desktop_file_accepts_multiple (EggDesktopFile *desktop_file); -gboolean egg_desktop_file_accepts_uris (EggDesktopFile *desktop_file); -char *egg_desktop_file_parse_exec (EggDesktopFile *desktop_file, - GSList *documents, - GError **error); -gboolean egg_desktop_file_launch (EggDesktopFile *desktop_file, - GSList *documents, - GError **error, - ...) G_GNUC_NULL_TERMINATED; - -typedef enum { - EGG_DESKTOP_FILE_LAUNCH_CLEARENV = 1, - EGG_DESKTOP_FILE_LAUNCH_PUTENV, - EGG_DESKTOP_FILE_LAUNCH_SCREEN, - EGG_DESKTOP_FILE_LAUNCH_WORKSPACE, - EGG_DESKTOP_FILE_LAUNCH_DIRECTORY, - EGG_DESKTOP_FILE_LAUNCH_TIME, - EGG_DESKTOP_FILE_LAUNCH_FLAGS, - EGG_DESKTOP_FILE_LAUNCH_SETUP_FUNC, - EGG_DESKTOP_FILE_LAUNCH_RETURN_PID, - EGG_DESKTOP_FILE_LAUNCH_RETURN_STDIN_PIPE, - EGG_DESKTOP_FILE_LAUNCH_RETURN_STDOUT_PIPE, - EGG_DESKTOP_FILE_LAUNCH_RETURN_STDERR_PIPE, - EGG_DESKTOP_FILE_LAUNCH_RETURN_STARTUP_ID -} EggDesktopFileLaunchOption; - -/* Standard Keys */ -#define EGG_DESKTOP_FILE_GROUP "Desktop Entry" - -#define EGG_DESKTOP_FILE_KEY_TYPE "Type" -#define EGG_DESKTOP_FILE_KEY_VERSION "Version" -#define EGG_DESKTOP_FILE_KEY_NAME "Name" -#define EGG_DESKTOP_FILE_KEY_GENERIC_NAME "GenericName" -#define EGG_DESKTOP_FILE_KEY_NO_DISPLAY "NoDisplay" -#define EGG_DESKTOP_FILE_KEY_COMMENT "Comment" -#define EGG_DESKTOP_FILE_KEY_ICON "Icon" -#define EGG_DESKTOP_FILE_KEY_HIDDEN "Hidden" -#define EGG_DESKTOP_FILE_KEY_ONLY_SHOW_IN "OnlyShowIn" -#define EGG_DESKTOP_FILE_KEY_NOT_SHOW_IN "NotShowIn" -#define EGG_DESKTOP_FILE_KEY_TRY_EXEC "TryExec" -#define EGG_DESKTOP_FILE_KEY_EXEC "Exec" -#define EGG_DESKTOP_FILE_KEY_PATH "Path" -#define EGG_DESKTOP_FILE_KEY_TERMINAL "Terminal" -#define EGG_DESKTOP_FILE_KEY_MIME_TYPE "MimeType" -#define EGG_DESKTOP_FILE_KEY_CATEGORIES "Categories" -#define EGG_DESKTOP_FILE_KEY_STARTUP_NOTIFY "StartupNotify" -#define EGG_DESKTOP_FILE_KEY_STARTUP_WM_CLASS "StartupWMClass" -#define EGG_DESKTOP_FILE_KEY_URL "URL" - -/* Accessors */ -gboolean egg_desktop_file_has_key (EggDesktopFile *desktop_file, - const char *key, - GError **error); -char *egg_desktop_file_get_string (EggDesktopFile *desktop_file, - const char *key, - GError **error) G_GNUC_MALLOC; -char *egg_desktop_file_get_locale_string (EggDesktopFile *desktop_file, - const char *key, - const char *locale, - GError **error) G_GNUC_MALLOC; -gboolean egg_desktop_file_get_boolean (EggDesktopFile *desktop_file, - const char *key, - GError **error); -double egg_desktop_file_get_numeric (EggDesktopFile *desktop_file, - const char *key, - GError **error); -int egg_desktop_file_get_integer (EggDesktopFile *desktop_file, - const char *key, - GError **error); -char **egg_desktop_file_get_string_list (EggDesktopFile *desktop_file, - const char *key, - gsize *length, - GError **error) G_GNUC_MALLOC; -char **egg_desktop_file_get_locale_string_list (EggDesktopFile *desktop_file, - const char *key, - const char *locale, - gsize *length, - GError **error) G_GNUC_MALLOC; - -/* Errors */ -#define EGG_DESKTOP_FILE_ERROR egg_desktop_file_error_quark() - -GQuark egg_desktop_file_error_quark (void); - -typedef enum { - EGG_DESKTOP_FILE_ERROR_INVALID, - EGG_DESKTOP_FILE_ERROR_NOT_LAUNCHABLE, - EGG_DESKTOP_FILE_ERROR_UNRECOGNIZED_OPTION -} EggDesktopFileError; - -/* Global application desktop file */ -void egg_set_desktop_file (const char *desktop_file_path); -void egg_set_desktop_file_without_defaults (const char *desktop_file_path); -EggDesktopFile *egg_get_desktop_file (void); - -G_END_DECLS - -#endif /* __EGG_DESKTOP_FILE_H__ */ diff -Nru mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/eggsmclient.c mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/eggsmclient.c --- mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/eggsmclient.c 2021-08-05 19:43:42.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/eggsmclient.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,643 +0,0 @@ -/* - * Copyright (C) 2007 Novell, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library 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 - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, - * Boston, MA 02110-1301, USA. - */ - -#include "config.h" - -#include -#include - -#include "eggsmclient.h" -#include "eggsmclient-private.h" - -static void egg_sm_client_debug_handler (const char *log_domain, - GLogLevelFlags log_level, - const char *message, - gpointer user_data); - -enum -{ - SAVE_STATE, - QUIT_REQUESTED, - QUIT_CANCELLED, - QUIT, - LAST_SIGNAL -}; - -static guint signals[LAST_SIGNAL] = { 0 }; - -typedef struct { - GKeyFile *state_file; -}EggSMClientPrivate; - -G_DEFINE_TYPE_WITH_PRIVATE (EggSMClient, egg_sm_client, G_TYPE_OBJECT) - -static EggSMClient *global_client; -static EggSMClientMode global_client_mode = EGG_SM_CLIENT_MODE_NORMAL; - -static gboolean -running_in_mate (void) -{ - return (g_strcmp0 (g_getenv ("XDG_CURRENT_DESKTOP"), "MATE") == 0) - || (g_strcmp0 (g_getenv ("XDG_SESSION_DESKTOP"), "mate") == 0) - || (g_strcmp0 (g_getenv ("DESKTOP_SESSION"), "mate") == 0); -} - -static void -egg_sm_client_init (EggSMClient *client) -{ - ; -} - -static void -egg_sm_client_class_init (EggSMClientClass *klass) -{ - GObjectClass *object_class = G_OBJECT_CLASS (klass); - - /** - * EggSMClient::save_state: - * @client: the client - * @state_file: a #GKeyFile to save state information into - * - * Emitted when the session manager has requested that the - * application save information about its current state. The - * application should save its state into @state_file, and then the - * session manager may then restart the application in a future - * session and tell it to initialize itself from that state. - * - * You should not save any data into @state_file's "start group" - * (ie, the %NULL group). Instead, applications should save their - * data into groups with names that start with the application name, - * and libraries that connect to this signal should save their data - * into groups with names that start with the library name. - * - * Alternatively, rather than (or in addition to) using @state_file, - * the application can save its state by calling - * egg_sm_client_set_restart_command() during the processing of this - * signal (eg, to include a list of files to open). - **/ - signals[SAVE_STATE] = - g_signal_new ("save_state", - G_OBJECT_CLASS_TYPE (object_class), - G_SIGNAL_RUN_LAST, - G_STRUCT_OFFSET (EggSMClientClass, save_state), - NULL, NULL, - g_cclosure_marshal_VOID__POINTER, - G_TYPE_NONE, - 1, G_TYPE_POINTER); - - /** - * EggSMClient::quit_requested: - * @client: the client - * - * Emitted when the session manager requests that the application - * exit (generally because the user is logging out). The application - * should decide whether or not it is willing to quit (perhaps after - * asking the user what to do with documents that have unsaved - * changes) and then call egg_sm_client_will_quit(), passing %TRUE - * or %FALSE to give its answer to the session manager. (It does not - * need to give an answer before returning from the signal handler; - * it can interact with the user asynchronously and then give its - * answer later on.) If the application does not connect to this - * signal, then #EggSMClient will automatically return %TRUE on its - * behalf. - * - * The application should not save its session state as part of - * handling this signal; if the user has requested that the session - * be saved when logging out, then ::save_state will be emitted - * separately. - * - * If the application agrees to quit, it should then wait for either - * the ::quit_cancelled or ::quit signals to be emitted. - **/ - signals[QUIT_REQUESTED] = - g_signal_new ("quit_requested", - G_OBJECT_CLASS_TYPE (object_class), - G_SIGNAL_RUN_LAST, - G_STRUCT_OFFSET (EggSMClientClass, quit_requested), - NULL, NULL, - g_cclosure_marshal_VOID__VOID, - G_TYPE_NONE, - 0); - - /** - * EggSMClient::quit_cancelled: - * @client: the client - * - * Emitted when the session manager decides to cancel a logout after - * the application has already agreed to quit. After receiving this - * signal, the application can go back to what it was doing before - * receiving the ::quit_requested signal. - **/ - signals[QUIT_CANCELLED] = - g_signal_new ("quit_cancelled", - G_OBJECT_CLASS_TYPE (object_class), - G_SIGNAL_RUN_LAST, - G_STRUCT_OFFSET (EggSMClientClass, quit_cancelled), - NULL, NULL, - g_cclosure_marshal_VOID__VOID, - G_TYPE_NONE, - 0); - - /** - * EggSMClient::quit: - * @client: the client - * - * Emitted when the session manager wants the application to quit - * (generally because the user is logging out). The application - * should exit as soon as possible after receiving this signal; if - * it does not, the session manager may choose to forcibly kill it. - * - * Normally a GUI application would only be sent a ::quit if it - * agreed to quit in response to a ::quit_requested signal. However, - * this is not guaranteed; in some situations the session manager - * may decide to end the session without giving applications a - * chance to object. - **/ - signals[QUIT] = - g_signal_new ("quit", - G_OBJECT_CLASS_TYPE (object_class), - G_SIGNAL_RUN_LAST, - G_STRUCT_OFFSET (EggSMClientClass, quit), - NULL, NULL, - g_cclosure_marshal_VOID__VOID, - G_TYPE_NONE, - 0); -} - -static gboolean sm_client_disable = FALSE; -static char *sm_client_state_file = NULL; -static char *sm_client_id = NULL; -static char *sm_config_prefix = NULL; - -static gboolean -sm_client_post_parse_func (GOptionContext *context, - GOptionGroup *group, - gpointer data, - GError **error) -{ - EggSMClient *client = egg_sm_client_get (); - - if (sm_client_id == NULL) - { - const gchar *desktop_autostart_id; - - desktop_autostart_id = g_getenv ("DESKTOP_AUTOSTART_ID"); - - if (desktop_autostart_id != NULL) - sm_client_id = g_strdup (desktop_autostart_id); - } - - /* Unset DESKTOP_AUTOSTART_ID in order to avoid child processes to - * use the same client id. */ - g_unsetenv ("DESKTOP_AUTOSTART_ID"); - - if (global_client_mode != EGG_SM_CLIENT_MODE_DISABLED && - EGG_SM_CLIENT_GET_CLASS (client)->startup) - EGG_SM_CLIENT_GET_CLASS (client)->startup (client, sm_client_id); - return TRUE; -} - -/** - * egg_sm_client_get_option_group: - * - * Creates a %GOptionGroup containing the session-management-related - * options. You should add this group to the application's - * %GOptionContext if you want to use #EggSMClient. - * - * Return value: the %GOptionGroup - **/ -GOptionGroup * -egg_sm_client_get_option_group (void) -{ - const GOptionEntry entries[] = - { - { - "sm-client-disable", 0, 0, - G_OPTION_ARG_NONE, &sm_client_disable, - N_("Disable connection to session manager"), NULL - }, - { - "sm-client-state-file", 0, 0, - G_OPTION_ARG_FILENAME, &sm_client_state_file, - N_("Specify file containing saved configuration"), N_("FILE") - }, - { - "sm-client-id", 0, 0, - G_OPTION_ARG_STRING, &sm_client_id, - N_("Specify session management ID"), N_("ID") - }, - /* MateClient compatibility option */ - { - "sm-disable", 0, G_OPTION_FLAG_HIDDEN, - G_OPTION_ARG_NONE, &sm_client_disable, - NULL, NULL - }, - /* MateClient compatibility option. This is a dummy option that only - * exists so that sessions saved by apps with MateClient can be restored - * later when they've switched to EggSMClient. See bug #575308. - */ - { - "sm-config-prefix", 0, G_OPTION_FLAG_HIDDEN, - G_OPTION_ARG_STRING, &sm_config_prefix, - NULL, NULL - }, - { NULL } - }; - GOptionGroup *group; - - /* Use our own debug handler for the "EggSMClient" domain. */ - g_log_set_handler (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, - egg_sm_client_debug_handler, NULL); - - group = g_option_group_new ("sm-client", - _("Session management options:"), - _("Show session management options"), - NULL, NULL); - g_option_group_add_entries (group, entries); - g_option_group_set_parse_hooks (group, NULL, sm_client_post_parse_func); - - return group; -} - -/** - * egg_sm_client_set_mode: - * @mode: an #EggSMClient mode - * - * Sets the "mode" of #EggSMClient as follows: - * - * %EGG_SM_CLIENT_MODE_DISABLED: Session management is completely - * disabled, until the mode is changed again. The application will - * not even connect to the session manager. (egg_sm_client_get() - * will still return an #EggSMClient object.) - * - * %EGG_SM_CLIENT_MODE_NO_RESTART: The application will connect to - * the session manager (and thus will receive notification when the - * user is logging out, etc), but will request to not be - * automatically restarted with saved state in future sessions. - * - * %EGG_SM_CLIENT_MODE_NORMAL: The default. #EggSMCLient will - * function normally. - * - * This must be called before the application's main loop begins and - * before any call to egg_sm_client_get(), unless the mode was set - * earlier to %EGG_SM_CLIENT_MODE_DISABLED and this call enables - * session management. Note that option parsing will call - * egg_sm_client_get(). - **/ -void -egg_sm_client_set_mode (EggSMClientMode mode) -{ - EggSMClientMode old_mode = global_client_mode; - - g_return_if_fail (global_client == NULL || global_client_mode == EGG_SM_CLIENT_MODE_DISABLED); - g_return_if_fail (!(global_client != NULL && mode == EGG_SM_CLIENT_MODE_DISABLED)); - - global_client_mode = mode; - - if (global_client != NULL && old_mode == EGG_SM_CLIENT_MODE_DISABLED) - { - if (EGG_SM_CLIENT_GET_CLASS (global_client)->startup) - EGG_SM_CLIENT_GET_CLASS (global_client)->startup (global_client, sm_client_id); - } -} - -/** - * egg_sm_client_get_mode: - * - * Gets the global #EggSMClientMode. See egg_sm_client_set_mode() - * for details. - * - * Return value: the global #EggSMClientMode - **/ -EggSMClientMode -egg_sm_client_get_mode (void) -{ - return global_client_mode; -} - -/** - * egg_sm_client_get: - * - * Returns the master #EggSMClient for the application. - * - * On platforms that support saved sessions (ie, POSIX/X11), the - * application will only request to be restarted by the session - * manager if you call egg_set_desktop_file() to set an application - * desktop file. In particular, if the desktop file contains the key - * "X - * - * Return value: the master #EggSMClient. - **/ -EggSMClient * -egg_sm_client_get (void) -{ - if (!global_client) - { - if (!sm_client_disable) - { - /* If both D-Bus and XSMP are compiled in, try XSMP first - * (since it supports state saving) and fall back to D-Bus - * if XSMP isn't available. - */ -#ifdef EGG_SM_CLIENT_BACKEND_XSMP - global_client = egg_sm_client_xsmp_new (); -#endif -#ifdef EGG_SM_CLIENT_BACKEND_DBUS - if (!global_client) - global_client = egg_sm_client_dbus_new (); -#endif - } - - /* Fallback: create a dummy client, so that callers don't have - * to worry about a %NULL return value. - */ - if (!global_client) - global_client = g_object_new (EGG_TYPE_SM_CLIENT, NULL); - /*FIXME - Disabling when root/not in MATE in GtkApplication builds - as egg_sm_client_set_mode must be called prior to start of main loop - to stop caja restart but this is diffcult in GtkApplication */ - - if (geteuid () == 0 || !running_in_mate ()){ - global_client = g_object_new (EGG_TYPE_SM_CLIENT, NULL); - } - } - - return global_client; -} - -/** - * egg_sm_client_is_resumed: - * @client: the client - * - * Checks whether or not the current session has been resumed from - * a previous saved session. If so, the application should call - * egg_sm_client_get_state_file() and restore its state from the - * returned #GKeyFile. - * - * Return value: %TRUE if the session has been resumed - **/ -gboolean -egg_sm_client_is_resumed (EggSMClient *client) -{ - g_return_val_if_fail (client == global_client, FALSE); - - return sm_client_state_file != NULL; -} - -/** - * egg_sm_client_get_state_file: - * @client: the client - * - * If the application was resumed by the session manager, this will - * return the #GKeyFile containing its state from the previous - * session. - * - * Note that other libraries and #EggSMClient itself may also store - * state in the key file, so if you call egg_sm_client_get_groups(), - * on it, the return value will likely include groups that you did not - * put there yourself. (It is also not guaranteed that the first - * group created by the application will still be the "start group" - * when it is resumed.) - * - * Return value: the #GKeyFile containing the application's earlier - * state, or %NULL on error. You should not free this key file; it - * is owned by @client. - **/ -GKeyFile * -egg_sm_client_get_state_file (EggSMClient *client) -{ - EggSMClientPrivate *priv = egg_sm_client_get_instance_private (client); - char *state_file_path; - GError *err = NULL; - - g_return_val_if_fail (client == global_client, NULL); - - if (!sm_client_state_file) - return NULL; - if (priv->state_file) - return priv->state_file; - - if (!strncmp (sm_client_state_file, "file://", 7)) - state_file_path = g_filename_from_uri (sm_client_state_file, NULL, NULL); - else - state_file_path = g_strdup (sm_client_state_file); - - priv->state_file = g_key_file_new (); - if (!g_key_file_load_from_file (priv->state_file, state_file_path, 0, &err)) - { - g_warning ("Could not load SM state file '%s': %s", - sm_client_state_file, err->message); - g_clear_error (&err); - g_key_file_free (priv->state_file); - priv->state_file = NULL; - } - - g_free (state_file_path); - return priv->state_file; -} - -/** - * egg_sm_client_set_restart_command: - * @client: the client - * @argc: the length of @argv - * @argv: argument vector - * - * Sets the command used to restart @client if it does not have a - * .desktop file that can be used to find its restart command. - * - * This can also be used when handling the ::save_state signal, to - * save the current state via an updated command line. (Eg, providing - * a list of filenames to open when the application is resumed.) - **/ -void -egg_sm_client_set_restart_command (EggSMClient *client, - int argc, - const char **argv) -{ - g_return_if_fail (EGG_IS_SM_CLIENT (client)); - - if (EGG_SM_CLIENT_GET_CLASS (client)->set_restart_command) - EGG_SM_CLIENT_GET_CLASS (client)->set_restart_command (client, argc, argv); -} - -/** - * egg_sm_client_set_discard_command: - * @client: the client - * @argc: the length of @argv - * @argv: argument vector - * - * Sets the command used to discard a custom state file if using - * egg_sm_client_set_restart_command(), which must be called before - * using this function. - **/ -void -egg_sm_client_set_discard_command (EggSMClient *client, - int argc, - const char **argv) -{ - g_return_if_fail (EGG_IS_SM_CLIENT (client)); - - if (EGG_SM_CLIENT_GET_CLASS (client)->set_discard_command) - EGG_SM_CLIENT_GET_CLASS (client)->set_discard_command (client, argc, argv); -} - -/** - * egg_sm_client_will_quit: - * @client: the client - * @will_quit: whether or not the application is willing to quit - * - * This MUST be called in response to the ::quit_requested signal, to - * indicate whether or not the application is willing to quit. The - * application may call it either directly from the signal handler, or - * at some later point (eg, after asynchronously interacting with the - * user). - * - * If the application does not connect to ::quit_requested, - * #EggSMClient will call this method on its behalf (passing %TRUE - * for @will_quit). - * - * After calling this method, the application should wait to receive - * either ::quit_cancelled or ::quit. - **/ -void -egg_sm_client_will_quit (EggSMClient *client, - gboolean will_quit) -{ - g_return_if_fail (EGG_IS_SM_CLIENT (client)); - - if (EGG_SM_CLIENT_GET_CLASS (client)->will_quit) - EGG_SM_CLIENT_GET_CLASS (client)->will_quit (client, will_quit); -} - -/** - * egg_sm_client_end_session: - * @style: a hint at how to end the session - * @request_confirmation: whether or not the user should get a chance - * to confirm the action - * - * Requests that the session manager end the current session. @style - * indicates how the session should be ended, and - * @request_confirmation indicates whether or not the user should be - * given a chance to confirm the logout/reboot/shutdown. Both of these - * flags are merely hints though; the session manager may choose to - * ignore them. - * - * Return value: %TRUE if the request was sent; %FALSE if it could not - * be (eg, because it could not connect to the session manager). - **/ -gboolean -egg_sm_client_end_session (EggSMClientEndStyle style, - gboolean request_confirmation) -{ - EggSMClient *client = egg_sm_client_get (); - - g_return_val_if_fail (EGG_IS_SM_CLIENT (client), FALSE); - - if (EGG_SM_CLIENT_GET_CLASS (client)->end_session) - { - return EGG_SM_CLIENT_GET_CLASS (client)->end_session (client, style, - request_confirmation); - } - else - return FALSE; -} - -/* Signal-emitting callbacks from platform-specific code */ - -GKeyFile * -egg_sm_client_save_state (EggSMClient *client) -{ - GKeyFile *state_file; - char *group; - - g_return_val_if_fail (client == global_client, NULL); - - state_file = g_key_file_new (); - - g_debug ("Emitting save_state"); - g_signal_emit (client, signals[SAVE_STATE], 0, state_file); - g_debug ("Done emitting save_state"); - - group = g_key_file_get_start_group (state_file); - if (group) - { - g_free (group); - return state_file; - } - else - { - g_key_file_free (state_file); - return NULL; - } -} - -void -egg_sm_client_quit_requested (EggSMClient *client) -{ - g_return_if_fail (client == global_client); - - if (!g_signal_has_handler_pending (client, signals[QUIT_REQUESTED], 0, FALSE)) - { - g_debug ("Not emitting quit_requested because no one is listening"); - egg_sm_client_will_quit (client, TRUE); - return; - } - - g_debug ("Emitting quit_requested"); - g_signal_emit (client, signals[QUIT_REQUESTED], 0); - g_debug ("Done emitting quit_requested"); -} - -void -egg_sm_client_quit_cancelled (EggSMClient *client) -{ - g_return_if_fail (client == global_client); - - g_debug ("Emitting quit_cancelled"); - g_signal_emit (client, signals[QUIT_CANCELLED], 0); - g_debug ("Done emitting quit_cancelled"); -} - -void -egg_sm_client_quit (EggSMClient *client) -{ - g_return_if_fail (client == global_client); - - g_debug ("Emitting quit"); - g_signal_emit (client, signals[QUIT], 0); - g_debug ("Done emitting quit"); - - /* FIXME: should we just call gtk_main_quit() here? */ -} - -static void -egg_sm_client_debug_handler (const char *log_domain, - GLogLevelFlags log_level, - const char *message, - gpointer user_data) -{ - static int debug = -1; - - if (debug < 0) - debug = (g_getenv ("EGG_SM_CLIENT_DEBUG") != NULL); - - if (debug) - g_log_default_handler (log_domain, log_level, message, NULL); -} diff -Nru mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/eggsmclient.h mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/eggsmclient.h --- mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/eggsmclient.h 2021-08-05 19:43:42.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/eggsmclient.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,108 +0,0 @@ -/* eggsmclient.h - * Copyright (C) 2007 Novell, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, - * Boston, MA 02110-1301, USA. - */ - -#ifndef __EGG_SM_CLIENT_H__ -#define __EGG_SM_CLIENT_H__ - -#include - -G_BEGIN_DECLS - -#define EGG_TYPE_SM_CLIENT (egg_sm_client_get_type ()) -G_DECLARE_DERIVABLE_TYPE (EggSMClient, egg_sm_client, EGG, SM_CLIENT, GObject) - -typedef enum -{ - EGG_SM_CLIENT_END_SESSION_DEFAULT, - EGG_SM_CLIENT_LOGOUT, - EGG_SM_CLIENT_REBOOT, - EGG_SM_CLIENT_SHUTDOWN -} EggSMClientEndStyle; - -typedef enum -{ - EGG_SM_CLIENT_MODE_DISABLED, - EGG_SM_CLIENT_MODE_NO_RESTART, - EGG_SM_CLIENT_MODE_NORMAL -} EggSMClientMode; - -struct _EggSMClientClass -{ - GObjectClass parent_class; - - /* signals */ - void (*save_state) (EggSMClient *client, - GKeyFile *state_file); - - void (*quit_requested) (EggSMClient *client); - void (*quit_cancelled) (EggSMClient *client); - void (*quit) (EggSMClient *client); - - /* virtual methods */ - void (*startup) (EggSMClient *client, - const char *client_id); - void (*set_restart_command) (EggSMClient *client, - int argc, - const char **argv); - void (*set_discard_command) (EggSMClient *client, - int argc, - const char **argv); - void (*will_quit) (EggSMClient *client, - gboolean will_quit); - gboolean (*end_session) (EggSMClient *client, - EggSMClientEndStyle style, - gboolean request_confirmation); - - /* Padding for future expansion */ - void (*_egg_reserved1) (void); - void (*_egg_reserved2) (void); - void (*_egg_reserved3) (void); - void (*_egg_reserved4) (void); -}; - -GOptionGroup *egg_sm_client_get_option_group (void); - -/* Initialization */ -void egg_sm_client_set_mode (EggSMClientMode mode); -EggSMClientMode egg_sm_client_get_mode (void); -EggSMClient *egg_sm_client_get (void); - -/* Resuming a saved session */ -gboolean egg_sm_client_is_resumed (EggSMClient *client); -GKeyFile *egg_sm_client_get_state_file (EggSMClient *client); - -/* Alternate means of saving state */ -void egg_sm_client_set_restart_command (EggSMClient *client, - int argc, - const char **argv); -void egg_sm_client_set_discard_command (EggSMClient *client, - int argc, - const char **argv); - -/* Handling "quit_requested" signal */ -void egg_sm_client_will_quit (EggSMClient *client, - gboolean will_quit); - -/* Initiate a logout/reboot/shutdown */ -gboolean egg_sm_client_end_session (EggSMClientEndStyle style, - gboolean request_confirmation); - -G_END_DECLS - -#endif /* __EGG_SM_CLIENT_H__ */ diff -Nru mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/eggsmclient-private.h mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/eggsmclient-private.h --- mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/eggsmclient-private.h 2021-08-05 19:43:42.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/eggsmclient-private.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -/* eggsmclient-private.h - * Copyright (C) 2007 Novell, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, - * Boston, MA 02110-1301, USA. - */ - -#ifndef __EGG_SM_CLIENT_PRIVATE_H__ -#define __EGG_SM_CLIENT_PRIVATE_H__ - -#include - -#include "eggsmclient.h" - -G_BEGIN_DECLS - -GKeyFile *egg_sm_client_save_state (EggSMClient *client); -void egg_sm_client_quit_requested (EggSMClient *client); -void egg_sm_client_quit_cancelled (EggSMClient *client); -void egg_sm_client_quit (EggSMClient *client); - -#ifdef EGG_SM_CLIENT_BACKEND_XSMP - GType egg_sm_client_xsmp_get_type (void); - EggSMClient *egg_sm_client_xsmp_new (void); -#endif -#ifdef EGG_SM_CLIENT_BACKEND_DBUS - GType egg_sm_client_dbus_get_type (void); - EggSMClient *egg_sm_client_dbus_new (void); -#endif - -G_END_DECLS - -#endif /* __EGG_SM_CLIENT_PRIVATE_H__ */ diff -Nru mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/eggsmclient-xsmp.c mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/eggsmclient-xsmp.c --- mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/eggsmclient-xsmp.c 2021-08-05 19:43:42.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/eggsmclient-xsmp.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,1409 +0,0 @@ -/* - * Copyright (C) 2007 Novell, Inc. - * - * Inspired by various other pieces of code including GsmClient (C) - * 2001 Havoc Pennington, MateClient (C) 1998 Carsten Schaar, and twm - * session code (C) 1998 The Open Group. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library 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 - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, - * Boston, MA 02110-1301, USA. - */ - -#include "config.h" - -#include "eggsmclient.h" -#include "eggsmclient-private.h" - -#include "eggdesktopfile.h" - -#include -#include -#include -#include -#include -#include - -#include -#include - -#if defined(GDK_WINDOWING_X11) || defined(HAVE_X11) -#include -#endif - -#define EGG_TYPE_SM_CLIENT_XSMP (egg_sm_client_xsmp_get_type ()) -#define EGG_SM_CLIENT_XSMP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EGG_TYPE_SM_CLIENT_XSMP, EggSMClientXSMP)) -#define EGG_SM_CLIENT_XSMP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EGG_TYPE_SM_CLIENT_XSMP, EggSMClientXSMPClass)) -#define EGG_IS_SM_CLIENT_XSMP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EGG_TYPE_SM_CLIENT_XSMP)) -#define EGG_IS_SM_CLIENT_XSMP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), EGG_TYPE_SM_CLIENT_XSMP)) -#define EGG_SM_CLIENT_XSMP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EGG_TYPE_SM_CLIENT_XSMP, EggSMClientXSMPClass)) - -typedef struct _EggSMClientXSMP EggSMClientXSMP; -typedef struct _EggSMClientXSMPClass EggSMClientXSMPClass; - -/* These mostly correspond to the similarly-named states in section - * 9.1 of the XSMP spec. Some of the states there aren't represented - * here, because we don't need them. SHUTDOWN_CANCELLED is slightly - * different from the spec; we use it when the client is IDLE after a - * ShutdownCancelled message, but the application is still interacting - * and doesn't know the shutdown has been cancelled yet. - */ -typedef enum -{ - XSMP_STATE_IDLE, - XSMP_STATE_SAVE_YOURSELF, - XSMP_STATE_INTERACT_REQUEST, - XSMP_STATE_INTERACT, - XSMP_STATE_SAVE_YOURSELF_DONE, - XSMP_STATE_SHUTDOWN_CANCELLED, - XSMP_STATE_CONNECTION_CLOSED -} EggSMClientXSMPState; - -static const char *state_names[] = -{ - "idle", - "save-yourself", - "interact-request", - "interact", - "save-yourself-done", - "shutdown-cancelled", - "connection-closed" -}; - -#define EGG_SM_CLIENT_XSMP_STATE(xsmp) (state_names[(xsmp)->state]) - -struct _EggSMClientXSMP -{ - EggSMClient parent; - - SmcConn connection; - char *client_id; - - EggSMClientXSMPState state; - char **restart_command; - gboolean set_restart_command; - int restart_style; - char **discard_command; - gboolean set_discard_command; - - guint idle; - - /* Current SaveYourself state */ - guint expecting_initial_save_yourself : 1; - guint need_save_state : 1; - guint need_quit_requested : 1; - guint interact_errors : 1; - guint shutting_down : 1; - - /* Todo list */ - guint waiting_to_set_initial_properties : 1; - guint waiting_to_emit_quit : 1; - guint waiting_to_emit_quit_cancelled : 1; - guint waiting_to_save_myself : 1; - -}; - -struct _EggSMClientXSMPClass -{ - EggSMClientClass parent_class; - -}; - -static void sm_client_xsmp_startup (EggSMClient *client, - const char *client_id); -static void sm_client_xsmp_set_restart_command (EggSMClient *client, - int argc, - const char **argv); -static void sm_client_xsmp_set_discard_command (EggSMClient *client, - int argc, - const char **argv); -static void sm_client_xsmp_will_quit (EggSMClient *client, - gboolean will_quit); -static gboolean sm_client_xsmp_end_session (EggSMClient *client, - EggSMClientEndStyle style, - gboolean request_confirmation); - -static void xsmp_save_yourself (SmcConn smc_conn, - SmPointer client_data, - int save_style, - Bool shutdown, - int interact_style, - Bool fast); -static void xsmp_die (SmcConn smc_conn, - SmPointer client_data); -static void xsmp_save_complete (SmcConn smc_conn, - SmPointer client_data); -static void xsmp_shutdown_cancelled (SmcConn smc_conn, - SmPointer client_data); -static void xsmp_interact (SmcConn smc_conn, - SmPointer client_data); - -static SmProp *array_prop (const char *name, - ...); -static SmProp *ptrarray_prop (const char *name, - GPtrArray *values); -static SmProp *string_prop (const char *name, - const char *value); -static SmProp *card8_prop (const char *name, - unsigned char value); - -static void set_properties (EggSMClientXSMP *xsmp, ...); -static void delete_properties (EggSMClientXSMP *xsmp, ...); - -static GPtrArray *generate_command (char **restart_command, - const char *client_id, - const char *state_file); - -static void save_state (EggSMClientXSMP *xsmp); -static void do_save_yourself (EggSMClientXSMP *xsmp); -static void update_pending_events (EggSMClientXSMP *xsmp); - -static void ice_init (void); -static gboolean process_ice_messages (IceConn ice_conn); -static void smc_error_handler (SmcConn smc_conn, - Bool swap, - int offending_minor_opcode, - unsigned long offending_sequence, - int error_class, - int severity, - SmPointer values); - -G_DEFINE_TYPE (EggSMClientXSMP, egg_sm_client_xsmp, EGG_TYPE_SM_CLIENT) - -static void -egg_sm_client_xsmp_init (EggSMClientXSMP *xsmp) -{ - xsmp->state = XSMP_STATE_CONNECTION_CLOSED; - xsmp->connection = NULL; - xsmp->restart_style = SmRestartIfRunning; -} - -static void -egg_sm_client_xsmp_class_init (EggSMClientXSMPClass *klass) -{ - EggSMClientClass *sm_client_class = EGG_SM_CLIENT_CLASS (klass); - - sm_client_class->startup = sm_client_xsmp_startup; - sm_client_class->set_restart_command = sm_client_xsmp_set_restart_command; - sm_client_class->set_discard_command = sm_client_xsmp_set_discard_command; - sm_client_class->will_quit = sm_client_xsmp_will_quit; - sm_client_class->end_session = sm_client_xsmp_end_session; -} - -EggSMClient * -egg_sm_client_xsmp_new (void) -{ - if (!g_getenv ("SESSION_MANAGER")) - return NULL; - - return g_object_new (EGG_TYPE_SM_CLIENT_XSMP, NULL); -} - -static gboolean -sm_client_xsmp_set_initial_properties (gpointer user_data) -{ - EggSMClientXSMP *xsmp = user_data; - EggDesktopFile *desktop_file; - GPtrArray *clone, *restart; - char pid_str[64]; - - if (xsmp->idle) - { - g_source_remove (xsmp->idle); - xsmp->idle = 0; - } - xsmp->waiting_to_set_initial_properties = FALSE; - - if (egg_sm_client_get_mode () == EGG_SM_CLIENT_MODE_NO_RESTART) - xsmp->restart_style = SmRestartNever; - - /* Parse info out of desktop file */ - desktop_file = egg_get_desktop_file (); - if (desktop_file) - { - GError *err = NULL; - char **argv; - int argc; - - if (xsmp->restart_style == SmRestartIfRunning) - { - if (egg_desktop_file_get_boolean (desktop_file, - "X-MATE-AutoRestart", NULL)) - xsmp->restart_style = SmRestartImmediately; - } - - if (!xsmp->set_restart_command) - { - char *cmdline; - - cmdline = egg_desktop_file_parse_exec (desktop_file, NULL, &err); - if (cmdline && g_shell_parse_argv (cmdline, &argc, &argv, &err)) - { - egg_sm_client_set_restart_command (EGG_SM_CLIENT (xsmp), - argc, (const char **)argv); - g_strfreev (argv); - } - else - { - g_warning ("Could not parse Exec line in desktop file: %s", - err->message); - g_error_free (err); - } - g_free (cmdline); - } - } - - if (!xsmp->set_restart_command) - xsmp->restart_command = g_strsplit (g_get_prgname (), " ", -1); - - clone = generate_command (xsmp->restart_command, NULL, NULL); - restart = generate_command (xsmp->restart_command, xsmp->client_id, NULL); - - g_debug ("Setting initial properties"); - - /* Program, CloneCommand, RestartCommand, and UserID are required. - * ProcessID isn't required, but the SM may be able to do something - * useful with it. - */ - g_snprintf (pid_str, sizeof (pid_str), "%lu", (gulong) getpid ()); - set_properties (xsmp, - string_prop (SmProgram, g_get_prgname ()), - ptrarray_prop (SmCloneCommand, clone), - ptrarray_prop (SmRestartCommand, restart), - string_prop (SmUserID, g_get_user_name ()), - string_prop (SmProcessID, pid_str), - card8_prop (SmRestartStyleHint, xsmp->restart_style), - NULL); - g_ptr_array_free (clone, TRUE); - g_ptr_array_free (restart, TRUE); - - if (desktop_file) - { - set_properties (xsmp, - string_prop ("_GSM_DesktopFile", egg_desktop_file_get_source (desktop_file)), - NULL); - } - - update_pending_events (xsmp); - return FALSE; -} - -/* This gets called from two different places: xsmp_die() (when the - * server asks us to disconnect) and process_ice_messages() (when the - * server disconnects unexpectedly). - */ -static void -sm_client_xsmp_disconnect (EggSMClientXSMP *xsmp) -{ - SmcConn connection; - - if (!xsmp->connection) - return; - - g_debug ("Disconnecting"); - - connection = xsmp->connection; - xsmp->connection = NULL; - SmcCloseConnection (connection, 0, NULL); - xsmp->state = XSMP_STATE_CONNECTION_CLOSED; - - xsmp->waiting_to_save_myself = FALSE; - update_pending_events (xsmp); -} - -static void -sm_client_xsmp_startup (EggSMClient *client, - const char *client_id) -{ - EggSMClientXSMP *xsmp = (EggSMClientXSMP *)client; - SmcCallbacks callbacks; - char *ret_client_id; - char error_string_ret[256]; - - xsmp->client_id = g_strdup (client_id); - - ice_init (); - SmcSetErrorHandler (smc_error_handler); - - callbacks.save_yourself.callback = xsmp_save_yourself; - callbacks.die.callback = xsmp_die; - callbacks.save_complete.callback = xsmp_save_complete; - callbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled; - - callbacks.save_yourself.client_data = xsmp; - callbacks.die.client_data = xsmp; - callbacks.save_complete.client_data = xsmp; - callbacks.shutdown_cancelled.client_data = xsmp; - - client_id = NULL; - error_string_ret[0] = '\0'; - xsmp->connection = - SmcOpenConnection (NULL, xsmp, SmProtoMajor, SmProtoMinor, - SmcSaveYourselfProcMask | SmcDieProcMask | - SmcSaveCompleteProcMask | - SmcShutdownCancelledProcMask, - &callbacks, - xsmp->client_id, &ret_client_id, - sizeof (error_string_ret), error_string_ret); - - if (!xsmp->connection) - { - g_warning ("Failed to connect to the session manager: %s\n", - error_string_ret[0] ? - error_string_ret : "no error message given"); - xsmp->state = XSMP_STATE_CONNECTION_CLOSED; - return; - } - - /* We expect a pointless initial SaveYourself if either (a) we - * didn't have an initial client ID, or (b) we DID have an initial - * client ID, but the server rejected it and gave us a new one. - */ - if (!xsmp->client_id || - (ret_client_id && strcmp (xsmp->client_id, ret_client_id) != 0)) - xsmp->expecting_initial_save_yourself = TRUE; - - if (ret_client_id) - { - g_free (xsmp->client_id); - xsmp->client_id = g_strdup (ret_client_id); - free (ret_client_id); - -#if defined(GDK_WINDOWING_X11) || defined(HAVE_X11) - if (GDK_IS_X11_DISPLAY (gdk_display_get_default ())) - gdk_x11_set_sm_client_id (xsmp->client_id); -#endif - - g_debug ("Got client ID \"%s\"", xsmp->client_id); - } - - xsmp->state = XSMP_STATE_IDLE; - - /* Do not set the initial properties until we reach the main loop, - * so that the application has a chance to call - * egg_set_desktop_file(). (This may also help the session manager - * have a better idea of when the application is fully up and - * running.) - */ - xsmp->waiting_to_set_initial_properties = TRUE; - xsmp->idle = g_idle_add (sm_client_xsmp_set_initial_properties, client); -} - -static void -sm_client_xsmp_set_restart_command (EggSMClient *client, - int argc, - const char **argv) -{ - EggSMClientXSMP *xsmp = (EggSMClientXSMP *)client; - int i; - - g_strfreev (xsmp->restart_command); - - xsmp->restart_command = g_new (char *, argc + 1); - for (i = 0; i < argc; i++) - xsmp->restart_command[i] = g_strdup (argv[i]); - xsmp->restart_command[i] = NULL; - - xsmp->set_restart_command = TRUE; -} - -static void -sm_client_xsmp_set_discard_command (EggSMClient *client, - int argc, - const char **argv) -{ - EggSMClientXSMP *xsmp = (EggSMClientXSMP *)client; - int i; - - g_strfreev (xsmp->discard_command); - - xsmp->discard_command = g_new (char *, argc + 1); - for (i = 0; i < argc; i++) - xsmp->discard_command[i] = g_strdup (argv[i]); - xsmp->discard_command[i] = NULL; - - xsmp->set_discard_command = TRUE; -} - -static void -sm_client_xsmp_will_quit (EggSMClient *client, - gboolean will_quit) -{ - EggSMClientXSMP *xsmp = (EggSMClientXSMP *)client; - - if (xsmp->state == XSMP_STATE_CONNECTION_CLOSED) - { - /* The session manager has already exited! Schedule a quit - * signal. - */ - xsmp->waiting_to_emit_quit = TRUE; - update_pending_events (xsmp); - return; - } - else if (xsmp->state == XSMP_STATE_SHUTDOWN_CANCELLED) - { - /* We received a ShutdownCancelled message while the application - * was interacting; Schedule a quit_cancelled signal. - */ - xsmp->waiting_to_emit_quit_cancelled = TRUE; - update_pending_events (xsmp); - return; - } - - g_return_if_fail (xsmp->state == XSMP_STATE_INTERACT); - - g_debug ("Sending InteractDone(%s)", will_quit ? "False" : "True"); - SmcInteractDone (xsmp->connection, !will_quit); - - if (will_quit && xsmp->need_save_state) - save_state (xsmp); - - g_debug ("Sending SaveYourselfDone(%s)", will_quit ? "True" : "False"); - SmcSaveYourselfDone (xsmp->connection, will_quit); - xsmp->state = XSMP_STATE_SAVE_YOURSELF_DONE; -} - -static gboolean -sm_client_xsmp_end_session (EggSMClient *client, - EggSMClientEndStyle style, - gboolean request_confirmation) -{ - EggSMClientXSMP *xsmp = (EggSMClientXSMP *)client; - int save_type; - - /* To end the session via XSMP, we have to send a - * SaveYourselfRequest. We aren't allowed to do that if anything - * else is going on, but we don't want to expose this fact to the - * application. So we do our best to patch things up here... - * - * In the worst case, this method might block for some length of - * time in process_ice_messages, but the only time that code path is - * honestly likely to get hit is if the application tries to end the - * session as the very first thing it does, in which case it - * probably won't actually block anyway. It's not worth gunking up - * the API to try to deal nicely with the other 0.01% of cases where - * this happens. - */ - - while (xsmp->state != XSMP_STATE_IDLE || - xsmp->expecting_initial_save_yourself) - { - /* If we're already shutting down, we don't need to do anything. */ - if (xsmp->shutting_down) - return TRUE; - - switch (xsmp->state) - { - case XSMP_STATE_CONNECTION_CLOSED: - return FALSE; - - case XSMP_STATE_SAVE_YOURSELF: - /* Trying to log out from the save_state callback? Whatever. - * Abort the save_state. - */ - SmcSaveYourselfDone (xsmp->connection, FALSE); - xsmp->state = XSMP_STATE_SAVE_YOURSELF_DONE; - break; - - case XSMP_STATE_INTERACT_REQUEST: - case XSMP_STATE_INTERACT: - case XSMP_STATE_SHUTDOWN_CANCELLED: - /* Already in a shutdown-related state, just ignore - * the new shutdown request... - */ - return TRUE; - - case XSMP_STATE_IDLE: - if (xsmp->waiting_to_set_initial_properties) - sm_client_xsmp_set_initial_properties (xsmp); - - if (!xsmp->expecting_initial_save_yourself) - break; - /* else fall through */ - - case XSMP_STATE_SAVE_YOURSELF_DONE: - /* We need to wait for some response from the server.*/ - process_ice_messages (SmcGetIceConnection (xsmp->connection)); - break; - - default: - /* Hm... shouldn't happen */ - return FALSE; - } - } - - /* xfce4-session will do the wrong thing if we pass SmSaveGlobal and - * the user chooses to save the session. But mate-session will do - * the wrong thing if we pass SmSaveBoth and the user chooses NOT to - * save the session... Sigh. - */ - if (!strcmp (SmcVendor (xsmp->connection), "xfce4-session")) - save_type = SmSaveBoth; - else - save_type = SmSaveGlobal; - - g_debug ("Sending SaveYourselfRequest(SmSaveGlobal, Shutdown, SmInteractStyleAny, %sFast)", request_confirmation ? "!" : ""); - SmcRequestSaveYourself (xsmp->connection, - save_type, - True, /* shutdown */ - SmInteractStyleAny, - !request_confirmation, /* fast */ - True /* global */); - return TRUE; -} - -static gboolean -idle_do_pending_events (gpointer data) -{ - EggSMClientXSMP *xsmp = data; - EggSMClient *client = data; - - xsmp->idle = 0; - - if (xsmp->waiting_to_emit_quit) - { - xsmp->waiting_to_emit_quit = FALSE; - egg_sm_client_quit (client); - goto out; - } - - if (xsmp->waiting_to_emit_quit_cancelled) - { - xsmp->waiting_to_emit_quit_cancelled = FALSE; - egg_sm_client_quit_cancelled (client); - xsmp->state = XSMP_STATE_IDLE; - } - - if (xsmp->waiting_to_save_myself) - { - xsmp->waiting_to_save_myself = FALSE; - do_save_yourself (xsmp); - } - -out: - return FALSE; -} - -static void -update_pending_events (EggSMClientXSMP *xsmp) -{ - gboolean want_idle = - xsmp->waiting_to_emit_quit || - xsmp->waiting_to_emit_quit_cancelled || - xsmp->waiting_to_save_myself; - - if (want_idle) - { - if (xsmp->idle == 0) - xsmp->idle = g_idle_add (idle_do_pending_events, xsmp); - } - else - { - if (xsmp->idle != 0) - g_source_remove (xsmp->idle); - xsmp->idle = 0; - } -} - -static void -fix_broken_state (EggSMClientXSMP *xsmp, const char *message, - gboolean send_interact_done, - gboolean send_save_yourself_done) -{ - g_warning ("Received XSMP %s message in state %s: client or server error", - message, EGG_SM_CLIENT_XSMP_STATE (xsmp)); - - /* Forget any pending SaveYourself plans we had */ - xsmp->waiting_to_save_myself = FALSE; - update_pending_events (xsmp); - - if (send_interact_done) - SmcInteractDone (xsmp->connection, False); - if (send_save_yourself_done) - SmcSaveYourselfDone (xsmp->connection, True); - - xsmp->state = send_save_yourself_done ? XSMP_STATE_SAVE_YOURSELF_DONE : XSMP_STATE_IDLE; -} - -/* SM callbacks */ - -static void -xsmp_save_yourself (SmcConn smc_conn, - SmPointer client_data, - int save_type, - Bool shutdown, - int interact_style, - Bool fast) -{ - EggSMClientXSMP *xsmp = client_data; - gboolean wants_quit_requested; - - g_debug ("Received SaveYourself(%s, %s, %s, %s) in state %s", - save_type == SmSaveLocal ? "SmSaveLocal" : - save_type == SmSaveGlobal ? "SmSaveGlobal" : "SmSaveBoth", - shutdown ? "Shutdown" : "!Shutdown", - interact_style == SmInteractStyleAny ? "SmInteractStyleAny" : - interact_style == SmInteractStyleErrors ? "SmInteractStyleErrors" : - "SmInteractStyleNone", fast ? "Fast" : "!Fast", - EGG_SM_CLIENT_XSMP_STATE (xsmp)); - - if (xsmp->state != XSMP_STATE_IDLE && - xsmp->state != XSMP_STATE_SHUTDOWN_CANCELLED) - { - fix_broken_state (xsmp, "SaveYourself", FALSE, TRUE); - return; - } - - if (xsmp->waiting_to_set_initial_properties) - sm_client_xsmp_set_initial_properties (xsmp); - - /* If this is the initial SaveYourself, ignore it; we've already set - * properties and there's no reason to actually save state too. - */ - if (xsmp->expecting_initial_save_yourself) - { - xsmp->expecting_initial_save_yourself = FALSE; - - if (save_type == SmSaveLocal && - interact_style == SmInteractStyleNone && - !shutdown && !fast) - { - g_debug ("Sending SaveYourselfDone(True) for initial SaveYourself"); - SmcSaveYourselfDone (xsmp->connection, True); - /* As explained in the comment at the end of - * do_save_yourself(), SAVE_YOURSELF_DONE is the correct - * state here, not IDLE. - */ - xsmp->state = XSMP_STATE_SAVE_YOURSELF_DONE; - return; - } - else - g_warning ("First SaveYourself was not the expected one!"); - } - - /* Even ignoring the "fast" flag completely, there are still 18 - * different combinations of save_type, shutdown and interact_style. - * We interpret them as follows: - * - * Type Shutdown Interact Interpretation - * G F A/E/N do nothing (1) - * G T N do nothing (1)* - * G T A/E quit_requested (2) - * L/B F A/E/N save_state (3) - * L/B T N save_state (3)* - * L/B T A/E quit_requested, then save_state (4) - * - * 1. Do nothing, because the SM asked us to do something - * uninteresting (save open files, but then don't quit - * afterward) or rude (save open files without asking the user - * for confirmation). - * - * 2. Request interaction and then emit ::quit_requested. This - * perhaps isn't quite correct for the SmInteractStyleErrors - * case, but we don't care. - * - * 3. Emit ::save_state. The SmSaveBoth SaveYourselfs in these - * rows essentially get demoted to SmSaveLocal, because their - * Global halves correspond to "do nothing". - * - * 4. Request interaction, emit ::quit_requested, and then emit - * ::save_state after interacting. This is the SmSaveBoth - * equivalent of #2, but we also promote SmSaveLocal shutdown - * SaveYourselfs to SmSaveBoth here, because we want to give - * the user a chance to save open files before quitting. - * - * (* It would be nice if we could do something useful when the - * session manager sends a SaveYourself with shutdown True and - * SmInteractStyleNone. But we can't, so we just pretend it didn't - * even tell us it was shutting down. The docs for ::quit mention - * that it might not always be preceded by ::quit_requested.) - */ - - /* As an optimization, we don't actually request interaction and - * emit ::quit_requested if the application isn't listening to the - * signal. - */ - wants_quit_requested = g_signal_has_handler_pending (xsmp, g_signal_lookup ("quit_requested", EGG_TYPE_SM_CLIENT), 0, FALSE); - - xsmp->need_save_state = (save_type != SmSaveGlobal); - xsmp->need_quit_requested = (shutdown && wants_quit_requested && - interact_style != SmInteractStyleNone); - xsmp->interact_errors = (interact_style == SmInteractStyleErrors); - - xsmp->shutting_down = shutdown; - - do_save_yourself (xsmp); -} - -static void -do_save_yourself (EggSMClientXSMP *xsmp) -{ - if (xsmp->state == XSMP_STATE_SHUTDOWN_CANCELLED) - { - /* The SM cancelled a previous SaveYourself, but we haven't yet - * had a chance to tell the application, so we can't start - * processing this SaveYourself yet. - */ - xsmp->waiting_to_save_myself = TRUE; - update_pending_events (xsmp); - return; - } - - if (xsmp->need_quit_requested) - { - xsmp->state = XSMP_STATE_INTERACT_REQUEST; - - g_debug ("Sending InteractRequest(%s)", - xsmp->interact_errors ? "Error" : "Normal"); - SmcInteractRequest (xsmp->connection, - xsmp->interact_errors ? SmDialogError : SmDialogNormal, - xsmp_interact, - xsmp); - return; - } - - if (xsmp->need_save_state) - { - save_state (xsmp); - - /* Though unlikely, the client could have been disconnected - * while the application was saving its state. - */ - if (!xsmp->connection) - return; - } - - g_debug ("Sending SaveYourselfDone(True)"); - SmcSaveYourselfDone (xsmp->connection, True); - - /* The client state diagram in the XSMP spec says that after a - * non-shutdown SaveYourself, we go directly back to "idle". But - * everything else in both the XSMP spec and the libSM docs - * disagrees. - */ - xsmp->state = XSMP_STATE_SAVE_YOURSELF_DONE; -} - -static void -save_state (EggSMClientXSMP *xsmp) -{ - GKeyFile *state_file; - char *state_file_path, *data; - EggDesktopFile *desktop_file; - GPtrArray *restart, *discard; - int offset, fd; - - /* We set xsmp->state before emitting save_state, but our caller is - * responsible for setting it back afterward. - */ - xsmp->state = XSMP_STATE_SAVE_YOURSELF; - - state_file = egg_sm_client_save_state ((EggSMClient *)xsmp); - if (!state_file) - { - restart = generate_command (xsmp->restart_command, xsmp->client_id, NULL); - set_properties (xsmp, - ptrarray_prop (SmRestartCommand, restart), - NULL); - g_ptr_array_free (restart, TRUE); - - if (xsmp->set_discard_command) - { - discard = generate_command (xsmp->discard_command, NULL, NULL); - set_properties (xsmp, - ptrarray_prop (SmDiscardCommand, discard), - NULL); - g_ptr_array_free (discard, TRUE); - } - else - delete_properties (xsmp, SmDiscardCommand, NULL); - - return; - } - - desktop_file = egg_get_desktop_file (); - if (desktop_file) - { - GKeyFile *merged_file; - char *desktop_file_path; - - merged_file = g_key_file_new (); - desktop_file_path = - g_filename_from_uri (egg_desktop_file_get_source (desktop_file), - NULL, NULL); - if (desktop_file_path && - g_key_file_load_from_file (merged_file, desktop_file_path, - G_KEY_FILE_KEEP_COMMENTS | - G_KEY_FILE_KEEP_TRANSLATIONS, NULL)) - { - guint g, k, i; - char **groups, **keys, *value, *exec; - - groups = g_key_file_get_groups (state_file, NULL); - for (g = 0; groups[g]; g++) - { - keys = g_key_file_get_keys (state_file, groups[g], NULL, NULL); - for (k = 0; keys[k]; k++) - { - value = g_key_file_get_value (state_file, groups[g], - keys[k], NULL); - if (value) - { - g_key_file_set_value (merged_file, groups[g], - keys[k], value); - g_free (value); - } - } - g_strfreev (keys); - } - g_strfreev (groups); - - g_key_file_free (state_file); - state_file = merged_file; - - /* Update Exec key using "--sm-client-state-file %k" */ - restart = generate_command (xsmp->restart_command, - NULL, "%k"); - for (i = 0; i < restart->len; i++) - restart->pdata[i] = g_shell_quote (restart->pdata[i]); - g_ptr_array_add (restart, NULL); - exec = g_strjoinv (" ", (char **)restart->pdata); - g_strfreev ((char **)restart->pdata); - g_ptr_array_free (restart, FALSE); - - g_key_file_set_string (state_file, EGG_DESKTOP_FILE_GROUP, - EGG_DESKTOP_FILE_KEY_EXEC, - exec); - g_free (exec); - } - else - desktop_file = NULL; - - g_free (desktop_file_path); - } - - /* Now write state_file to disk. (We can't use mktemp(), because - * that requires the filename to end with "XXXXXX", and we want - * it to end with ".desktop".) - */ - - data = g_key_file_to_data (state_file, NULL, NULL); - g_key_file_free (state_file); - - offset = 0; - while (1) - { - state_file_path = g_strdup_printf ("%s%csession-state%c%s-%ld.%s", - g_get_user_config_dir (), - G_DIR_SEPARATOR, G_DIR_SEPARATOR, - g_get_prgname (), - (long)time (NULL) + offset, - desktop_file ? "desktop" : "state"); - - fd = open (state_file_path, O_WRONLY | O_CREAT | O_EXCL, 0644); - if (fd == -1) - { - if (errno == EEXIST) - { - offset++; - g_free (state_file_path); - continue; - } - else if (errno == ENOTDIR || errno == ENOENT) - { - char *sep = strrchr (state_file_path, G_DIR_SEPARATOR); - - *sep = '\0'; - if (g_mkdir_with_parents (state_file_path, 0755) != 0) - { - g_warning ("Could not create directory '%s'", - state_file_path); - g_free (state_file_path); - state_file_path = NULL; - break; - } - - continue; - } - - g_warning ("Could not create file '%s': %s", - state_file_path, g_strerror (errno)); - g_free (state_file_path); - state_file_path = NULL; - break; - } - - close (fd); - g_file_set_contents (state_file_path, data, -1, NULL); - break; - } - g_free (data); - - restart = generate_command (xsmp->restart_command, xsmp->client_id, - state_file_path); - set_properties (xsmp, - ptrarray_prop (SmRestartCommand, restart), - NULL); - g_ptr_array_free (restart, TRUE); - - if (state_file_path) - { - set_properties (xsmp, - array_prop (SmDiscardCommand, - "/bin/rm", "-rf", state_file_path, - NULL), - NULL); - g_free (state_file_path); - } -} - -static void -xsmp_interact (SmcConn smc_conn, - SmPointer client_data) -{ - EggSMClientXSMP *xsmp = client_data; - EggSMClient *client = client_data; - - g_debug ("Received Interact message in state %s", - EGG_SM_CLIENT_XSMP_STATE (xsmp)); - - if (xsmp->state != XSMP_STATE_INTERACT_REQUEST) - { - fix_broken_state (xsmp, "Interact", TRUE, TRUE); - return; - } - - xsmp->state = XSMP_STATE_INTERACT; - egg_sm_client_quit_requested (client); -} - -static void -xsmp_die (SmcConn smc_conn, - SmPointer client_data) -{ - EggSMClientXSMP *xsmp = client_data; - EggSMClient *client = client_data; - - g_debug ("Received Die message in state %s", - EGG_SM_CLIENT_XSMP_STATE (xsmp)); - - sm_client_xsmp_disconnect (xsmp); - egg_sm_client_quit (client); -} - -static void -xsmp_save_complete (SmcConn smc_conn, - SmPointer client_data) -{ - EggSMClientXSMP *xsmp = client_data; - - g_debug ("Received SaveComplete message in state %s", - EGG_SM_CLIENT_XSMP_STATE (xsmp)); - - if (xsmp->state == XSMP_STATE_SAVE_YOURSELF_DONE) - xsmp->state = XSMP_STATE_IDLE; - else - fix_broken_state (xsmp, "SaveComplete", FALSE, FALSE); -} - -static void -xsmp_shutdown_cancelled (SmcConn smc_conn, - SmPointer client_data) -{ - EggSMClientXSMP *xsmp = client_data; - EggSMClient *client = client_data; - - g_debug ("Received ShutdownCancelled message in state %s", - EGG_SM_CLIENT_XSMP_STATE (xsmp)); - - xsmp->shutting_down = FALSE; - - if (xsmp->state == XSMP_STATE_SAVE_YOURSELF_DONE) - { - /* We've finished interacting and now the SM has agreed to - * cancel the shutdown. - */ - xsmp->state = XSMP_STATE_IDLE; - egg_sm_client_quit_cancelled (client); - } - else if (xsmp->state == XSMP_STATE_SHUTDOWN_CANCELLED) - { - /* Hm... ok, so we got a shutdown SaveYourself, which got - * cancelled, but the application was still interacting, so we - * didn't tell it yet, and then *another* SaveYourself arrived, - * which we must still be waiting to tell the app about, except - * that now that SaveYourself has been cancelled too! Dizzy yet? - */ - xsmp->waiting_to_save_myself = FALSE; - update_pending_events (xsmp); - } - else - { - g_debug ("Sending SaveYourselfDone(False)"); - SmcSaveYourselfDone (xsmp->connection, False); - - if (xsmp->state == XSMP_STATE_INTERACT) - { - /* The application is currently interacting, so we can't - * tell it about the cancellation yet; we will wait until - * after it calls egg_sm_client_will_quit(). - */ - xsmp->state = XSMP_STATE_SHUTDOWN_CANCELLED; - } - else - { - /* The shutdown was cancelled before the application got a - * chance to interact. - */ - xsmp->state = XSMP_STATE_IDLE; - } - } -} - -/* Utilities */ - -/* Create a restart/clone/Exec command based on @restart_command. - * If @client_id is non-%NULL, add "--sm-client-id @client_id". - * If @state_file is non-%NULL, add "--sm-client-state-file @state_file". - * - * None of the input strings are g_strdup()ed; the caller must keep - * them around until it is done with the returned GPtrArray, and must - * then free the array, but not its contents. - */ -static GPtrArray * -generate_command (char **restart_command, const char *client_id, - const char *state_file) -{ - GPtrArray *cmd; - int i; - - cmd = g_ptr_array_new (); - g_ptr_array_add (cmd, restart_command[0]); - - if (client_id) - { - g_ptr_array_add (cmd, (char *)"--sm-client-id"); - g_ptr_array_add (cmd, (char *)client_id); - } - - if (state_file) - { - g_ptr_array_add (cmd, (char *)"--sm-client-state-file"); - g_ptr_array_add (cmd, (char *)state_file); - } - - for (i = 1; restart_command[i]; i++) - g_ptr_array_add (cmd, restart_command[i]); - - return cmd; -} - -/* Takes a NULL-terminated list of SmProp * values, created by - * array_prop, ptrarray_prop, string_prop, card8_prop, sets them, and - * frees them. - */ -static void -set_properties (EggSMClientXSMP *xsmp, ...) -{ - GPtrArray *props; - SmProp *prop; - va_list ap; - guint i; - - props = g_ptr_array_new (); - - va_start (ap, xsmp); - while ((prop = va_arg (ap, SmProp *))) - g_ptr_array_add (props, prop); - va_end (ap); - - if (xsmp->connection) - { - SmcSetProperties (xsmp->connection, props->len, - (SmProp **)props->pdata); - } - - for (i = 0; i < props->len; i++) - { - prop = props->pdata[i]; - g_free (prop->vals); - g_free (prop); - } - g_ptr_array_free (props, TRUE); -} - -/* Takes a NULL-terminated list of property names and deletes them. */ -static void -delete_properties (EggSMClientXSMP *xsmp, ...) -{ - GPtrArray *props; - char *prop; - va_list ap; - - if (!xsmp->connection) - return; - - props = g_ptr_array_new (); - - va_start (ap, xsmp); - while ((prop = va_arg (ap, char *))) - g_ptr_array_add (props, prop); - va_end (ap); - - SmcDeleteProperties (xsmp->connection, props->len, - (char **)props->pdata); - - g_ptr_array_free (props, TRUE); -} - -/* Takes an array of strings and creates a LISTofARRAY8 property. The - * strings are neither dupped nor freed; they need to remain valid - * until you're done with the SmProp. - */ -static SmProp * -array_prop (const char *name, ...) -{ - SmProp *prop; - SmPropValue pv; - GArray *vals; - char *value; - va_list ap; - - prop = g_new (SmProp, 1); - prop->name = (char *)name; - prop->type = (char *)SmLISTofARRAY8; - - vals = g_array_new (FALSE, FALSE, sizeof (SmPropValue)); - - va_start (ap, name); - while ((value = va_arg (ap, char *))) - { - pv.length = strlen (value); - pv.value = value; - g_array_append_val (vals, pv); - } - va_end (ap); - - prop->num_vals = vals->len; - prop->vals = (SmPropValue *)vals->data; - - g_array_free (vals, FALSE); - - return prop; -} - -/* Takes a GPtrArray of strings and creates a LISTofARRAY8 property. - * The array contents are neither dupped nor freed; they need to - * remain valid until you're done with the SmProp. - */ -static SmProp * -ptrarray_prop (const char *name, GPtrArray *values) -{ - SmProp *prop; - SmPropValue pv; - GArray *vals; - guint i; - - prop = g_new (SmProp, 1); - prop->name = (char *)name; - prop->type = (char *)SmLISTofARRAY8; - - vals = g_array_new (FALSE, FALSE, sizeof (SmPropValue)); - - for (i = 0; i < values->len; i++) - { - pv.length = strlen (values->pdata[i]); - pv.value = values->pdata[i]; - g_array_append_val (vals, pv); - } - - prop->num_vals = vals->len; - prop->vals = (SmPropValue *)vals->data; - - g_array_free (vals, FALSE); - - return prop; -} - -/* Takes a string and creates an ARRAY8 property. The string is - * neither dupped nor freed; it needs to remain valid until you're - * done with the SmProp. - */ -static SmProp * -string_prop (const char *name, const char *value) -{ - SmProp *prop; - - prop = g_new (SmProp, 1); - prop->name = (char *)name; - prop->type = (char *)SmARRAY8; - - prop->num_vals = 1; - prop->vals = g_new (SmPropValue, 1); - - prop->vals[0].length = strlen (value); - prop->vals[0].value = (char *)value; - - return prop; -} - -/* Takes a char and creates a CARD8 property. */ -static SmProp * -card8_prop (const char *name, unsigned char value) -{ - SmProp *prop; - char *card8val; - - /* To avoid having to allocate and free prop->vals[0], we cheat and - * make vals a 2-element-long array and then use the second element - * to store value. - */ - - prop = g_new (SmProp, 1); - prop->name = (char *)name; - prop->type = (char *)SmCARD8; - - prop->num_vals = 1; - prop->vals = g_new (SmPropValue, 2); - card8val = (char *)(&prop->vals[1]); - card8val[0] = value; - - prop->vals[0].length = 1; - prop->vals[0].value = card8val; - - return prop; -} - -/* ICE code. This makes no effort to play nice with anyone else trying - * to use libICE. Fortunately, no one uses libICE for anything other - * than SM. (DCOP uses ICE, but it has its own private copy of - * libICE.) - * - * When this moves to gtk, it will need to be cleverer, to avoid - * tripping over old apps that use MateClient or that use libSM - * directly. - */ - -#include -#include - -static void ice_error_handler (IceConn ice_conn, - Bool swap, - int offending_minor_opcode, - unsigned long offending_sequence, - int error_class, - int severity, - IcePointer values); -static void ice_io_error_handler (IceConn ice_conn); -static void ice_connection_watch (IceConn ice_conn, - IcePointer client_data, - Bool opening, - IcePointer *watch_data); - -static void -ice_init (void) -{ - IceSetIOErrorHandler (ice_io_error_handler); - IceSetErrorHandler (ice_error_handler); - IceAddConnectionWatch (ice_connection_watch, NULL); -} - -static gboolean -process_ice_messages (IceConn ice_conn) -{ - IceProcessMessagesStatus status; - status = IceProcessMessages (ice_conn, NULL, NULL); - - switch (status) - { - case IceProcessMessagesSuccess: - return TRUE; - - case IceProcessMessagesIOError: - sm_client_xsmp_disconnect (IceGetConnectionContext (ice_conn)); - return FALSE; - - case IceProcessMessagesConnectionClosed: - return FALSE; - - default: - g_assert_not_reached (); - } -} - -static gboolean -ice_iochannel_watch (GIOChannel *channel, - GIOCondition condition, - gpointer client_data) -{ - return process_ice_messages (client_data); -} - -static void -ice_connection_watch (IceConn ice_conn, - IcePointer client_data, - Bool opening, - IcePointer *watch_data) -{ - guint watch_id; - - if (opening) - { - GIOChannel *channel; - int fd = IceConnectionNumber (ice_conn); - - fcntl (fd, F_SETFD, fcntl (fd, F_GETFD, 0) | FD_CLOEXEC); - channel = g_io_channel_unix_new (fd); - watch_id = g_io_add_watch (channel, G_IO_IN | G_IO_ERR, - ice_iochannel_watch, ice_conn); - g_io_channel_unref (channel); - - *watch_data = GUINT_TO_POINTER (watch_id); - } - else - { - watch_id = GPOINTER_TO_UINT (*watch_data); - g_source_remove (watch_id); - } -} - -static void -ice_error_handler (IceConn ice_conn, - Bool swap, - int offending_minor_opcode, - unsigned long offending_sequence, - int error_class, - int severity, - IcePointer values) -{ - /* Do nothing */ -} - -static void -ice_io_error_handler (IceConn ice_conn) -{ - /* Do nothing */ -} - -static void -smc_error_handler (SmcConn smc_conn, - Bool swap, - int offending_minor_opcode, - unsigned long offending_sequence, - int error_class, - int severity, - SmPointer values) -{ - /* Do nothing */ -} diff -Nru mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/eggtreemultidnd.c mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/eggtreemultidnd.c --- mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/eggtreemultidnd.c 2021-08-05 19:43:42.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/eggtreemultidnd.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,417 +0,0 @@ -/* eggtreemultidnd.c - * Copyright (C) 2001 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library 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 - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, - * Boston, MA 02110-1301, USA. - */ - -#ifdef HAVE_CONFIG_H -#include -#endif - -#include -#include -#include "eggtreemultidnd.h" - -#define EGG_TREE_MULTI_DND_STRING "EggTreeMultiDndString" - -typedef struct -{ - guint pressed_button; - gint x; - gint y; - guint motion_notify_handler; - guint button_release_handler; - guint drag_data_get_handler; - GSList *event_list; -} EggTreeMultiDndData; - -/* CUT-N-PASTE from gtktreeview.c */ -typedef struct _TreeViewDragInfo TreeViewDragInfo; -struct _TreeViewDragInfo -{ - GdkModifierType start_button_mask; - GtkTargetList *source_target_list; - GdkDragAction source_actions; - - GtkTargetList *dest_target_list; - - guint source_set : 1; - guint dest_set : 1; -}; - - -GType -egg_tree_multi_drag_source_get_type (void) -{ - static GType our_type = 0; - - if (!our_type) - { - const GTypeInfo our_info = - { - sizeof (EggTreeMultiDragSourceIface), /* class_size */ - NULL, /* base_init */ - NULL, /* base_finalize */ - NULL, - NULL, /* class_finalize */ - NULL, /* class_data */ - 0, - 0, /* n_preallocs */ - NULL - }; - - our_type = g_type_register_static (G_TYPE_INTERFACE, "EggTreeMultiDragSource", &our_info, 0); - } - - return our_type; -} - - -/** - * egg_tree_multi_drag_source_row_draggable: - * @drag_source: a #EggTreeMultiDragSource - * @path: row on which user is initiating a drag - * - * Asks the #EggTreeMultiDragSource whether a particular row can be used as - * the source of a DND operation. If the source doesn't implement - * this interface, the row is assumed draggable. - * - * Return value: %TRUE if the row can be dragged - **/ -gboolean -egg_tree_multi_drag_source_row_draggable (EggTreeMultiDragSource *drag_source, - GList *path_list) -{ - EggTreeMultiDragSourceIface *iface = EGG_TREE_MULTI_DRAG_SOURCE_GET_IFACE (drag_source); - - g_return_val_if_fail (EGG_IS_TREE_MULTI_DRAG_SOURCE (drag_source), FALSE); - g_return_val_if_fail (iface->row_draggable != NULL, FALSE); - g_return_val_if_fail (path_list != NULL, FALSE); - - if (iface->row_draggable) - return (* iface->row_draggable) (drag_source, path_list); - else - return TRUE; -} - - -/** - * egg_tree_multi_drag_source_drag_data_delete: - * @drag_source: a #EggTreeMultiDragSource - * @path: row that was being dragged - * - * Asks the #EggTreeMultiDragSource to delete the row at @path, because - * it was moved somewhere else via drag-and-drop. Returns %FALSE - * if the deletion fails because @path no longer exists, or for - * some model-specific reason. Should robustly handle a @path no - * longer found in the model! - * - * Return value: %TRUE if the row was successfully deleted - **/ -gboolean -egg_tree_multi_drag_source_drag_data_delete (EggTreeMultiDragSource *drag_source, - GList *path_list) -{ - EggTreeMultiDragSourceIface *iface = EGG_TREE_MULTI_DRAG_SOURCE_GET_IFACE (drag_source); - - g_return_val_if_fail (EGG_IS_TREE_MULTI_DRAG_SOURCE (drag_source), FALSE); - g_return_val_if_fail (iface->drag_data_delete != NULL, FALSE); - g_return_val_if_fail (path_list != NULL, FALSE); - - return (* iface->drag_data_delete) (drag_source, path_list); -} - -/** - * egg_tree_multi_drag_source_drag_data_get: - * @drag_source: a #EggTreeMultiDragSource - * @path: row that was dragged - * @selection_data: a #EggSelectionData to fill with data from the dragged row - * - * Asks the #EggTreeMultiDragSource to fill in @selection_data with a - * representation of the row at @path. @selection_data->target gives - * the required type of the data. Should robustly handle a @path no - * longer found in the model! - * - * Return value: %TRUE if data of the required type was provided - **/ -gboolean -egg_tree_multi_drag_source_drag_data_get (EggTreeMultiDragSource *drag_source, - GList *path_list, - GtkSelectionData *selection_data) -{ - EggTreeMultiDragSourceIface *iface = EGG_TREE_MULTI_DRAG_SOURCE_GET_IFACE (drag_source); - - g_return_val_if_fail (EGG_IS_TREE_MULTI_DRAG_SOURCE (drag_source), FALSE); - g_return_val_if_fail (iface->drag_data_get != NULL, FALSE); - g_return_val_if_fail (path_list != NULL, FALSE); - g_return_val_if_fail (selection_data != NULL, FALSE); - - return (* iface->drag_data_get) (drag_source, path_list, selection_data); -} - -static void -stop_drag_check (GtkWidget *widget) -{ - EggTreeMultiDndData *priv_data; - GSList *l; - - priv_data = g_object_get_data (G_OBJECT (widget), EGG_TREE_MULTI_DND_STRING); - - for (l = priv_data->event_list; l != NULL; l = l->next) - gdk_event_free (l->data); - - g_slist_free (priv_data->event_list); - priv_data->event_list = NULL; - g_signal_handler_disconnect (widget, priv_data->motion_notify_handler); - g_signal_handler_disconnect (widget, priv_data->button_release_handler); -} - -static gboolean -egg_tree_multi_drag_button_release_event (GtkWidget *widget, - GdkEventButton *event, - gpointer data) -{ - EggTreeMultiDndData *priv_data; - GSList *l; - - priv_data = g_object_get_data (G_OBJECT (widget), EGG_TREE_MULTI_DND_STRING); - - for (l = priv_data->event_list; l != NULL; l = l->next) - gtk_propagate_event (widget, l->data); - - stop_drag_check (widget); - - return FALSE; -} - -static void -selection_foreach (GtkTreeModel *model, - GtkTreePath *path, - GtkTreeIter *iter, - gpointer data) -{ - GList **list_ptr; - - list_ptr = (GList **) data; - - *list_ptr = g_list_prepend (*list_ptr, gtk_tree_row_reference_new (model, path)); -} - -static void -path_list_free (GList *path_list) -{ - g_list_foreach (path_list, (GFunc) gtk_tree_row_reference_free, NULL); - g_list_free (path_list); -} - -static void -set_context_data (GdkDragContext *context, - GList *path_list) -{ - g_object_set_data_full (G_OBJECT (context), - "egg-tree-view-multi-source-row", - path_list, - (GDestroyNotify) path_list_free); -} - -static GList * -get_context_data (GdkDragContext *context) -{ - return g_object_get_data (G_OBJECT (context), - "egg-tree-view-multi-source-row"); -} - -/* CUT-N-PASTE from gtktreeview.c */ -static TreeViewDragInfo* -get_info (GtkTreeView *tree_view) -{ - return g_object_get_data (G_OBJECT (tree_view), "gtk-tree-view-drag-info"); -} - - -static void -egg_tree_multi_drag_drag_data_get (GtkWidget *widget, - GdkDragContext *context, - GtkSelectionData *selection_data, - guint info, - guint time) -{ - GtkTreeView *tree_view; - GtkTreeModel *model; - TreeViewDragInfo *di; - GList *path_list; - - tree_view = GTK_TREE_VIEW (widget); - - model = gtk_tree_view_get_model (tree_view); - - if (model == NULL) - return; - - di = get_info (GTK_TREE_VIEW (widget)); - - if (di == NULL) - return; - - path_list = get_context_data (context); - - if (path_list == NULL) - return; - - /* We can implement the GTK_TREE_MODEL_ROW target generically for - * any model; for DragSource models there are some other targets - * we also support. - */ - - if (EGG_IS_TREE_MULTI_DRAG_SOURCE (model)) - { - egg_tree_multi_drag_source_drag_data_get (EGG_TREE_MULTI_DRAG_SOURCE (model), - path_list, - selection_data); - } -} - -static gboolean -egg_tree_multi_drag_motion_event (GtkWidget *widget, - GdkEventMotion *event, - gpointer data) -{ - EggTreeMultiDndData *priv_data; - - priv_data = g_object_get_data (G_OBJECT (widget), EGG_TREE_MULTI_DND_STRING); - - if (gtk_drag_check_threshold (widget, - priv_data->x, - priv_data->y, - event->x, - event->y)) - { - GList *path_list = NULL; - GtkTreeSelection *selection; - GtkTreeModel *model; - TreeViewDragInfo *di; - - di = get_info (GTK_TREE_VIEW (widget)); - - if (di == NULL) - return FALSE; - - selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (widget)); - stop_drag_check (widget); - gtk_tree_selection_selected_foreach (selection, selection_foreach, &path_list); - path_list = g_list_reverse (path_list); - model = gtk_tree_view_get_model (GTK_TREE_VIEW (widget)); - if (egg_tree_multi_drag_source_row_draggable (EGG_TREE_MULTI_DRAG_SOURCE (model), path_list)) - { - GdkDragContext *context; - - context = gtk_drag_begin_with_coordinates (widget, - gtk_drag_source_get_target_list (widget), - di->source_actions, - priv_data->pressed_button, - (GdkEvent*)event, - event->x, - event->y); - set_context_data (context, path_list); - gtk_drag_set_icon_default (context); - - } - else - { - path_list_free (path_list); - } - } - - return TRUE; -} - -static gboolean -egg_tree_multi_drag_button_press_event (GtkWidget *widget, - GdkEventButton *event, - gpointer data) -{ - GtkTreeView *tree_view; - GtkTreePath *path = NULL; - GtkTreeViewColumn *column = NULL; - gint cell_x, cell_y; - GtkTreeSelection *selection; - EggTreeMultiDndData *priv_data; - - tree_view = GTK_TREE_VIEW (widget); - priv_data = g_object_get_data (G_OBJECT (tree_view), EGG_TREE_MULTI_DND_STRING); - if (priv_data == NULL) - { - priv_data = g_new0 (EggTreeMultiDndData, 1); - g_object_set_data (G_OBJECT (tree_view), EGG_TREE_MULTI_DND_STRING, priv_data); - } - - if (g_slist_find (priv_data->event_list, event)) - return FALSE; - - if (priv_data->event_list) - { - /* save the event to be propagated in order */ - priv_data->event_list = g_slist_append (priv_data->event_list, gdk_event_copy ((GdkEvent*)event)); - return TRUE; - } - - if (event->type == GDK_2BUTTON_PRESS) - return FALSE; - - gtk_tree_view_get_path_at_pos (tree_view, - event->x, event->y, - &path, &column, - &cell_x, &cell_y); - - selection = gtk_tree_view_get_selection (tree_view); - - if (path && gtk_tree_selection_path_is_selected (selection, path)) - { - priv_data->pressed_button = event->button; - priv_data->x = event->x; - priv_data->y = event->y; - priv_data->event_list = g_slist_append (priv_data->event_list, gdk_event_copy ((GdkEvent*)event)); - priv_data->motion_notify_handler = - g_signal_connect (G_OBJECT (tree_view), "motion_notify_event", G_CALLBACK (egg_tree_multi_drag_motion_event), NULL); - priv_data->button_release_handler = - g_signal_connect (G_OBJECT (tree_view), "button_release_event", G_CALLBACK (egg_tree_multi_drag_button_release_event), NULL); - - if (priv_data->drag_data_get_handler == 0) - { - priv_data->drag_data_get_handler = - g_signal_connect (G_OBJECT (tree_view), "drag_data_get", G_CALLBACK (egg_tree_multi_drag_drag_data_get), NULL); - } - - gtk_tree_path_free (path); - - return TRUE; - } - - if (path) - { - gtk_tree_path_free (path); - } - - return FALSE; -} - -void -egg_tree_multi_drag_add_drag_support (GtkTreeView *tree_view) -{ - g_return_if_fail (GTK_IS_TREE_VIEW (tree_view)); - g_signal_connect (G_OBJECT (tree_view), "button_press_event", G_CALLBACK (egg_tree_multi_drag_button_press_event), NULL); -} - diff -Nru mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/eggtreemultidnd.h mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/eggtreemultidnd.h --- mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/eggtreemultidnd.h 2021-08-05 19:43:42.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/eggtreemultidnd.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,72 +0,0 @@ -/* eggtreednd.h - * Copyright (C) 2001 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library 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 - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, - * Boston, MA 02110-1301, USA. - */ - -#ifndef __EGG_TREE_MULTI_DND_H__ -#define __EGG_TREE_MULTI_DND_H__ - -#include - -G_BEGIN_DECLS - -#define EGG_TYPE_TREE_MULTI_DRAG_SOURCE (egg_tree_multi_drag_source_get_type ()) -#define EGG_TREE_MULTI_DRAG_SOURCE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EGG_TYPE_TREE_MULTI_DRAG_SOURCE, EggTreeMultiDragSource)) -#define EGG_IS_TREE_MULTI_DRAG_SOURCE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EGG_TYPE_TREE_MULTI_DRAG_SOURCE)) -#define EGG_TREE_MULTI_DRAG_SOURCE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), EGG_TYPE_TREE_MULTI_DRAG_SOURCE, EggTreeMultiDragSourceIface)) - -typedef struct _EggTreeMultiDragSource EggTreeMultiDragSource; /* Dummy typedef */ -typedef struct _EggTreeMultiDragSourceIface EggTreeMultiDragSourceIface; - -struct _EggTreeMultiDragSourceIface -{ - GTypeInterface g_iface; - - /* VTable - not signals */ - gboolean (* row_draggable) (EggTreeMultiDragSource *drag_source, - GList *path_list); - - gboolean (* drag_data_get) (EggTreeMultiDragSource *drag_source, - GList *path_list, - GtkSelectionData *selection_data); - - gboolean (* drag_data_delete) (EggTreeMultiDragSource *drag_source, - GList *path_list); -}; - -GType egg_tree_multi_drag_source_get_type (void) G_GNUC_CONST; - -/* Returns whether the given row can be dragged */ -gboolean egg_tree_multi_drag_source_row_draggable (EggTreeMultiDragSource *drag_source, - GList *path_list); - -/* Deletes the given row, or returns FALSE if it can't */ -gboolean egg_tree_multi_drag_source_drag_data_delete (EggTreeMultiDragSource *drag_source, - GList *path_list); - - -/* Fills in selection_data with type selection_data->target based on the row - * denoted by path, returns TRUE if it does anything - */ -gboolean egg_tree_multi_drag_source_drag_data_get (EggTreeMultiDragSource *drag_source, - GList *path_list, - GtkSelectionData *selection_data); -void egg_tree_multi_drag_add_drag_support (GtkTreeView *tree_view); - -G_END_DECLS - -#endif /* __EGG_TREE_MULTI_DND_H__ */ diff -Nru mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/Makefile.am mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/Makefile.am --- mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/Makefile.am 2021-08-05 19:43:42.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -NULL= - -noinst_LTLIBRARIES = libegg.la - -AM_CPPFLAGS = $(LIBEGG_CFLAGS) - -EGG_TREE_DND_FILES = \ - eggtreemultidnd.c \ - eggtreemultidnd.h \ - $(NULL) - -EGG_SMCLIENT_FILES = \ - eggdesktopfile.c \ - eggdesktopfile.h \ - eggsmclient.c \ - eggsmclient.h \ - eggsmclient-private.h \ - eggsmclient-xsmp.c \ - $(NULL) - -libegg_la_SOURCES = \ - $(EGG_TREE_DND_FILES) \ - $(EGG_SMCLIENT_FILES) \ - $(NULL) - -libegg_la_CFLAGS = \ - -DEGG_SM_CLIENT_BACKEND_XSMP \ - -DG_LOG_DOMAIN=\""EggSMClient"\" \ - $(LIBEGG_CFLAGS) \ - $(WARN_CFLAGS) \ - $(DISABLE_DEPRECATED) - -libegg_la_LIBADD = \ - $(LIBEGG_LIBS) \ - $(NULL) - --include $(top_srcdir)/git.mk diff -Nru mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/Makefile.in mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/Makefile.in --- mate-utils-1.26.0/gsearchtool/mate-submodules/libegg/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/mate-submodules/libegg/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,769 +0,0 @@ -# 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@ - -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 = gsearchtool/mate-submodules/libegg -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 = -CONFIG_CLEAN_VPATH_FILES = -LTLIBRARIES = $(noinst_LTLIBRARIES) -am__DEPENDENCIES_1 = -libegg_la_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) -am__objects_1 = -am__objects_2 = libegg_la-eggtreemultidnd.lo $(am__objects_1) -am__objects_3 = libegg_la-eggdesktopfile.lo libegg_la-eggsmclient.lo \ - libegg_la-eggsmclient-xsmp.lo $(am__objects_1) -am_libegg_la_OBJECTS = $(am__objects_2) $(am__objects_3) \ - $(am__objects_1) -libegg_la_OBJECTS = $(am_libegg_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) -am__v_lt_0 = --silent -am__v_lt_1 = -libegg_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libegg_la_CFLAGS) \ - $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ -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 = -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__maybe_remake_depfiles = depfiles -am__depfiles_remade = ./$(DEPDIR)/libegg_la-eggdesktopfile.Plo \ - ./$(DEPDIR)/libegg_la-eggsmclient-xsmp.Plo \ - ./$(DEPDIR)/libegg_la-eggsmclient.Plo \ - ./$(DEPDIR)/libegg_la-eggtreemultidnd.Plo -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -SOURCES = $(libegg_la_SOURCES) -DIST_SOURCES = $(libegg_la_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp -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@ -NULL = -noinst_LTLIBRARIES = libegg.la -AM_CPPFLAGS = $(LIBEGG_CFLAGS) -EGG_TREE_DND_FILES = \ - eggtreemultidnd.c \ - eggtreemultidnd.h \ - $(NULL) - -EGG_SMCLIENT_FILES = \ - eggdesktopfile.c \ - eggdesktopfile.h \ - eggsmclient.c \ - eggsmclient.h \ - eggsmclient-private.h \ - eggsmclient-xsmp.c \ - $(NULL) - -libegg_la_SOURCES = \ - $(EGG_TREE_DND_FILES) \ - $(EGG_SMCLIENT_FILES) \ - $(NULL) - -libegg_la_CFLAGS = \ - -DEGG_SM_CLIENT_BACKEND_XSMP \ - -DG_LOG_DOMAIN=\""EggSMClient"\" \ - $(LIBEGG_CFLAGS) \ - $(WARN_CFLAGS) \ - $(DISABLE_DEPRECATED) - -libegg_la_LIBADD = \ - $(LIBEGG_LIBS) \ - $(NULL) - -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(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 gsearchtool/mate-submodules/libegg/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign gsearchtool/mate-submodules/libegg/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): - -clean-noinstLTLIBRARIES: - -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) - @list='$(noinst_LTLIBRARIES)'; \ - locs=`for p in $$list; do echo $$p; done | \ - sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ - sort -u`; \ - test -z "$$locs" || { \ - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } - -libegg.la: $(libegg_la_OBJECTS) $(libegg_la_DEPENDENCIES) $(EXTRA_libegg_la_DEPENDENCIES) - $(AM_V_CCLD)$(libegg_la_LINK) $(libegg_la_OBJECTS) $(libegg_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libegg_la-eggdesktopfile.Plo@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libegg_la-eggsmclient-xsmp.Plo@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libegg_la-eggsmclient.Plo@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libegg_la-eggtreemultidnd.Plo@am__quote@ # am--include-marker - -$(am__depfiles_remade): - @$(MKDIR_P) $(@D) - @echo '# dummy' >$@-t && $(am__mv) $@-t $@ - -am--depfiles: $(am__depfiles_remade) - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< - -libegg_la-eggtreemultidnd.lo: eggtreemultidnd.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-eggtreemultidnd.lo -MD -MP -MF $(DEPDIR)/libegg_la-eggtreemultidnd.Tpo -c -o libegg_la-eggtreemultidnd.lo `test -f 'eggtreemultidnd.c' || echo '$(srcdir)/'`eggtreemultidnd.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libegg_la-eggtreemultidnd.Tpo $(DEPDIR)/libegg_la-eggtreemultidnd.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='eggtreemultidnd.c' object='libegg_la-eggtreemultidnd.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-eggtreemultidnd.lo `test -f 'eggtreemultidnd.c' || echo '$(srcdir)/'`eggtreemultidnd.c - -libegg_la-eggdesktopfile.lo: eggdesktopfile.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-eggdesktopfile.lo -MD -MP -MF $(DEPDIR)/libegg_la-eggdesktopfile.Tpo -c -o libegg_la-eggdesktopfile.lo `test -f 'eggdesktopfile.c' || echo '$(srcdir)/'`eggdesktopfile.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libegg_la-eggdesktopfile.Tpo $(DEPDIR)/libegg_la-eggdesktopfile.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='eggdesktopfile.c' object='libegg_la-eggdesktopfile.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-eggdesktopfile.lo `test -f 'eggdesktopfile.c' || echo '$(srcdir)/'`eggdesktopfile.c - -libegg_la-eggsmclient.lo: eggsmclient.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-eggsmclient.lo -MD -MP -MF $(DEPDIR)/libegg_la-eggsmclient.Tpo -c -o libegg_la-eggsmclient.lo `test -f 'eggsmclient.c' || echo '$(srcdir)/'`eggsmclient.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libegg_la-eggsmclient.Tpo $(DEPDIR)/libegg_la-eggsmclient.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='eggsmclient.c' object='libegg_la-eggsmclient.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-eggsmclient.lo `test -f 'eggsmclient.c' || echo '$(srcdir)/'`eggsmclient.c - -libegg_la-eggsmclient-xsmp.lo: eggsmclient-xsmp.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-eggsmclient-xsmp.lo -MD -MP -MF $(DEPDIR)/libegg_la-eggsmclient-xsmp.Tpo -c -o libegg_la-eggsmclient-xsmp.lo `test -f 'eggsmclient-xsmp.c' || echo '$(srcdir)/'`eggsmclient-xsmp.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libegg_la-eggsmclient-xsmp.Tpo $(DEPDIR)/libegg_la-eggsmclient-xsmp.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='eggsmclient-xsmp.c' object='libegg_la-eggsmclient-xsmp.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-eggsmclient-xsmp.lo `test -f 'eggsmclient-xsmp.c' || echo '$(srcdir)/'`eggsmclient-xsmp.c - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 $(LTLIBRARIES) -installdirs: -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: - -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 clean-noinstLTLIBRARIES \ - mostlyclean-am - -distclean: distclean-am - -rm -f ./$(DEPDIR)/libegg_la-eggdesktopfile.Plo - -rm -f ./$(DEPDIR)/libegg_la-eggsmclient-xsmp.Plo - -rm -f ./$(DEPDIR)/libegg_la-eggsmclient.Plo - -rm -f ./$(DEPDIR)/libegg_la-eggtreemultidnd.Plo - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -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-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f ./$(DEPDIR)/libegg_la-eggdesktopfile.Plo - -rm -f ./$(DEPDIR)/libegg_la-eggsmclient-xsmp.Plo - -rm -f ./$(DEPDIR)/libegg_la-eggsmclient.Plo - -rm -f ./$(DEPDIR)/libegg_la-eggtreemultidnd.Plo - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ - clean-generic clean-libtool clean-noinstLTLIBRARIES \ - cscopelist-am ctags ctags-am distclean distclean-compile \ - distclean-generic distclean-libtool distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - 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-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - --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 -Nru mate-utils-1.26.0/gsearchtool/mate-submodules/Makefile.am mate-utils-1.26.1/gsearchtool/mate-submodules/Makefile.am --- mate-utils-1.26.0/gsearchtool/mate-submodules/Makefile.am 2021-08-05 19:43:42.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/mate-submodules/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -SUBDIRS = libegg diff -Nru mate-utils-1.26.0/gsearchtool/mate-submodules/Makefile.in mate-utils-1.26.1/gsearchtool/mate-submodules/Makefile.in --- mate-utils-1.26.0/gsearchtool/mate-submodules/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/mate-submodules/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,710 +0,0 @@ -# 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@ -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 = gsearchtool/mate-submodules -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 = -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 = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir distdir-am -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -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@ -SUBDIRS = libegg -all: all-recursive - -.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 gsearchtool/mate-submodules/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign gsearchtool/mate-submodules/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): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -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: - -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-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ - check-am clean clean-generic clean-libtool cscopelist-am ctags \ - ctags-am distclean distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am 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-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - installdirs-am maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ - ps ps-am tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - -# 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 -Nru mate-utils-1.26.0/gsearchtool/src/gsearchtool-support.c mate-utils-1.26.1/gsearchtool/src/gsearchtool-support.c --- mate-utils-1.26.0/gsearchtool/src/gsearchtool-support.c 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/src/gsearchtool-support.c 2023-05-09 13:31:58.000000000 +0000 @@ -446,10 +446,10 @@ } if (content_type == NULL || g_content_type_is_unknown (content_type) == TRUE) { - return g_strdup (g_content_type_get_description ("application/octet-stream")); + return g_content_type_get_description ("application/octet-stream"); } - desc = g_strdup (g_content_type_get_description (content_type)); + desc = g_content_type_get_description (content_type); if (g_file_info_get_is_symlink (file_info) == TRUE) { diff -Nru mate-utils-1.26.0/gsearchtool/src/Makefile.in mate-utils-1.26.1/gsearchtool/src/Makefile.in --- mate-utils-1.26.0/gsearchtool/src/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/gsearchtool/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,842 +0,0 @@ -# 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 . - -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@ -bin_PROGRAMS = mate-search-tool$(EXEEXT) -subdir = gsearchtool/src -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 = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am_mate_search_tool_OBJECTS = \ - mate_search_tool-gsearchtool-support.$(OBJEXT) \ - mate_search_tool-gsearchtool-callbacks.$(OBJEXT) \ - mate_search_tool-gsearchtool.$(OBJEXT) -mate_search_tool_OBJECTS = $(am_mate_search_tool_OBJECTS) -am__DEPENDENCIES_1 = -mate_search_tool_DEPENDENCIES = $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(libeggsmclient_LIB) \ - $(libmateui_deprecated_LIB) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) -am__v_lt_0 = --silent -am__v_lt_1 = -mate_search_tool_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(mate_search_tool_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ - -o $@ -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 = -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__maybe_remake_depfiles = depfiles -am__depfiles_remade = \ - ./$(DEPDIR)/mate_search_tool-gsearchtool-callbacks.Po \ - ./$(DEPDIR)/mate_search_tool-gsearchtool-support.Po \ - ./$(DEPDIR)/mate_search_tool-gsearchtool.Po -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -SOURCES = $(mate_search_tool_SOURCES) -DIST_SOURCES = $(mate_search_tool_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp -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@ -NULL = -AM_CPPFLAGS = \ - -I$(top_srcdir)/gsearchtool/mate-submodules/libegg \ - -I$(top_srcdir)/gsearchtool/libmateui-deprecated \ - -DMATELOCALEDIR=\""$(datadir)/locale"\" \ - -DLOCALEDIR=\"$(datadir)/locale\" \ - -DDATADIR=\""$(datadir)"\" \ - -DGREP_COMMAND=\""$(GREP_COMMAND)"\" - -libeggsmclient_LIB = $(top_builddir)/gsearchtool/mate-submodules/libegg/libegg.la -libmateui_deprecated_LIB = $(top_builddir)/gsearchtool/libmateui-deprecated/libmateui-deprecated.la -mate_search_tool_SOURCES = \ - gsearchtool-support.c \ - gsearchtool-support.h \ - gsearchtool-callbacks.c \ - gsearchtool-callbacks.h \ - gsearchtool.c \ - gsearchtool.h - -mate_search_tool_CFLAGS = \ - $(GLIB_CFLAGS) \ - $(GIO_CFLAGS) \ - $(GIO_UNIX_CFLAGS) \ - $(GTK_CFLAGS) \ - $(WARN_CFLAGS) \ - $(NULL) - -mate_search_tool_LDADD = \ - $(GLIB_LIBS) \ - $(GIO_LIBS) \ - $(GIO_UNIX_LIBS) \ - $(GTK_LIBS) \ - $(libeggsmclient_LIB) \ - $(libmateui_deprecated_LIB) - -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(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 gsearchtool/src/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign gsearchtool/src/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): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ - fi; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p \ - || test -f $$p1 \ - ; then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' \ - -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' \ - `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list - -mate-search-tool$(EXEEXT): $(mate_search_tool_OBJECTS) $(mate_search_tool_DEPENDENCIES) $(EXTRA_mate_search_tool_DEPENDENCIES) - @rm -f mate-search-tool$(EXEEXT) - $(AM_V_CCLD)$(mate_search_tool_LINK) $(mate_search_tool_OBJECTS) $(mate_search_tool_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_search_tool-gsearchtool-callbacks.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_search_tool-gsearchtool-support.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_search_tool-gsearchtool.Po@am__quote@ # am--include-marker - -$(am__depfiles_remade): - @$(MKDIR_P) $(@D) - @echo '# dummy' >$@-t && $(am__mv) $@-t $@ - -am--depfiles: $(am__depfiles_remade) - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< - -mate_search_tool-gsearchtool-support.o: gsearchtool-support.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_search_tool_CFLAGS) $(CFLAGS) -MT mate_search_tool-gsearchtool-support.o -MD -MP -MF $(DEPDIR)/mate_search_tool-gsearchtool-support.Tpo -c -o mate_search_tool-gsearchtool-support.o `test -f 'gsearchtool-support.c' || echo '$(srcdir)/'`gsearchtool-support.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_search_tool-gsearchtool-support.Tpo $(DEPDIR)/mate_search_tool-gsearchtool-support.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsearchtool-support.c' object='mate_search_tool-gsearchtool-support.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_search_tool_CFLAGS) $(CFLAGS) -c -o mate_search_tool-gsearchtool-support.o `test -f 'gsearchtool-support.c' || echo '$(srcdir)/'`gsearchtool-support.c - -mate_search_tool-gsearchtool-support.obj: gsearchtool-support.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_search_tool_CFLAGS) $(CFLAGS) -MT mate_search_tool-gsearchtool-support.obj -MD -MP -MF $(DEPDIR)/mate_search_tool-gsearchtool-support.Tpo -c -o mate_search_tool-gsearchtool-support.obj `if test -f 'gsearchtool-support.c'; then $(CYGPATH_W) 'gsearchtool-support.c'; else $(CYGPATH_W) '$(srcdir)/gsearchtool-support.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_search_tool-gsearchtool-support.Tpo $(DEPDIR)/mate_search_tool-gsearchtool-support.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsearchtool-support.c' object='mate_search_tool-gsearchtool-support.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_search_tool_CFLAGS) $(CFLAGS) -c -o mate_search_tool-gsearchtool-support.obj `if test -f 'gsearchtool-support.c'; then $(CYGPATH_W) 'gsearchtool-support.c'; else $(CYGPATH_W) '$(srcdir)/gsearchtool-support.c'; fi` - -mate_search_tool-gsearchtool-callbacks.o: gsearchtool-callbacks.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_search_tool_CFLAGS) $(CFLAGS) -MT mate_search_tool-gsearchtool-callbacks.o -MD -MP -MF $(DEPDIR)/mate_search_tool-gsearchtool-callbacks.Tpo -c -o mate_search_tool-gsearchtool-callbacks.o `test -f 'gsearchtool-callbacks.c' || echo '$(srcdir)/'`gsearchtool-callbacks.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_search_tool-gsearchtool-callbacks.Tpo $(DEPDIR)/mate_search_tool-gsearchtool-callbacks.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsearchtool-callbacks.c' object='mate_search_tool-gsearchtool-callbacks.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_search_tool_CFLAGS) $(CFLAGS) -c -o mate_search_tool-gsearchtool-callbacks.o `test -f 'gsearchtool-callbacks.c' || echo '$(srcdir)/'`gsearchtool-callbacks.c - -mate_search_tool-gsearchtool-callbacks.obj: gsearchtool-callbacks.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_search_tool_CFLAGS) $(CFLAGS) -MT mate_search_tool-gsearchtool-callbacks.obj -MD -MP -MF $(DEPDIR)/mate_search_tool-gsearchtool-callbacks.Tpo -c -o mate_search_tool-gsearchtool-callbacks.obj `if test -f 'gsearchtool-callbacks.c'; then $(CYGPATH_W) 'gsearchtool-callbacks.c'; else $(CYGPATH_W) '$(srcdir)/gsearchtool-callbacks.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_search_tool-gsearchtool-callbacks.Tpo $(DEPDIR)/mate_search_tool-gsearchtool-callbacks.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsearchtool-callbacks.c' object='mate_search_tool-gsearchtool-callbacks.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_search_tool_CFLAGS) $(CFLAGS) -c -o mate_search_tool-gsearchtool-callbacks.obj `if test -f 'gsearchtool-callbacks.c'; then $(CYGPATH_W) 'gsearchtool-callbacks.c'; else $(CYGPATH_W) '$(srcdir)/gsearchtool-callbacks.c'; fi` - -mate_search_tool-gsearchtool.o: gsearchtool.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_search_tool_CFLAGS) $(CFLAGS) -MT mate_search_tool-gsearchtool.o -MD -MP -MF $(DEPDIR)/mate_search_tool-gsearchtool.Tpo -c -o mate_search_tool-gsearchtool.o `test -f 'gsearchtool.c' || echo '$(srcdir)/'`gsearchtool.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_search_tool-gsearchtool.Tpo $(DEPDIR)/mate_search_tool-gsearchtool.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsearchtool.c' object='mate_search_tool-gsearchtool.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_search_tool_CFLAGS) $(CFLAGS) -c -o mate_search_tool-gsearchtool.o `test -f 'gsearchtool.c' || echo '$(srcdir)/'`gsearchtool.c - -mate_search_tool-gsearchtool.obj: gsearchtool.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_search_tool_CFLAGS) $(CFLAGS) -MT mate_search_tool-gsearchtool.obj -MD -MP -MF $(DEPDIR)/mate_search_tool-gsearchtool.Tpo -c -o mate_search_tool-gsearchtool.obj `if test -f 'gsearchtool.c'; then $(CYGPATH_W) 'gsearchtool.c'; else $(CYGPATH_W) '$(srcdir)/gsearchtool.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_search_tool-gsearchtool.Tpo $(DEPDIR)/mate_search_tool-gsearchtool.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsearchtool.c' object='mate_search_tool-gsearchtool.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_search_tool_CFLAGS) $(CFLAGS) -c -o mate_search_tool-gsearchtool.obj `if test -f 'gsearchtool.c'; then $(CYGPATH_W) 'gsearchtool.c'; else $(CYGPATH_W) '$(srcdir)/gsearchtool.c'; fi` - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; 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: - -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-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f ./$(DEPDIR)/mate_search_tool-gsearchtool-callbacks.Po - -rm -f ./$(DEPDIR)/mate_search_tool-gsearchtool-support.Po - -rm -f ./$(DEPDIR)/mate_search_tool-gsearchtool.Po - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -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 ./$(DEPDIR)/mate_search_tool-gsearchtool-callbacks.Po - -rm -f ./$(DEPDIR)/mate_search_tool-gsearchtool-support.Po - -rm -f ./$(DEPDIR)/mate_search_tool-gsearchtool.Po - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \ - ctags ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-binPROGRAMS \ - 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-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am uninstall-binPROGRAMS - -.PRECIOUS: Makefile - - --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 -Nru mate-utils-1.26.0/gtk-doc.make mate-utils-1.26.1/gtk-doc.make --- mate-utils-1.26.0/gtk-doc.make 2021-08-05 19:45:14.000000000 +0000 +++ mate-utils-1.26.1/gtk-doc.make 1970-01-01 00:00:00.000000000 +0000 @@ -1,322 +0,0 @@ -# -*- mode: makefile -*- -# -# gtk-doc.make - make rules for gtk-doc -# Copyright (C) 2003 James Henstridge -# 2004-2007 Damon Chaplin -# 2007-2017 Stefan Sauer -# -# 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 . - -#################################### -# Everything below here is generic # -#################################### - -if GTK_DOC_USE_LIBTOOL -GTKDOC_CC = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -GTKDOC_LD = $(LIBTOOL) --tag=CC --mode=link $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -GTKDOC_RUN = $(LIBTOOL) --mode=execute -else -GTKDOC_CC = $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -GTKDOC_LD = $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -GTKDOC_RUN = -endif - -# We set GPATH here; this gives us semantics for GNU make -# which are more like other make's VPATH, when it comes to -# whether a source that is a target of one rule is then -# searched for in VPATH/GPATH. -# -GPATH = $(srcdir) - -TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE) - -SETUP_FILES = \ - $(content_files) \ - $(expand_content_files) \ - $(DOC_MAIN_SGML_FILE) \ - $(DOC_MODULE)-sections.txt \ - $(DOC_MODULE)-overrides.txt - -EXTRA_DIST = \ - $(HTML_IMAGES) \ - $(SETUP_FILES) - -DOC_STAMPS=setup-build.stamp scan-build.stamp sgml-build.stamp \ - html-build.stamp pdf-build.stamp \ - sgml.stamp html.stamp pdf.stamp - -SCANOBJ_FILES = \ - $(DOC_MODULE).actions \ - $(DOC_MODULE).args \ - $(DOC_MODULE).hierarchy \ - $(DOC_MODULE).interfaces \ - $(DOC_MODULE).prerequisites \ - $(DOC_MODULE).signals - -REPORT_FILES = \ - $(DOC_MODULE)-undocumented.txt \ - $(DOC_MODULE)-undeclared.txt \ - $(DOC_MODULE)-unused.txt - -gtkdoc-check.test: Makefile - $(AM_V_GEN)echo "#!/bin/sh -e" > $@; \ - echo "$(GTKDOC_CHECK_PATH) || exit 1" >> $@; \ - chmod +x $@ - -CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) gtkdoc-check.test - -if GTK_DOC_BUILD_HTML -HTML_BUILD_STAMP=html-build.stamp -else -HTML_BUILD_STAMP= -endif -if GTK_DOC_BUILD_PDF -PDF_BUILD_STAMP=pdf-build.stamp -else -PDF_BUILD_STAMP= -endif - -all-gtk-doc: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP) -.PHONY: all-gtk-doc - -if ENABLE_GTK_DOC -all-local: all-gtk-doc -endif - -docs: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP) - -$(REPORT_FILES): sgml-build.stamp - -#### setup #### - -GTK_DOC_V_SETUP=$(GTK_DOC_V_SETUP_@AM_V@) -GTK_DOC_V_SETUP_=$(GTK_DOC_V_SETUP_@AM_DEFAULT_V@) -GTK_DOC_V_SETUP_0=@echo " DOC Preparing build"; - -setup-build.stamp: - -$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ - files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \ - if test "x$$files" != "x" ; then \ - for file in $$files ; do \ - destdir=`dirname $(abs_builddir)/$$file`; \ - test -d "$$destdir" || mkdir -p "$$destdir"; \ - test -f $(abs_srcdir)/$$file && \ - cp -pf $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \ - done; \ - fi; \ - fi - $(AM_V_at)touch setup-build.stamp - -#### scan #### - -GTK_DOC_V_SCAN=$(GTK_DOC_V_SCAN_@AM_V@) -GTK_DOC_V_SCAN_=$(GTK_DOC_V_SCAN_@AM_DEFAULT_V@) -GTK_DOC_V_SCAN_0=@echo " DOC Scanning header files"; - -GTK_DOC_V_INTROSPECT=$(GTK_DOC_V_INTROSPECT_@AM_V@) -GTK_DOC_V_INTROSPECT_=$(GTK_DOC_V_INTROSPECT_@AM_DEFAULT_V@) -GTK_DOC_V_INTROSPECT_0=@echo " DOC Introspecting gobjects"; - -scan-build.stamp: setup-build.stamp $(HFILE_GLOB) $(CFILE_GLOB) - $(GTK_DOC_V_SCAN)_source_dir='' ; \ - for i in $(DOC_SOURCE_DIR) ; do \ - _source_dir="$${_source_dir} --source-dir=$$i" ; \ - done ; \ - gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES) - $(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \ - scanobj_options=""; \ - gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \ - if test "$$?" = "0"; then \ - if test "x$(V)" = "x1"; then \ - scanobj_options="--verbose"; \ - fi; \ - fi; \ - CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \ - gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \ - else \ - for i in $(SCANOBJ_FILES) ; do \ - test -f $$i || touch $$i ; \ - done \ - fi - $(AM_V_at)touch scan-build.stamp - -$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp - @true - -#### xml #### - -GTK_DOC_V_XML=$(GTK_DOC_V_XML_@AM_V@) -GTK_DOC_V_XML_=$(GTK_DOC_V_XML_@AM_DEFAULT_V@) -GTK_DOC_V_XML_0=@echo " DOC Building XML"; - -sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files) xml/gtkdocentities.ent - $(GTK_DOC_V_XML)_source_dir='' ; \ - for i in $(DOC_SOURCE_DIR) ; do \ - _source_dir="$${_source_dir} --source-dir=$$i" ; \ - done ; \ - gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS) - $(AM_V_at)touch sgml-build.stamp - -sgml.stamp: sgml-build.stamp - @true - -$(DOC_MAIN_SGML_FILE): sgml-build.stamp - @true - -xml/gtkdocentities.ent: Makefile - $(GTK_DOC_V_XML)$(MKDIR_P) $(@D) && ( \ - echo ""; \ - echo ""; \ - echo ""; \ - echo ""; \ - echo ""; \ - echo ""; \ - echo ""; \ - ) > $@ - -#### html #### - -GTK_DOC_V_HTML=$(GTK_DOC_V_HTML_@AM_V@) -GTK_DOC_V_HTML_=$(GTK_DOC_V_HTML_@AM_DEFAULT_V@) -GTK_DOC_V_HTML_0=@echo " DOC Building HTML"; - -GTK_DOC_V_XREF=$(GTK_DOC_V_XREF_@AM_V@) -GTK_DOC_V_XREF_=$(GTK_DOC_V_XREF_@AM_DEFAULT_V@) -GTK_DOC_V_XREF_0=@echo " DOC Fixing cross-references"; - -html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files) - $(GTK_DOC_V_HTML)rm -rf html && mkdir html && \ - mkhtml_options=""; \ - gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \ - if test "$$?" = "0"; then \ - if test "x$(V)" = "x1"; then \ - mkhtml_options="$$mkhtml_options --verbose"; \ - fi; \ - fi; \ - gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \ - if test "$$?" = "0"; then \ - mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \ - fi; \ - cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) - -@test "x$(HTML_IMAGES)" = "x" || \ - for file in $(HTML_IMAGES) ; do \ - test -f $(abs_srcdir)/$$file && cp $(abs_srcdir)/$$file $(abs_builddir)/html; \ - test -f $(abs_builddir)/$$file && cp $(abs_builddir)/$$file $(abs_builddir)/html; \ - test -f $$file && cp $$file $(abs_builddir)/html; \ - done; - $(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) - $(AM_V_at)touch html-build.stamp - -#### pdf #### - -GTK_DOC_V_PDF=$(GTK_DOC_V_PDF_@AM_V@) -GTK_DOC_V_PDF_=$(GTK_DOC_V_PDF_@AM_DEFAULT_V@) -GTK_DOC_V_PDF_0=@echo " DOC Building PDF"; - -pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files) - $(GTK_DOC_V_PDF)rm -f $(DOC_MODULE).pdf && \ - mkpdf_options=""; \ - gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \ - if test "$$?" = "0"; then \ - if test "x$(V)" = "x1"; then \ - mkpdf_options="$$mkpdf_options --verbose"; \ - fi; \ - fi; \ - if test "x$(HTML_IMAGES)" != "x"; then \ - for img in $(HTML_IMAGES); do \ - part=`dirname $$img`; \ - echo $$mkpdf_options | grep >/dev/null "\-\-imgdir=$$part "; \ - if test $$? != 0; then \ - mkpdf_options="$$mkpdf_options --imgdir=$$part"; \ - fi; \ - done; \ - fi; \ - gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS) - $(AM_V_at)touch pdf-build.stamp - -############## - -clean-local: - @rm -f *~ *.bak - @rm -rf .libs - @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-types" ; then \ - rm -f $(DOC_MODULE).types; \ - fi - @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-sections" ; then \ - rm -f $(DOC_MODULE)-sections.txt; \ - fi - -distclean-local: - @rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \ - $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt - @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ - rm -f $(SETUP_FILES) $(DOC_MODULE).types; \ - fi - -maintainer-clean-local: - @rm -rf xml html - -install-data-local: - @installfiles=`echo $(builddir)/html/*`; \ - if test "$$installfiles" = '$(builddir)/html/*'; \ - then echo 1>&2 'Nothing to install' ; \ - else \ - if test -n "$(DOC_MODULE_VERSION)"; then \ - installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \ - else \ - installdir="$(DESTDIR)$(TARGET_DIR)"; \ - fi; \ - $(mkinstalldirs) $${installdir} ; \ - for i in $$installfiles; do \ - echo ' $(INSTALL_DATA) '$$i ; \ - $(INSTALL_DATA) $$i $${installdir}; \ - done; \ - if test -n "$(DOC_MODULE_VERSION)"; then \ - mv -f $${installdir}/$(DOC_MODULE).devhelp2 \ - $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp2; \ - fi; \ - $(GTKDOC_REBASE) --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir}; \ - fi - -uninstall-local: - @if test -n "$(DOC_MODULE_VERSION)"; then \ - installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \ - else \ - installdir="$(DESTDIR)$(TARGET_DIR)"; \ - fi; \ - rm -rf $${installdir} - -# -# Require gtk-doc when making dist -# -if HAVE_GTK_DOC -dist-check-gtkdoc: docs -else -dist-check-gtkdoc: - @echo "*** gtk-doc is needed to run 'make dist'. ***" - @echo "*** gtk-doc was not found when 'configure' ran. ***" - @echo "*** please install gtk-doc and rerun 'configure'. ***" - @false -endif - -dist-hook: dist-check-gtkdoc all-gtk-doc dist-hook-local - @mkdir $(distdir)/html - @cp ./html/* $(distdir)/html - @-cp ./$(DOC_MODULE).pdf $(distdir)/ - @-cp ./$(DOC_MODULE).types $(distdir)/ - @-cp ./$(DOC_MODULE)-sections.txt $(distdir)/ - @cd $(distdir) && rm -f $(DISTCLEANFILES) - @$(GTKDOC_REBASE) --online --relative --html-dir=$(distdir)/html - -.PHONY : dist-hook-local docs diff -Nru mate-utils-1.26.0/install-sh mate-utils-1.26.1/install-sh --- mate-utils-1.26.0/install-sh 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/install-sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,529 +0,0 @@ -#!/bin/sh -# install - install a program, script, or datafile - -scriptversion=2018-03-11.20; # UTC - -# This originates from X11R5 (mit/util/scripts/install.sh), which was -# later released in X11R6 (xc/config/util/install.sh) with the -# following copyright and license. -# -# Copyright (C) 1994 X Consortium -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to -# deal in the Software without restriction, including without limitation the -# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -# sell copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- -# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -# -# Except as contained in this notice, the name of the X Consortium shall not -# be used in advertising or otherwise to promote the sale, use or other deal- -# ings in this Software without prior written authorization from the X Consor- -# tium. -# -# -# FSF changes to this file are in the public domain. -# -# Calling this script install-sh is preferred over install.sh, to prevent -# 'make' implicit rules from creating a file called install from it -# when there is no Makefile. -# -# This script is compatible with the BSD install script, but was written -# from scratch. - -tab=' ' -nl=' -' -IFS=" $tab$nl" - -# Set DOITPROG to "echo" to test this script. - -doit=${DOITPROG-} -doit_exec=${doit:-exec} - -# Put in absolute file names if you don't have them in your path; -# or use environment vars. - -chgrpprog=${CHGRPPROG-chgrp} -chmodprog=${CHMODPROG-chmod} -chownprog=${CHOWNPROG-chown} -cmpprog=${CMPPROG-cmp} -cpprog=${CPPROG-cp} -mkdirprog=${MKDIRPROG-mkdir} -mvprog=${MVPROG-mv} -rmprog=${RMPROG-rm} -stripprog=${STRIPPROG-strip} - -posix_mkdir= - -# Desired mode of installed file. -mode=0755 - -chgrpcmd= -chmodcmd=$chmodprog -chowncmd= -mvcmd=$mvprog -rmcmd="$rmprog -f" -stripcmd= - -src= -dst= -dir_arg= -dst_arg= - -copy_on_change=false -is_target_a_directory=possibly - -usage="\ -Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE - or: $0 [OPTION]... SRCFILES... DIRECTORY - or: $0 [OPTION]... -t DIRECTORY SRCFILES... - or: $0 [OPTION]... -d DIRECTORIES... - -In the 1st form, copy SRCFILE to DSTFILE. -In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. -In the 4th, create DIRECTORIES. - -Options: - --help display this help and exit. - --version display version info and exit. - - -c (ignored) - -C install only if different (preserve the last data modification time) - -d create directories instead of installing files. - -g GROUP $chgrpprog installed files to GROUP. - -m MODE $chmodprog installed files to MODE. - -o USER $chownprog installed files to USER. - -s $stripprog installed files. - -t DIRECTORY install into DIRECTORY. - -T report an error if DSTFILE is a directory. - -Environment variables override the default commands: - CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG - RMPROG STRIPPROG -" - -while test $# -ne 0; do - case $1 in - -c) ;; - - -C) copy_on_change=true;; - - -d) dir_arg=true;; - - -g) chgrpcmd="$chgrpprog $2" - shift;; - - --help) echo "$usage"; exit $?;; - - -m) mode=$2 - case $mode in - *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) - echo "$0: invalid mode: $mode" >&2 - exit 1;; - esac - shift;; - - -o) chowncmd="$chownprog $2" - shift;; - - -s) stripcmd=$stripprog;; - - -t) - is_target_a_directory=always - dst_arg=$2 - # Protect names problematic for 'test' and other utilities. - case $dst_arg in - -* | [=\(\)!]) dst_arg=./$dst_arg;; - esac - shift;; - - -T) is_target_a_directory=never;; - - --version) echo "$0 $scriptversion"; exit $?;; - - --) shift - break;; - - -*) echo "$0: invalid option: $1" >&2 - exit 1;; - - *) break;; - esac - shift -done - -# We allow the use of options -d and -T together, by making -d -# take the precedence; this is for compatibility with GNU install. - -if test -n "$dir_arg"; then - if test -n "$dst_arg"; then - echo "$0: target directory not allowed when installing a directory." >&2 - exit 1 - fi -fi - -if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then - # When -d is used, all remaining arguments are directories to create. - # When -t is used, the destination is already specified. - # Otherwise, the last argument is the destination. Remove it from $@. - for arg - do - if test -n "$dst_arg"; then - # $@ is not empty: it contains at least $arg. - set fnord "$@" "$dst_arg" - shift # fnord - fi - shift # arg - dst_arg=$arg - # Protect names problematic for 'test' and other utilities. - case $dst_arg in - -* | [=\(\)!]) dst_arg=./$dst_arg;; - esac - done -fi - -if test $# -eq 0; then - if test -z "$dir_arg"; then - echo "$0: no input file specified." >&2 - exit 1 - fi - # It's OK to call 'install-sh -d' without argument. - # This can happen when creating conditional directories. - exit 0 -fi - -if test -z "$dir_arg"; then - if test $# -gt 1 || test "$is_target_a_directory" = always; then - if test ! -d "$dst_arg"; then - echo "$0: $dst_arg: Is not a directory." >&2 - exit 1 - fi - fi -fi - -if test -z "$dir_arg"; then - do_exit='(exit $ret); exit $ret' - trap "ret=129; $do_exit" 1 - trap "ret=130; $do_exit" 2 - trap "ret=141; $do_exit" 13 - trap "ret=143; $do_exit" 15 - - # Set umask so as not to create temps with too-generous modes. - # However, 'strip' requires both read and write access to temps. - case $mode in - # Optimize common cases. - *644) cp_umask=133;; - *755) cp_umask=22;; - - *[0-7]) - if test -z "$stripcmd"; then - u_plus_rw= - else - u_plus_rw='% 200' - fi - cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; - *) - if test -z "$stripcmd"; then - u_plus_rw= - else - u_plus_rw=,u+rw - fi - cp_umask=$mode$u_plus_rw;; - esac -fi - -for src -do - # Protect names problematic for 'test' and other utilities. - case $src in - -* | [=\(\)!]) src=./$src;; - esac - - if test -n "$dir_arg"; then - dst=$src - dstdir=$dst - test -d "$dstdir" - dstdir_status=$? - else - - # Waiting for this to be detected by the "$cpprog $src $dsttmp" command - # might cause directories to be created, which would be especially bad - # if $src (and thus $dsttmp) contains '*'. - if test ! -f "$src" && test ! -d "$src"; then - echo "$0: $src does not exist." >&2 - exit 1 - fi - - if test -z "$dst_arg"; then - echo "$0: no destination specified." >&2 - exit 1 - fi - dst=$dst_arg - - # If destination is a directory, append the input filename. - if test -d "$dst"; then - if test "$is_target_a_directory" = never; then - echo "$0: $dst_arg: Is a directory" >&2 - exit 1 - fi - dstdir=$dst - dstbase=`basename "$src"` - case $dst in - */) dst=$dst$dstbase;; - *) dst=$dst/$dstbase;; - esac - dstdir_status=0 - else - dstdir=`dirname "$dst"` - test -d "$dstdir" - dstdir_status=$? - fi - fi - - case $dstdir in - */) dstdirslash=$dstdir;; - *) dstdirslash=$dstdir/;; - esac - - obsolete_mkdir_used=false - - if test $dstdir_status != 0; then - case $posix_mkdir in - '') - # Create intermediate dirs using mode 755 as modified by the umask. - # This is like FreeBSD 'install' as of 1997-10-28. - umask=`umask` - case $stripcmd.$umask in - # Optimize common cases. - *[2367][2367]) mkdir_umask=$umask;; - .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; - - *[0-7]) - mkdir_umask=`expr $umask + 22 \ - - $umask % 100 % 40 + $umask % 20 \ - - $umask % 10 % 4 + $umask % 2 - `;; - *) mkdir_umask=$umask,go-w;; - esac - - # With -d, create the new directory with the user-specified mode. - # Otherwise, rely on $mkdir_umask. - if test -n "$dir_arg"; then - mkdir_mode=-m$mode - else - mkdir_mode= - fi - - posix_mkdir=false - case $umask in - *[123567][0-7][0-7]) - # POSIX mkdir -p sets u+wx bits regardless of umask, which - # is incompatible with FreeBSD 'install' when (umask & 300) != 0. - ;; - *) - # Note that $RANDOM variable is not portable (e.g. dash); Use it - # here however when possible just to lower collision chance. - tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ - - trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0 - - # Because "mkdir -p" follows existing symlinks and we likely work - # directly in world-writeable /tmp, make sure that the '$tmpdir' - # directory is successfully created first before we actually test - # 'mkdir -p' feature. - if (umask $mkdir_umask && - $mkdirprog $mkdir_mode "$tmpdir" && - exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 - then - if test -z "$dir_arg" || { - # Check for POSIX incompatibilities with -m. - # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or - # other-writable bit of parent directory when it shouldn't. - # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. - test_tmpdir="$tmpdir/a" - ls_ld_tmpdir=`ls -ld "$test_tmpdir"` - case $ls_ld_tmpdir in - d????-?r-*) different_mode=700;; - d????-?--*) different_mode=755;; - *) false;; - esac && - $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { - ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` - test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" - } - } - then posix_mkdir=: - fi - rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" - else - # Remove any dirs left behind by ancient mkdir implementations. - rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null - fi - trap '' 0;; - esac;; - esac - - if - $posix_mkdir && ( - umask $mkdir_umask && - $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" - ) - then : - else - - # The umask is ridiculous, or mkdir does not conform to POSIX, - # or it failed possibly due to a race condition. Create the - # directory the slow way, step by step, checking for races as we go. - - case $dstdir in - /*) prefix='/';; - [-=\(\)!]*) prefix='./';; - *) prefix='';; - esac - - oIFS=$IFS - IFS=/ - set -f - set fnord $dstdir - shift - set +f - IFS=$oIFS - - prefixes= - - for d - do - test X"$d" = X && continue - - prefix=$prefix$d - if test -d "$prefix"; then - prefixes= - else - if $posix_mkdir; then - (umask=$mkdir_umask && - $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break - # Don't fail if two instances are running concurrently. - test -d "$prefix" || exit 1 - else - case $prefix in - *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; - *) qprefix=$prefix;; - esac - prefixes="$prefixes '$qprefix'" - fi - fi - prefix=$prefix/ - done - - if test -n "$prefixes"; then - # Don't fail if two instances are running concurrently. - (umask $mkdir_umask && - eval "\$doit_exec \$mkdirprog $prefixes") || - test -d "$dstdir" || exit 1 - obsolete_mkdir_used=true - fi - fi - fi - - if test -n "$dir_arg"; then - { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && - { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && - { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || - test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 - else - - # Make a couple of temp file names in the proper directory. - dsttmp=${dstdirslash}_inst.$$_ - rmtmp=${dstdirslash}_rm.$$_ - - # Trap to clean up those temp files at exit. - trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 - - # Copy the file name to the temp name. - (umask $cp_umask && - { test -z "$stripcmd" || { - # Create $dsttmp read-write so that cp doesn't create it read-only, - # which would cause strip to fail. - if test -z "$doit"; then - : >"$dsttmp" # No need to fork-exec 'touch'. - else - $doit touch "$dsttmp" - fi - } - } && - $doit_exec $cpprog "$src" "$dsttmp") && - - # and set any options; do chmod last to preserve setuid bits. - # - # If any of these fail, we abort the whole thing. If we want to - # ignore errors from any of these, just make sure not to ignore - # errors from the above "$doit $cpprog $src $dsttmp" command. - # - { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && - { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && - { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && - { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && - - # If -C, don't bother to copy if it wouldn't change the file. - if $copy_on_change && - old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && - new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && - set -f && - set X $old && old=:$2:$4:$5:$6 && - set X $new && new=:$2:$4:$5:$6 && - set +f && - test "$old" = "$new" && - $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 - then - rm -f "$dsttmp" - else - # Rename the file to the real destination. - $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || - - # The rename failed, perhaps because mv can't rename something else - # to itself, or perhaps because mv is so ancient that it does not - # support -f. - { - # Now remove or move aside any old file at destination location. - # We try this two ways since rm can't unlink itself on some - # systems and the destination file might be busy for other - # reasons. In this case, the final cleanup might fail but the new - # file should still install successfully. - { - test ! -f "$dst" || - $doit $rmcmd -f "$dst" 2>/dev/null || - { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && - { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } - } || - { echo "$0: cannot unlink or rename $dst" >&2 - (exit 1); exit 1 - } - } && - - # Now rename the file to the real destination. - $doit $mvcmd "$dsttmp" "$dst" - } - fi || exit 1 - - trap '' 0 - fi -done - -# Local variables: -# eval: (add-hook 'before-save-hook 'time-stamp) -# time-stamp-start: "scriptversion=" -# time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC0" -# time-stamp-end: "; # UTC" -# End: diff -Nru mate-utils-1.26.0/logview/data/icons/Makefile.in mate-utils-1.26.1/logview/data/icons/Makefile.in --- mate-utils-1.26.0/logview/data/icons/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/logview/data/icons/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,658 +0,0 @@ -# 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 . - -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 = logview/data/icons -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 = -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 -DATA = $(noinst_DATA) -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.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@ -NULL = -public_icons_themes = \ - hicolor \ - $(NULL) - -png_icons = \ - hicolor_apps_16x16_mate-system-log.png \ - hicolor_apps_22x22_mate-system-log.png \ - hicolor_apps_24x24_mate-system-log.png \ - hicolor_apps_32x32_mate-system-log.png \ - hicolor_apps_48x48_mate-system-log.png \ - hicolor_apps_256x256_mate-system-log.png \ - $(NULL) - -public_icons = \ - $(png_icons) \ - hicolor_apps_scalable_mate-system-log-symbolic.svg \ - $(NULL) - -noinst_DATA = \ - logview.svg \ - $(NULL) - -EXTRA_DIST = \ - $(public_icons) \ - $(noinst_DATA) \ - $(NULL) - -gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor -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 logview/data/icons/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign logview/data/icons/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): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -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 $(DATA) -installdirs: -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: - -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-data-local - @$(NORMAL_INSTALL) - $(MAKE) $(AM_MAKEFLAGS) install-data-hook -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-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-local - @$(NORMAL_INSTALL) - $(MAKE) $(AM_MAKEFLAGS) uninstall-hook -.MAKE: install-am install-data-am install-strip uninstall-am - -.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-data install-data-am \ - install-data-hook install-data-local install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - 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-hook uninstall-local - -.PRECIOUS: Makefile - - -@HAVE_INKSCAPE_TRUE@hicolor_apps_16x16_mate-system-log.png: logview.svg -@HAVE_INKSCAPE_TRUE@ $(if $(wildcard $(INKSCAPE)), \ -@HAVE_INKSCAPE_TRUE@ $(info $(shell $(INKSCAPE) -z $^ --export-area=303:65:319:81 -w=16 -h=16 -e=$@)), \ -@HAVE_INKSCAPE_TRUE@ $(error could not locate inkscape) \ -@HAVE_INKSCAPE_TRUE@ ) - -@HAVE_INKSCAPE_TRUE@hicolor_apps_22x22_mate-system-log.png: logview.svg -@HAVE_INKSCAPE_TRUE@ $(if $(wildcard $(INKSCAPE)), \ -@HAVE_INKSCAPE_TRUE@ $(info $(shell $(INKSCAPE) -z $^ --export-area=303:101:325:123 -w=22 -h=22 -e=$@)), \ -@HAVE_INKSCAPE_TRUE@ $(error could not locate inkscape) \ -@HAVE_INKSCAPE_TRUE@ ) - -@HAVE_INKSCAPE_TRUE@hicolor_apps_24x24_mate-system-log.png: logview.svg -@HAVE_INKSCAPE_TRUE@ $(if $(wildcard $(INKSCAPE)), \ -@HAVE_INKSCAPE_TRUE@ $(info $(shell $(INKSCAPE) -z $^ --export-area=302:100:326:124 -w=24 -h=24 -e=$@)), \ -@HAVE_INKSCAPE_TRUE@ $(error could not locate inkscape) \ -@HAVE_INKSCAPE_TRUE@ ) - -@HAVE_INKSCAPE_TRUE@hicolor_apps_32x32_mate-system-log.png: logview.svg -@HAVE_INKSCAPE_TRUE@ $(if $(wildcard $(INKSCAPE)), \ -@HAVE_INKSCAPE_TRUE@ $(info $(shell $(INKSCAPE) -z $^ --export-area=304:142:336:174 -w=32 -h=32 -e=$@)), \ -@HAVE_INKSCAPE_TRUE@ $(error could not locate inkscape) \ -@HAVE_INKSCAPE_TRUE@ ) - -@HAVE_INKSCAPE_TRUE@hicolor_apps_48x48_mate-system-log.png: logview.svg -@HAVE_INKSCAPE_TRUE@ $(if $(wildcard $(INKSCAPE)), \ -@HAVE_INKSCAPE_TRUE@ $(info $(shell $(INKSCAPE) -z $^ --export-area=296:202:344:250 -w=48 -h=48 -e=$@)), \ -@HAVE_INKSCAPE_TRUE@ $(error could not locate inkscape) \ -@HAVE_INKSCAPE_TRUE@ ) - -@HAVE_INKSCAPE_TRUE@hicolor_apps_256x256_mate-system-log.png: logview.svg -@HAVE_INKSCAPE_TRUE@ $(if $(wildcard $(INKSCAPE)), \ -@HAVE_INKSCAPE_TRUE@ $(info $(shell $(INKSCAPE) -z $^ --export-area=33:11:289:267 -w=256 -h=256 -e=$@)), \ -@HAVE_INKSCAPE_TRUE@ $(error could not locate inkscape) \ -@HAVE_INKSCAPE_TRUE@ ) - -############################################################################### - -install-icons: | $(public_icons) - for icon in $(public_icons); do \ - THEME=`echo $$icon | cut -d_ -f1`; \ - CONTEXT=`echo $$icon | cut -d_ -f2`; \ - SIZE=`echo $$icon | cut -d_ -f3`; \ - ICONFILE=`echo $$icon | cut -d_ -f4`; \ - mkdir -p $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \ - $(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \ - done - -uninstall-icons: - -for icon in $(public_icons); do \ - THEME=`echo $$icon | cut -d_ -f1`; \ - CONTEXT=`echo $$icon | cut -d_ -f2`; \ - SIZE=`echo $$icon | cut -d_ -f3`; \ - ICONFILE=`echo $$icon | cut -d_ -f4`; \ - rm -f $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \ - done - -install-data-local: install-icons - -uninstall-local: uninstall-icons - -install-data-hook: update-icon-cache -uninstall-hook: update-icon-cache -update-icon-cache: - @-if test -z "$(DESTDIR)"; then \ - echo "Updating Gtk icon cache."; \ - $(gtk_update_icon_cache); \ - else \ - echo "*** Icon cache not updated. After (un)install, run this:"; \ - echo "*** $(gtk_update_icon_cache)"; \ - fi - -.PHONY: build-png-icons clean-png-icons -build-png-icons: | $(png_icons) - -clean-png-icons: - rm -f $(png_icons) - --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 -Nru mate-utils-1.26.0/logview/data/Makefile.in mate-utils-1.26.1/logview/data/Makefile.in --- mate-utils-1.26.0/logview/data/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/logview/data/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,860 +0,0 @@ -# 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 . - -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 = logview/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.system-log.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 = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -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)$(desktopdir)" -NROFF = nroff -MANS = $(man_MANS) -DATA = $(desktop_DATA) -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir distdir-am -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(srcdir)/org.mate.system-log.gschema.xml.in -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -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@ -SUBDIRS = icons -desktopdir = $(datadir)/applications -desktop_in_files = mate-system-log.desktop.in -desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) -man_MANS = mate-system-log.1 -gsettings_SCHEMAS = org.mate.system-log.gschema.xml -EXTRA_DIST = \ - logview-filter.ui \ - logview-toolbar.xml \ - mate-system-log.desktop.in.in \ - $(man_MANS) \ - org.mate.system-log.gresource.xml - -DISTCLEANFILES = \ - $(desktop_DATA) \ - $(desktop_in_files) \ - $(gsettings_SCHEMAS) - -all: all-recursive - -.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 logview/data/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign logview/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.system-log.gschema.xml: $(top_builddir)/config.status $(srcdir)/org.mate.system-log.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-desktopDATA: $(desktop_DATA) - @$(NORMAL_INSTALL) - @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(desktopdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(desktopdir)" || 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)$(desktopdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(desktopdir)" || exit $$?; \ - done - -uninstall-desktopDATA: - @$(NORMAL_UNINSTALL) - @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(desktopdir)'; $(am__uninstall_files_from_dir) - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile $(MANS) $(DATA) -installdirs: installdirs-recursive -installdirs-am: - for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(desktopdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -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: - -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) - -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) - -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-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: install-desktopDATA install-man - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: install-man1 - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: uninstall-desktopDATA uninstall-man - -uninstall-man: uninstall-man1 - -.MAKE: $(am__recursive_targets) install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ - check-am clean clean-generic clean-libtool cscopelist-am ctags \ - ctags-am distclean distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am \ - install-desktopDATA 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 installdirs-am \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am uninstall-desktopDATA \ - uninstall-man uninstall-man1 - -.PRECIOUS: Makefile - - -$(desktop_in_files): $(desktop_in_files:.desktop.in=.desktop.in.in) - @sed -e "s|\@VERSION\@|@VERSION@|" $< > $@ - -$(desktop_DATA): $(desktop_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 $< $@ -@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 -Nru mate-utils-1.26.0/logview/help/af/af.po mate-utils-1.26.1/logview/help/af/af.po --- mate-utils-1.26.0/logview/help/af/af.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/af/af.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Afrikaans (https://www.transifex.com/mate/teams/13566/af/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Afrikaans (https://app.transifex.com/mate/teams/13566/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -198,8 +198,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/af/index.docbook mate-utils-1.26.1/logview/help/af/index.docbook --- mate-utils-1.26.0/logview/help/af/index.docbook 2021-08-05 19:48:43.000000000 +0000 +++ mate-utils-1.26.1/logview/help/af/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Inleiding - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Opdraglyn - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Gebruik - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/af/legal.xml mate-utils-1.26.1/logview/help/af/legal.xml --- mate-utils-1.26.0/logview/help/af/legal.xml 2021-08-05 19:48:43.000000000 +0000 +++ mate-utils-1.26.1/logview/help/af/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/am/am.po mate-utils-1.26.1/logview/help/am/am.po --- mate-utils-1.26.0/logview/help/am/am.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/am/am.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# samson , 2018 +# samson , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: samson , 2018\n" -"Language-Team: Amharic (https://www.transifex.com/mate/teams/13566/am/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: samson , 2021\n" +"Language-Team: Amharic (https://app.transifex.com/mate/teams/13566/am/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/am/index.docbook mate-utils-1.26.1/logview/help/am/index.docbook --- mate-utils-1.26.0/logview/help/am/index.docbook 2021-08-05 19:48:43.000000000 +0000 +++ mate-utils-1.26.1/logview/help/am/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - መግቢያ - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - የ ትእዛዝ መስመር - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - አጠቃቀም - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/am/legal.xml mate-utils-1.26.1/logview/help/am/legal.xml --- mate-utils-1.26.0/logview/help/am/legal.xml 2021-08-05 19:48:43.000000000 +0000 +++ mate-utils-1.26.1/logview/help/am/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/ar/ar.po mate-utils-1.26.1/logview/help/ar/ar.po --- mate-utils-1.26.0/logview/help/ar/ar.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ar/ar.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Mosaab Alzoubi , 2018 -# Wolfgang Ulbrich , 2018 -# Ahmad Dakhlallah , 2019 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 +# Ahmad Dakhlallah , 2021 +# Oukiki Saleh , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Ahmad Dakhlallah , 2019\n" -"Language-Team: Arabic (https://www.transifex.com/mate/teams/13566/ar/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Oukiki Saleh , 2021\n" +"Language-Team: Arabic (https://app.transifex.com/mate/teams/13566/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,7 +23,8 @@ msgid "translator-credits" msgstr "" "فريق عيون العرب للترجمة http://www.arabeyes.org :\n" -"مصعب الزعبي\t" +"مصعب الزعبي\t\n" +"لينيكس العرب linuxarabia.co" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -56,7 +57,7 @@ #. (itstool) path: revdescription/para #: C/index.docbook:51 C/index.docbook:122 msgid "MATE Documentation Project" -msgstr "مشروع دليل MATE" +msgstr "مشروع توثيق ماتي" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -200,8 +201,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ar/index.docbook mate-utils-1.26.1/logview/help/ar/index.docbook --- mate-utils-1.26.0/logview/help/ar/index.docbook 2021-08-05 19:48:43.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ar/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - مشروع دليل MATE - - - مشروع دليل GNOME - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - آراء وانطباعات - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - مقدمة - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - سطر الأوامر - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - الاستخدام - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ar/legal.xml mate-utils-1.26.1/logview/help/ar/legal.xml --- mate-utils-1.26.0/logview/help/ar/legal.xml 2021-08-05 19:48:43.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ar/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/as/as.po mate-utils-1.26.1/logview/help/as/as.po --- mate-utils-1.26.0/logview/help/as/as.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/as/as.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Assamese (https://www.transifex.com/mate/teams/13566/as/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Assamese (https://app.transifex.com/mate/teams/13566/as/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/as/index.docbook mate-utils-1.26.1/logview/help/as/index.docbook --- mate-utils-1.26.0/logview/help/as/index.docbook 2021-08-05 19:48:43.000000000 +0000 +++ mate-utils-1.26.1/logview/help/as/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - ভূমিকা - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - কমান্ড-লাইন - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/as/legal.xml mate-utils-1.26.1/logview/help/as/legal.xml --- mate-utils-1.26.0/logview/help/as/legal.xml 2021-08-05 19:48:43.000000000 +0000 +++ mate-utils-1.26.1/logview/help/as/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/ast/ast.po mate-utils-1.26.1/logview/help/ast/ast.po --- mate-utils-1.26.0/logview/help/ast/ast.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ast/ast.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Ḷḷumex03, 2018 +# Stefano Karapetsas , 2021 +# Ḷḷumex03, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Ḷḷumex03, 2018\n" -"Language-Team: Asturian (https://www.transifex.com/mate/teams/13566/ast/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Ḷḷumex03, 2021\n" +"Language-Team: Asturian (https://app.transifex.com/mate/teams/13566/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -196,8 +196,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ast/index.docbook mate-utils-1.26.1/logview/help/ast/index.docbook --- mate-utils-1.26.0/logview/help/ast/index.docbook 2021-08-05 19:48:43.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ast/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introducción - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Llinia de comandu - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usu - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ast/legal.xml mate-utils-1.26.1/logview/help/ast/legal.xml --- mate-utils-1.26.0/logview/help/ast/legal.xml 2021-08-05 19:48:43.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ast/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/az/az.po mate-utils-1.26.1/logview/help/az/az.po --- mate-utils-1.26.0/logview/help/az/az.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/az/az.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Azerbaijani (https://www.transifex.com/mate/teams/13566/az/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Azerbaijani (https://app.transifex.com/mate/teams/13566/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -199,8 +199,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/az/index.docbook mate-utils-1.26.1/logview/help/az/index.docbook --- mate-utils-1.26.0/logview/help/az/index.docbook 2021-08-05 19:48:43.000000000 +0000 +++ mate-utils-1.26.1/logview/help/az/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Əmr Sətiri - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/az/legal.xml mate-utils-1.26.1/logview/help/az/legal.xml --- mate-utils-1.26.0/logview/help/az/legal.xml 2021-08-05 19:48:43.000000000 +0000 +++ mate-utils-1.26.1/logview/help/az/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/be/be.po mate-utils-1.26.1/logview/help/be/be.po --- mate-utils-1.26.0/logview/help/be/be.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/be/be.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Mihail Varantsou , 2018 +# Stefano Karapetsas , 2021 +# Mihail Varantsou , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Mihail Varantsou , 2018\n" -"Language-Team: Belarusian (https://www.transifex.com/mate/teams/13566/be/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Mihail Varantsou , 2021\n" +"Language-Team: Belarusian (https://app.transifex.com/mate/teams/13566/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -198,8 +198,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/be/index.docbook mate-utils-1.26.1/logview/help/be/index.docbook --- mate-utils-1.26.0/logview/help/be/index.docbook 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/be/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Уводзіны - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Загадны радок - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - доля - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/be/legal.xml mate-utils-1.26.1/logview/help/be/legal.xml --- mate-utils-1.26.0/logview/help/be/legal.xml 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/be/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/bg/bg.po mate-utils-1.26.1/logview/help/bg/bg.po --- mate-utils-1.26.0/logview/help/bg/bg.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/bg/bg.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Любомир Василев, 2018 -# Wolfgang Ulbrich , 2018 +# Stefano Karapetsas , 2021 +# Любомир Василев, 2021 +# Wolfgang Ulbrich , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Wolfgang Ulbrich , 2018\n" -"Language-Team: Bulgarian (https://www.transifex.com/mate/teams/13566/bg/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Wolfgang Ulbrich , 2021\n" +"Language-Team: Bulgarian (https://app.transifex.com/mate/teams/13566/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -205,8 +205,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/bg/index.docbook mate-utils-1.26.1/logview/help/bg/index.docbook --- mate-utils-1.26.0/logview/help/bg/index.docbook 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/bg/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - Проектът за документация на MATE - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Обратна връзка - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Въведение - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Меню Програми - - Choose System ToolsLog File Viewer. - - - - Команден ред - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Употреба - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/bg/legal.xml mate-utils-1.26.1/logview/help/bg/legal.xml --- mate-utils-1.26.0/logview/help/bg/legal.xml 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/bg/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/bn/bn.po mate-utils-1.26.1/logview/help/bn/bn.po --- mate-utils-1.26.0/logview/help/bn/bn.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/bn/bn.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Bengali (https://www.transifex.com/mate/teams/13566/bn/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Bengali (https://app.transifex.com/mate/teams/13566/bn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -200,8 +200,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/bn/index.docbook mate-utils-1.26.1/logview/help/bn/index.docbook --- mate-utils-1.26.0/logview/help/bn/index.docbook 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/bn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - ভূমিকা - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - কমান্ড-লাইন - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - ব্যবহার প্রণালী - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/bn/legal.xml mate-utils-1.26.1/logview/help/bn/legal.xml --- mate-utils-1.26.0/logview/help/bn/legal.xml 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/bn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/bn_IN/bn_IN.po mate-utils-1.26.1/logview/help/bn_IN/bn_IN.po --- mate-utils-1.26.0/logview/help/bn_IN/bn_IN.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/bn_IN/bn_IN.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Bengali (India) (https://www.transifex.com/mate/teams/13566/bn_IN/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Bengali (India) (https://app.transifex.com/mate/teams/13566/bn_IN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -198,8 +198,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/bn_IN/index.docbook mate-utils-1.26.1/logview/help/bn_IN/index.docbook --- mate-utils-1.26.0/logview/help/bn_IN/index.docbook 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/bn_IN/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - ভূমিকা - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - কমান্ড-লাইন - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - ব্যবহার প্রণালী - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/bn_IN/legal.xml mate-utils-1.26.1/logview/help/bn_IN/legal.xml --- mate-utils-1.26.0/logview/help/bn_IN/legal.xml 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/bn_IN/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/br/br.po mate-utils-1.26.1/logview/help/br/br.po --- mate-utils-1.26.0/logview/help/br/br.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/br/br.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Alan Monfort , 2018 +# Stefano Karapetsas , 2021 +# Alan Monfort , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Alan Monfort , 2018\n" -"Language-Team: Breton (https://www.transifex.com/mate/teams/13566/br/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Alan Monfort , 2021\n" +"Language-Team: Breton (https://app.transifex.com/mate/teams/13566/br/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -196,8 +196,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/br/index.docbook mate-utils-1.26.1/logview/help/br/index.docbook --- mate-utils-1.26.0/logview/help/br/index.docbook 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/br/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Linenn arc'had - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Arver - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/br/legal.xml mate-utils-1.26.1/logview/help/br/legal.xml --- mate-utils-1.26.0/logview/help/br/legal.xml 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/br/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/bs/bs.po mate-utils-1.26.1/logview/help/bs/bs.po --- mate-utils-1.26.0/logview/help/bs/bs.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/bs/bs.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Sky Lion , 2018 +# Stefano Karapetsas , 2021 +# Sky Lion , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Sky Lion , 2018\n" -"Language-Team: Bosnian (https://www.transifex.com/mate/teams/13566/bs/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Sky Lion , 2021\n" +"Language-Team: Bosnian (https://app.transifex.com/mate/teams/13566/bs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -196,8 +196,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/bs/index.docbook mate-utils-1.26.1/logview/help/bs/index.docbook --- mate-utils-1.26.0/logview/help/bs/index.docbook 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/bs/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Komandna linija - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/bs/legal.xml mate-utils-1.26.1/logview/help/bs/legal.xml --- mate-utils-1.26.0/logview/help/bs/legal.xml 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/bs/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/ca/ca.po mate-utils-1.26.1/logview/help/ca/ca.po --- mate-utils-1.26.0/logview/help/ca/ca.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ca/ca.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 # Robert Antoni Buj i Gelonch , 2021 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Robert Antoni Buj i Gelonch , 2021\n" -"Language-Team: Catalan (https://www.transifex.com/mate/teams/13566/ca/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Catalan (https://app.transifex.com/mate/teams/13566/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,7 +19,9 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Robert Antoni Buj Gelonch , 2018" +msgstr "" +"Aniol Gervasi , 2009\n" +"Robert Antoni Buj Gelonch , 2018, 2019, 2020, 2021" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -230,8 +232,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Per informar d'un error o fer un suggeriment sobre l'aplicació del " "visualitzador de registres del sistema o d'aquest manual, seguiu les " @@ -476,8 +479,9 @@ "seleccionar les línies de l'àrea principal i seleccionar l'opció del menú " "EditaCopia." " Si voleu copiar el registre sencer al porta-retalls, seleccioneu-ho tot " -"mitjançant l'opció del menú EditaSelecciona-ho tot, després seleccioneu " +"mitjançant l'opció del menú " +"EditaSelecciona-ho " +"tot, després seleccioneu " "EditaCopia." #. (itstool) path: sect2/title @@ -689,10 +693,10 @@ "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." +" ELS DANYS PER PÈRDUA DE CLIENTS, INTERRUPCIONS DE LA FEINA, FALLADA O " +"MALFUNCIONAMENT 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 diff -Nru mate-utils-1.26.0/logview/help/ca/index.docbook mate-utils-1.26.1/logview/help/ca/index.docbook --- mate-utils-1.26.0/logview/help/ca/index.docbook 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ca/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,237 +0,0 @@ - - - - - - -]> - - -
- - - - Manual del visualitzador de registres del sistema - - - El visualitzador de registres del sistema és una interfície gràfica d'usuari per visualitzar i monitorar els fitxers de registres del sistema. - - - 2015-2021 Projecte de documentació de MATE - 2003 Sun Microsystems - 2000 Judith Samson - - - Projecte de documentació de MATE - - - Projecte de documentació de GNOME - - - - - - Equip de documentació de MATE Escriptori MATE - Sun Projecte de documentació de GNOME Sun Microsystems
gdocteam@sun.com
- - Judith Samson Projecte de documentació de GNOME
judith@samsonsource.com
- - Paul Cutler Equip de documentació de GNOME
pcutler@gnome.org
- - Vincent Noel
vincent.noel@gmail.com
- - -
- - - Versió 1.10 del manual del visualitzador de registres del sistema Juliol de 2015 - Wolfgang Ulbrich - Projecte de documentació de MATE - - Versió 2.5 del manual del visualitzador de registres del sistema Octubre de 2009 - Paul Cutler pcutler@gnome.org - Projecte de documentació de GNOME - - Versió 2.4 del manual del visualitzador de registres del sistema Octubre de 2005 - Vincent Noel vincent.noel@gmail.com - Projecte de documentació de GNOME - - Versió 2.3 del manual del visualitzador de registres del sistema Octubre de 2002 - Equip de documentació de GNOME de Sun gdocteam@sun.com - Projecte de documentació de GNOME - - Versió 2.2 del manual del visualitzador de registres del sistema Agost de 2002 - Equip de documentació de GNOME de Sun gdocteam@sun.com - Projecte de documentació de GNOME - - Versió 2.1 del manual del visualitzador de registres del sistema Juliol de 2002 - Equip de documentació de GNOME de Sun gdocteam@sun.com - Projecte de documentació de GNOME - - Versió 2.0 del manual del visualitzador de registres del sistema Maig de 2002 - Equip de documentació de GNOME de Sun gdocteam@sun.com - Projecte de documentació de GNOME - - Manual del visualitzador de registres 2000 - Judith Samson judith@samsonsource.com - Projecte de documentació de GNOME - - - - Aquest manual descriu la versió 1.10 del visualitzador de registres del sistema. - - Retroacció - Per informar d'un error o fer un suggeriment sobre l'aplicació del visualitzador de registres del sistema o d'aquest manual, seguiu les instruccions de la pàgina de retroacció de MATE. - - - - - - Robert Antoni Buj Gelonch - - rbuj@fedoraproject.org - - - - 2018 - - Robert Antoni Buj Gelonch - -
- - Visualitzador de registres del sistema - - - - - - Introducció - - El visualitzador de registres del sistema és un visualitzador gràfic, basat en menús, que podeu utilitzar per visualitzar i monitorar els registres del vostre sistema. El visualitzador de registres del sistema ve amb algunes funcions que us poden ajudar per gestionar els vostres registres, incloent-hi un monitor de registres i la visualització d'estadístiques dels registres. - - El visualitzador de registres del sistema és útil si sou nou en l'administració del sistema, ja que proporciona una visualització, més fàcil de veure i d'utilitzar, dels vostres registres, en comparació a la visualització de text del fitxer del registre. També és útil per als administradors més experimentats, ja que conté un monitor que us permet controlar de forma contínua els registres crucials. - - El visualitzador de registres del sistema és útil només per aquells que tenen accés als fitxers de registres del sistema, que generalment requereixen accés de root. - - - - - Primers passos - - Podeu iniciar el visualitzador de registres del sistema de les maneres següents: - - - Menú Aplicacions - - Seleccioneu Eines del sistemaVisualitzador de fitxers de registres. - - - - Línia d'ordres - - Teclegeu mate-system-log i després premeu Retorn. - - - - - - - Quan inicieu el visualitzador de registres del sistema, es mostra la finestra següent. - - -
- Finestra del visualitzador de registres del sistema - - Mostra la finestra principal del visualitzador de registres del sistema. Conté la barra de menús, l'àrea de visualització, les barres de desplaçament i la barra d'estat. - -
- - La primera vegada que inicieu el visualitzador de registres del sistema, l'aplicació mostra diversos fitxers de registres (com ara el /var/log/messages). Els registres oberts es llisten a la part esquerra de la finestra de l'aplicació. El registre seleccionat en aquesta llista es mostra a l'àrea principal de la finestra de l'aplicació. - - Per defecte, el visualitzador de registres del sistema monitora cadascun dels registres oberts, i qualsevol canvi apareix automàticament a la finestra principal. Per a més informació consulteu . - -
- - - - - Utilització - - - Com visualitzar un registre - Per visualitzar un registre, seleccioneu FitxerObre. Al diàleg Obre un fitxer de registre, seleccioneu el registre que voleu obrir i després feu clic a Obre. Utilitzeu les barres de desplaçament per desplaçar-vos pels registres. - - Podeu obrir tants registres com vulgueu. El Visualitzador de registres del sistema mostra un registre alhora a la finestra del Visualitzador de registres del sistema. Els registres oberts es llisten a la part esquerra de la finestra de l'aplicació. El registre seleccionat en aquesta llista es mostra a l'àrea principal de la finestra de l'aplicació. Per mostrar un altre registre ja obert al Visualitzador de registres del sistema, seleccioneu-lo a la llista de registres. - - Tingueu en compte que el visualitzador de registres del sistema també us permet obrir registres comprimits (el nom de fitxer acaba en «.gz»). - - - - Com copiar línies del registre al porta-retalls - Per copiar una o més línies del registre al porta-retalls, només heu de seleccionar les línies de l'àrea principal i seleccionar l'opció del menú EditaCopia. Si voleu copiar el registre sencer al porta-retalls, seleccioneu-ho tot mitjançant l'opció del menú EditaSelecciona-ho tot, després seleccioneu EditaCopia. - - - - Com ocultar la barra lateral - Per ocultar la barra lateral esquerra, que conté la llista de registres i el calendari, tan sols seleccioneu l'opció del menú VistaPlafó lateral. - - - - Com monitorar registres - Podeu utilitzar el visualitzador de registres del sistema per monitorar registres. Per defecte, tots els registres oberts al visualitzador de registres del sistema es monitoren per si hi ha canvis. Si s'afegeixen línies noves a un registre monitorat pel visualitzador de registres del sistema, el nom del registre apareixerà en negreta a la llista de registres. Si el registre es mostra actualment a l'àrea principal, les línies noves apareixeran automàticament al final del registre i, després de cinc segons, el nom del registre tornarà al seu estat normal a la llista. - - - - - Com visualitzar la informació del registre - La informació del registre generalment es mostra a la barra d'estat, aquesta inclou: - - El nombre de línies al registre. - - La mida del registre en bytes. - - La data en què es va modificar el registre per última vegada. - - - La barra d'estat es pot mostrar o ocultar mitjançant VistaBarra d'estat. - - - - Com tancar un registre - Per tancar un registre, seleccioneu FitxerTanca. - - - - Com sortir del visualitzador de registres del sistema - Per sortir del visualitzador de fitxers de registres, seleccioneu FitxerSurt. - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ca/legal.xml mate-utils-1.26.1/logview/help/ca/legal.xml --- mate-utils-1.26.0/logview/help/ca/legal.xml 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ca/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 enllaç o bé al fitxer COPYING-DOCS que es distribueix amb aquest manual. - 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. - - 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. - - 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: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/logview/help/ca@valencia/ca@valencia.po mate-utils-1.26.1/logview/help/ca@valencia/ca@valencia.po --- mate-utils-1.26.0/logview/help/ca@valencia/ca@valencia.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ca@valencia/ca@valencia.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Pilar Embid , 2018 -# Empar Montoro , 2018 +# Stefano Karapetsas , 2021 +# Pilar Embid , 2021 +# Empar Montoro , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Empar Montoro , 2018\n" -"Language-Team: Catalan (Valencian) (https://www.transifex.com/mate/teams/13566/ca@valencia/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Empar Montoro , 2021\n" +"Language-Team: Catalan (Valencian) (https://app.transifex.com/mate/teams/13566/ca@valencia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -203,8 +203,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ca@valencia/index.docbook mate-utils-1.26.1/logview/help/ca@valencia/index.docbook --- mate-utils-1.26.0/logview/help/ca@valencia/index.docbook 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ca@valencia/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,382 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - Projecte de documentació del MATE - - - Projecte de documentació de GNOME - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Comentaris - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introducció - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Com començar - - You can start System Log Viewer in the following ways: - - - - Menú Aplicacions - - Choose System ToolsLog File Viewer. - - - - Línia d'ordes - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Ús - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ca@valencia/legal.xml mate-utils-1.26.1/logview/help/ca@valencia/legal.xml --- mate-utils-1.26.0/logview/help/ca@valencia/legal.xml 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ca@valencia/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 enllaç o bé al fitxer COPYING-DOCS que es distribueix amb aquest manual. - 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. - - 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. - - 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: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/logview/help/cmn/cmn.po mate-utils-1.26.1/logview/help/cmn/cmn.po --- mate-utils-1.26.0/logview/help/cmn/cmn.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/cmn/cmn.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# 趙惟倫 , 2018 +# 趙惟倫 , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: 趙惟倫 , 2018\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mate/teams/13566/cmn/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: 趙惟倫 , 2021\n" +"Language-Team: Chinese (Mandarin) (https://app.transifex.com/mate/teams/13566/cmn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -198,8 +198,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/cmn/index.docbook mate-utils-1.26.1/logview/help/cmn/index.docbook --- mate-utils-1.26.0/logview/help/cmn/index.docbook 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/cmn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,424 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Woodman Tuen - - wmtuen@gmail.com - - - - 2005-06 - - Woodman Tuen - - - - - Abel Cheung - - abel@oaka.org - - - - 2003-04 - - Abel Cheung - - - - - 趙惟倫 - - bluebat@member.fsf.org - - - - 2013 - - 趙惟倫 - -
- - - System Log Viewer - - - - - - - 導覽 - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - 命令列 - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - 用量 - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/cmn/legal.xml mate-utils-1.26.1/logview/help/cmn/legal.xml --- mate-utils-1.26.0/logview/help/cmn/legal.xml 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/cmn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/crh/crh.po mate-utils-1.26.1/logview/help/crh/crh.po --- mate-utils-1.26.0/logview/help/crh/crh.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/crh/crh.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Crimean Turkish (https://www.transifex.com/mate/teams/13566/crh/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Crimean Turkish (https://app.transifex.com/mate/teams/13566/crh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/crh/index.docbook mate-utils-1.26.1/logview/help/crh/index.docbook --- mate-utils-1.26.0/logview/help/crh/index.docbook 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/crh/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Komut satırı - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Kullanım - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/crh/legal.xml mate-utils-1.26.1/logview/help/crh/legal.xml --- mate-utils-1.26.0/logview/help/crh/legal.xml 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/crh/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/cs/cs.po mate-utils-1.26.1/logview/help/cs/cs.po --- mate-utils-1.26.0/logview/help/cs/cs.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/cs/cs.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,18 +1,18 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# ToMáš Marný, 2018 -# Roman Horník , 2021 +# Stefano Karapetsas , 2021 +# ToMáš Marný, 2021 # Lukáš Lommer , 2021 +# Wolfgang Ulbrich , 2021 +# Roman Horník , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Lukáš Lommer , 2021\n" -"Language-Team: Czech (https://www.transifex.com/mate/teams/13566/cs/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Roman Horník , 2021\n" +"Language-Team: Czech (https://app.transifex.com/mate/teams/13566/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -29,11 +29,8 @@ "Petr Tomeš \n" "Jakub Friedl \n" "Lucas Lommer \n" -"Kamil Páral \n" "Petr Kovář \n" -"Adrian Guniš \n" -"Roman Horník \n" -"Jan Lafek " +"Roman Horník " #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -240,8 +237,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Chcete-li nahlásit chybu nebo učinit návrh týkající se Prohlížeče " "systémových protokolů nebo této příručky, postupujte podle pokynů na - - - - - -]> - - -
- - - - Příručka Prohlížeče systémových protokolů - - - Prohlížeč systémových protokolů je grafické uživatelské rozhraní sloužící k prohlížení a sledování protokolů systému. - - - 2015-2021 Projekt dokumentace MATE - 2003 Sun Microsystems - 2000 Judith Samson - - - Dokumentační projekt MATE - - - Dokumentační projekt GNOME - - - - - - - MATE Documentation Team - - Mate desktop - - - Sun Dokumentační tým GNOME Sun Microsystems
gdocteam@sun.com
- - Judith Samson Dokumentační tým GNOME
judith@samsonsource.com
- - Paul Cutler Dokumentační tým GNOME
pcutler@gnome.org
- - Vincent Noel
vincent.noel@gmail.com
- - -
- - - Příručka Prohlížeče systémových protokolů verze 1.10 Červenec 2015 - Wolfgang Ulbrich - Dokumentační projekt MATE - - Příručka Prohlížeče systémových protokolů verze 2.5 Říjen 2009 - Paul Cutler pcutler@gnome.org - Dokumentační projekt GNOME - - Příručka Prohlížeče systémových protokolů verze 2.4 Říjen 2005 - Vincent Noel vincent.noel@gmail.com - Dokumentační projekt GNOME - - Příručka Prohlížeče systémových protokolů verze 2.3 Říjen 2002 - Dokumentační tým GNOME společnosti Sun gdocteam@sun.com - Dokumentační projekt GNOME - - Příručka Prohlížeče systémových protokolů verze 2.2 Srpen 2002 - Dokumentační tým GNOME společnosti Sun gdocteam@sun.com - Dokumentační projekt GNOME - - Příručka Prohlížeče systémových protokolů verze 2.1 Červenec 2002 - Dokumentační tým GNOME společnosti Sun gdocteam@sun.com - Dokumentační projekt GNOME - - Příručka Prohlížeče systémových protokolů verze 2.0 Květen 2002 - Dokumentační tým GNOME společnosti Sun gdocteam@sun.com - Dokumentační projekt GNOME - - Příručka Prohlížeče systémových protokolů 2000 - Judith Samson judith@samsonsource.com - Dokumentační projekt GNOME - - - - Tato příručka popisuje Prohlížeč systémových protokolů ve verzi 1.10. - - Ohlasy - Chcete-li nahlásit chybu nebo učinit návrh týkající se Prohlížeče systémových protokolů nebo této příručky, postupujte podle pokynů na stránce ohlasů na MATE. - - -
- - Prohlížeč systémových protokolů - - - - - - Úvod - - Prohlížeč systémových protokolů je grafický nástroj umožňující prohlížení a sledování protokolů systému založený na systému nabídek. Prohlížeč systémových protokolů obsahuje několik funkcí usnadňujících správu vašich protokolů včetně sledování protokolů a zobrazování statistik. - - Prohlížeč systémových protokolů je užitečný, pokud jste nováčky ve správě systému, protože nabízí jednodušší a více uživatelsky přístupný způsob prohlížení protokolů než je procházení textových záznamů. Pro pokročilejší správce pak obsahuje sledovací funkci umožňující soustavně monitorovat klíčové protokoly. - - Prohlížeč systémových protokolů je užitečný pouze v případě, že máte oprávnění prohlížet protokoly systému. To obecně vyžaduje oprávnění uživatele root. - - - - - Začínáme - - Prohlížeč systémových protokolů lze spustit následujícími způsoby: - - - nabídky Aplikace - - Zvolte Systémové nástrojeProhlížeč systémových protokolů. - - - - Příkazový řádek - - Napište mate-system-log a stiskněte Enter. - - - - - - - Po spuštění Prohlížeče systémových protokolů se objeví následující okno. - - -
- Okno Prohlížeče systémových protokolů - - Zobrazuje hlavní okno Prohlížeče systémových protokolů. Obsahuje lištu s nabídkou, zobrazovací prostor, posuvníky a stavový řádek. - -
- - Když spustíte Prohlížeč systémových protokolů poprvé, aplikace bude ve výchozím nastavení zobrazovat některé z protokolů (například /var/log/messages). Otevřené protokoly jsou vypsány na levé straně okna aplikace. Protokol vybraný z tohoto seznamu je zobrazen v hlavní části okna. - - Ve výchozím nastavení sleduje Prohlížeč systémových protokolů automaticky všechny protokoly otevřené v hlavním okně. Více informací popisuje . - -
- - - - - Využití - - - Prohlížení protokolu - Pokud chcete prohlížet nějaký protokol, zvolte z nabídky SouborOtevřít. V okně Otevřít protokol nalistujte soubor protokolu, který si přejete otevřít, a klepněte na tlačítko Open. Použijte posuvníky pokud se v záznamech chcete posunout. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/cs/legal.xml mate-utils-1.26.1/logview/help/cs/legal.xml --- mate-utils-1.26.0/logview/help/cs/legal.xml 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/cs/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - 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. - - 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: - - 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 - - - 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. - - - - diff -Nru mate-utils-1.26.0/logview/help/cy/cy.po mate-utils-1.26.1/logview/help/cy/cy.po --- mate-utils-1.26.0/logview/help/cy/cy.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/cy/cy.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# ciaran, 2018 +# Stefano Karapetsas , 2021 +# ciaran, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: ciaran, 2018\n" -"Language-Team: Welsh (https://www.transifex.com/mate/teams/13566/cy/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: ciaran, 2021\n" +"Language-Team: Welsh (https://app.transifex.com/mate/teams/13566/cy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -198,8 +198,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/cy/index.docbook mate-utils-1.26.1/logview/help/cy/index.docbook --- mate-utils-1.26.0/logview/help/cy/index.docbook 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/cy/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Llinell orchymyn - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/cy/legal.xml mate-utils-1.26.1/logview/help/cy/legal.xml --- mate-utils-1.26.0/logview/help/cy/legal.xml 2021-08-05 19:48:44.000000000 +0000 +++ mate-utils-1.26.1/logview/help/cy/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/da/da.po mate-utils-1.26.1/logview/help/da/da.po --- mate-utils-1.26.0/logview/help/da/da.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/da/da.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # Joe Hansen , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" "Last-Translator: Joe Hansen , 2021\n" -"Language-Team: Danish (https://www.transifex.com/mate/teams/13566/da/)\n" +"Language-Team: Danish (https://app.transifex.com/mate/teams/13566/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,10 +20,10 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"\"Joe Hansen, 2012, 2013, 2014, 2015, 2016, 2017, 2018.\\n\"\n" -"\"\\n\"\n" -"\"Dansk-gruppen \\n\"\n" -"\"Mere info: http://www.dansk-gruppen.dk\"" +"Joe Hansen 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021.\n" +"\n" +"Dansk-gruppen \n" +"Mere info: http://www.dansk-gruppen.dk" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -58,7 +58,7 @@ #. (itstool) path: revdescription/para #: C/index.docbook:51 C/index.docbook:122 msgid "MATE Documentation Project" -msgstr "MATE-dokumentationsprojektet" +msgstr "MATE-dokumentationsprojekt" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -66,7 +66,7 @@ #: C/index.docbook:152 C/index.docbook:162 C/index.docbook:172 #: C/index.docbook:182 C/index.docbook:192 msgid "GNOME Documentation Project" -msgstr "GNOME-dokumentationsprojektet" +msgstr "GNOME-dokumentationsprojekt" #. (itstool) path: authorgroup/author #: C/index.docbook:60 @@ -106,8 +106,8 @@ "GNOME Documentation Team
" "pcutler@gnome.org
" msgstr "" -"Paul Cutler GNOME-dokumentationsholdet
" +"Paul Cutler " +"GNOME-dokumentationsholdet
" "pcutler@gnome.org
" #. (itstool) path: authorgroup/author @@ -225,14 +225,15 @@ #. (itstool) path: legalnotice/title #: C/index.docbook:200 msgid "Feedback" -msgstr "Tilbagemeldinger" +msgstr "Tilbagemelding" #. (itstool) path: legalnotice/para #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "For at rapportere en fejl eller komme med et forslag jævnfør " "systemlogfremviseren eller denne manual, så følg retningslinjerne i Applications menu" -msgstr "Programmenuen" +msgstr "Menuen Programmer" #. (itstool) path: listitem/para #: C/index.docbook:252 @@ -398,7 +399,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:299 msgid "Usage" -msgstr "Forbrug" +msgstr "Brug" #. (itstool) path: sect2/title #: C/index.docbook:302 @@ -589,12 +590,12 @@ " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" -"Tilladelse er givet til at kopiere, distribuere og/eller ændre dette " +"Der gives tilladelse 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-1/> eller i filen COPYING-DOCS som distribueres " -"sammen med denne manual." +"version 1.1 eller enhver nyere version, udgivet af Free Software Foundation " +"uden invariante afsnit, uden forsidetekster, og uden bagsidetekster. Du kan " +"finde en kopi af GFDL'en her <_:ulink-1/> eller i filen COPYING-DOCS, der " +"distribueres med denne manual." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -604,10 +605,10 @@ "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." +"Denne manual er en del af MATE-manualsamlingen distribueret under GFDL. Hvis" +" du vil distribuere denne manual separat fra denne samling, kan du gøre det " +"ved at tilføje en kopi af licensen til manualen, som beskrevet i sektion 6 " +"af licensen." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -618,11 +619,11 @@ "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." +"Mange af navnene brugt af firmaer til at skelne deres produkter og tjenester" +" er registrerede varemærker. Der hvor disse navne optræder i MATE-" +"dokumentationen, og medlemmerne af MATE-dokumentationsprojektet er blevet " +"gjort opmærksomme på disse varemærker, er navnene skrevet med store " +"bogstaver eller store forbogstaver." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -644,14 +645,14 @@ "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 " +"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" +"FORBEHOLDSERKLÆRING; OG" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -670,10 +671,10 @@ "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 " +"ELLER FORSYNER 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, " +"SKADE SOM FØLGE AF TAB AF RYGTE, ARBEJDSSTOP, COMPUTER-FEJL 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." @@ -685,5 +686,6 @@ "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/>" +"DETTE DOKUMENT OG MODIFICEREDE VERSIONER GØRES TILGÆNGELIGT UNDER " +"BETINGELSERNE I GNU FREE DOCUMENTATION LICENSE UNDER DEN FORUDSÆTNING AT: " +"<_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/logview/help/da/index.docbook mate-utils-1.26.1/logview/help/da/index.docbook --- mate-utils-1.26.0/logview/help/da/index.docbook 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/da/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,224 +0,0 @@ - - - - - - -]> - - -
- - - - Manual til systemlogfremviseren - - - Systemlogfremviseren er en grafisk brugerflade til at se og overvåge systemlogfiler. - - - 2015-2021 MATE-dokumentationsprojektet - 2003 Sun Microsystems - 2000 Judith Samson - - - MATE-dokumentationsprojektet - - - GNOME-dokumentationsprojektet - - - - - - MATE-dokumentationsholdet Mate desktop - Sun GNOME-dokumentationsholdet Sun Microsystems
gdocteam@sun.com
- - Judith Samson GNOME-dokumentationsprojektet
judith@samsonsource.com
- - Paul Cutler GNOME-dokumentationsholdet
pcutler@gnome.org
- - Vincent Noel
vincent.noel@gmail.com
- - -
- - - Manual for systemlogfremviseren v. 1.10 Juli 2015 - Wolfgang Ulbrich - MATE-dokumentationsprojektet - - Manual for systemlogfremviseren v. 2.5 Oktober 2009 - Paul Cutler pcutler@gnome.org - GNOME-dokumentationsprojektet - - Manual for systemlogfremviseren v. 2.4 Oktober 2005 - Vincent Noel vincent.noel@gmail.com - GNOME-dokumentationsprojektet - - Manual for systemlogfremviseren v. 2.3 Oktober 2002 - Sun GNOME-dokumentationsholdet gdocteam@sun.com - GNOME-dokumentationsprojektet - - Manual for systemlogfremviseren v. 2.2 August 2002 - Sun GNOME-dokumentationsholdet gdocteam@sun.com - GNOME-dokumentationsprojektet - - Manual for systemlogfremviseren v. 2.1 Juli 2002 - Sun GNOME-dokumentationsholdet gdocteam@sun.com - GNOME-dokumentationsprojektet - - Manual for systemlogfremviseren v. 2.0 Maj 2002 - Sun GNOME-dokumentationsholdet gdocteam@sun.com - GNOME-dokumentationsprojektet - - Logview-manual 2000 - Judith Samson judith@samsonsource.com - GNOME-dokumentationsprojektet - - - - Denne manual beskriver version 1.10 for systemlogfremviseren. - - Tilbagemeldinger - For at rapportere en fejl eller komme med et forslag jævnfør systemlogfremviseren eller denne manual, så følg retningslinjerne i MATE's side for tilbagemeldinger. - - -
- - Systemlogfremviser - - - - - - Introduktion - - Systemlogfremviseren er en grafisk, menudreven fremviser som du kan bruge til at vise og overvåge dine systemlogge. Systemlogfremviseren har nogle få funktioner, som kan hjælpe dig med at håndtere dine logge, inklusive en logovervågning og en logstatistik. - - Systemlogfremviseren er nyttig, hvis du er en ny systemadministrator, da programmet tilbyder en nemmere, mere brugervenlig visning af dine logge end en tekstvisning af logfilen. Programmet er også nyttigt for mere erfarne administratorer, da det indeholder en overvågning, så du løbende kan overvåge vigtige logge. - - Systemlogfremviseren er kun nyttig for dem som har adgang til systemlogfilerne, hvilket normalt kræver administratoradgang. - - - - - Kom i gang - - Du kan starte Systemlogfremviseren på de følgende måder: - - - Programmenuen - - Vælg SystemværktøjerLogfilfremviser. - - - - Kommandolinje - - Tast mate-system-log, tryk så Retur. - - - - - - - Når du starter Systemlogfremviseren, vises det følgende vindue. - - -
- Vindue for systemlogfremviseren - - Viser systemlogfremviserens hovedvindue. Indeholder menulinje, skærmområde, rullebjælke og statuslinje. - -
- - Den første gang du starter Systemlogfremviseren, viser programmet flere logfiler som standard (såsom /var/log/messages). Åbnede logge vises i den venstre side af programvinduet. Loggen valgt i denne liste vises i hovedområdet af programvinduet. - - Som standard overvåger Systemlogfremviseren alle åbnede logge, og enhver ændring fremgår automatisk i hovedvinduet. Se for yderligere information. - -
- - - - - Forbrug - - - For at se en log - For at se sen log, vælg FilÅbn. I dialogen Åbn log, vælg loggen du ønsker at åbne og klik på Åbn. Brug rullebjælken til at rulle igennem loggen. - - Du kan åbne så mange logge du ønsker. Systemlogfremviseren viser en log ad gangen i Systemlogfremviser-vinduet. Åbnede logge vises på den venstre side af programvinduet. Loggen valgt i denne liste vises i hovedområdet for programvinduet. For at vise en anden log allerede åbnet i Systemlogfremviseren, vælg den i loglisten. - - Bemærk at Systemlogfremviseren også lader dig åbne pakkede logge (filnavnet skal ende på ».gz«). - - - - For at kopiere loglinjer til udklipsholderen - For at kopiere en eller flere loglinjer til udklipsholderen, vælg linjerne i hovedområdet og vælg menuelementet RedigerKopier. Hvis du ønsker at kopiere hele loggen til udklipsholderen, så vælg den hele via menuelementet RedigerVælg alt, vælg så RedigerKopier. - - - - For at skjule sidepanelet - For at skjule sidepanelet, som indeholder loglisten og kalenderen vælges menuelementet VisSidepanel. - - - - For at overvåge logge - Du kan bruge Systemlogfremviseren til at overvåge logge. Som standard overvåges alle åbnede logge i Systemlogfremviseren for ændringer. Hvis nye linjer tilføjes til en log overvåget af Systemlogfremvisern, vil lognavnet fremgå i fed i loglisten. Hvis loggen er vist i hovedområdet vil de nye linjer automatisk fremgå i slutningen af loggen, efter fem sekunder, vil lognavnet returnere tilbage til normal skrift i listen. - - - - - For at se loginformation - Loginformation vises generelt i statuslinjen, inklusive: - - Antallet af linjer i loggen. - - Størrelsen på loggen i byte. - - Datoen hvor loggen sidst blev ændret. - - - Statuslinjen kan vises eller skjules via elementet VisStatuslinje. - - - - For at lukke en log - For at lukke en log, vælg FilLuk. - - - - For at afslutte systemlogfremviseren - For at afslutte Systemlogfremviseren, vælg FilAfslut. - - - - -
diff -Nru mate-utils-1.26.0/logview/help/da/legal.xml mate-utils-1.26.1/logview/help/da/legal.xml --- mate-utils-1.26.0/logview/help/da/legal.xml 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/da/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 henvisning eller i filen COPYING-DOCS som distribueres sammen med denne manual. - 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. - - 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. - - DOKUMENTET OG ÆNDREDE VERSIONER AF DOKUMENTET STILLES TIL RÅDIGHED UNDER GNU FREE DOCOMENTATION LICENSE MED FØLGENDE BETINGELSER: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/logview/help/de/de.po mate-utils-1.26.1/logview/help/de/de.po --- mate-utils-1.26.0/logview/help/de/de.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/de/de.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,21 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Ettore Atalan , 2018 -# Moritz Bruder , 2018 -# Tobias Bannert , 2018 -# Wolfgang Ulbrich , 2018 -# Marcel Artz , 2021 +# Stefano Karapetsas , 2021 +# Ettore Atalan , 2021 +# Moritz Bruder , 2021 +# Tobias Bannert , 2021 +# Wolfgang Ulbrich , 2021 # Julian Rüger , 2021 +# Marcel Artz , 2021 +# Xpistian , 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Julian Rüger , 2021\n" -"Language-Team: German (https://www.transifex.com/mate/teams/13566/de/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Xpistian , 2023\n" +"Language-Team: German (https://app.transifex.com/mate/teams/13566/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -31,7 +32,8 @@ "Hendrik Richter\n" "Christian Kirbach\n" "Wolfgang Stoeggl\n" -"Tobias Bannert" +"Tobias Bannert\n" +"Marcel Artz" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -48,7 +50,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:30 msgid "2015-2021 MATE Documentation Project" -msgstr "" +msgstr "2015-2021 Mate-Dokumentationsprojekt" #. (itstool) path: articleinfo/copyright #: C/index.docbook:34 @@ -204,14 +206,20 @@ #. (itstool) path: legalnotice/title #: C/index.docbook:200 msgid "Feedback" -msgstr "Rückmeldungen" +msgstr "" +"\n" +"\n" +"### CuBox i4 Pro Review\n" +"\n" +"" #. (itstool) path: legalnotice/para #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Um einen Fehler zu melden oder eine Verbesserung bzgl. des " "Systemprotokollbetrachters oder dieses Handbuchs vorzuschlagen, folgen Sie " @@ -600,6 +608,6 @@ "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 " +"DAS DOKUMENT SOWIE VERÄNDERTE VERSIONEN DAVON WERDEN UNTER DEN BEDINGUNGEN " +"DER »GNU FREE DOCUMENTATION LICENSE« BEREITGESTELLT, MIT DEM WEITEREN " "VERSTÄNDNIS, DASS: <_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/logview/help/de/index.docbook mate-utils-1.26.1/logview/help/de/index.docbook --- mate-utils-1.26.0/logview/help/de/index.docbook 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/de/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,374 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - MATE-Dokumentationsprojekt - - - GNOME-Dokumentationsprojekt - - - - - - MATE Dokumentationsteam MATE-Arbeitsumgebung - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Rückmeldungen - Um einen Fehler zu melden oder eine Verbesserung bzgl. des Systemprotokollbetrachters oder dieses Handbuchs vorzuschlagen, folgen Sie den Anweisungen auf der MATE-Rückmeldungsseite. - - -
- - - System Log Viewer - - - - - - - Einführung - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Erste Schritte - - You can start System Log Viewer in the following ways: - - - - Menü Anwendungen - - Choose System ToolsLog File Viewer. - - - - Befehlszeile - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Verwendung - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/de/legal.xml mate-utils-1.26.1/logview/help/de/legal.xml --- mate-utils-1.26.0/logview/help/de/legal.xml 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/de/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 Verknüpfung oder in der mit diesem Handbuch gelieferten Datei COPYING-DOCS. - 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. - - 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. - - DAS DOKUMENT SOWIE MODIFIZIERTE VERSIONEN DAVON WERDEN UNTER DEN BEDINGUNGEN DER GNU FREE DOCUMENTATION LICENSE BEREITGESTELLT, MIT DEM WEITEREN VERSTÄNDNIS, DASS: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/logview/help/dz/dz.po mate-utils-1.26.1/logview/help/dz/dz.po --- mate-utils-1.26.0/logview/help/dz/dz.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/dz/dz.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Dzongkha (https://www.transifex.com/mate/teams/13566/dz/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Dzongkha (https://app.transifex.com/mate/teams/13566/dz/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -198,8 +198,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/dz/index.docbook mate-utils-1.26.1/logview/help/dz/index.docbook --- mate-utils-1.26.0/logview/help/dz/index.docbook 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/dz/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - བཀོད་ལམ། - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - བེད་སྤྱོད་ - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/dz/legal.xml mate-utils-1.26.1/logview/help/dz/legal.xml --- mate-utils-1.26.0/logview/help/dz/legal.xml 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/dz/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/el/el.po mate-utils-1.26.1/logview/help/el/el.po --- mate-utils-1.26.0/logview/help/el/el.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/el/el.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Alexandros Kapetanios , 2018 -# kosmmart , 2018 -# TheDimitris15, 2019 -# anvo , 2019 +# anvo , 2021 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 +# Alexandros Kapetanios , 2021 +# kosmmart , 2021 +# TheDimitris15, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: anvo , 2019\n" -"Language-Team: Greek (https://www.transifex.com/mate/teams/13566/el/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: TheDimitris15, 2021\n" +"Language-Team: Greek (https://app.transifex.com/mate/teams/13566/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -204,8 +204,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -488,8 +489,8 @@ " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" -"Επιτρέπεται η αντιγραφή, η διανομή και / ή η τροποποίηση αυτού του εγγράφου " -"σύμφωνα με τους όρους της Άδειας Τεκμηρίωσης ελευθέρου λογισμικού GNU " +"Επιτρέπεται η αντιγραφή, η διανομή και / η τροποποίηση αυτού του εγγράφου " +"σύμφωνα με τους όρους της Άδειας Τεκμηρίωσης Ελευθέρου λογισμικού GNU " "(GFDL), Έκδοσης 1.1 ή οποιασδήποτε μεταγενέστερης έκδοσης που δημοσιεύεται " "από το Ίδρυμα Ελεύθερου Λογισμικού χωρίς Μεταβλητές Ενότητες, χωρίς Κείμενα " "Προσωρινού Εξώφυλλου και Κανένα κείμενο πίσω. Μπορείτε να βρείτε ένα " @@ -577,7 +578,6 @@ "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" -"Η οθόνη προσβασιμότητας πληκτρολογίου σας δείχνει την κατάσταση των " -"χαρακτηριστικών προσβασιμότητας πληκτρολογίου όταν αυτά χρησιμοποιούνται. " -"Για παράδειγμα, μπορείτε να δείτε ποια πλήκτρα τροποποίησης είναι ενεργά και" -" ποια κουμπιά του ποντικιού πιέζονται μέσω του πληκτρολογίου." +"ΤΟ ΕΓΓΡΑΦΟ ΚΑΙ ΤΡΟΠΟΠΟΙΗΜΕΝΕΣ ΕΚΔΟΣΕΙΣ ΤΟΥ ΕΓΓΡΑΦΟΥ ΠΑΡΕΧΟΝΤΑΙ ΜΕ ΤΟΥΣ ΟΡΟΥΣ" +" ΤΗΣ ΑΔΕΙΑΣ ΤΕΚΜΗΡΙΩΣΗ ΕΛΕΥΘΕΡΟΥ ΛΟΓΙΣΜΙΚΟΥ GNU ΜΕ ΤΗΝ ΠΕΡΑΙΤΕΡΩ ΚΑΤΑΝΟΜΗ " +"ΟΤΙ: <_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/logview/help/el/index.docbook mate-utils-1.26.1/logview/help/el/index.docbook --- mate-utils-1.26.0/logview/help/el/index.docbook 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/el/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,382 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - Έργο Τεκμηρίωσης MATE - - - Έργο τεκμηρίωσης GNOME - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Ανάδραση - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Εισαγωγή - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Για να ξεκινήσετε - - You can start System Log Viewer in the following ways: - - - - Μενού Εφαρμογές - - Choose System ToolsLog File Viewer. - - - - Γραμμή εντολών - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Χρήση - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/el/legal.xml mate-utils-1.26.1/logview/help/el/legal.xml --- mate-utils-1.26.0/logview/help/el/legal.xml 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/el/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ - - - Επιτρέπεται η αντιγραφή, η διανομή και / ή η τροποποίηση αυτού του εγγράφου σύμφωνα με τους όρους της Άδειας Τεκμηρίωσης ελευθέρου λογισμικού GNU (GFDL), Έκδοσης 1.1 ή οποιασδήποτε μεταγενέστερης έκδοσης που δημοσιεύεται από το Ίδρυμα Ελεύθερου Λογισμικού χωρίς Μεταβλητές Ενότητες, χωρίς Κείμενα Προσωρινού Εξώφυλλου και Κανένα κείμενο πίσω. Μπορείτε να βρείτε ένα αντίγραφο του GFDL σε αυτό σύνδεσμος ή στο αρχείο COPYING-DOCS που διανέμεται με αυτό το εγχειρίδιο. - Αυτή η τεκμηρίωση είναι μέρος της συλλογής τεκμηρίωσης του MATE όπως διανέμεται υπό τους όρους του GFDL. Εάν επιθυμείτε να διανείμετε αυτή την τεκμηρίωση ξεχωριστά από την συλλογή, μπορείτε να το κάνετε εάν η τεκμηρίωση συνοδεύεται από αντίγραφο της άδειας (GFDL) όπως περιγράφεται στον τομέα 6 της άδειας. - - Πολλά από τα ονόματα που χρησιμοποιούνται από εταιρίες για να ξεχωρίσουν τα προϊόντα και τις υπηρεσίες είναι σήματα κατατεθέν. Όπου αυτά τα ονόματα εμφανίζονται στην τεκμηρίωση MATE, και τα μέλη της ομάδας τεκμηρίωσης MATE έχουν γνώση αυτών, τότε αυτά αναγράφονται με κεφαλαίους χαρακτήρες ή με αρχικούς κεφαλαίους χαρακτήρες. - - Η οθόνη προσβασιμότητας πληκτρολογίου σας δείχνει την κατάσταση των χαρακτηριστικών προσβασιμότητας πληκτρολογίου όταν αυτά χρησιμοποιούνται. Για παράδειγμα, μπορείτε να δείτε ποια πλήκτρα τροποποίησης είναι ενεργά και ποια κουμπιά του ποντικιού πιέζονται μέσω του πληκτρολογίου. - diff -Nru mate-utils-1.26.0/logview/help/en_AU/en_AU.po mate-utils-1.26.1/logview/help/en_AU/en_AU.po --- mate-utils-1.26.0/logview/help/en_AU/en_AU.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/en_AU/en_AU.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Michael Findlay , 2018 +# Michael Findlay , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Michael Findlay , 2018\n" -"Language-Team: English (Australia) (https://www.transifex.com/mate/teams/13566/en_AU/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Michael Findlay , 2021\n" +"Language-Team: English (Australia) (https://app.transifex.com/mate/teams/13566/en_AU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/en_AU/index.docbook mate-utils-1.26.1/logview/help/en_AU/index.docbook --- mate-utils-1.26.0/logview/help/en_AU/index.docbook 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/en_AU/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Command line - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/en_AU/legal.xml mate-utils-1.26.1/logview/help/en_AU/legal.xml --- mate-utils-1.26.0/logview/help/en_AU/legal.xml 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/en_AU/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/en_CA/en_CA.po mate-utils-1.26.1/logview/help/en_CA/en_CA.po --- mate-utils-1.26.0/logview/help/en_CA/en_CA.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/en_CA/en_CA.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: English (Canada) (https://www.transifex.com/mate/teams/13566/en_CA/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: English (Canada) (https://app.transifex.com/mate/teams/13566/en_CA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/en_CA/index.docbook mate-utils-1.26.1/logview/help/en_CA/index.docbook --- mate-utils-1.26.0/logview/help/en_CA/index.docbook 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/en_CA/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Command line - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/en_CA/legal.xml mate-utils-1.26.1/logview/help/en_CA/legal.xml --- mate-utils-1.26.0/logview/help/en_CA/legal.xml 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/en_CA/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/en_GB/en_GB.po mate-utils-1.26.1/logview/help/en_GB/en_GB.po --- mate-utils-1.26.0/logview/help/en_GB/en_GB.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/en_GB/en_GB.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Martin Wimpress , 2018 -# Andi Chandler , 2021 +# Stefano Karapetsas , 2021 +# Andi Chandler , 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Andi Chandler , 2021\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mate/teams/13566/en_GB/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Andi Chandler , 2023\n" +"Language-Team: English (United Kingdom) (https://app.transifex.com/mate/teams/13566/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,12 +19,14 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Martin Wimpress" +msgstr "" +"Martin Wimpress\n" +"Andi Chandler" #. (itstool) path: articleinfo/title #: C/index.docbook:23 msgid "System Log Viewer Manual" -msgstr "" +msgstr "System Log Viewer Manual" #. (itstool) path: abstract/para #: C/index.docbook:26 @@ -33,6 +34,8 @@ "System Log Viewer is a graphical user interface to view and monitor system " "log files." msgstr "" +"System Log Viewer is a graphical user interface to view and monitor system " +"log files." #. (itstool) path: articleinfo/copyright #: C/index.docbook:30 @@ -47,7 +50,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:38 msgid "2000 Judith Samson" -msgstr "" +msgstr "2000 Judith Samson" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -79,6 +82,9 @@ " Sun Microsystems
" "gdocteam@sun.com
" msgstr "" +"Sun GNOME Documentation Team " +" Sun Microsystems
" +"gdocteam@sun.com
" #. (itstool) path: authorgroup/author #: C/index.docbook:75 @@ -87,6 +93,9 @@ "GNOME Documentation Project
" "judith@samsonsource.com
" msgstr "" +"Judith Samson " +"GNOME Documentation Project
" +"judith@samsonsource.com
" #. (itstool) path: authorgroup/author #: C/index.docbook:84 @@ -95,6 +104,9 @@ "GNOME Documentation Team
" "pcutler@gnome.org
" msgstr "" +"Paul Cutler " +"GNOME Documentation Team
" +"pcutler@gnome.org
" #. (itstool) path: authorgroup/author #: C/index.docbook:93 @@ -102,11 +114,13 @@ "Vincent Noel " "
vincent.noel@gmail.com
" msgstr "" +"Vincent Noel " +"
vincent.noel@gmail.com
" #. (itstool) path: revdescription/para #: C/index.docbook:120 msgid "Wolfgang Ulbrich" -msgstr "" +msgstr "Wolfgang Ulbrich" #. (itstool) path: revhistory/revision #: C/index.docbook:116 @@ -114,11 +128,13 @@ "System Log Viewer Manual V1.10 July 2015" " <_:revdescription-1/>" msgstr "" +"System Log Viewer Manual V1.10 July 2015" +" <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:129 msgid "Paul Cutler pcutler@gnome.org" -msgstr "" +msgstr "Paul Cutler pcutler@gnome.org" #. (itstool) path: revhistory/revision #: C/index.docbook:125 @@ -126,11 +142,13 @@ "System Log Viewer Manual V2.5 October " "2009 <_:revdescription-1/>" msgstr "" +"System Log Viewer Manual V2.5 October " +"2009 <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:139 msgid "Vincent Noel vincent.noel@gmail.com" -msgstr "" +msgstr "Vincent Noel vincent.noel@gmail.com" #. (itstool) path: revhistory/revision #: C/index.docbook:135 @@ -138,12 +156,14 @@ "System Log Viewer Manual V2.4 October " "2005 <_:revdescription-1/>" msgstr "" +"System Log Viewer Manual V2.4 October " +"2005 <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:149 C/index.docbook:159 C/index.docbook:169 #: C/index.docbook:179 msgid "Sun GNOME Documentation Team gdocteam@sun.com" -msgstr "" +msgstr "Sun GNOME Documentation Team gdocteam@sun.com" #. (itstool) path: revhistory/revision #: C/index.docbook:145 @@ -151,6 +171,8 @@ "System Log Viewer Manual V2.3 October " "2002 <_:revdescription-1/>" msgstr "" +"System Log Viewer Manual V2.3 October " +"2002 <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:155 @@ -158,6 +180,8 @@ "System Log Viewer Manual V2.2 August " "2002 <_:revdescription-1/>" msgstr "" +"System Log Viewer Manual V2.2 August " +"2002 <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:165 @@ -165,6 +189,8 @@ "System Log Viewer Manual V2.1 July 2002 " "<_:revdescription-1/>" msgstr "" +"System Log Viewer Manual V2.1 July 2002 " +"<_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:175 @@ -172,11 +198,13 @@ "System Log Viewer Manual V2.0 May 2002 " "<_:revdescription-1/>" msgstr "" +"System Log Viewer Manual V2.0 May 2002 " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:189 msgid "Judith Samson judith@samsonsource.com" -msgstr "" +msgstr "Judith Samson judith@samsonsource.com" #. (itstool) path: revhistory/revision #: C/index.docbook:185 @@ -184,11 +212,13 @@ "Logview Manual 2000 " "<_:revdescription-1/>" msgstr "" +"Logview Manual 2000 " +"<_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:197 msgid "This manual describes version 1.10 of System Log Viewer." -msgstr "" +msgstr "This manual describes version 1.10 of System Log Viewer." #. (itstool) path: legalnotice/title #: C/index.docbook:200 @@ -199,14 +229,19 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" +"To report a bug or make a suggestion regarding the System Log Viewer " +"application or this manual, follow the directions in the MATE Feedback " +"Page." #. (itstool) path: article/indexterm #: C/index.docbook:210 msgid "System Log Viewer" -msgstr "" +msgstr "System Log Viewer" #. (itstool) path: sect1/title #: C/index.docbook:218 @@ -222,6 +257,11 @@ " can help you manage your logs, including a log monitor and log statistics " "display." msgstr "" +"System Log Viewer is a graphical, menu-driven " +"viewer that you can use to view and monitor your system logs. " +"System Log Viewer comes with a few functions that" +" can help you manage your logs, including a log monitor and log statistics " +"display." #. (itstool) path: sect1/para #: C/index.docbook:228 @@ -232,6 +272,11 @@ "for more experienced administrators, as it contains a monitor to enable you " "to continuously monitor crucial logs." msgstr "" +"System Log Viewer is useful if you are new to " +"system administration because it provides an easier, more user-friendly " +"display of your logs than a text display of the log file. It is also useful " +"for more experienced administrators, as it contains a monitor to enable you " +"to continuously monitor crucial logs." #. (itstool) path: warning/para #: C/index.docbook:237 @@ -239,11 +284,13 @@ "System Log Viewer is useful only to those who " "have access to the system log files, which generally requires root access." msgstr "" +"System Log Viewer is useful only to those who " +"have access to the system log files, which generally requires root access." #. (itstool) path: sect1/title #: C/index.docbook:244 msgid "Getting Started" -msgstr "" +msgstr "Getting Started" #. (itstool) path: sect1/para #: C/index.docbook:246 @@ -251,11 +298,13 @@ "You can start System Log Viewer in the following " "ways:" msgstr "" +"You can start System Log Viewer in the following " +"ways:" #. (itstool) path: varlistentry/term #: C/index.docbook:250 msgid "Applications menu" -msgstr "" +msgstr "Applications menu" #. (itstool) path: listitem/para #: C/index.docbook:252 @@ -263,6 +312,8 @@ "Choose System ToolsLog " "File Viewer." msgstr "" +"Choose System ToolsLog " +"File Viewer." #. (itstool) path: varlistentry/term #: C/index.docbook:256 @@ -274,6 +325,7 @@ msgid "" "Type mate-system-log, then press Return." msgstr "" +"Type mate-system-log, then press Return." #. (itstool) path: sect1/para #: C/index.docbook:265 @@ -281,11 +333,13 @@ "When you start System Log Viewer, the following " "window is displayed." msgstr "" +"When you start System Log Viewer, the following " +"window is displayed." #. (itstool) path: figure/title #: C/index.docbook:269 msgid "System Log Viewer Window" -msgstr "" +msgstr "System Log Viewer Window" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -298,6 +352,8 @@ "external ref='figures/syslog_window.png' " "md5='7cb5e186fe792ed85e408ff33f21eced'" msgstr "" +"external ref='figures/syslog_window.png' " +"md5='7cb5e186fe792ed85e408ff33f21eced'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:271 @@ -307,6 +363,10 @@ " main window. Contains menubar, display area, scrollbars, and statusbar. " " " msgstr "" +" Shows System Log Viewer" +" main window. Contains menubar, display area, scrollbars, and statusbar. " +" " #. (itstool) path: sect1/para #: C/index.docbook:282 @@ -317,6 +377,11 @@ "side of the application window. The log selected in this list is displayed " "in the main area of the application window." msgstr "" +"The first time you start System Log Viewer, the " +"application displays several log files by default (such as " +"/var/log/messages). Opened logs are listed on the left " +"side of the application window. The log selected in this list is displayed " +"in the main area of the application window." #. (itstool) path: sect1/para #: C/index.docbook:290 @@ -325,6 +390,9 @@ "opened log, and any change appears automatically in the main window. See " " for more information." msgstr "" +"By default, System Log Viewer monitors every " +"opened log, and any change appears automatically in the main window. See " +" for more information." #. (itstool) path: sect1/title #: C/index.docbook:299 @@ -334,7 +402,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:302 msgid "To View a Log" -msgstr "" +msgstr "To View a Log" #. (itstool) path: sect2/para #: C/index.docbook:303 @@ -345,6 +413,11 @@ "to open, then click Open. Use the scrollbars to " "scroll through the log." msgstr "" +"To view a log, choose " +"FileOpen." +" In the Open Log dialog, select the log that you want " +"to open, then click Open. Use the scrollbars to " +"scroll through the log." #. (itstool) path: sect2/para #: C/index.docbook:309 @@ -356,6 +429,12 @@ "area of the application window. To display another log already opened in " "System Log Viewer, select it in the log list." msgstr "" +"You can open as many logs as you want. System Log " +"Viewer displays one log at a time in the System Log " +"Viewer window. Opened logs are listed on the left side of the " +"application window. The log selected in this list is displayed in the main " +"area of the application window. To display another log already opened in " +"System Log Viewer, select it in the log list." #. (itstool) path: sect2/para #: C/index.docbook:317 @@ -363,11 +442,13 @@ "Note that System Log Viewer also lets you open " "zipped logs (whole filenames end in \".gz\")." msgstr "" +"Note that System Log Viewer also lets you open " +"zipped logs (whole filenames end in \".gz\")." #. (itstool) path: sect2/title #: C/index.docbook:322 msgid "To Copy Log Lines to the Clipboard" -msgstr "" +msgstr "To Copy Log Lines to the Clipboard" #. (itstool) path: sect2/para #: C/index.docbook:323 @@ -380,11 +461,18 @@ "All menu option, then choose " "EditCopy." msgstr "" +"To copy one or more log lines to the clipboard, just select the lines in the" +" main area and choose the " +"EditCopy" +" menu option. If you want to copy the entire log to the clipboard, select it" +" entirely using the EditSelect " +"All menu option, then choose " +"EditCopy." #. (itstool) path: sect2/title #: C/index.docbook:335 msgid "To Hide the Sidebar" -msgstr "" +msgstr "To Hide the Sidebar" #. (itstool) path: sect2/para #: C/index.docbook:336 @@ -393,11 +481,14 @@ "select the ViewSide " "pane menu option." msgstr "" +"To hide the left sidebar, which contains the log list and calendar, just " +"select the ViewSide " +"pane menu option." #. (itstool) path: sect2/title #: C/index.docbook:343 msgid "To Monitor Logs" -msgstr "" +msgstr "To Monitor Logs" #. (itstool) path: sect2/para #: C/index.docbook:344 @@ -410,31 +501,39 @@ "the new lines will appear automatically at the end of the log and, after " "five seconds, the log name will turn back to normal in the list." msgstr "" +"You can use System Log Viewer to monitor logs. By" +" default, all logs opened in System Log Viewer " +"are monitored for changes. If new lines are added to a log monitored by " +"System Log Viewer, the log name will appear in " +"bold in the log list. If the log is currently displayed in the main area, " +"the new lines will appear automatically at the end of the log and, after " +"five seconds, the log name will turn back to normal in the list." #. (itstool) path: sect2/title #: C/index.docbook:355 msgid "To View Log Information" -msgstr "" +msgstr "To View Log Information" #. (itstool) path: sect2/para #: C/index.docbook:356 msgid "Log information are generally displayed in the status bar, including :" msgstr "" +"Log information are generally displayed in the status bar, including :" #. (itstool) path: listitem/para #: C/index.docbook:359 msgid "Number of lines in the log." -msgstr "" +msgstr "Number of lines in the log." #. (itstool) path: listitem/para #: C/index.docbook:361 msgid "Size of the log in bytes." -msgstr "" +msgstr "Size of the log in bytes." #. (itstool) path: listitem/para #: C/index.docbook:363 msgid "Date the log was last modified." -msgstr "" +msgstr "Date the log was last modified." #. (itstool) path: sect2/para #: C/index.docbook:366 @@ -443,11 +542,14 @@ "ViewStatusbar" " option." msgstr "" +"The status bar can be displayed or hidden using the " +"ViewStatusbar" +" option." #. (itstool) path: sect2/title #: C/index.docbook:372 msgid "To Close a Log" -msgstr "" +msgstr "To Close a Log" #. (itstool) path: sect2/para #: C/index.docbook:373 @@ -455,11 +557,13 @@ "To close a log, choose " "FileClose." msgstr "" +"To close a log, choose " +"FileClose." #. (itstool) path: sect2/title #: C/index.docbook:379 msgid "To Exit System Log Viewer" -msgstr "" +msgstr "To Exit System Log Viewer" #. (itstool) path: sect2/para #: C/index.docbook:380 @@ -467,6 +571,8 @@ "To exit System Log Viewer, choose " "FileQuit." msgstr "" +"To exit System Log Viewer, choose " +"FileQuit." #. (itstool) path: para/ulink #: C/legal.xml:9 diff -Nru mate-utils-1.26.0/logview/help/en_GB/index.docbook mate-utils-1.26.1/logview/help/en_GB/index.docbook --- mate-utils-1.26.0/logview/help/en_GB/index.docbook 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/en_GB/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,374 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - 2015-2021 MATE Documentation Project - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team Mate desktop - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Command line - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/en_GB/legal.xml mate-utils-1.26.1/logview/help/en_GB/legal.xml --- mate-utils-1.26.0/logview/help/en_GB/legal.xml 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/en_GB/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 link or in the file COPYING-DOCS distributed with this manual. - 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. - - 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. - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENCE WITH THE FURTHER UNDERSTANDING THAT: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/logview/help/eo/eo.po mate-utils-1.26.1/logview/help/eo/eo.po --- mate-utils-1.26.0/logview/help/eo/eo.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/eo/eo.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Forecast , 2018 -# Cora Loftis, 2018 +# Stefano Karapetsas , 2021 +# Forecast , 2021 +# Cora Loftis, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Cora Loftis, 2018\n" -"Language-Team: Esperanto (https://www.transifex.com/mate/teams/13566/eo/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Cora Loftis, 2021\n" +"Language-Team: Esperanto (https://app.transifex.com/mate/teams/13566/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -205,8 +205,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/eo/index.docbook mate-utils-1.26.1/logview/help/eo/index.docbook --- mate-utils-1.26.0/logview/help/eo/index.docbook 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/eo/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,382 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - Projekto de Dokumentado de MATE - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Rimarkoj - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Enkonduko - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Komandlinio - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Uzado - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/eo/legal.xml mate-utils-1.26.1/logview/help/eo/legal.xml --- mate-utils-1.26.0/logview/help/eo/legal.xml 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/eo/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,55 +0,0 @@ - - - Permeso estas aljuĝita kopii, distribui kaj/aŭ ŝanĝi ĉi tiun dokumenton sur la kondiĉoj de la GNU Licenso de Libera Dokumentado (GFDL), Eldono 1.1 aŭ iu posta eldono eldonita de la Free Software Foundation, sen Invariantaj Sekcioj, aŭ Teksto de Antaŭa aŭ Malantaŭa Kovrilo. Vi povas trovi kopio de la GFDL je ĉi tiun ligo aŭ en la dosiero COPYING-DOCS, distribuita kun ĉi tiu manlibro. - Ĉi tiu manlibro estas parto de kolekto de manlibroj de MATE, distribuita sur la GFDL. Se vi ŝatus distribui ĉi tiun manlibron aparte de la kolekto, vi povas fari tion aldonante kopion de la licenso al la manlibro, kiel priskribita je sekcio 6 de la licenso. - - Multaj el la nomoj uzitaj de kompanioj distingui iliaj produktoj kaj servicioj asertis kiel varmarkoj. Tie, kie tiuj nomoj aperas je iu dokumentado de MATE, kaj la membroj de la Projekto de Dokumentado de MATE estas konsciaj pri tiuj, tiam la nomoj estas majusklaj aŭ la unua letero estas majuskla. - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/es/es.po mate-utils-1.26.1/logview/help/es/es.po --- mate-utils-1.26.0/logview/help/es/es.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es/es.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,30 +1,32 @@ # # Translators: -# Stefano Karapetsas , 2018 -# elio , 2018 -# Wolfgang Ulbrich , 2018 -# Isabel Ortuño , 2018 -# Joel Barrios , 2018 +# seacat , 2021 +# Stefano Karapetsas , 2021 +# elio , 2021 +# Wolfgang Ulbrich , 2021 +# Joel Barrios , 2021 +# Isabel Ortuño , 2021 # Toni Estévez , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" "Last-Translator: Toni Estévez , 2021\n" -"Language-Team: Spanish (https://www.transifex.com/mate/teams/13566/es/)\n" +"Language-Team: Spanish (https://app.transifex.com/mate/teams/13566/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" msgstr "" -"Toni Estevez , 2020\n" +"Toni Estevez , 2020-2021\n" +"Adolfo Jayme Barrientos , 2018\n" "Jorge González , 2007-2010\n" "Francisco Javier F. Serrador , 2003-2006\n" "Pablo Gonzalo del Campo , 2002-2003" @@ -207,8 +209,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -508,10 +511,10 @@ "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" -"Este manual es parte de una colección de manuales de MATE distribuidos " -"conforme a la GFDL. Si quiere distribuir este manual por separado de la " -"colección, puede hacerlo añadiendo una copia de la licencia al manual, tal " -"como se describe en la sección 6 de la licencia." +"Este manual es parte de una colección de manuales de MATE distribuidos bajo " +"la GFDL. Si quiere distribuir este manual por separado de la colección, " +"puede hacerlo añadiendo una copia de la licencia al manual, tal y como se " +"describe en la sección 6 de la licencia." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -522,9 +525,9 @@ "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" -"Muchos de los nombres utilizados por las empresas para distinguir sus " -"productos y servicios se consideran marcas comerciales. Cuando esos nombres " -"aparecen en cualquier documentación de MATE y los miembros del proyecto de " +"Muchos de los nombres usados por las empresas para distinguir sus productos " +"y servicios se consideran marcas comerciales. Cuando esos nombres aparecen " +"en cualquier documentación de MATE y los miembros del proyecto de " "documentación de MATE son conscientes de que se trata de marcas registradas," " dichos nombres se escriben en letras mayúsculas o con inical mayúscula." @@ -543,8 +546,8 @@ "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 DOCUMENTO SE PROPORCIONA «TAL CUAL», SIN GARANTÍA DE NINGÚN TIPO, NI " -"EXPLÍCITA NI IMPLÍCITA, INCLUYENDO, ENTRE OTRAS, LAS GARANTÍAS DE QUE EL " +"EL DOCUMENTO SE PROPORCIONA «TAL CUAL ESTA», SIN GARANTÍA DE NINGÚN TIPO, NI" +" EXPLÍCITA NI IMPLÍCITA, INCLUYENDO, ENTRE OTRAS, LAS GARANTÍAS DE QUE EL " "DOCUMENTO O UNA VERSIÓN MODIFICADA DEL DOCUMENTO CAREZCA DE DEFECTOS " "COMERCIALES, SEA ADECUADO A UN PROPÓSITO PARTICULAR O INCUMPLA ALGUNA " "NORMATIVA. TODO RIESGO EN RELACIÓN CON LA CALIDAD, LA PRECISIÓN Y LA " diff -Nru mate-utils-1.26.0/logview/help/es/index.docbook mate-utils-1.26.1/logview/help/es/index.docbook --- mate-utils-1.26.0/logview/help/es/index.docbook 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,426 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - 2015-2021 Proyecto de documentación de MATE - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - Proyecto de documentación de MATE - - - Proyecto de documentación de GNOME - - - - - - Equipo de documentación de MATE Escritorio MATE - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Comentarios - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Toni Estevez - - toni.estevez@gmail.com - - - - 2020 - - Toni Estevez - - - - - Jorge González - - jorgegonz@svn.gnome.org - - - - 2007-2010 - - Jorge González - - - - - Francisco Javier F. Serrador - - serrador@cvs.gnome.org - - - - 2003-2006 - - Francisco Javier F. Serrador - - - - - Pablo Gonzalo del Campo - - pablodc@bigfoot.com - - - - 2002-2003 - - Pablo Gonzalo del Campo - -
- - - System Log Viewer - - - - - - - Introducción - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Cómo empezar - - You can start System Log Viewer in the following ways: - - - - Menú Aplicaciones - - Choose System ToolsLog File Viewer. - - - - Línea de órdenes - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Uso - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/es/legal.xml mate-utils-1.26.1/logview/help/es/legal.xml --- mate-utils-1.26.0/logview/help/es/legal.xml 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Se concede permiso para copiar, distribuir y/o modificar este documento según los términos de la Licencia de Documentación Libre (GFDL) de GNU, en la versión 1.1 o en cualquier verisón posterior publicada por la Free Software Foundation, sin secciones invariables ni textos de portada ni de contraportada. Puede encontrar una copia de la GFDL enenlace o en el archivo COPYING-DOCS distribuido con este manual. - Este manual es parte de una colección de manuales de MATE distribuidos conforme a la GFDL. Si quiere distribuir este manual por separado de la colección, puede hacerlo añadiendo una copia de la licencia al manual, tal como se describe en la sección 6 de la licencia. - - Muchos de los nombres utilizados por las empresas para distinguir sus productos y servicios se consideran marcas comerciales. Cuando esos nombres aparecen en cualquier documentación de MATE y los miembros del proyecto de documentación de MATE son conscientes de que se trata de marcas registradas, dichos nombres se escriben en letras mayúsculas o con inical mayúscula. - - EL DOCUMENTO Y LAS VERSIONES MODIFICADAS DEL DOCUMENTO SE PROPORCIONAN SEGÚN LOS TÉRMINOS DE LA LICENCIA DE DOCUMENTACIÓN LIBRE DE GNU CON EL ACUERDO ADICIONAL DE QUE: - - EL DOCUMENTO SE PROPORCIONA «TAL CUAL», SIN GARANTÍA DE NINGÚN TIPO, NI EXPLÍCITA NI IMPLÍCITA, INCLUYENDO, ENTRE OTRAS, LAS GARANTÍAS DE QUE EL DOCUMENTO O UNA VERSIÓN MODIFICADA DEL DOCUMENTO CAREZCA DE DEFECTOS COMERCIALES, SEA ADECUADO A UN PROPÓSITO PARTICULAR O INCUMPLA ALGUNA NORMATIVA. TODO RIESGO EN RELACIÓN CON LA CALIDAD, LA PRECISIÓN Y LA UTILIDAD DEL DOCUMENTO O UNA VERSIÓN MODIFICADA DEL DOCUMENTO RECAE EN USTED. SI EL DOCUMENTO O CUALQUIER VERSIÓN MODIFICADA DEL DOCUMENTO RESULTARA DEFECTUOSO EN CUALQUIER ASPECTO, USTED (Y NO EL REDACTOR INICIAL, EL AUTOR O CUALQUIER CONTRIBUYENTE) ASUMIRÁ TODOS LOS COSTES DE MANTENIMIENTO, REPARACIÓN O CORRECCIÓN NECESARIOS. ESTA RENUNCIA DE GARANTÍA ES UNA PARTE ESENCIAL DE ESTA LICENCIA. NO SE AUTORIZA EL USO DEL DOCUMENTO NI DE CUALQUIER VERSIÓN MODIFICADA DEL DOCUMENTO SALVO EN VIRTUD DE LA PRESENTE CLÁUSULA DE EXENCIÓN DE RESPONSABILIDAD; Y - - - BAJO NINGUNA CIRCUNSTANCIA NI BAJO NINGÚN CONCEPTO LEGAL, YA SEA POR RESPONSABILIDAD CIVIL (INCLUIDA LA NEGLIGENCIA), CONTRACTUAL O DE OTRO TIPO, EL AUTOR, EL REDACTOR INICIAL, CUALQUIER CONTRIBUYENTE O CUALQUIER DISTRIBUIDOR DEL DOCUMENTO O DE UNA VERSIÓN MODIFICADA DEL DOCUMENTO, O CUALQUIER PROVEEDOR DE CUALQUIERA DE DICHAS PARTES, NO SERÁN RESPONSABLES ANTE NINGUNA PERSONA POR NINGÚN DAÑO DIRECTO, INDIRECTO, ESPECIAL, ACCIDENTAL O DERIVADO DE CUALQUIER TIPO, INCLUIDOS, ENTRE OTROS, LOS DAÑOS POR PÉRDIDA DE REPUTACIÓN, INTERRUPCIÓN DEL TRABAJO, FALLO O MAL FUNCIONAMIENTO DEL EQUIPO O CUALQUIER OTRO DAÑO O PÉRDIDA DERIVADO O RELACIONADO CON EL USO DEL DOCUMENTO Y LAS VERSIONES MODIFICADAS DEL DOCUMENTO, INCLUSO SI DICHAS PARTES HAN SIDO INFORMADAS DE LA POSIBILIDAD DE QUE SE PRODUZCAN DICHOS DAÑOS. - - - diff -Nru mate-utils-1.26.0/logview/help/es_AR/es_AR.po mate-utils-1.26.1/logview/help/es_AR/es_AR.po --- mate-utils-1.26.0/logview/help/es_AR/es_AR.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_AR/es_AR.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,20 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Dario Badagnani , 2018 +# Stefano Karapetsas , 2021 +# Dario Badagnani , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Dario Badagnani , 2018\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mate/teams/13566/es_AR/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Dario Badagnani , 2021\n" +"Language-Team: Spanish (Argentina) (https://app.transifex.com/mate/teams/13566/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -198,8 +198,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/es_AR/index.docbook mate-utils-1.26.1/logview/help/es_AR/index.docbook --- mate-utils-1.26.0/logview/help/es_AR/index.docbook 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_AR/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - Proyecto de Documentación para MATE - - - Proyecto de Documentación para GNOME - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Línea de comandos - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/es_AR/legal.xml mate-utils-1.26.1/logview/help/es_AR/legal.xml --- mate-utils-1.26.0/logview/help/es_AR/legal.xml 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_AR/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/es_CL/es_CL.po mate-utils-1.26.1/logview/help/es_CL/es_CL.po --- mate-utils-1.26.0/logview/help/es_CL/es_CL.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_CL/es_CL.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,21 +1,21 @@ # # Translators: -# Stefano Karapetsas , 2018 -# prflr88 , 2018 -# Robert Petitpas , 2018 +# Stefano Karapetsas , 2021 +# Pablo Lezaeta Reyes , 2021 +# Robert Petitpas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Robert Petitpas , 2018\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/mate/teams/13566/es_CL/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Robert Petitpas , 2021\n" +"Language-Team: Spanish (Chile) (https://app.transifex.com/mate/teams/13566/es_CL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_CL\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/es_CL/index.docbook mate-utils-1.26.1/logview/help/es_CL/index.docbook --- mate-utils-1.26.0/logview/help/es_CL/index.docbook 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_CL/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Línea de comandos - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Uso - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/es_CL/legal.xml mate-utils-1.26.1/logview/help/es_CL/legal.xml --- mate-utils-1.26.0/logview/help/es_CL/legal.xml 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_CL/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/es_CO/es_CO.po mate-utils-1.26.1/logview/help/es_CO/es_CO.po --- mate-utils-1.26.0/logview/help/es_CO/es_CO.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_CO/es_CO.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,21 +1,21 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Sergio Alejandro Bayona Becerra , 2018 -# Julian Borrero , 2018 +# Stefano Karapetsas , 2021 +# Sergio Alejandro Bayona Becerra , 2021 +# Julian Borrero , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Julian Borrero , 2018\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/mate/teams/13566/es_CO/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Julian Borrero , 2021\n" +"Language-Team: Spanish (Colombia) (https://app.transifex.com/mate/teams/13566/es_CO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_CO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/es_CO/index.docbook mate-utils-1.26.1/logview/help/es_CO/index.docbook --- mate-utils-1.26.0/logview/help/es_CO/index.docbook 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_CO/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Línea de comandos - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/es_CO/legal.xml mate-utils-1.26.1/logview/help/es_CO/legal.xml --- mate-utils-1.26.0/logview/help/es_CO/legal.xml 2021-08-05 19:48:45.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_CO/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/es_CR/es_CR.po mate-utils-1.26.1/logview/help/es_CR/es_CR.po --- mate-utils-1.26.0/logview/help/es_CR/es_CR.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_CR/es_CR.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/mate/teams/13566/es_CR/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Spanish (Costa Rica) (https://app.transifex.com/mate/teams/13566/es_CR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_CR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/es_CR/index.docbook mate-utils-1.26.1/logview/help/es_CR/index.docbook --- mate-utils-1.26.0/logview/help/es_CR/index.docbook 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_CR/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Línea de comandos - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/es_CR/legal.xml mate-utils-1.26.1/logview/help/es_CR/legal.xml --- mate-utils-1.26.0/logview/help/es_CR/legal.xml 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_CR/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/es_DO/es_DO.po mate-utils-1.26.1/logview/help/es_DO/es_DO.po --- mate-utils-1.26.0/logview/help/es_DO/es_DO.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_DO/es_DO.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/mate/teams/13566/es_DO/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Spanish (Dominican Republic) (https://app.transifex.com/mate/teams/13566/es_DO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_DO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/es_DO/index.docbook mate-utils-1.26.1/logview/help/es_DO/index.docbook --- mate-utils-1.26.0/logview/help/es_DO/index.docbook 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_DO/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Línea de comandos - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/es_DO/legal.xml mate-utils-1.26.1/logview/help/es_DO/legal.xml --- mate-utils-1.26.0/logview/help/es_DO/legal.xml 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_DO/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/es_EC/es_EC.po mate-utils-1.26.1/logview/help/es_EC/es_EC.po --- mate-utils-1.26.0/logview/help/es_EC/es_EC.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_EC/es_EC.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mate/teams/13566/es_EC/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Spanish (Ecuador) (https://app.transifex.com/mate/teams/13566/es_EC/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_EC\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/es_EC/index.docbook mate-utils-1.26.1/logview/help/es_EC/index.docbook --- mate-utils-1.26.0/logview/help/es_EC/index.docbook 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_EC/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Línea de comandos - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/es_EC/legal.xml mate-utils-1.26.1/logview/help/es_EC/legal.xml --- mate-utils-1.26.0/logview/help/es_EC/legal.xml 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_EC/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/es_ES/es_ES.po mate-utils-1.26.1/logview/help/es_ES/es_ES.po --- mate-utils-1.26.0/logview/help/es_ES/es_ES.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_ES/es_ES.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/mate/teams/13566/es_ES/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Spanish (Spain) (https://app.transifex.com/mate/teams/13566/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/es_ES/index.docbook mate-utils-1.26.1/logview/help/es_ES/index.docbook --- mate-utils-1.26.0/logview/help/es_ES/index.docbook 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_ES/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Línea de comandos - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/es_ES/legal.xml mate-utils-1.26.1/logview/help/es_ES/legal.xml --- mate-utils-1.26.0/logview/help/es_ES/legal.xml 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_ES/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/es_MX/es_MX.po mate-utils-1.26.1/logview/help/es_MX/es_MX.po --- mate-utils-1.26.0/logview/help/es_MX/es_MX.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_MX/es_MX.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,20 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Luis Armando Medina , 2018 +# Stefano Karapetsas , 2021 +# Luis Armando Medina , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Luis Armando Medina , 2018\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mate/teams/13566/es_MX/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Luis Armando Medina , 2021\n" +"Language-Team: Spanish (Mexico) (https://app.transifex.com/mate/teams/13566/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_MX\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -203,8 +203,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/es_MX/index.docbook mate-utils-1.26.1/logview/help/es_MX/index.docbook --- mate-utils-1.26.0/logview/help/es_MX/index.docbook 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_MX/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,478 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Luis Armando Medina A. - - contacto@luisarmandomedina.com - - - - 2016 - - Luis Armando Medina A. - - - - - Jorge González - - jorgegonz@svn.gnome.org - - - - 2007-2010 - - Jorge González - - - - - Francisco Javier F. Serrador - - serrador@cvs.gnome.org - - - - 2003-2006 - - Francisco Javier F. Serrador - - - - - Pablo Gonzalo del Campo - - pablodc@bigfoot.com - - - - 2000-2004 - - Pablo Gonzalo del Campo - - - - - Carlos Perelló Marín - - carlos@gnome-db.org - - - - 2000 - - 2002 - - Carlos Perelló Marín - - - - - Ismael Olea - - ismael@olea.org - - - - 2001 - - Ismael Olea - - - - - Jorge Carrasquilla Soares - - jorge@conectiva.com.br - - - - 2000 - - Jorge Carrasquilla Soares - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Línea de comandos - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/es_MX/legal.xml mate-utils-1.26.1/logview/help/es_MX/legal.xml --- mate-utils-1.26.0/logview/help/es_MX/legal.xml 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_MX/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/es_NI/es_NI.po mate-utils-1.26.1/logview/help/es_NI/es_NI.po --- mate-utils-1.26.0/logview/help/es_NI/es_NI.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_NI/es_NI.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Spanish (Nicaragua) (https://www.transifex.com/mate/teams/13566/es_NI/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Spanish (Nicaragua) (https://app.transifex.com/mate/teams/13566/es_NI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_NI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/es_NI/index.docbook mate-utils-1.26.1/logview/help/es_NI/index.docbook --- mate-utils-1.26.0/logview/help/es_NI/index.docbook 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_NI/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Línea de comandos - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/es_NI/legal.xml mate-utils-1.26.1/logview/help/es_NI/legal.xml --- mate-utils-1.26.0/logview/help/es_NI/legal.xml 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_NI/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/es_PA/es_PA.po mate-utils-1.26.1/logview/help/es_PA/es_PA.po --- mate-utils-1.26.0/logview/help/es_PA/es_PA.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_PA/es_PA.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Spanish (Panama) (https://www.transifex.com/mate/teams/13566/es_PA/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Spanish (Panama) (https://app.transifex.com/mate/teams/13566/es_PA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_PA\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/es_PA/index.docbook mate-utils-1.26.1/logview/help/es_PA/index.docbook --- mate-utils-1.26.0/logview/help/es_PA/index.docbook 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_PA/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Línea de comandos - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/es_PA/legal.xml mate-utils-1.26.1/logview/help/es_PA/legal.xml --- mate-utils-1.26.0/logview/help/es_PA/legal.xml 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_PA/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/es_PE/es_PE.po mate-utils-1.26.1/logview/help/es_PE/es_PE.po --- mate-utils-1.26.0/logview/help/es_PE/es_PE.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_PE/es_PE.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/mate/teams/13566/es_PE/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Spanish (Peru) (https://app.transifex.com/mate/teams/13566/es_PE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_PE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/es_PE/index.docbook mate-utils-1.26.1/logview/help/es_PE/index.docbook --- mate-utils-1.26.0/logview/help/es_PE/index.docbook 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_PE/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Línea de comandos - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/es_PE/legal.xml mate-utils-1.26.1/logview/help/es_PE/legal.xml --- mate-utils-1.26.0/logview/help/es_PE/legal.xml 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_PE/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/es_PR/es_PR.po mate-utils-1.26.1/logview/help/es_PR/es_PR.po --- mate-utils-1.26.0/logview/help/es_PR/es_PR.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_PR/es_PR.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/mate/teams/13566/es_PR/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Spanish (Puerto Rico) (https://app.transifex.com/mate/teams/13566/es_PR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_PR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/es_PR/index.docbook mate-utils-1.26.1/logview/help/es_PR/index.docbook --- mate-utils-1.26.0/logview/help/es_PR/index.docbook 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_PR/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Línea de comandos - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/es_PR/legal.xml mate-utils-1.26.1/logview/help/es_PR/legal.xml --- mate-utils-1.26.0/logview/help/es_PR/legal.xml 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_PR/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/es_SV/es_SV.po mate-utils-1.26.1/logview/help/es_SV/es_SV.po --- mate-utils-1.26.0/logview/help/es_SV/es_SV.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_SV/es_SV.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Spanish (El Salvador) (https://www.transifex.com/mate/teams/13566/es_SV/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Spanish (El Salvador) (https://app.transifex.com/mate/teams/13566/es_SV/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_SV\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/es_SV/index.docbook mate-utils-1.26.1/logview/help/es_SV/index.docbook --- mate-utils-1.26.0/logview/help/es_SV/index.docbook 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_SV/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Línea de comandos - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/es_SV/legal.xml mate-utils-1.26.1/logview/help/es_SV/legal.xml --- mate-utils-1.26.0/logview/help/es_SV/legal.xml 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_SV/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/es_UY/es_UY.po mate-utils-1.26.1/logview/help/es_UY/es_UY.po --- mate-utils-1.26.0/logview/help/es_UY/es_UY.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_UY/es_UY.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Spanish (Uruguay) (https://www.transifex.com/mate/teams/13566/es_UY/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Spanish (Uruguay) (https://app.transifex.com/mate/teams/13566/es_UY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_UY\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/es_UY/index.docbook mate-utils-1.26.1/logview/help/es_UY/index.docbook --- mate-utils-1.26.0/logview/help/es_UY/index.docbook 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_UY/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Línea de comandos - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/es_UY/legal.xml mate-utils-1.26.1/logview/help/es_UY/legal.xml --- mate-utils-1.26.0/logview/help/es_UY/legal.xml 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_UY/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/es_VE/es_VE.po mate-utils-1.26.1/logview/help/es_VE/es_VE.po --- mate-utils-1.26.0/logview/help/es_VE/es_VE.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_VE/es_VE.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/mate/teams/13566/es_VE/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Spanish (Venezuela) (https://app.transifex.com/mate/teams/13566/es_VE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_VE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/es_VE/index.docbook mate-utils-1.26.1/logview/help/es_VE/index.docbook --- mate-utils-1.26.0/logview/help/es_VE/index.docbook 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_VE/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Línea de comandos - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/es_VE/legal.xml mate-utils-1.26.1/logview/help/es_VE/legal.xml --- mate-utils-1.26.0/logview/help/es_VE/legal.xml 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/es_VE/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/et/et.po mate-utils-1.26.1/logview/help/et/et.po --- mate-utils-1.26.0/logview/help/et/et.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/et/et.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,16 @@ # # Translators: -# Ivar Smolin , 2018 -# Stefano Karapetsas , 2018 +# Ivar Smolin , 2021 +# Stefano Karapetsas , 2021 +# vaba , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Estonian (https://www.transifex.com/mate/teams/13566/et/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: vaba , 2021\n" +"Language-Team: Estonian (https://app.transifex.com/mate/teams/13566/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,7 +25,8 @@ "Ilmar Kerm , 2001, 2002.\n" "Tõivo Leedjärv , 2002, 2003.\n" "Priit Laes , 2004–2006, 2008, 2009\n" -"Ivar Smolin , 2005–2010, 2014–2015, 2018." +"Ivar Smolin , 2005–2010, 2014–2015, 2018.\n" +"Marko Silluste, 2021." #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -201,8 +203,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/et/index.docbook mate-utils-1.26.1/logview/help/et/index.docbook --- mate-utils-1.26.0/logview/help/et/index.docbook 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/et/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,449 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Tagasiside - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Ilmar Kerm - - ikerm hot ee - - - - 2001 - - 2002. - - Ilmar Kerm - - - - - Tõivo Leedjärv - - toivo linux ee - - - - 2002 - - 2003. - - Tõivo Leedjärv - - - - - Priit Laes - - plaes plaes org - - - - 2004–2006 - - 2008 - - 2009 - - Priit Laes - - - - - Ivar Smolin - - okul linux ee - - - - 2005–2010 - - 2014–2015 - - 2018. - - Ivar Smolin - -
- - - System Log Viewer - - - - - - - Sissejuhatus - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Käsurida - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Kasutus - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/et/legal.xml mate-utils-1.26.1/logview/help/et/legal.xml --- mate-utils-1.26.0/logview/help/et/legal.xml 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/et/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/eu/eu.po mate-utils-1.26.1/logview/help/eu/eu.po --- mate-utils-1.26.0/logview/help/eu/eu.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/eu/eu.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Asier Iturralde Sarasola , 2018 -# Stefano Karapetsas , 2018 -# Alexander Gabilondo , 2018 -# Wolfgang Ulbrich , 2018 +# Asier Iturralde Sarasola , 2021 +# Stefano Karapetsas , 2021 +# Alexander Gabilondo , 2021 +# Wolfgang Ulbrich , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Wolfgang Ulbrich , 2018\n" -"Language-Team: Basque (https://www.transifex.com/mate/teams/13566/eu/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Wolfgang Ulbrich , 2021\n" +"Language-Team: Basque (https://app.transifex.com/mate/teams/13566/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -200,8 +200,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/eu/index.docbook mate-utils-1.26.1/logview/help/eu/index.docbook --- mate-utils-1.26.0/logview/help/eu/index.docbook 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/eu/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATEren dokumentazio-proiektua - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Ohar-bidaltzea - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Sarrera - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Aplikazioak menua - - Choose System ToolsLog File Viewer. - - - - Komando-lerroa - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Erabilera - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/eu/legal.xml mate-utils-1.26.1/logview/help/eu/legal.xml --- mate-utils-1.26.0/logview/help/eu/legal.xml 2021-08-05 19:48:46.000000000 +0000 +++ mate-utils-1.26.1/logview/help/eu/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - Eskuliburu hau GFDL lizentziarekin banatzen diren MATE eskuliburuen bildumakoa da. Eskuliburu hau bildumatik bereizita banatu nahi baduzu, bana dezakezu, baina eskuliburuari lizentziaren kopia bat gehitu beharko diozu, lizentzian bertan 6. atalean azaltzen den bezala. - - Enpresek euren produktu eta zerbitzuak bereizteko erabiltzen dituzten izen asko marka erregistratu moduan hartu behar dira. Izen horiek MATEren edozein agiritan agertzen direnean, eta MATEren Dokumentazio Proiektuko kideak marka komertzialak direla konturatu badira, orduan izen horiek maiuskulaz idatzita egongo dira, osorik edo hasierako letra maiuskulaz jarrita. - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/fa/fa.po mate-utils-1.26.1/logview/help/fa/fa.po --- mate-utils-1.26.0/logview/help/fa/fa.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/fa/fa.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Borderliner , 2018 +# Stefano Karapetsas , 2021 +# Borderliner , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Borderliner , 2018\n" -"Language-Team: Persian (https://www.transifex.com/mate/teams/13566/fa/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Borderliner , 2021\n" +"Language-Team: Persian (https://app.transifex.com/mate/teams/13566/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -196,8 +196,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/fa/index.docbook mate-utils-1.26.1/logview/help/fa/index.docbook --- mate-utils-1.26.0/logview/help/fa/index.docbook 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/fa/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - سطر فرمان - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/fa/legal.xml mate-utils-1.26.1/logview/help/fa/legal.xml --- mate-utils-1.26.0/logview/help/fa/legal.xml 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/fa/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/fi/fi.po mate-utils-1.26.1/logview/help/fi/fi.po --- mate-utils-1.26.0/logview/help/fi/fi.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/fi/fi.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Lasse Liehu , 2018 -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# nomen omen, 2018 +# Lasse Liehu , 2021 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 +# nomen omen, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: nomen omen, 2018\n" -"Language-Team: Finnish (https://www.transifex.com/mate/teams/13566/fi/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: nomen omen, 2021\n" +"Language-Team: Finnish (https://app.transifex.com/mate/teams/13566/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -203,8 +203,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/fi/index.docbook mate-utils-1.26.1/logview/help/fi/index.docbook --- mate-utils-1.26.0/logview/help/fi/index.docbook 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/fi/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,382 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - Maten dokumentointiprojekti - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Palaute - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Johdanto - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Komentorivi - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Käyttö - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/fi/legal.xml mate-utils-1.26.1/logview/help/fi/legal.xml --- mate-utils-1.26.0/logview/help/fi/legal.xml 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/fi/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/fr/fr.po mate-utils-1.26.1/logview/help/fr/fr.po --- mate-utils-1.26.0/logview/help/fr/fr.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/fr/fr.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# df3de0cb43d289cd23a753345b3743cd_a20684f, 2018 -# Guillaume Fayard , 2018 -# Laurent Napias , 2018 -# bf437f16c5a5796ac2a6f350075b40dc, 2018 -# Étienne Deparis , 2018 -# Robert Antoni Buj i Gelonch , 2019 -# Tubuntu, 2020 +# Robert Antoni Buj i Gelonch , 2021 +# Stefano Karapetsas , 2021 +# Tubuntu, 2021 +# Étienne Deparis , 2021 +# Wolfgang Ulbrich , 2021 +# df3de0cb43d289cd23a753345b3743cd_a20684f, 2021 +# bf437f16c5a5796ac2a6f350075b40dc, 2021 +# Laurent Napias, 2021 +# Guillaume Fayard , 2021 +# Laurent Napias , 2021 # Stéphane PETRUS , 2021 # Jerom Turible , 2021 # @@ -16,20 +17,20 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" "Last-Translator: Jerom Turible , 2021\n" -"Language-Team: French (https://www.transifex.com/mate/teams/13566/fr/)\n" +"Language-Team: French (https://app.transifex.com/mate/teams/13566/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" msgstr "" -"Contributeurs au projet MATE :\n" +"Contributeurs au projet MATE :\n" "Voir https://www.transifex.com/mate/teams/13566/fr/\n" "\n" "Contributeurs au projet GNOME :\n" @@ -77,7 +78,7 @@ #. (itstool) path: revdescription/para #: C/index.docbook:51 C/index.docbook:122 msgid "MATE Documentation Project" -msgstr "Le projet de documentation MATE" +msgstr "Projet de documentation MATE" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -85,7 +86,7 @@ #: C/index.docbook:152 C/index.docbook:162 C/index.docbook:172 #: C/index.docbook:182 C/index.docbook:192 msgid "GNOME Documentation Project" -msgstr "GNOME Documentation Project" +msgstr "Projet de documentation GNOME" #. (itstool) path: authorgroup/author #: C/index.docbook:60 @@ -221,8 +222,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -295,7 +297,7 @@ #. (itstool) path: varlistentry/term #: C/index.docbook:250 msgid "Applications menu" -msgstr "Menu Applications" +msgstr "Par le menu Applications" #. (itstool) path: listitem/para #: C/index.docbook:252 @@ -310,7 +312,7 @@ #. (itstool) path: varlistentry/term #: C/index.docbook:256 msgid "Command line" -msgstr "Ligne de commande" +msgstr "En ligne de commande" #. (itstool) path: listitem/para #: C/index.docbook:258 @@ -380,8 +382,8 @@ msgstr "" "Par défaut, la visionneuse de journaux système " "surveille tous les journaux ouverts et tout changement s'affiche " -"automatiquement dans la fenêtre principale. Consultez pour plus d'informations." +"automatiquement dans la fenêtre principale. Consultez pour plus d'informations." #. (itstool) path: sect1/title #: C/index.docbook:299 @@ -447,7 +449,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:335 msgid "To Hide the Sidebar" -msgstr "Masquer la barre latérale" +msgstr "Pour masquer la barre latérale" #. (itstool) path: sect2/para #: C/index.docbook:336 @@ -564,8 +566,8 @@ " section 6 of the license." msgstr "" "Ce manuel fait partie de la collection de manuels MATE distribués selon les " -"termes de la licence de documentation libre GNU. Si vous souhaitez " -"distribuer ce manuel indépendamment de la collection, vous devez joindre un " +"termes de la Licence GNU de documentation libre. Si vous souhaitez " +"distribuer ce manuel indépendamment de la collection, veuillez joindre un " "exemplaire de la licence au document, comme indiqué dans la section 6 de " "celle-ci." diff -Nru mate-utils-1.26.0/logview/help/fr/index.docbook mate-utils-1.26.1/logview/help/fr/index.docbook --- mate-utils-1.26.0/logview/help/fr/index.docbook 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/fr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,478 +0,0 @@ - - - - - - -]> - - -
- - - - Manuel de la visionneuse de journaux système - - - La visionneuse de journaux système est une visionneuse graphique pour voir et surveiller les fichiers de journalisation de votre système. - - - 2015-2021 Projet de documentation MATE - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - Le projet de documentation MATE - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Votre avis - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Vincent Renardias - - vincent@ldsol.com - - - - 1998-2000. - - Vincent Renardias - - - - - Joaquim Fellmann - - joaquim@hrnet.fr - - - - 2000. - - Joaquim Fellmann - - - - - Christophe Merlet - - redfox@redfoxcenter.org - - - - 2000-2006. - - Christophe Merlet - - - - - Christophe Fergeau - - teuf@users.sourceforge.net - - - - 2002-2003. - - Christophe Fergeau - - - - - Sun G11n - - gnome_int_l10n@ireland.sun.com - - - - 2002. - - Sun G11n - - - - - Robert-André Mauchin - - zebob.m@pengzone.org - - - - 2006-2008. - - Robert-André Mauchin - - - - - Stéphane Raimbault - - stephane.raimbault@gmail.com - - - - 2007. - - Stéphane Raimbault - - - - - Yannick Tailliez - - ytdispatch-libre@yahoo.com - - - - 2008. - - Yannick Tailliez - - - - - Claude Paroz - - claude@2xlibre.net - - - - 2008-2010. - - Claude Paroz - - - - - Gérard Baylard - - gerard dot b at bbox dot fr - - - - 2010 - - Gérard Baylard - -
- - Visionneuse de journaux système - - - - - - Introduction - - La visionneuse de journaux système est une visionneuse graphique, pilotée par des menus que vous pouvez utiliser pour voir et surveiller les journaux de votre système. La visionneuse de journaux système vous propose quelques fonctionnalités qui vous aideront à gérer vos journaux, comme un contrôleur de journaux et des statistiques. - - La visionneuse de journaux système est utile si vous êtes un administrateur ou administratrice système débutant·e car il propose un affichage de vos journaux système plus simple et plus pratique qu'une représentation textuelle pure. Il est également utile pour les administrateurs ou administratrices chevronné·e·s car il contient une console de surveillance permettant d'examiner les journaux cruciaux en continu. - - La visionneuse de journaux système est seulement utile pour les utilisateurs et utilisatrices ayant accès aux journaux système, ce qui demande généralement d'avoir un accès root. - - - - - Premiers pas - - Vous pouvez lancer la visionneuse de journaux système de l'une des façons suivantes : - - - Menu Applications - - Choisissez Outils systèmeVisionneuse de journaux système. - - - - Ligne de commande - - Saisissez mate-system-log, puis appuyez sur Entrée. - - - - - - - Lorsque vous démarrez la visionneuse de journaux système, la fenêtre suivante est affichée. - - -
- Fenêtre de la visionneuse de journaux système - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - Au premier lancement de la visionneuse de journaux système, l'application affiche plusieurs fichiers de journalisation par défaut (comme /var/log/messages). Les journaux ouverts sont listés dans la partie gauche de la fenêtre de l'application. Le journal sélectionné dans cette liste est affiché dans la zone principale de la fenêtre. - - Par défaut, la visionneuse de journaux système surveille tous les journaux ouverts et tout changement s'affiche automatiquement dans la fenêtre principale. Consultez pour plus d'informations. - -
- - - - - Utilisation - - - Voir le journal - Pour ouvrir un fichier log, choisissez FichierOuvrir. Dans la fenêtre Ouvrir un journal, sélectionner le fichier log que vous désirez ouvrir, puis cliquer sur Ouvrir. Utiliser les barres de défilement pour naviguer dans le log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - Masquer la barre latérale - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - Pour surveiller les journaux - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Nombre de ligne dans le journal de log - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - Fermer un journal - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/fr/legal.xml mate-utils-1.26.1/logview/help/fr/legal.xml --- mate-utils-1.26.0/logview/help/fr/legal.xml 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/fr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Permission est accordée de copier, distribuer et/ou modifier ce document selon les termes de la Licence GNU de documentation libre (GFDL), Version 1.1 ou ultérieure publiée par la Free Software Foundation sans section inaltérable, sans texte de première page ni de dernière page de couverture. Vous trouverez une copie (en anglais) de la GFDL en suivant ce lien ou dans le fichier COPYING-DOCS fourni avec le présent manuel. - Ce manuel fait partie de la collection de manuels MATE distribués selon les termes de la licence de documentation libre GNU. Si vous souhaitez distribuer ce manuel indépendamment de la collection, vous devez joindre un exemplaire de la licence au document, comme indiqué dans la section 6 de celle-ci. - - La plupart des noms utilisés par les entreprises pour distinguer leurs produits et services sont des marques déposées. Lorsque ces noms apparaissent dans la documentation MATE et que les membres du projet de Documentation MATE sont informés de l'existence de ces marques déposées, soit ces noms entiers, soit leur première lettre est en majuscule. - - CE DOCUMENT ET SES VERSIONS MODIFIEES SONT FOURNIS SELON LES TERMES DE LA LICENCE GNU FREE DOCUMENTATION EN COMPRENANT QUE : - - LE PRÉSENT DOCUMENT EST FOURNI « TEL QUEL », SANS AUCUNE GARANTIE, EXPRESSE OU IMPLICITE, Y COMPRIS, ET SANS LIMITATION, LES GARANTIES DE BONNE QUALITÉ MARCHANDE OU D'APTITUDE À UN EMPLOI PARTICULIER OU AUTORISÉ DU DOCUMENT OU DE SA VERSION MODIFIÉE. L'UTILISATEUR ASSUME TOUT RISQUE RELATIF À LA QUALITÉ, À LA PERTINENCE ET À LA PERFORMANCE DU DOCUMENT OU DE SA VERSION DE MISE À JOUR. SI LE DOCUMENT OU SA VERSION MODIFIÉE S'AVÉRAIT DÉFECTUEUSE, L'UTILISATEUR (ET NON LE RÉDACTEUR INITIAL, L'AUTEUR, NI TOUT AUTRE PARTICIPANT) ENDOSSERA LES COÛTS DE TOUTE INTERVENTION, RÉPARATION OU CORRECTION NÉCESSAIRE. CETTE DÉNÉGATION DE RESPONSABILITÉ CONSTITUE UNE PARTIE ESSENTIELLE DE CETTE LICENCE. AUCUNE UTILISATION DE CE DOCUMENT OU DE SA VERSION MODIFIÉE N'EST AUTORISÉE AUX TERMES DU PRÉSENT ACCORD, EXCEPTÉ SOUS CETTE DÉNÉGATION DE RESPONSABILITÉ ; - - - EN AUCUNE CIRCONSTANCE ET SOUS AUCUNE INTERPRÉTATION DE LA LOI, QU'IL S'AGISSE DE RESPONSABILITÉ CIVILE (Y COMPRIS LA NÉGLIGENCE), CONTRACTUELLE OU AUTRE, L'AUTEUR, LE RÉDACTEUR INITIAL, TOUT PARTICIPANT ET TOUT DISTRIBUTEUR DE CE DOCUMENT OU DE SA VERSION DE MISE À JOUR AINSI QUE TOUT FOURNISSEUR DE QUELQUE PARTIE QUE CE SOIT NE POURRONT ÊTRE TENUS RESPONSABLES À L'ÉGARD DE QUICONQUE POUR TOUT DOMMAGE DIRECT, INDIRECT, PARTICULIER OU ACCIDENTEL DE TOUT TYPE Y COMPRIS, SANS LIMITATION, LES DOMMAGES LIÉS À LA PERTE DE CLIENTÈLE, AUX ARRÊTS DE TRAVAIL, AUX DÉFAILLANCES ET AUX DYSFONCTIONNEMENTS INFORMATIQUES OU TOUT AUTRE DOMMAGE OU PERTE LIÉE À L'UTILISATION DU PRÉSENT DOCUMENT ET DE SES VERSIONS DE MISE À JOUR, ET CE MÊME SI CES PARTIES ONT ÉTÉ INFORMÉES DE LA POSSIBILITÉ DE TELS DOMMAGES. - - - diff -Nru mate-utils-1.26.0/logview/help/fur/fur.po mate-utils-1.26.1/logview/help/fur/fur.po --- mate-utils-1.26.0/logview/help/fur/fur.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/fur/fur.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Friulian (https://www.transifex.com/mate/teams/13566/fur/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Friulian (https://app.transifex.com/mate/teams/13566/fur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/fur/index.docbook mate-utils-1.26.1/logview/help/fur/index.docbook --- mate-utils-1.26.0/logview/help/fur/index.docbook 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/fur/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Command line - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/fur/legal.xml mate-utils-1.26.1/logview/help/fur/legal.xml --- mate-utils-1.26.0/logview/help/fur/legal.xml 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/fur/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/fy/fy.po mate-utils-1.26.1/logview/help/fy/fy.po --- mate-utils-1.26.0/logview/help/fy/fy.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/fy/fy.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Western Frisian (https://www.transifex.com/mate/teams/13566/fy/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Western Frisian (https://app.transifex.com/mate/teams/13566/fy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -198,8 +198,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/fy/index.docbook mate-utils-1.26.1/logview/help/fy/index.docbook --- mate-utils-1.26.0/logview/help/fy/index.docbook 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/fy/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Command line - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/fy/legal.xml mate-utils-1.26.1/logview/help/fy/legal.xml --- mate-utils-1.26.0/logview/help/fy/legal.xml 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/fy/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/ga/ga.po mate-utils-1.26.1/logview/help/ga/ga.po --- mate-utils-1.26.0/logview/help/ga/ga.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ga/ga.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Irish (https://www.transifex.com/mate/teams/13566/ga/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Irish (https://app.transifex.com/mate/teams/13566/ga/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -198,8 +198,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ga/index.docbook mate-utils-1.26.1/logview/help/ga/index.docbook --- mate-utils-1.26.0/logview/help/ga/index.docbook 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ga/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Líne na n-orduithe - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Úsáid - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ga/legal.xml mate-utils-1.26.1/logview/help/ga/legal.xml --- mate-utils-1.26.0/logview/help/ga/legal.xml 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ga/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/gl/gl.po mate-utils-1.26.1/logview/help/gl/gl.po --- mate-utils-1.26.0/logview/help/gl/gl.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/gl/gl.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Robert Antoni Buj i Gelonch , 2019 -# Wolfgang Ulbrich , 2019 # Miguel Anxo Bouzada , 2021 +# Robert Antoni Buj i Gelonch , 2021 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Miguel Anxo Bouzada , 2021\n" -"Language-Team: Galician (https://www.transifex.com/mate/teams/13566/gl/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Wolfgang Ulbrich , 2021\n" +"Language-Team: Galician (https://app.transifex.com/mate/teams/13566/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -233,13 +233,14 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Para informar dun fallo ou facer unha suxestión sobre a aplicación Visor do " -"rexistro do sistema ou este manual, siga as instrucións na páxina de comentarios do " -"MATE." +"rexistro do sistema ou este manual, siga as instrucións na páxina de comentarios do" +" MATE." #. (itstool) path: article/indexterm #: C/index.docbook:210 diff -Nru mate-utils-1.26.0/logview/help/gl/index.docbook mate-utils-1.26.1/logview/help/gl/index.docbook --- mate-utils-1.26.0/logview/help/gl/index.docbook 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/gl/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,224 +0,0 @@ - - - - - - -]> - - -
- - - - Manual do Visor do rexistro do sistema - - - O Visor do rexistro do sistema é unha interface gráfica de usuario para ver e supervisar os ficheiros de rexistro do sistema. - - - 2015-2021 Proxecto de documentación do MATE - 2003 Sun Microsystems - 2000 Judith Samson - - - Proxecto de documentación do MATE - - - Proxecto de documentación do GNOME - - - - - - Equipo de documentación do MATE Escritorio Mate - Sun Equipo de documentación do GNOME Sun Microsystems
gdocteam@sun.com
- - Judith Samson Proxecto de documentación do GNOME
judith@samsonsource.com
- - Paul Cutler Equipo de documentación do GNOME
pcutler@gnome.org
- - Vincent Noel
vincent.noel@gmail.com
- - -
- - - Manual do Visor do rexistro do sistema V1.10 xullo 2015 - Wolfgang Ulbrich - Proxecto de documentación do MATE - - Manual do Visor do rexistro do sistema V2.5 outubro 2009 - Paul Cutler pcutler@gnome.org - Proxecto de documentación do GNOME - - Manual do Visor do rexistro do sistema V2.4 outubro 2005 - Vincent Noel vincent.noel@gmail.com - Proxecto de documentación do GNOME - - Manual do Visor do rexistro do sistema V2.3 outubro 2002 - Equipo de documentación do GNOME de Sun gdocteam@sun.com - Proxecto de documentación do GNOME - - Manual do Visor do rexistro do sistema V2.2 agosto 2002 - Equipo de documentación do GNOME de Sun gdocteam@sun.com - Proxecto de documentación do GNOME - - Manual do Visor do rexistro do sistema V2.1 xullo 2002 - Equipo de documentación do GNOME de Sun gdocteam@sun.com - Proxecto de documentación do GNOME - - Manual do Visor do rexistro do sistema V2.0 maio 2002 - Equipo de documentación do GNOME de Sun gdocteam@sun.com - Proxecto de documentación do GNOME - - Manual do Visor do rexistro 2000 - Judith Samson judith@samsonsource.com - Proxecto de documentación do GNOME - - - - Este manual describe a versión 1.10 do Visor do rexistro do sistema - - Comentarios - Para informar dun fallo ou facer unha suxestión sobre a aplicación Visor do rexistro do sistema ou este manual, siga as instrucións na páxina de comentarios do MATE. - - -
- - Visor do rexistro do sistema - - - - - - Introdución - - O Visor do rexistro do sistema é un visor gráfico e baseado en menú que pode usar para ver e supervisar os rexistros do seu sistema. O Visor do rexistro do sistema inclúe algunhas funcións que poden axudarlle a xestionar os seus rexistros, incluíndo un monitor de rexistros e a vista de estatísticas do rexistro. - - O Visor do rexistro do sistema seralle moi útil se é novo na administración do sistema porque proporciona unha vista máis sinxela e doada de usar dos rexistros que unha vista do texto do ficheiro de rexistro. Tamén é útil para administradores con máis experiencia, xa que contén un monitor para permitirlle controlar continuamente os rexistros cruciais. - - O Visor do rexistro do sistema é útil só para aqueles que teñen acceso aos ficheiros de rexistro do sistema, que normalmente require acceso raíz (root). - - - - - Comezando - - Pode iniciar o Visor de rexistro do sistema das seguintes formas: - - - Menú de aplicacións - - Escolla Ferramentas do sistemasVisor de ficheiros de rexistro. - - - - Liña de ordes - - Escriba mate-system-log, a seguir prema Intro. - - - - - - - Cando inicie o Visor de rexistro do sistema, amosarase a seguinte xanela. - - -
- Xanela do Visor do rexistro do sistema - - Amosa a xanela principal do Visor do rexistro do sistema. Contén a barra de menú, área de vistas, barras de desprazamento e barra de estado. - -
- - A primeira vez que inicia o Visor do rexistro do sistema, por omisión, a aplicación amosa varios ficheiros de rexistro (como /var/log/messages). Os rexistros abertos aparecen na parte esquerda da xanela da aplicación. O rexistro seleccionado nesta lista amósase na área principal da xanela da aplicación. - - Por omisión, o Visor do rexistro do sistema supervisa todos os rexistros abertos e calquera cambio aparece automaticamente na xanela principal. Vexa para obter máis información. - -
- - - - - Uso - - - Para ver un rexistro - Para ver un rexistro, escolla FicheiroAbrir. No diálogo Abrir rexistro, seleccione o rexistro que quere abrir e, a continuación, prema en Abrir. Use as barras de desprazamento para desprazarse polo rexistro. - - Pode abrir tantos rexistros como queira. O Visor do rexistro do sistema amosa un rexistro de cada vez na xanela Visor do rexistro do sistema. Os rexistros abertos aparecen na parte esquerda da xanela da aplicación. O rexistro seleccionado nesta lista amosase na área principal da xanela da aplicación. Para amosar outro rexistro xa aberto no Visor do rexistros do sistema, seleccióneo na lista de rexistros. - - Teña en conta que o Visor do rexistro do sistema tamén lle permite abrir rexistros comprimidos (os nomes de ficheiros enteiros rematan en «.gz»). - - - - Para copiar liñas do rexistro ao portapapeis - Para copiar unha ou varias liñas do rexistro ao portapapeis, só tens que seleccionar as liñas da área principal e escoller a opción de menú EditarCopiar. Se quere copiar todo o rexistro no portapapeis, seleccioneo completamente coa opción de menú EditarSeleccionar todo, a seguir escolla EditarCopiar. - - - - Para agochar a barra lateral - Para agochar a barra lateral esquerda, que contén a lista de rexistros e o calendario, só ten que seleccionar a opción de menú do panel VerPanel lateral. - - - - Para monitorizar os rexistros - Pode usar o Visor do rexistro do sistema para supervisar os rexistros. Por omisión, todos os rexistros abertos no Visor do rexistro do sistema están controlados para os cambios. Se se engaden novas liñas a un rexistro controlado polo Visor do rexistro do sistema, o nome do rexistro aparecerá en negrita na lista de rexistros. Se o rexistro actualmente aparece na área principal, as novas liñas aparecerán automaticamente ao final do rexistro e, despois de cinco segundos, o nome do rexistro volverá á normalidade na lista. - - - - - Para ver a información do rexistro - A información de rexistro amósase xeralmente na barra de estado, incluíndo: - - Número de liñas no rexistro. - - Tamaño do rexistro en bytes. - - Data da última modificación do rexistro. - - - A barra de estado pode amosarse ou agocharse usando a opción Ver Barra de estado. - - - - Para pechar un rexistro - Para pechar un rexistro, escolla FicheiroPechar. - - - - Para saír do Visor do rexistro do sistema - Para saír do Visor do rexistro do sistema, escolla FicheiroSaír. - - - - -
diff -Nru mate-utils-1.26.0/logview/help/gl/legal.xml mate-utils-1.26.1/logview/help/gl/legal.xml --- mate-utils-1.26.0/logview/help/gl/legal.xml 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/gl/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Autorízase a copia, distribución e/ou modificación deste documento baixo os termos da Licenza de Documentación Libre de GNU (GFDL), versión 1.1 ou calquera outra versión posterior publicada pola Free Software Foundation sen seccións invariantes, sen textos de cuberta e sen textos de cuberta traseira. Pode atopar unha copia da GFDL en ligazón ou no ficheiro COPYING-DOCS distribuído con este manual. - Este manual forma parte da colección de manuais MATE distribuídos baixo a licenza GFDL. Se quere distribuír este manual separadamente da colección, pode facelo engadindo unha copia da licenza ao manual, tal e como está descrito na sección 6 da licenza. - - Moitos dos nomes utilizados polas empresas para distinguir os seus produtos e servizos son reivindicados como marcas comerciais. Cando estes nomes aparecen en calquera documentación de MATE e os membros do Proxecto de documentación de MATE son conscientes das marcas rexistradas, os nomes están en letras maiúsculas ou maiúsculas iniciais. - - O DOCUMENTO E AS VERSIÓNS MODIFICADAS DO DOCUMENTO FORNÉCENSE BAIXO OS TERMOS DA LICENZA LIBRE DE DOCUMENTACIÓN DE GNU CO ACORDO ADICIONAL DE: - - O DOCUMENTO FORNÉCESE «TAL E COMO É», SEN GARANTÍA DE NINGÚN TIPO, NIN EXPLÍCITA NIN IMPLÍCITA INCLUÍNDO, SEN LIMITACIÓN, GARANTÍA DE QUE O DOCUMENTO OU VERSIÓN MODIFICADA DESTE CAREZA DE DEFECTOS COMERCIAIS, SEXA AXEITADO A UN FIN CONCRETO OU INCUMPRA ALGUNHA NORMATIVA. TODO O RISCO RELATIVO Á CALIDADE, PRECISIÓN E UTILIDADE DO DOCUMENTO OU A SÚA VERSIÓN MODIFICADA RECAE EN VOSTEDE. SE CALQUERA DOCUMENTO OU VERSIÓN MODIFICADA DAQUEL RESULTARA DEFECTUOSO EN CALQUERA ASPECTO, VOSTEDE (E NON O REDACTOR INICIAL, AUTOR OU COLABORADOR) ASUMIRÁ OS CUSTOS DE TODA REPARACIÓN, MANTEMENTO OU CORRECCIÓN NECESARIOS. ESTA RENUNCIA DE GARANTÍA É UNHA PARTE ESENCIAL DESTA LICENZA. NON SE AUTORIZA O USO DE NINGÚN DOCUMENTO NIN VERSIÓN MODIFICADA DESTE POLO PRESENTE, SALVO DENTRO DO CUMPRIMENTO DA RENUNCIA; E - - - BAIXO NINGUNHA CIRCUNSTANCIA NIN BAIXO NINGUNHA TEORÍA LEGAL, SEXA POR ERRO (INCLUÍNDO NEGLIXENCIA), CONTRATO OU DE ALGÚN OUTRO MODO, O AUTOR, O ESCRITOR INICIAL, CALQUERA COLABORADOR, OU CALQUERA DISTRIBUIDOR DO DOCUMENTO OU VERSIÓN MODIFICADA DO DOCUMENTO, OU CALQUERA PROVEDOR DE CALQUERA DESAS PARTES, SERÁ RESPONSÁBEL ANTE NINGUNHA PERSOA POR NINGÚN DANO DIRECTO, INDIRECTO, ESPECIAL, INCIDENTAL OU DERIVADO DE NINGÚN TIPO, INCLUÍNDO, SEN LIMITACIÓN DANOS POR PERDA DE MERCANCÍAS, PARO TÉCNICO, FALLO INFORMÁTICO OU MAL FUNCIONAMENTO OU CALQUERA OUTRO POSÍBEL DANO OU PERDAS DERIVADAS OU RELACIONADAS CO USO DO DOCUMENTO OU AS SÚAS VERSIÓNS MODIFICADAS, AÍNDA QUE DITA PARTE TEÑA SIDO INFORMADA DA POSIBILIDADE DE QUE SE PRODUCISEN DITOS DANOS. - - - diff -Nru mate-utils-1.26.0/logview/help/gu/gu.po mate-utils-1.26.1/logview/help/gu/gu.po --- mate-utils-1.26.0/logview/help/gu/gu.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/gu/gu.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Milan Savaliya , 2018 +# Stefano Karapetsas , 2021 +# Milan Savaliya , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Milan Savaliya , 2018\n" -"Language-Team: Gujarati (https://www.transifex.com/mate/teams/13566/gu/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Milan Savaliya , 2021\n" +"Language-Team: Gujarati (https://app.transifex.com/mate/teams/13566/gu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -196,8 +196,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/gu/index.docbook mate-utils-1.26.1/logview/help/gu/index.docbook --- mate-utils-1.26.0/logview/help/gu/index.docbook 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/gu/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - પરિચય - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - આદેશ વાક્ય - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - વપરાશ - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/gu/legal.xml mate-utils-1.26.1/logview/help/gu/legal.xml --- mate-utils-1.26.0/logview/help/gu/legal.xml 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/gu/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/ha/ha.po mate-utils-1.26.1/logview/help/ha/ha.po --- mate-utils-1.26.0/logview/help/ha/ha.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ha/ha.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Hausa (https://www.transifex.com/mate/teams/13566/ha/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Hausa (https://app.transifex.com/mate/teams/13566/ha/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ha/index.docbook mate-utils-1.26.1/logview/help/ha/index.docbook --- mate-utils-1.26.0/logview/help/ha/index.docbook 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ha/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Command line - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ha/legal.xml mate-utils-1.26.1/logview/help/ha/legal.xml --- mate-utils-1.26.0/logview/help/ha/legal.xml 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ha/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/he/he.po mate-utils-1.26.1/logview/help/he/he.po --- mate-utils-1.26.0/logview/help/he/he.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/he/he.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Yaron Shahrabani , 2020 -# shy tzedaka , 2020 +# Yaron Shahrabani , 2021 +# Stefano Karapetsas , 2021 +# shy tzedaka , 2021 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: shy tzedaka , 2020\n" -"Language-Team: Hebrew (https://www.transifex.com/mate/teams/13566/he/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e , 2021\n" +"Language-Team: Hebrew (https://app.transifex.com/mate/teams/13566/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,7 +21,9 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Yaron Shahrabani " +msgstr "" +"Yaron Shahrabani \n" +"Omer I.S. " #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -197,8 +200,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -209,7 +213,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:218 msgid "Introduction" -msgstr "היכרות" +msgstr "מבוא" #. (itstool) path: sect1/para #: C/index.docbook:220 @@ -241,7 +245,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:244 msgid "Getting Started" -msgstr "מההתחלה" +msgstr "מדריך התחלה" #. (itstool) path: sect1/para #: C/index.docbook:246 @@ -265,7 +269,7 @@ #. (itstool) path: varlistentry/term #: C/index.docbook:256 msgid "Command line" -msgstr "שורת פקודה" +msgstr "שורת הפקודה" #. (itstool) path: listitem/para #: C/index.docbook:258 diff -Nru mate-utils-1.26.0/logview/help/he/index.docbook mate-utils-1.26.1/logview/help/he/index.docbook --- mate-utils-1.26.0/logview/help/he/index.docbook 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/he/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - מיזם התיעוד של MATE - - - מיזם התיעוד של GNOME - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - משוב - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - היכרות - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - מההתחלה - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - שורת פקודה - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - בשימוש - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/he/legal.xml mate-utils-1.26.1/logview/help/he/legal.xml --- mate-utils-1.26.0/logview/help/he/legal.xml 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/he/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/hi/hi.po mate-utils-1.26.1/logview/help/hi/hi.po --- mate-utils-1.26.0/logview/help/hi/hi.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/hi/hi.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Sadgamaya , 2018 -# Panwar108 , 2018 +# Stefano Karapetsas , 2021 +# Sadgamaya , 2021 +# Panwar108 , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Panwar108 , 2018\n" -"Language-Team: Hindi (https://www.transifex.com/mate/teams/13566/hi/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Panwar108 , 2021\n" +"Language-Team: Hindi (https://app.transifex.com/mate/teams/13566/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -201,8 +201,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/hi/index.docbook mate-utils-1.26.1/logview/help/hi/index.docbook --- mate-utils-1.26.0/logview/help/hi/index.docbook 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/hi/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,382 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - MATE प्रलेखन योजना - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - परिचय - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - कमांड लाइन - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - उपयोग - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/hi/legal.xml mate-utils-1.26.1/logview/help/hi/legal.xml --- mate-utils-1.26.0/logview/help/hi/legal.xml 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/hi/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/hr/hr.po mate-utils-1.26.1/logview/help/hr/hr.po --- mate-utils-1.26.0/logview/help/hr/hr.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/hr/hr.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Elvis M. Lukšić , 2018 -# Ivica Kolić , 2019 -# Radovan Gundulić , 2020 +# Ivica Kolić , 2021 +# Elvis M. Lukšić , 2021 +# Radovan Gundulić , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Radovan Gundulić , 2020\n" -"Language-Team: Croatian (https://www.transifex.com/mate/teams/13566/hr/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Radovan Gundulić , 2021\n" +"Language-Team: Croatian (https://app.transifex.com/mate/teams/13566/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -220,8 +220,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/hr/index.docbook mate-utils-1.26.1/logview/help/hr/index.docbook --- mate-utils-1.26.0/logview/help/hr/index.docbook 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/hr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,379 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - 2000 Judith Samson - - - MATE dokumentacijski projekt - - - GNOME dokumentacijski projekt - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Povratne informacije - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Uvod - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Započnimo - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Naredbeni redak - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Upotreba - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/hr/legal.xml mate-utils-1.26.1/logview/help/hr/legal.xml --- mate-utils-1.26.0/logview/help/hr/legal.xml 2021-08-05 19:48:47.000000000 +0000 +++ mate-utils-1.26.1/logview/help/hr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/hu/hu.po mate-utils-1.26.1/logview/help/hu/hu.po --- mate-utils-1.26.0/logview/help/hu/hu.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/hu/hu.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,20 @@ # # Translators: -# KAMI KAMI , 2018 -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Falu , 2018 -# Balázs Meskó , 2018 -# Robert Antoni Buj i Gelonch , 2019 +# KAMI KAMI , 2021 +# Robert Antoni Buj i Gelonch , 2021 +# Stefano Karapetsas , 2021 +# clefebvre , 2021 +# Wolfgang Ulbrich , 2021 +# Falu , 2021 +# Balázs Meskó , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Robert Antoni Buj i Gelonch , 2019\n" -"Language-Team: Hungarian (https://www.transifex.com/mate/teams/13566/hu/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Balázs Meskó , 2021\n" +"Language-Team: Hungarian (https://app.transifex.com/mate/teams/13566/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,14 +25,14 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"Dvornik László\n" -"Kelemen Gábor\n" -"Tímár András\n" -"Kalman „KAMI” Szalai\n" -"Falu\n" -"Rezső Páder\n" -"Zoltán Rápolthy\n" -"Meskó Balázs " +"Dvornik László \n" +"Kelemen Gábor \n" +"Kalman „KAMI” Szalai \n" +"Falu \n" +"Rezső Páder \n" +"Zoltán Rápolthy \n" +"Meskó Balázs \n" +"Tímár András " #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -208,8 +209,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -480,7 +482,7 @@ #. (itstool) path: para/ulink #: C/legal.xml:9 msgid "link" -msgstr "hivatkozással" +msgstr "link" #. (itstool) path: legalnotice/para #: C/legal.xml:2 diff -Nru mate-utils-1.26.0/logview/help/hu/index.docbook mate-utils-1.26.1/logview/help/hu/index.docbook --- mate-utils-1.26.0/logview/help/hu/index.docbook 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/hu/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,382 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - MATE dokumentációs projekt - - - GNOME dokumentációs projekt - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Visszajelzés - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Bevezetés - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Kezdő lépések - - You can start System Log Viewer in the following ways: - - - - Alkalmazások menü - - Choose System ToolsLog File Viewer. - - - - Parancssor - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Használat - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/hu/legal.xml mate-utils-1.26.1/logview/help/hu/legal.xml --- mate-utils-1.26.0/logview/help/hu/legal.xml 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/hu/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Jelen dokumentum szabadon másolható, terjeszthető és/vagy módosítható a GNU Free Documentation License (GFDL) 1.1-es verziója vagy a Free Software Foundation által kiadott ennél frissebb verziója alatt, a "Nem változtatható szakaszok", "Címlapszövegek" és a "Hátlapszövegek" kivételével. A GFDL leírása ezzel a hivatkozással érhető el, vagy a jelen dokumentációban található COPYING-DOCS fájlban. - Ez a kézikönyv része a GFDL alatt megjelenő MATE dokumentációk gyűjteményének. A kézikönyv a gyűjteménytől függetlenül szabadon terjeszthető, a licenc másolatát mellékelve a 6. szakaszban leírtaknak megfelelően. - - A cégek különböző, védjegy alá tartozó elnevezéseket használnak termékeik és szolgáltatásuk megkülönböztetéséhez. Ahol ezek a nevek megjelennek bármelyik MATE dokumentációban és a MATE dokumentációs projekt tagjainak tudomásuk van a védjegyről, abban az esetben ezek az elnevezések teljes egészében vagy kezdőbetűik nagybetűsek. - - A DOKUMENTUM ÉS A DOKUMENTUM MÓDOSÍTOTT VERZIÓI A GNU FREE DOCUMENTATION LICENSE FELTÉTELEI SZERINT KERÜLNEK KÖZREADÁSRA, A TOVÁBBIAK ISMERETÉBEN: - - A DOKUMENTUM „JELEN ÁLLAPOTÁBAN” KERÜL KIADÁSRA MINDENFÉLE GARANCIAVÁLLALÁS NÉLKÜL, LEGYEN AZ KIFEJEZETT VAGY BELEÉRTETT, BELEÉRTVE, DE NEM KIZÁRÓLAGOSAN A FORGALOMBA HOZHATÓSÁGRA VAGY ALKALMAZHATÓSÁGRA, A JELEN DOKUMENTUMNAK VAGY ANNAK MÓDOSÍTOTT VERZIÓJÁNAK HIBAMENTESSÉGÉRE VONATKOZÓ GARANCIÁKAT. A DOKUMENTUM VAGY ANNAK MÓDOSÍTOTT VÁLTOZATÁNAK MINŐSÉGÉBŐL ÉS FELHASZNÁLHATÓSÁGÁBÓL FAKADÓ ÖSSZES KOCKÁZAT A FELHASZNÁLÓT TERHELI. HA A DOKUMENTUM BIZONYÍTOTTAN HIBÁS, A FELHASZNÁLÓNAK MAGÁNAK (NEM A DOKUMENTUM ÍRÓJÁNAK, KIADÓJÁNAK VAGY BÁRMELY KÖZREMŰKÖDŐNEK) KELL VÁLLALNIA A JAVÍTÁSHOZ SZÜKSÉGES MINDEN KÖLTSÉGET. A JELEN GARANCIAELUTASÍTÁS A JELEN LICENC LÉNYEGI RÉSZE. A LEFEDETT DOKUMENTUM VAGY ANNAK MÓDOSÍTOTT VERZIÓJÁNAK HASZNÁLATA CSAK A JELEN ELUTASÍTÁSSAL EGYÜTT ENGEDÉLYEZETT, ÉS - - - SEMMILYEN KÖRÜLMÉNYEK KÖZÖTT ÉS SEMMILYEN JOGI MEGFONTOLÁSBÓL, LEGYEN AZ MAGÁNJOGI VÉTKES CSELEKMÉNY (BELEÉRTVE A HANYAGSÁGOT), SZERZŐDÉS VAGY BÁRMELY MÁS DOLOG, NEM FELELŐS ÖN, A LEFEDETT KÓD ELSŐ FEJLESZTŐJE ÉS TÖBBI KÖZREMŰKÖDŐJE VAGY EZEK BÁRMELY SZÁLLÍTÓJA SEMMILYEN MÁS SZEMÉLY FELÉ SEMMILYEN FAJTA KÖZVETLEN, SPECIÁLIS, VÉLETLEN VAGY KÖVETKEZMÉNYES KÁRÉRT, BELEÉRTVE DE NEM KIZÁRÓLAG A HÍRNÉV ELVESZTÉSÉBŐL, MUNKA LEÁLLÁSÁBÓL, SZÁMÍTÓGÉP MEGHIBÁSODÁSÁBÓL VAGY HELYTELEN MŰKÖDÉSÉBŐL SZÁRMAZÓ, VAGY BÁRMELY EGYÉB KERESKEDELMI KÁROKAT ÉS VESZTESÉGEKET, MÉG AKKOR IS, HA AZ ILYEN FÉL INFORMÁLVA LETT AZ ILYEN KÁROK ELŐFORDULÁSÁNAK LEHETŐSÉGÉRŐL. A FELELŐSSÉG EZEN KORLÁTOZÁSA NEM ALKALMAZHATÓ ABBAN AZ ESETBEN, HA HALÁL VAGY SZEMÉLYI SÉRÜLÉS TÖRTÉNT A FÉL HANYAGSÁGÁBÓL KIFOLYÓLAG, OLYAN MÉRTÉKBEN, AMENNYIRE AZ ALKALMAZHATÓ TÖRVÉNYEK MEGTILTJÁK AZ ILYEN KORLÁTOZÁSOKAT. - - - diff -Nru mate-utils-1.26.0/logview/help/hy/hy.po mate-utils-1.26.1/logview/help/hy/hy.po --- mate-utils-1.26.0/logview/help/hy/hy.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/hy/hy.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Siranush , 2018 -# Avag Sayan , 2020 +# Stefano Karapetsas , 2021 +# Siranush , 2021 +# Avag Sayan , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Avag Sayan , 2020\n" -"Language-Team: Armenian (https://www.transifex.com/mate/teams/13566/hy/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Avag Sayan , 2021\n" +"Language-Team: Armenian (https://app.transifex.com/mate/teams/13566/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,7 +20,7 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "թարգմանչի կրեդիտներ" +msgstr "թարգմանչի երախտիք" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/hy/index.docbook mate-utils-1.26.1/logview/help/hy/index.docbook --- mate-utils-1.26.0/logview/help/hy/index.docbook 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/hy/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,382 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - MATE փաստաթղթավորման նախագիծ - - - GNOME փաստաթղթավորման նախագիծ - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Արձագանք - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Հրամանի տող - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Օգտագործում - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/hy/legal.xml mate-utils-1.26.1/logview/help/hy/legal.xml --- mate-utils-1.26.0/logview/help/hy/legal.xml 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/hy/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/ia/ia.po mate-utils-1.26.1/logview/help/ia/ia.po --- mate-utils-1.26.0/logview/help/ia/ia.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ia/ia.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Tea Coba , 2018 +# Tea Coba , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Tea Coba , 2018\n" -"Language-Team: Interlingua (https://www.transifex.com/mate/teams/13566/ia/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Tea Coba , 2021\n" +"Language-Team: Interlingua (https://app.transifex.com/mate/teams/13566/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ia/index.docbook mate-utils-1.26.1/logview/help/ia/index.docbook --- mate-utils-1.26.0/logview/help/ia/index.docbook 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ia/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Command line - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ia/legal.xml mate-utils-1.26.1/logview/help/ia/legal.xml --- mate-utils-1.26.0/logview/help/ia/legal.xml 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ia/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/id/id.po mate-utils-1.26.1/logview/help/id/id.po --- mate-utils-1.26.0/logview/help/id/id.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/id/id.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,18 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 # Andika Triwidada , 2021 +# Stefano Karapetsas , 2021 +# Aril Apria Susanto , 2021 +# Wolfgang Ulbrich , 2021 +# Triyan W. Nugroho , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Andika Triwidada , 2021\n" -"Language-Team: Indonesian (https://www.transifex.com/mate/teams/13566/id/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Triyan W. Nugroho , 2021\n" +"Language-Team: Indonesian (https://app.transifex.com/mate/teams/13566/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -26,7 +28,8 @@ "Dirgita \n" "Tim MATE Indonesia \n" "Kukuh Syafaat , 2017.\n" -"Andika Triwidada , 2020, 2021." +"Andika Triwidada , 2020, 2021.\n" +"Triyan W. Nugroho , 2021." #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -234,8 +237,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Untuk melaporkan bug atau membuat saran mengenai aplikasi Penampil Log " "Sistem atau manual ini, ikuti petunjuk di " msgstr "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " +"DOKUMEN DAN VERSI MODIFIKASI DOKUMEN DIBERIKAN BERDASARKAN PERSYARATAN " +"LISENSI DOKUMENTASI GRATIS GNU DENGAN PEMAHAMAN LEBIH LANJUT BAHWA: " "<_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/logview/help/id/index.docbook mate-utils-1.26.1/logview/help/id/index.docbook --- mate-utils-1.26.0/logview/help/id/index.docbook 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/id/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,252 +0,0 @@ - - - - - - -]> - - -
- - - - Panduan Penampil Log Sistem - - - Penampil Log Sistem adalah sebuah antarmuka pengguna grafis untuk melihat dan memantau berkas log sistem. - - - 2015-2021 Projek Dokumentasi MATE - 2003 Sun Microsystems - 2000 Judith Samson - - - Projek Dokumentasi MATE - - - Projek Dokumentasi GNOME - - - - - - Tim Dokumentasi MATE Desktop Mate - Sun Tim Dokumentasi GNOME Sun Microsystems
gdocteam@sun.com
- - Judith Samson Projek Dokumentasi GNOME
judith@samsonsource.com
- - Paul Cutler Tim Dokumentasi GNOME
pcutler@gnome.org
- - Vincent Noel
vincent.noel@gmail.com
- - -
- - - Panduan Penampil Log Sistem V1.10 Juli 2015 - Wolfgang Ulbrich - Projek Dokumentasi MATE - - Panduan Penampil Log Sistem V2.5 Oktober 2009 - Paul Cutler pcutler@gnome.org - Projek Dokumentasi GNOME - - Panduan Penampil Log Sistem V2.4 Oktober 2005 - Vincent Noel vincent.noel@gmail.com - Projek Dokumentasi GNOME - - Panduan Penampil Log Sistem V2.3 Oktober 2002 - Tim Dokumentasi GNOME Sun gdocteam@sun.com - Projek Dokumentasi GNOME - - Panduan Penampil Log Sistem V2.2 Agustus 2002 - Tim Dokumentasi GNOME Sun gdocteam@sun.com - Projek Dokumentasi GNOME - - Panduan Penampil Log Sistem V2.1 Juli 2002 - Tim Dokumentasi GNOME Sun gdocteam@sun.com - Projek Dokumentasi GNOME - - Panduan Penampil Log Sistem V2.0 Mei 2002 - Tim Dokumentasi GNOME Sun gdocteam@sun.com - Projek Dokumentasi GNOME - - Panduan Logview 2000 - Judith Samson judith@samsonsource.com - Projek Dokumentasi GNOME - - - - Panduan ini menjelaskan versi 1.10 dari Penampil Log Sistem. - - Umpan balik - Untuk melaporkan bug atau membuat saran mengenai aplikasi Penampil Log Sistem atau manual ini, ikuti petunjuk di Halaman Umpan Balik Mate. - - - - - - Kukuh Syafaat - - syafaatkukuh@gmail.com - - - - 2017. - - Kukuh Syafaat - - - - - Andika Triwidada - - andika@gmail.com - - - - 2020 - - 2021. - - Andika Triwidada - -
- - Penampil Log Sistem - - - - - - Pengantar - - Penampil Log Sistem adalah suatu penampil grafis dan menu yang dapat Anda gunakan untuk melihat dan memantau log sistem Anda. Penampil Log Sistem hadir dengan beberapa fungsi yang dapat membantu Anda mengelola log Anda, termasuk suatu pemantau log dan tampilan statistik log. - - Penampil Log Sistem berguna bila Anda baru ke administrasi sistem karena itu menyediakan suatu tampilan yang lebih mudah, lebih akrab pengguna dari log Anda daripada suatu tampilan teks dari berkas log. Itu juga berguna bagi administrator sistem yang lebih berpengalaman, karena itu memuat suatu pemantau yang memungkinkan Anda secara terus-menerus memantau log-log yang sangat penting. - - Penampil Log Sistem hanya berguna bagi mereka yang memiliki akses ke berkas-berkas log sistem, yang umumnya memerlukan akses root. - - - - - Memulai - - Anda dapat memulai Penampil Log Sistem dengan cara-cara berikut: - - - Menu Aplikasi - - Pilih Perkakas SistemPenampil Berkas Log. - - - - Baris perintah - - Ketikkan mate-system-log, lallu tekan Return. - - - - - - - Ketika Anda memulai Penampil Log Sistem, jendela berikut ditampilkan. - - -
- Jendela Penampil Log Sistem - - Menampilkan jendela utama Penampil Log Sistem. Memuat bilah menu, area tampilan, bilah gulir, dan bilah status. - -
- - Pertama la;o Anda memulai Penampil Log Sistem, aplikasi menampilkan beberapa berkas log secara baku (seperti misalnya /var/log/messages). Log-log yang terbuka didaftar di sisi kiri dari jendela aplikasi. Log yang dipilih dalam daftar ini ditampilkan dalam area utam dari jendela aplikasi. - - Secara baku, Penampil Log Sistem memantau setiap log yang dibuka, dan sebarang perubahan muncul secara otomatis dalam jendela utama. Lihat untuk informasi lebih lanjut. - -
- - - - - Cara pakai - - - Untuk Melihat suatu Log - Untuk melihat suatu log, pilih BerkasBuka. Dalam dialog Buka Log, pilih log yang ingin Anda buka, lalu klik Buka. Gunakan bilah gulir untuk menggulir melalui log. - - Anda dapat membuka log sebanyak yang Anda mau. Penampil Log Sistem menampilkan satu log pada suatu saat dalam jendela Penampil Log Sistem. Log yang terbuka didaftar di sisi kiri dari jendela aplikasi. Log yang dipilih dalam daftar ini ditampilkan dalam area utama jendela aplikasi. Untuk menampilkan log lain yang sudah terbuka dalam Penampil Log Sistem, pilih itu dalam daftar log. - - Perhatikan bahwa Penampil Log Sistem juga memungkinkan Anda membuka log yang di-zip (seluruh nama berkas berakhiran "*.gz"). - - - - Untuk Menyalin Baris-baris Log ke Papan Klip - Untuk menyalin satu baris atau lebih ke papan klip, pilih saja baris-baris dalam area utama dan pilih opsi menu SuntingSalin. Bila Anda ingin menyalin seluruh log ke dalam papan klip, pilih seluruhnya memakai opsi menu SuntingPilih Semua, lalu pilih SuntingSalin. - - - - Untuk Menyembunyikan Bilah Sisi - Untuk menyembunyikan bilah sisi kiri, yang memuat daftar log dan kalender, pilih saja opsi menu TilikanPanel sisi. - - - - Untuk Memantau Log - Anda dapat memakai Penampil Log Sistem untuk memantau log. Secara baku, semua log yang dibuka dalam Penampil Log Sistem dipantau perubahannya. Bila baris-baris baru ditambahkan ke suatu log yang dipantau oleh Penampil Log Sistem, nama log akan muncul tebal dalam daftar log. Bila log saat ini sedang ditampilkan dalam area utama, baris-baris baru akan muncul secara otomatis pada akhir log dan, setelah lima detik, nama log akan kembali normal dalam daftar. - - - - - Untuk Melihat Informasi Log - Informasi log umumnya ditampilkan dalam bilah status, termasuk: - - Banyaknya baris dalam log. - - Ukuran log dalam byte. - - Tanggal log terakhir berubah. - - - Bilah status dapat ditampilkan atau disembunyikan memakai opsi TilikanBilah Status. - - - - Untuk Menutup suatu Log - Untuk menutup suatu log, pilih BerkasTutup. - - - - Untuk Keluar Penampil Log Sistem - Untuk keluar Penampil Log Sistem, pilih BerkasKeluar. - - - - -
diff -Nru mate-utils-1.26.0/logview/help/id/legal.xml mate-utils-1.26.1/logview/help/id/legal.xml --- mate-utils-1.26.0/logview/help/id/legal.xml 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/id/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Hak diberikan untuk menyalin, mendistribusikan, dan/atau mengubah dokumen ini di bawah persyaratan GNU Free Documentation License (GFDL, Lisensi Dokumentasi Bebas GNU), Versi 1.1 atau sebarang versi setelahnya yang dipublikasikan oleh Free Software Foundation tanpa Invariant Section, tanpa Front-Cover Texts, dan tanpa Back-Cover Texts. Anda dapat menemukan salinan dari GFDL pada tautan atau di dalam berkas COPYING-DOCS yang didistribusikan bersama manual ini. - Manual ini adalah bagian dari suatu koleksi manual MATE yang disebarkan di bawah GDFL. Bila Anda ingin menyebarkan manual ini secara terpisah dari koleksi, Anda dapat melakukannya dengan menambahkan salinan lisensi ke manual, sebagaimana dijelaskan di bagian 6 dari lisensi. - - Banyak nama yang dipakai oleh perusahaan-perusahaan untuk membedakan produk dan layanan mereka diklaim sebagai merek dagang. Ketika nama-nama tersebut muncul di dalam sebarang dokumentasi MATE, and anggota Projek Dokumentasi MATE disadarkan atas merek dagang tersebut, maka nama-nama akan ditulis dalam huruf besar atau huruf awal huruf besar. - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/logview/help/ie/ie.po mate-utils-1.26.1/logview/help/ie/ie.po --- mate-utils-1.26.0/logview/help/ie/ie.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ie/ie.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Caarmi, 2019 +# Caarmi, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Caarmi, 2019\n" -"Language-Team: Interlingue (https://www.transifex.com/mate/teams/13566/ie/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Caarmi, 2021\n" +"Language-Team: Interlingue (https://app.transifex.com/mate/teams/13566/ie/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -18,7 +18,7 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "OIS , 2019" +msgstr "OIS , 2020" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ie/index.docbook mate-utils-1.26.1/logview/help/ie/index.docbook --- mate-utils-1.26.0/logview/help/ie/index.docbook 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ie/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,398 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - OIS - - mistresssilvara@hotmail.com - - - - 2019 - - OIS - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Command line - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ie/legal.xml mate-utils-1.26.1/logview/help/ie/legal.xml --- mate-utils-1.26.0/logview/help/ie/legal.xml 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ie/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/ig/ig.po mate-utils-1.26.1/logview/help/ig/ig.po --- mate-utils-1.26.0/logview/help/ig/ig.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ig/ig.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Igbo (https://www.transifex.com/mate/teams/13566/ig/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Igbo (https://app.transifex.com/mate/teams/13566/ig/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ig/index.docbook mate-utils-1.26.1/logview/help/ig/index.docbook --- mate-utils-1.26.0/logview/help/ig/index.docbook 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ig/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Command line - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ig/legal.xml mate-utils-1.26.1/logview/help/ig/legal.xml --- mate-utils-1.26.0/logview/help/ig/legal.xml 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ig/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/is/index.docbook mate-utils-1.26.1/logview/help/is/index.docbook --- mate-utils-1.26.0/logview/help/is/index.docbook 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/is/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,411 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Samúel Jón Gunnarsson - - sammi@techattack.nu - - - - 2003 - - Samúel Jón Gunnarsson - - - - - Sveinn í Felli - - sv1@fellsnet.is - - - - 2012-2016 - - Sveinn í Felli - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Skipanalína - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/is/is.po mate-utils-1.26.1/logview/help/is/is.po --- mate-utils-1.26.0/logview/help/is/is.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/is/is.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Sveinn í Felli , 2018 -# Stefano Karapetsas , 2018 +# Sveinn í Felli , 2021 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Icelandic (https://www.transifex.com/mate/teams/13566/is/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Icelandic (https://app.transifex.com/mate/teams/13566/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -199,8 +199,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/is/legal.xml mate-utils-1.26.1/logview/help/is/legal.xml --- mate-utils-1.26.0/logview/help/is/legal.xml 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/is/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/it/index.docbook mate-utils-1.26.1/logview/help/it/index.docbook --- mate-utils-1.26.0/logview/help/it/index.docbook 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/it/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,224 +0,0 @@ - - - - - - -]> - - -
- - - - Manuale di Visualizzatore dei registri di sistema - - - Visualizzatore dei registri di sistema è un'interfaccia utente per visualizzare e controllare i file di log del sistema - - - 2015-2021 Progetto Documentazione di MATE - 2003 Sun Microsystems - 2000 Judith Samson - - - Progetto Documentazione di MATE - - - Progetto Documentazione di GNOME - - - - - - Team Documentazione di MATE Mate desktop - Sun Team Documentazione di GNOME Sun Microsystems
gdocteam@sun.com
- - Judith Samson Progetto Documentazione di GNOME
judith@samsonsource.com
- - Paul Cutler Team Documentazione di GNOME
pcutler@gnome.org
- - Vincent Noel
vincent.noel@gmail.com
- - -
- - - Manuale di Visualizzatore dei registri di sistema V1.10 Luglio 2015 - Wolfgang Ulbrich - Progetto Documentazione di MATE - - Manuale di Visualizzatore dei registri di sistema V2.5 Ottobre 2009 - Paul Cutler pcutler@gnome.org - Progetto Documentazione di GNOME - - Manuale di Visualizzatore dei registri di sistema V2.4 Ottobre 2005 - Vincent Noel vincent.noel@gmail.com - Progetto Documentazione di GNOME - - Manuale di Visualizzatore dei registri di sistema V2.3 Ottobre 2002 - Team Documentazione GNOME Sun gdocteam@sun.com - Progetto Documentazione di GNOME - - Manuale di Visualizzatore dei registri di sistema V2.2 Agosto 2002 - Team Documentazione GNOME Sun gdocteam@sun.com - Progetto Documentazione di GNOME - - Manuale di Visualizzatore dei registri di sistema V2.1 Luglio 2002 - Team Documentazione GNOME Sun gdocteam@sun.com - Progetto Documentazione di GNOME - - Manuale di Visualizzatore dei registri di sistema V2.0 Maggio 2002 - Team Documentazione GNOME Sun gdocteam@sun.com - Progetto Documentazione di GNOME - - Manuale di Visualizzatore dei registri di sistema 2000 - Judith Samson judith@samsonsource.com - Progetto Documentazione di GNOME - - - - Questo manuale si riferisce alla versione 1.10.1 del Visualizzatore dei registri di sistema - - Commenti - Per segnalare un malfunzionamento o un suggerimento per il Visualizzatore dei registri di sistema o su questo manuale, seguire le indicazioni nella Pagina di feedback di MATE. - - -
- - Visualizzatore dei registri di sistema - - - - - - Introduzione - - Il Visualizzatore dei registri di sistema è un visualizzatore grafico, basato sui menu, che permette di monitorare i log di sistema. Visualizzatore dei registri di sistema è dotato di alcune funzioni che possono aiutare a gestire i registri, tra cui un monitor di registro e un sistema di statistiche. - - Il Visualizzatore dei registri di sistema è utile se si è nuovi nell'amministrazione di sistema perché fornisce una visualizzazione dei log più facile da leggere ed utilizzare rispetto alla tradizionale visualizzazione testuale. È utile anche per gli amministratori più esperti, in quanto contiene un monitor che consente di monitorare continuamente i registri cruciali. - - Il Visualizzatore dei registri di sistemaè utile solo a coloro che hanno accesso ai file di log di sistema, che generalmente richiede l'accesso di root. - - - - - Introduzione - - E' possibile avviare Visualizzatore dei registri di sistema in questi modi: - - - menù Applicazioni - - Selezionare Strumenti di sistemaVisualizzatore dei file di registro. - - - - Riga di comando - - Digitare mate-system-log e premere Invio. - - - - - - - Quando si avvia il Visualizzatore dei registri di sistema viene mostrata la seguente finestra. - - -
- Finestra del Visualizzatore dei registri di sistema - - Mostra la schermata principale del Visualizzatore dei registri di sistema, con la barra dei menu e quella di stato, l'area di visualizzazione e le barre di scorrimento - -
- - La prima volta che si avvia il Visualizzatore dei registri di sistema questo mostrerà vari file di log predefiniti (come /var/log/messages). I log aperti sono elencati sul lato sinistro della finestra e il registro selezionato in questo elenco viene visualizzato nell'area principale della finestra dell'applicazione. - - Per impostazione predefinita, il Visualizzatore dei registri di sistemamonitora ogni log aperto e ogni modifica appare automaticamente nella finestra principale. Vedere per ulteriori informazioni. - -
- - - - - Utilizzo - - - Visualizzare un log - Per visualizzare un log, selezionare FileApri. Nella schermata Apri registro selezionare il registro da aprire e fare clic su Apri. E' possibile usare le barre di scorrimento per muoversi nel log. - - E' possibile aprire quanti log si desidera. Il Visualizzatore dei registri di sistema mostrerà un registro alla volta. I log aperti sono elencati nella barra di sinistra e visualizzati nell'area principale. Per vedere un altro log aperto nel Visualizzatore dei registri di sistema, selezionarlo dalla lista. - - Il Visualizzatore dei registri di sistema permette di aprire anche log compressi (il cui nome finisce con ".gz"). - - - - Copiare le linee di registro negli appunti - Per copiare una o più righe di registro negli appunti, selezionare le righe da copiare e poi l'opzione ModificaCopia Se si vuole copiare l'intero log, selezionare l'opzione ModificaSeleziona tutto e poi ModificaCopia. - - - - Nascondere la barra laterale - Per nascondere la barra laterale sinistra, che contiene l'elenco dei registri, è sufficiente selezionare l'opzione VisualizzaRiquadro laterale. - - - - Monitorare i log - E' possibile usare il Visualizzatore dei registri di sistema per monitorare i log. Tutte le modifiche ai file aperti nel Visualizzatore dei registri di sistema vengono monitorate. Se vengono aggiunte nuove righe ai log aperti nel Visualizzatore dei registri di sistema il nome del registro apparirà in grassetto nell'elenco. Se il registro è attualmente visualizzato nell'area principale, le nuove righe appariranno automaticamente alla fine del log e, dopo cinque secondi, il nome del log tornerà ad essere visualizzato normalmente. - - - - - Visualizzare le informazioni del registro - Le informazioni sul registro sono mostrate nella barra di stato e includono: - - Numero di linee del registro. - - Dimensione del registro in byte. - - Data ultima modifica del registro. - - - La barra di stato può essere mostrata o nascosta dal comando VisualizzaBarra di stato. - - - - Chiudere un registro - Per chiudere un log selezionare FileChiudi. - - - - Uscire dal Visualizzatore registri di sistema - Per uscire dal Visualizzatore dei registri di sistema, selezionare FileEsci. - - - - -
diff -Nru mate-utils-1.26.0/logview/help/it/it.po mate-utils-1.26.1/logview/help/it/it.po --- mate-utils-1.26.0/logview/help/it/it.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/it/it.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,31 +1,30 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Marco Z. , 2018 -# Giuseppe Pignataro , 2019 -# Enrico B. , 2019 +# Stefano Karapetsas , 2021 +# Giuseppe Pignataro , 2021 +# Wolfgang Ulbrich , 2021 +# Enrico B. , 2021 +# Marco Z. , 2021 # Alessandro Volturno , 2021 +# 6d1bb5d393520b00f70a137a58397ea1_b5ba1e2 <22cc5e560e0d5b6554809bfb51b90403_882095>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Alessandro Volturno , 2021\n" -"Language-Team: Italian (https://www.transifex.com/mate/teams/13566/it/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: 6d1bb5d393520b00f70a137a58397ea1_b5ba1e2 <22cc5e560e0d5b6554809bfb51b90403_882095>, 2021\n" +"Language-Team: Italian (https://app.transifex.com/mate/teams/13566/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "" -"Enrico Bella, 2019\n" -"Alessandro Volturno, 2020" +msgstr "Alessandro Volturno, 2021" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -61,7 +60,7 @@ #. (itstool) path: revdescription/para #: C/index.docbook:51 C/index.docbook:122 msgid "MATE Documentation Project" -msgstr "Progetto Documentazione di MATE" +msgstr "Progetto della documentazione MATE" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -69,7 +68,7 @@ #: C/index.docbook:152 C/index.docbook:162 C/index.docbook:172 #: C/index.docbook:182 C/index.docbook:192 msgid "GNOME Documentation Project" -msgstr "Progetto Documentazione di GNOME" +msgstr "Progetto Documentazione di GNOME " #. (itstool) path: authorgroup/author #: C/index.docbook:60 @@ -236,8 +235,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Per segnalare un malfunzionamento o un suggerimento per il Visualizzatore " "dei registri di sistema o su questo manuale, seguire le indicazioni nella " @@ -298,7 +298,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:244 msgid "Getting Started" -msgstr "Introduzione" +msgstr "Per Iniziare" #. (itstool) path: sect1/para #: C/index.docbook:246 @@ -312,7 +312,7 @@ #. (itstool) path: varlistentry/term #: C/index.docbook:250 msgid "Applications menu" -msgstr "menù Applicazioni" +msgstr "menu Applicazioni" #. (itstool) path: listitem/para #: C/index.docbook:252 @@ -607,8 +607,8 @@ "È concesso il permesso di copiare, distribuire e/o modificare questo " "documento in base ai termini della GNU Free Documentation License (GFDL), " "Versione 1.1 o qualsiasi versione successiva pubblicata dalla Free Software " -"Foundation senza sezioni invarianti, senza testi di copertina e nessun testo" -" di retro copertina. Puoi trovare una copia del GFDL qui <_:ulink-1/> o nel " +"Foundation senza sezioni invarianti, senza testi di copertina e senza testi " +"di frontespizio. Potete trovare una copia del GFDL qui <_:ulink-1/> o nel " "file COPYING-DOCS distribuito con questo manuale." #. (itstool) path: legalnotice/para @@ -619,7 +619,7 @@ "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" -"Questo manuale fa parte di una raccolta di manuali MATE distribuita in " +"Questo manuale fa parte di una raccolta di manuali di MATE distribuita in " "conformità con la GFDL. Per poter distribuire questo manuale separatamente, " "è necessario inserirvi una copia della licenza, come descritto nella sezione" " 6 della licenza." @@ -635,9 +635,9 @@ msgstr "" "Molti dei nomi usati dalle aziende per distinguere i propri prodotti e " "servizi sono rivendicati come marchi. Quando questi nomi compaiono nella " -"documentazione di MATE, e i partecipanti al MATE Documentation Project sono " -"consapevoli del loro utilizzo, essi vengono scritti in lettere maiuscole o " -"con l'iniziale maiuscola." +"documentazione di MATE, e i partecipanti al progetto di documentazione MATE " +"sono consapevoli del loro utilizzo, essi vengono scritti in lettere " +"maiuscole o con l'iniziale maiuscola." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -654,19 +654,20 @@ "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 "" -"IL DOCUMENTO VIENE FORNITO SENZA GARANZIE DI ALCUN TIPO, ESPLICITE O " -"IMPLICITE, INCLUSE, MA SENZA LIMITAZIONE, LE GARANZIE ATTESTANTI CHE IL " -"DOCUMENTO O LE SUE VERSIONI MODIFICATE SIANO PRIVI DI DIFETTI, " -"COMMERCIALIZZABILI, IDONEI A UN DETERMINATO SCOPO O CHE NON VIOLINO DIRITTI " -"DI TERZI. SI DECLINA QUALUNQUE RESPONSABILITÀ RIGUARDO AI RISCHI INERENTI LA" -" QUALITÀ, L'ACCURATEZZA E LE PRESTAZIONI DEL DOCUMENTO O DI UNA SUA VERSIONE" -" MODIFICATA. QUALORA UN DOCUMENTO O UNA SUA VERSIONE MODIFICATA DOVESSERO " -"PRESENTARE QUALUNQUE TIPO DI DIFETTO, IL COSTO DI EVENTUALI INTERVENTI DI " -"ASSISTENZA, RIPARAZIONE O CORREZIONE SARÀ A CARICO DELL'UTENTE (NON DEL " -"REDATTORE INIZIALE, DELL'AUTORE O DI ALTRI COLLABORATORI). QUESTA " -"LIMITAZIONE DELLA GARANZIA COSTITUISCE PARTE ESSENZIALE DELLA LICENZA. L'USO" -" DEL DOCUMENTO O DELLE SUE VERSIONI MODIFICATE È CONSENTITO SOLO ENTRO I " -"TERMINI DI QUESTA LIMITAZIONE DELLA GARANZIA;" +"IL DOCUMENTO VIENE FORNITO SULLA BASE DEL \"COME È\", SENZA GARANZIE DI " +"ALCUN TIPO, ESPLICITE O IMPLICITE, INCLUSE, MA SENZA LIMITAZIONE, LE " +"GARANZIE ATTESTANTI CHE IL DOCUMENTO O LE SUE VERSIONI MODIFICATE SIANO " +"PRIVI DI DIFETTI, COMMERCIALIZZABILI, IDONEI A UN DETERMINATO SCOPO O CHE " +"NON VIOLINO DIRITTI DI TERZI. SI DECLINA QUALUNQUE RESPONSABILITÀ RIGUARDO " +"AI RISCHI INERENTI LA QUALITÀ, L'ACCURATEZZA E LE PRESTAZIONI DEL DOCUMENTO " +"O DI UNA SUA VERSIONE MODIFICATA. QUALORA UN DOCUMENTO O UNA SUA VERSIONE " +"MODIFICATA DOVESSERO PRESENTARE QUALUNQUE TIPO DI DIFETTO, IL COSTO DI " +"EVENTUALI INTERVENTI DI ASSISTENZA, RIPARAZIONE O CORREZIONE SARÀ A CARICO " +"DELL'UTENTE (NON DEL REDATTORE INIZIALE, DELL'AUTORE O DI ALTRI " +"COLLABORATORI). QUESTA LIMITAZIONE DELLA GARANZIA COSTITUISCE PARTE " +"ESSENZIALE DELLA LICENZA. L'USO DEL DOCUMENTO O DELLE SUE VERSIONI " +"MODIFICATE È CONSENTITO SOLO ENTRO I TERMINI DI QUESTA LIMITAZIONE DELLA " +"GARANZIA;" #. (itstool) path: listitem/para #: C/legal.xml:55 diff -Nru mate-utils-1.26.0/logview/help/it/legal.xml mate-utils-1.26.1/logview/help/it/legal.xml --- mate-utils-1.26.0/logview/help/it/legal.xml 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/it/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - È concesso il permesso di copiare, distribuire e/o modificare questo documento in base ai termini della GNU Free Documentation License (GFDL), Versione 1.1 o qualsiasi versione successiva pubblicata dalla Free Software Foundation senza sezioni invarianti, senza testi di copertina e nessun testo di retro copertina. Puoi trovare una copia del GFDL qui collegamento o nel file COPYING-DOCS distribuito con questo manuale. - Questo manuale fa parte di una raccolta di manuali MATE distribuita in conformità con la GFDL. Per poter distribuire questo manuale separatamente, è necessario inserirvi una copia della licenza, come descritto nella sezione 6 della licenza. - - Molti dei nomi usati dalle aziende per distinguere i propri prodotti e servizi sono rivendicati come marchi. Quando questi nomi compaiono nella documentazione di MATE, e i partecipanti al MATE Documentation Project sono consapevoli del loro utilizzo, essi vengono scritti in lettere maiuscole o con l'iniziale maiuscola. - - IL DOCUMENTO E LE VERSIONI MODIFICATE DEL DOCUMENTO VENGONO RILASCIATE SECONDO I TERMINI DELLA GNU FREE DOCUMENTATION LICENSE TENENDO PRESENTE CHE: - - IL DOCUMENTO VIENE FORNITO SENZA GARANZIE DI ALCUN TIPO, ESPLICITE O IMPLICITE, INCLUSE, MA SENZA LIMITAZIONE, LE GARANZIE ATTESTANTI CHE IL DOCUMENTO O LE SUE VERSIONI MODIFICATE SIANO PRIVI DI DIFETTI, COMMERCIALIZZABILI, IDONEI A UN DETERMINATO SCOPO O CHE NON VIOLINO DIRITTI DI TERZI. SI DECLINA QUALUNQUE RESPONSABILITÀ RIGUARDO AI RISCHI INERENTI LA QUALITÀ, L'ACCURATEZZA E LE PRESTAZIONI DEL DOCUMENTO O DI UNA SUA VERSIONE MODIFICATA. QUALORA UN DOCUMENTO O UNA SUA VERSIONE MODIFICATA DOVESSERO PRESENTARE QUALUNQUE TIPO DI DIFETTO, IL COSTO DI EVENTUALI INTERVENTI DI ASSISTENZA, RIPARAZIONE O CORREZIONE SARÀ A CARICO DELL'UTENTE (NON DEL REDATTORE INIZIALE, DELL'AUTORE O DI ALTRI COLLABORATORI). QUESTA LIMITAZIONE DELLA GARANZIA COSTITUISCE PARTE ESSENZIALE DELLA LICENZA. L'USO DEL DOCUMENTO O DELLE SUE VERSIONI MODIFICATE È CONSENTITO SOLO ENTRO I TERMINI DI QUESTA LIMITAZIONE DELLA GARANZIA; - - - IN NESSUNA CIRCOSTANZA E PER NESSUNA RAGIONE LEGALE, INCLUSI I PRINCIPI DI COLPA (INCLUSA LA NEGLIGENZA), ACCORDO CONTRATTUALE O ALTRO, SARÀ POSSIBILE CONSIDERARE L'AUTORE, IL REDATTORE INIZIALE, GLI ALTRI COLLABORATORI, QUALUNQUE DISTRIBUTORE DEL DOCUMENTO O DI UNA SUA VERSIONE MODIFICATA O QUALUNQUE FORNITORE DELLE PERSONE CITATE, RESPONSABILE NEI CONFRONTI DI QUALUNQUE PERSONA PER DANNI DIRETTI, INDIRETTI, SPECIALI, INCIDENTALI O CONSEGUENTI DI QUALUNQUE NATURA, INCLUSI, MA SENZA LIMITAZIONE, I DANNI PER PERDITA DI AVVIAMENTO, INTERRUZIONE DEL LAVORO, GUASTO O MALFUNZIONAMENTO DEL COMPUTER O QUALUNQUE ALTRO DANNO O PERDITA DERIVANTE O CORRELATA ALL'USO DEL DOCUMENTO O DI UNA SUA VERSIONE MODIFICATA, ANCHE QUALORA LE PERSONE CITATE FOSSERO STATE INFORMATE DELLA POSSIBILITÀ DI TALI DANNI. - - - diff -Nru mate-utils-1.26.0/logview/help/ja/index.docbook mate-utils-1.26.1/logview/help/ja/index.docbook --- mate-utils-1.26.0/logview/help/ja/index.docbook 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ja/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,224 +0,0 @@ - - - - - - -]> - - -
- - - - システムログ・ビューア・マニュアル - - - システムログ・ビューアは、システムログ・ファイルを表示および監視するためのグラフィカルなインタフェースです。 - - - 2015-2021 MATE 文書プロジェクト - 2003 サン・マイクロシステムズ - 2000 Judith Samson - - - MATE 文書化プロジェクト - - - GNOME 文書化プロジェクト - - - - - - MATE 文書化プロジェクト MATE デスクトップ - Sun GNOME 文書化チーム サン・マイクロシステムズ
gdocteam@sun.com
- - Judith Samson GNOME 文書化プロジェクト
judith@samsonsource.com
- - Paul Cutler GNOME 文書化チーム
pcutler@gnome.org
- - Vincent Noel
vincent.noel@gmail.com
- - -
- - - システムログ・ビューア・マニュアル 1.10 版 2015年7月 - Wolfgang Ulbrich - MATE 文書化プロジェクト - - システムログ・ビューア・マニュアル 2.5 版 2009年10月 - Paul Cutler pcutler@gnome.org - GNOME 文書化プロジェクト - - システムログ・ビューア・マニュアル 2.4 版 2005年10月 - Vincent Noel vincent.noel@gmail.com - GNOME 文書化プロジェクト - - システムログ・ビューア・マニュアル 2.3 版 2002年10月 - Sun GNOME 文書化チーム gdocteam@sun.com - GNOME 文書化プロジェクト - - システムログ・ビューア・マニュアル 2.2 版 2002年8月 - Sun GNOME 文書化チーム gdocteam@sun.com - GNOME 文書化プロジェクト - - システムログ・ビューア・マニュアル 2.1 版 2002年7月 - Sun GNOME 文書化チーム gdocteam@sun.com - GNOME 文書化プロジェクト - - システムログ・ビューア・マニュアル 2.0 版 2002年5月 - Sun GNOME 文書化チーム gdocteam@sun.com - GNOME 文書化プロジェクト - - ログビュー・マニュアル 2000年 - Judith Samson judith@samsonsource.com - GNOME 文書化プロジェクト - - - - 本マニュアルは、システムログ・ビューア 1.10 版について説明しています。 - - フィードバック - システムログ・ビューア・アプリケーションやこのマニュアルに関する不具合や提案を報告するには、MATE フィードバック・ページの方法に従ってください。 - - -
- - システムログ・ビューア - - - - - - はじめに - - システムログ・ビューアは、グラフィカルなメニュー・ベースのビューアであり、システムログの表示および監視を行う目的で利用できます。システムログ・ビューアには、ログ・モニタやログ統計表示など、ログの管理に役立つような数種の機能が用意されています。 - - システムログ・ビューアは、ログファイルのテキスト表示よりも簡単で、ユーザー・フレンドリーなログ表示を提供するので、システム管理に慣れていない場合に役立ちます。また、重要なログを継続的に監視可能なモニターが含まれているため、経験豊富な管理者にも役立ちます。 - - システムログ・ビューアは、システムログファイルにアクセスしたいユーザーにのみ役立ちます。システムログにアクセスするには、通常ルート権限が必要なためです。 - - - - - はじめましょう - - 次の方法でシステムログ・ビューアを開始できます。 - - - アプリケーション・メニュー - - システムツールログファイル・ビューアを選択します。 - - - - コマンドライン - - mate-system-log と入力し、Return キーを押します。 - - - - - - - システムログ・ビューア を起動すると、次のウィンドウが表示されます。 - - -
- システムログ・ビューアのウィンドウ - - システムログ・ビューアのメインウィンドウを表示します。メニューバー、表示領域、スクロールバーおよびステータスバーが表示されます。 - -
- - システムログ・ビューアを初めて起動すると、既定でいくつかのログファイル ( /var/log/messages など) が表示されます。開いているログは、このアプリケーション・ウィンドウの左側に表示されます。一覧で選択したログは、このウィンドウのメイン領域に表示されます。 - - 既定では、システムログ・ビューアは開いているすべてのログを監視し、いかなる変更も自動的にメインウィンドウに表示されます。詳細は、を参照してください。 - -
- - - - - 使い方 - - - ログを表示するには - ログを表示するには、ファイル開くの順に選択します。ログを開くダイアログで、開きたいログを選択し、開くをクリックします。スクロールバーを使用してログをスクロールしてください。 - - 複数のログを必要な数だけ開くことができます。システムログ・ビューアでは、一度に1つのログがシステムログ・ビューアウィンドウに表示されます。開いているログは、このウィンドウの左側にリストされます。リストで選択したログは、ウィンドウのメイン領域に表示されます。システムログ・ビューアですでに開いている別のログを表示するには、ログのリストから該当のログを選択します。 - - システムログ・ビューアでは、zip 圧縮されたログ (ファイル名全体が「.gz」で終わるもの) も開くことができます。 - - - - ログの各行をクリップボードにコピーするには - 1 つまたは複数のログ行をクリップボードにコピーするには、メイン領域でその行を選択し、編集コピーメニューオプションを選択します。ログ全体をクリップボードにコピーする場合は、編集すべて選択メニューオプションを使ってログ全体を選択し、さらに編集コピーを選択してください。 - - - - サイドバーを非表示にするには - ログリストとカレンダーを含む、左側のサイドバーを表示しないようにするには、表示サイドペインのメニューオプションを選択します。 - - - - ログを監視するには - システムログ・ビューアを使用してログを監視できます。既定では、システムログ・ビューアで開いているすべてのログに変更がないか監視されます。システムログ・ビューアで監視中のログに新しい行が追加された場合、ログ名はログリストに太字で表示されます。ログが現在メイン領域に表示されている場合、新しい行はログの最後に自動的に表示され、5 秒後にそのログ名はリスト内で通常の表示に戻ります。 - - - - - ログ情報を表示するには - ログ情報は通常、ステータスバーに表示されます。次の情報が含まれます。 - - ログの行数。 - - ログのバイト単位でのサイズ。 - - ログが最後に変更された日付。 - - - ステータスバーは、表示ステータスバーオプションを使って、表示または非表示にすることができます。 - - - - ログを閉じるには - ログを閉じるには、ファイル閉じるを選択します。 - - - - システムログ・ビューアを終了するには - システムログ・ビューアーを終了するには、ファイル終了を選択します。 - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ja/ja.po mate-utils-1.26.1/logview/help/ja/ja.po --- mate-utils-1.26.0/logview/help/ja/ja.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ja/ja.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# ABE Tsunehiko, 2018 -# Wolfgang Ulbrich , 2018 -# Green, 2021 +# Stefano Karapetsas , 2021 +# ABE Tsunehiko, 2021 +# Wolfgang Ulbrich , 2021 +# Green , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Green, 2021\n" -"Language-Team: Japanese (https://www.transifex.com/mate/teams/13566/ja/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Green , 2021\n" +"Language-Team: Japanese (https://app.transifex.com/mate/teams/13566/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -32,9 +32,9 @@ "やまね ひでき \n" "草野 貴之 \n" "松澤 二郎 \n" -"Green, alias usergreen\n" -"日本GNOMEユーザー会 http://www.gnome.gr.jp/\n" -"MATE 文書化チーム https://www.transifex.com/mate/" +"Green, alias usergreen \n" +"日本GNOMEユーザー会 http://www.gnome.gr.jp/ \n" +"MATE 文書化チーム https://www.transifex.com/mate/ " #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -51,7 +51,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:30 msgid "2015-2021 MATE Documentation Project" -msgstr "2015-2021 MATE 文書プロジェクト" +msgstr "2015-2021 MATE 文書化プロジェクト" #. (itstool) path: articleinfo/copyright #: C/index.docbook:34 @@ -83,8 +83,8 @@ "MATE Documentation Team Mate " "desktop " msgstr "" -"MATE 文書化プロジェクト MATE " -"デスクトップ " +"MATE 文書化チーム MATE デスクトップ " +"" #. (itstool) path: authorgroup/author #: C/index.docbook:66 @@ -239,8 +239,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "システムログ・ビューア・アプリケーションやこのマニュアルに関する不具合や提案を報告するには、MATE フィードバック・ページの方法に従ってください。" @@ -288,7 +289,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:244 msgid "Getting Started" -msgstr "はじめましょう" +msgstr "使ってみましょう" #. (itstool) path: sect1/para #: C/index.docbook:246 @@ -313,7 +314,7 @@ #. (itstool) path: varlistentry/term #: C/index.docbook:256 msgid "Command line" -msgstr "コマンドライン" +msgstr "コマンドラインから" #. (itstool) path: listitem/para #: C/index.docbook:258 @@ -579,7 +580,7 @@ msgstr "" "企業が自らの製品とサービスを区別する目的で使用する名称の多くは、登録商標であると主張しています。こうした名称が MATE " "の文書の中に記載されていて、この登録商標が MATE " -"文書化プロジェクトのメンバーによって了解されている箇所については、名称を大文字または頭文字を大文字で表示しています。" +"文書化プロジェクトのメンバーによって了解されている箇所については、名称が大文字または頭文字を大文字で表示しています。" #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -640,5 +641,5 @@ "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" -"この文書およびその修正版は、以下の点をさらに了解しているという前提で、GNU 自由文書ライセンス " +"この文書およびその修正版は、以下の点を了解しているという前提で、GNU 自由文書ライセンス " "の条件の下で配布されています:<_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/logview/help/ja/legal.xml mate-utils-1.26.1/logview/help/ja/legal.xml --- mate-utils-1.26.0/logview/help/ja/legal.xml 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ja/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - この文書をフリーソフトウェア財団発行の GNU 自由文書ライセンス(第 1.1 版かそれ以降から1つを選択)が定める条件の下で複製、頒布、あるいは改変することを許可します。変更不可部分、表カバーテキスト、裏カバーテキストは存在しません。このライセンスの複製物はリンク、またはこの文書と共に配布されている COPYING-DOCS というファイルに中に記載されています。 - 本文書は GFDL の下で配布されているその他の MATE マニュアル集の一部です。これらのマニュアルとは別に本文書を別個に配布する場合は、GFDL の第6節で説明しているように、そのマニュアル集に対してライセンスの複製を添付してください。 - - 企業が自らの製品とサービスを区別する目的で使用する名称の多くは、登録商標であると主張しています。こうした名称が MATE の文書の中に記載されていて、この登録商標が MATE 文書化プロジェクトのメンバーによって了解されている箇所については、名称を大文字または頭文字を大文字で表示しています。 - - この文書およびその修正版は、以下の点をさらに了解しているという前提で、GNU 自由文書ライセンス の条件の下で配布されています: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/logview/help/ka/index.docbook mate-utils-1.26.1/logview/help/ka/index.docbook --- mate-utils-1.26.0/logview/help/ka/index.docbook 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ka/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - შესავალი - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - ბრძანების ველი: - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ka/ka.po mate-utils-1.26.1/logview/help/ka/ka.po --- mate-utils-1.26.0/logview/help/ka/ka.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ka/ka.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Georgian (https://www.transifex.com/mate/teams/13566/ka/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Georgian (https://app.transifex.com/mate/teams/13566/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ka/legal.xml mate-utils-1.26.1/logview/help/ka/legal.xml --- mate-utils-1.26.0/logview/help/ka/legal.xml 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ka/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/kab/index.docbook mate-utils-1.26.1/logview/help/kab/index.docbook --- mate-utils-1.26.0/logview/help/kab/index.docbook 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/kab/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - Asenfaṛ n tsemlit n MATE - - - Asenfaṛ n tsemlit n GNOME - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Tazwart - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Command line - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/kab/kab.po mate-utils-1.26.1/logview/help/kab/kab.po --- mate-utils-1.26.0/logview/help/kab/kab.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/kab/kab.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Slimane Selyan AMIRI , 2020 +# Slimane Selyan AMIRI , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Slimane Selyan AMIRI , 2020\n" -"Language-Team: Kabyle (https://www.transifex.com/mate/teams/13566/kab/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Slimane Selyan AMIRI , 2021\n" +"Language-Team: Kabyle (https://app.transifex.com/mate/teams/13566/kab/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -198,8 +198,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/kab/legal.xml mate-utils-1.26.1/logview/help/kab/legal.xml --- mate-utils-1.26.0/logview/help/kab/legal.xml 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/kab/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/kk/index.docbook mate-utils-1.26.1/logview/help/kk/index.docbook --- mate-utils-1.26.0/logview/help/kk/index.docbook 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/kk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Басы - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Командалық жол - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Қолданылуы - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/kk/kk.po mate-utils-1.26.1/logview/help/kk/kk.po --- mate-utils-1.26.0/logview/help/kk/kk.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/kk/kk.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Baurzhan Muftakhidinov , 2018 -# Stefano Karapetsas , 2018 +# Baurzhan Muftakhidinov , 2021 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Kazakh (https://www.transifex.com/mate/teams/13566/kk/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Kazakh (https://app.transifex.com/mate/teams/13566/kk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -196,8 +196,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/kk/legal.xml mate-utils-1.26.1/logview/help/kk/legal.xml --- mate-utils-1.26.0/logview/help/kk/legal.xml 2021-08-05 19:48:48.000000000 +0000 +++ mate-utils-1.26.1/logview/help/kk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/kn/index.docbook mate-utils-1.26.1/logview/help/kn/index.docbook --- mate-utils-1.26.0/logview/help/kn/index.docbook 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/kn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - ಪರಿಚಯ - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - ಆಜ್ಞಾ ಸಾಲು - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - ಬಳಕೆ - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/kn/kn.po mate-utils-1.26.1/logview/help/kn/kn.po --- mate-utils-1.26.0/logview/help/kn/kn.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/kn/kn.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# karthik holla , 2018 +# Stefano Karapetsas , 2021 +# Sai Vinoba , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: karthik holla , 2018\n" -"Language-Team: Kannada (https://www.transifex.com/mate/teams/13566/kn/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Sai Vinoba , 2021\n" +"Language-Team: Kannada (https://app.transifex.com/mate/teams/13566/kn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,7 +20,8 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"ಶಂಕರ್ ಪ್ರಸಾದ್ ,ಕಾರ್ತಿಕ ಹೊಳ್ಳ " +"ಶಂಕರ್ ಪ್ರಸಾದ್ ,ಕಾರ್ತಿಕ ಹೊಳ್ಳ " +",ಸಾಯಿ ವಿನೋಬ" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -197,8 +198,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/kn/legal.xml mate-utils-1.26.1/logview/help/kn/legal.xml --- mate-utils-1.26.0/logview/help/kn/legal.xml 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/kn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/ko/index.docbook mate-utils-1.26.1/logview/help/ko/index.docbook --- mate-utils-1.26.0/logview/help/ko/index.docbook 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ko/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,292 +0,0 @@ - - - - - - -]> - - -
- - - - 시스템 로그 뷰어 설명서 - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - 2015-2021 MATE 문서화 프로젝트 - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - MATE 문서화 프로젝트 - - - GNOME 문서화 프로젝트 - - - - - - MATE 문서화 팀 Mate 데스크톱 - Sun GNOME 문서화 팀 Sun Microsystems
gdocteam@sun.com
- - Judith Samson GNOME 문서화 프로젝트
judith@samsonsource.com
- - Paul Cutler GNOME 문서화 팀
pcutler@gnome.org
- - Vincent Noel
vincent.noel@gmail.com
- - -
- - - 시스템 로그 뷰어 설명서 V1.10 2015년 7월 - Wolfgang Ulbrich - - MATE 문서화 프로젝트 - - 시스템 로그 뷰어 설명서 V2.5 2009년 10월 - Paul Cutler pcutler@gnome.org - GNOME 문서화 프로젝트 - - 시스템 로그 뷰어 설명서 V2.4 2005년 10월 - Vincent Noel vincent.noel@gmail.com - GNOME 문서화 프로젝트 - - 시스템 로그 뷰어 설명서 V2.3 2002년 10월 - Sun GNOME 문서화 팀 gdocteam@sun.com - GNOME 문서화 프로젝트 - - 시스템 로그 뷰어 설명서 V2.2 2002년 8월 - Sun GNOME 문서화 팀 gdocteam@sun.com - GNOME 문서화 프로젝트 - - 시스템 로그 뷰어 설명서 V2.1 2002년 7월 - Sun GNOME 문서화 팀 gdocteam@sun.com - GNOME 문서화 프로젝트 - - 시스템 로그 뷰어 설명서 V2.0 2002년 5월 - Sun GNOME 문서화 팀 gdocteam@sun.com - GNOME 문서화 프로젝트 - - 로그 보기 설명서 2000 - Judith Samson judith@samsonsource.com - GNOME 문서화 프로젝트 - - - - This manual describes version 1.10 of System Log Viewer. - - - 피드백 - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - 시스템 로그 뷰어 - - - - - - 소개 - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - 시작하기 - - You can start System Log Viewer in the following ways: - - - - 프로그램 메뉴 - - Choose System ToolsLog File Viewer. - - - - 명령 행 - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - 시스템 로그 뷰어 기본 창을 표시합니다. 메뉴 표시줄, 디스플레이 영역, 스크롤바 및 상태 표시줄을 포함합니다. - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - 사용법 - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ko/ko.po mate-utils-1.26.1/logview/help/ko/ko.po --- mate-utils-1.26.0/logview/help/ko/ko.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ko/ko.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,18 +1,18 @@ # # Translators: -# Stefano Karapetsas , 2018 -# 박정규(Jung-Kyu Park) , 2018 -# HanSol Park , 2018 -# JungHee Lee , 2021 +# Stefano Karapetsas , 2021 +# 1763f4a4329a2376c933c5e919a36cbc_341ca53 <1f851310383599d03339229d772e1290_119292>, 2021 # Wolfgang Ulbrich , 2021 +# HanSol Park , 2021 +# Junghee Lee , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Wolfgang Ulbrich , 2021\n" -"Language-Team: Korean (https://www.transifex.com/mate/teams/13566/ko/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Junghee Lee , 2021\n" +"Language-Team: Korean (https://app.transifex.com/mate/teams/13566/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -234,8 +234,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -523,9 +524,9 @@ " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" -"GNU 자유 문서화 사용 허가서(GFDL), 버전 1.1 또는 자유 소프트웨어 재단에서 게시한 모든 이후 버전의 조건에 따라 이 문서를 " -"복사, 배포 및/또는 수정할 수 있는 권한이 부여됩니다. 뒷 표지 텍스트 없음. GFDL의 사본은 여기 또는 이 설명서와 함께 배포된 " -"COPYING-DOCS 파일에서 찾을 수 있습니다." +"GNU 자유 문서화 사용 허가서(GFDL), 버전 1.1 또는 그 이후의 버전의 조건에 따라 이 문서를 복사, 배포 및/또는 수정할 수 " +"있는 권한이 부여되며, 불변 섹션, 전면 커버 텍스트 및 백커버 텍스트가 없습니다. 뒷 표지 텍스트 없음. GFDL의 복사본은 이 " +"<_:ulink-1/>나 이 설명서와 함께 배포된 COPYING-DOCs 파일에서 찾을 수 있습니다." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -596,5 +597,5 @@ "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" -"문서의 문서 및 수정된 버전은 gnu 자유 문서 라이센스의 조건에 따라 제공되며, 다음 사항을 더 잘 이해하고 있습니다: " +"문서 및 문서의 수정된 버전은 GNU 자유 문서화 라이센스의 조건에 따라 제공되며, 다음 사항을 더 잘 이해하고 있습니다: " "<_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/logview/help/ko/legal.xml mate-utils-1.26.1/logview/help/ko/legal.xml --- mate-utils-1.26.0/logview/help/ko/legal.xml 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ko/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - GNU 자유 문서화 사용 허가서(GFDL), 버전 1.1 또는 자유 소프트웨어 재단에서 게시한 모든 이후 버전의 조건에 따라 이 문서를 복사, 배포 및/또는 수정할 수 있는 권한이 부여됩니다. 뒷 표지 텍스트 없음. GFDL의 사본은 여기 또는 이 설명서와 함께 배포된 COPYING-DOCS 파일에서 찾을 수 있습니다. - 본 설명서는 GFDL에 따라 배포된 MATE 설명서 컬렉션의 일부입니다. 본 설명서를 컬렉션과 별도로 배포하려는 경우에는 라이센스 조항 6에 따라 라이센스 사본을 설명서에 추가하면 됩니다. - - 기업의 제품과 서비스를 식별하기 위해 사용된 많은 이름은 상표로 간주됩니다. MATE 문서에 사용된 이름과 MATE 문서화 프로젝트의 구성원은 해당 상표로, 모두 대문자로 표시되거나 첫 글자가 대문자로 표시되어 있습니다. - - 문서의 문서 및 수정된 버전은 gnu 자유 문서 라이센스의 조건에 따라 제공되며, 다음 사항을 더 잘 이해하고 있습니다: - - 문서는 "있는 그대로"로 제공되며 상품성, 특정 목적에의 적합성 또는 준수에 대한 보증을 비롯한 일체의 명시적 또는 암시적인 보증을 제한 없이 부인합니다. 문서 및 수정판의 품질, 정확성 및 성능에 대한 책임은 전적으로 사용자에게 있습니다. 문서 또는 수정판에 대한 오류를 입증하려면 사용자(원저작자, 저작자 또는 배포자 아님)는 필요한 서비스, 수리 및 수정 비용을 부담해야 합니다. 본 보증 부인은 라이센스의 필수 부분에 해당합니다. 본 보증 부인을 따르지 않는 모든 문서나 수정판은 사용할 수 없습니다. - - - 또한 불법 행위(부주의 포함), 계약 또는 직접, 간접, 특별, 부수적 및 파생적인 모든 손해(영업권 손실, 작업 중지, 컴퓨터 오류 및 고장 또는 본 문서나 수정판의 사용으로 인해 발생하거나 관련된 기타 모든 손실 및 이러한 손실 가능성에 대해 미리 공지한 경우에도 제한되지 않음)에 대해서는 어떠한 상황이나 법률적인 이론 하에서도 본 문서 또는 수정판의 저작자, 원저자, 모든 배포자 또는 공급자는 책임을 지지 않습니다. - - - diff -Nru mate-utils-1.26.0/logview/help/ku/index.docbook mate-utils-1.26.1/logview/help/ku/index.docbook --- mate-utils-1.26.0/logview/help/ku/index.docbook 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ku/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Rêzika Fermanan - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ku/ku.po mate-utils-1.26.1/logview/help/ku/ku.po --- mate-utils-1.26.0/logview/help/ku/ku.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ku/ku.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Kurdish (https://www.transifex.com/mate/teams/13566/ku/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Kurdish (https://app.transifex.com/mate/teams/13566/ku/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ku/legal.xml mate-utils-1.26.1/logview/help/ku/legal.xml --- mate-utils-1.26.0/logview/help/ku/legal.xml 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ku/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/ky/index.docbook mate-utils-1.26.1/logview/help/ky/index.docbook --- mate-utils-1.26.0/logview/help/ky/index.docbook 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ky/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Командалык сап - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Колдонлушу - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ky/ky.po mate-utils-1.26.1/logview/help/ky/ky.po --- mate-utils-1.26.0/logview/help/ky/ky.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ky/ky.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2018 +# 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2018\n" -"Language-Team: Kyrgyz (https://www.transifex.com/mate/teams/13566/ky/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2021\n" +"Language-Team: Kyrgyz (https://app.transifex.com/mate/teams/13566/ky/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ky/legal.xml mate-utils-1.26.1/logview/help/ky/legal.xml --- mate-utils-1.26.0/logview/help/ky/legal.xml 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ky/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/lt/index.docbook mate-utils-1.26.1/logview/help/lt/index.docbook --- mate-utils-1.26.0/logview/help/lt/index.docbook 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/lt/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,232 +0,0 @@ - - - - - - -]> - - -
- - - - Sistemos žurnalų žiūryklės vadovas - - - Sistemos žurnalų žiūryklė sistemos žurnalų failų peržiūros ir stebėjimo grafinė sąsaja. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - 2000 Judith Samson - - - MATE dokumentacijos projektas - - - GNOME dokumentacijos projektas - - - - - - - MATE Documentation Team - - Mate desktop - - - Sun GNOME Documentation Team Sun Microsystems
gdocteam@sun.com
- - Judith Samson GNOME dokumentacijos projektas
judith@samsonsource.com
- - Paul Cutler GNOME doumentacijos komanda
pcutler@gnome.org
- - Vincent Noel
vincent.noel@gmail.com
- - -
- - - Sistemos žurnalų žiūryklės žinynas V1.10 2015 liepa - Wolfgang Ulbrich - MATE dokumentacijos projektas - - Sistemos žurnalų žiūryklės žinynas V2.5 2009 spalis - Paul Cutler pcutler@gnome.org - GNOME dokumentacijos projektas - - Sistemos žurnalų žiūryklės žinynas V2.4 2005 spalis - Vincent Noel vincent.noel@gmail.com - GNOME dokumentacijos projektas - - Sistemos žurnalų žiūryklės žinynas V2.3 2002 spalis - Sun GNOME dokumentacijos komanda gdocteam@sun.com - GNOME dokumentacijos projektas - - Sistemos žurnalų žiūryklės žinynas V2.2 2002 rugpjūtis - Sun GNOME dokumentacijos komanda gdocteam@sun.com - GNOME dokumentacijos projektas - - Sistemos žurnalų žiūryklės žinynas V2.1 2002 liepa - Sun GNOME dokumentacijos komanda gdocteam@sun.com - GNOME dokumentacijos projektas - - Sistemos žurnalų žiūryklės žinynas V2.0 2002 gegužė - Sun GNOME dokumentacijos komanda gdocteam@sun.com - GNOME dokumentacijos projektas - - „Logview“ žinynas 2000 - Judith Samson judith@samsonsource.com - GNOME dokumentacijos projektas - - - - Šiame žinyne aprašoma Sistemos žurnalų žiūryklės versija 1.10. - - Atsiliepimai - Pranešimui apie programos klaidą arba pasiūlymams dėl Sistemos žurnalų žiūryklės programos ar šio žinyno, sekite nuorodas MATE atsako puslapyje. - - -
- - Sistemos žurnalų žiūryklė - - - - - - Įžanga - - Sistemos žurnalų žiūryklė yra grafinė, meniu valdoma programa, leidžianti jums žiūrėti ir monitoruoti sistemos žurnalus. Sistemos žurnalų žiūryklė pateikiama su keletu funkcijų, leidžiančių tvarkyti žurnalus, įskaitant žurnalų monitorių ir žurnalų statistikos rodymo priemonę. - - Jei esate naujas sistemos administratorius, Sistemos žurnalų žiūryklė yra galingas įrankis, kadangi joje žurnalų peržiūra yra patogesnė nei tekstiniame žurnalo faile. Ši programa irgi naudinga labiau patyrusiems administratoriams, kadangi ji padeda nuolat stebėti esminius žurnalus. - - Sistemos failų žiūryklė pravarti tik tiems, kas turi prieigą prie sistemos žurnalų failų – tam reikia administratoriaus teisių. - - - - - Darbo pradžia - - Sistemos žurnalų žiūryklę galite paleisti šiais būdais: - - - Programų meniu - - Pasirinkite Sistemos įrankiaiSistemos žurnalų žiūryklė. - - - - Komandinė eilutė - - Surinkite mate-system-log, tada spustelėkite Įvesti. - - - - - - - Įjungus Sistemos žurnalų žiūryklę, rodomas toks langas. - - -
- Sistemos žurnalų žiūryklės langas - - Rodomas Sistemos žurnalų žiūryklės pagrindinis langas. Jame yra meniu juosta, rodymo sritis, slinkimo juostos ir būsenos juosta. - -
- - Pirmą kartą paleidus Sistemos žurnalų žiūryklę, rodoma keletas numatytųjų žurnalų failų (pavyzdžiui /var/log/messages). Atverti žurnalai rodomi kairėje programos lango pusėje. Iš šio sąrašo pasirinktas žurnalas rodomas pagrindinėje programos lango dalyje. - - Numatytuoju atveju, Sistemos žurnalų žiūryklė stebi kiekvieną atvertą žurnalą, ir kiekvienas pakeitimas automatiškai atsiranda pagrindiniame lange. Daugiau informacijos – . - -
- - - - - Naudojimas - - - Peržiūrėti žurnalą - Kad peržiūrėtumėte žurnalą, pasirinkite FailasAtverti. Atverti žurnalą dialoge pasirinkite pageidaujamą žurnalą, tada spauskite Atverti. Naudokite slinkimo juostas slinkimui per žurnalą. - - Galite atsidaryti kiek tik norite žurnalų. Sistemos žurnalų žiūryklė rodo vieną žurnalą vienu metu Sistemos žurnalų žiūryklės lange. Atverti žurnalai būna surašyti kairėje programos lango pusėje. Iš šio sąrašo pasirinktas žurnalas rodomas pagrindinėje programos lango dalyje. Kad matytumėte kitą jau Sistemos žurnalų žiūryklės atvertą žurnalą, pasirinkite jį iš sąrašo. - - Atkreipkite dėmesį, kad Sistemos žurnalų žiūryklė taip pat leidžia atverti ir suglaudintus žurnalus (kurių failų pavadinimai baigiasi .gz). - - - - Kopijuoti žurnalo eilutes į iškarpinę - Tiesiog pažymėkite žurnalo eilutes pagrindinėje lango dalyje, kad jas nukopijuotumėte į iškarpinę ir meniu pasirinkite TaisaKopijuoti. Jeigu norite į iškarpinę nuokopijuoti visą žurnalą, pasirinkite jį visą meniu: TaisaPažymėti visąir tada pasirinkite TaisaKopijuoti. - - - - Šoninės juostos paslėpimas - Norėdami paslėpti šoninę juostą kairėje, kurioje yra žurnalų sąrašas ir kalendorius, tiesiog pasirinkite meniu RodymasŠoninis polangis. - - - - Žurnalų stebėjimas - Žurnalų stebėjimui galite naudoti Sistemos žurnalų žiūryklę. Numatytuoju atveju, visi Sistemos žurnalų žiūryklėje atvertų žurnalų pakeitimai yra stebimi. Jeigu Sistemos žurnalų žiūryklės stebimame žurnale atsiranda naujų eilučių, žurnalo pavadinimas sąraše paryškinamas. Jeigu toks žurnalas būna rodomas pagrindinėje lango dalyje – naujos eilutės automatiškai atsiranda žurnalo apačioje, o po 5 sekundžių žurnalo pavadinimas sąraše atsistato į normalų. - - - - - Žurnalų informacijos peržiūra - Žurnalo informacija įprastai rodoma būsenos juostoje, įskaitant: - - žurnalo eilučių skaičių; - - žurnalo dydį baitais; - - paskutinę žurnalo keitimo datą. - - - Būsenos juosta įjungiama arba paslepiama naudojant meniu pasirinktį RodymasBūsenos juosta. - - - - Žurnalo užvėrimas - Žurnalo užvėrimui pasirinkite FailasUžverti. - - - - Sistemos žurnalų žiūryklės uždarymas - Kad išjungtumėte Sistemos žurnalų žiūryklę, meniu spauskite FailasIšeiti. - - - - -
diff -Nru mate-utils-1.26.0/logview/help/lt/legal.xml mate-utils-1.26.1/logview/help/lt/legal.xml --- mate-utils-1.26.0/logview/help/lt/legal.xml 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/lt/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Suteikiamas leidimas kopijuoti, platinti ir/arba modifikuoti šį dokumentą pagal GNU laisvosios dokumentacijos licenciją (GFDL), versiją 1.1 arba bet kurią kitą vėlesnę, publikuotą Laisvosios programinės įrangos fondo (FSF), be invariantinių skyrių, priekinių ir galinių viršelių tekstų. Galite perskaityti GFDL čia nuoroda arba COPYING-DOCS faile, pridėtame prie šio žinyno. - Šis žinynas yra MATE žinynų rinkinio, platinamo GFDL sąlygomis, dalis. Jeigu norite dalintis šiuo žinynu atskirai nuo šio rinkinio, galite tą daryti pridėdami šios licencijos kopiją, kaip nurodyta 6 šios licencijos dalyje. - - Nemažai įmonių, jų produktų ir paslaugų pavadinimai laikomi prekės ženklais. Kuomet šie pavadinimai pasirodo bet kur MATE dokumentacijoje, ir MATE dokumentacijos projekto nariai atkreipia į juos dėmesį, šie pavadinimai radomi didžiosiomis raidėmis arba pradedami didžiąja raide. - - DOKUMENTAS IR MODIFIKUOTOS JO VERSIJOS PATEIKIAMOS GNU LAISVOSIOS DOKUMENTACIJOS LICENCIJOS SĄLYGOMIS SU TOLESNIU SUPRATIMU, KAD: - - DOKUMENTAS PATEIKIAMAS TOKS, KOKS YRA, BE BET KOKIOS RŪŠIES GARANTIJŲ, IŠREIKŠTŲ AR PAREIKŠTŲ, NERIBOTAI LAIKANT, KAD DOKUMENTAS AR JO MODIFIKUOTA VERSIJA YRA BE KLAIDŲ, TINKAMA KONKREČIAI PASKIRČIAI ARBA NEPAŽEIDŽIANTI TAM TIKRŲ TEISIŲ. VISA ŠIO DOKUMENTO AR JO MODIFIKUOTOS VERSIJOS KOKYBĖS, TIKSLUMO IR VEIKIMO PRIKLAUSO JUMS. ESANT BET KOKIAM ŠIO DOKUMENTO AR JO MODIFIKUOTOS VERSIJOS TRŪKUMUI, JŪS (NE PIRMINIS RAŠYTOJAS, AUTORIUS AR KITAS PAGALBININKAS) PRISIIMATE REIKIAMO APTARNAVIMO, REMONTO AR TAISYMO IŠLAIDAS. ŠIS ATSAKOMYBĖS ATSISAKYMAS YRA ESMINĖ ŠIOS LICENCIJOS DALIS. TOLIAU NELEIDŽIAMAS JOKS ŠIO DOKUMENTO AR MODIFIKUOTOS VERSIJOS NAUDOJIMAS, IŠSKYRUS PAGAL ŠĮ ATSAKOMYBĖS ATSISAKYMĄ; IR - - - ESANT JOKIOMS APLINKYMBĖMS IR JOKIAI TEISINEI TEORIJAI AR DELIKTUI (ĮSKAITANT APLAIDUMĄ), SUTARČIAI AR KITAIS ATŽVILGIAIS, ŠIO DOKUMETNO AR JO MODIFIKUOTOS VERSIJOS AUTORIUS, PRADINIS RAŠYTOJAS, BET KURIS PAGALBININKAS ARBA BET KURIS PLATINTOJAS NĖRA ATSAKINGAS BET KURIAM ASMENIUI UŽ BET KOKIUS TIESIOGINIUS, NETIESIOGINIUS, YPATINGUS, ATSITIKTINIUS AR PASEKMINIUS NUOSTOLIUS, ĮSKAITANT DARBO SUSTOJIMĄ, KOMPIUTERIO GEDIMUS AR BET KURIUOS KITUS NUOSTOLIUS ARBA PRARADIMUS, KYLANČIUS IŠ ARBA SUSIJUSIUS SU ŠIO DOKUMENTO AR JO MODIFIKUOTŲ VERSIJŲ NAUDOJIMU, NET JEI IR VIENA IŠ PUSIŲ YRA INFORMUOTA APIE TOKIŲ NUOSTOLIŲ GALIMYBĘ. - - - diff -Nru mate-utils-1.26.0/logview/help/lt/lt.po mate-utils-1.26.1/logview/help/lt/lt.po --- mate-utils-1.26.0/logview/help/lt/lt.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/lt/lt.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Moo, 2018 -# Džiugas Grėbliūnas , 2020 +# Stefano Karapetsas , 2021 +# Džiugas Grėbliūnas , 2021 +# Moo, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Džiugas Grėbliūnas , 2020\n" -"Language-Team: Lithuanian (https://www.transifex.com/mate/teams/13566/lt/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Moo, 2021\n" +"Language-Team: Lithuanian (https://app.transifex.com/mate/teams/13566/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -31,12 +31,12 @@ "Tomas Kuliavas \n" "Gediminas Paulauskas \n" "Moo\n" -"Džiugas Grėbliūnas " +"Džiugas Grėbliūnas " #. (itstool) path: articleinfo/title #: C/index.docbook:23 msgid "System Log Viewer Manual" -msgstr "Sistemos žurnalų žiūryklės vadovas" +msgstr "Sistemos žurnalų žiūryklės žinynas" #. (itstool) path: abstract/para #: C/index.docbook:26 @@ -50,7 +50,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:30 msgid "2015-2021 MATE Documentation Project" -msgstr "" +msgstr "2015-2021 MATE dokumentacijos projektas" #. (itstool) path: articleinfo/copyright #: C/index.docbook:34 @@ -237,8 +237,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Pranešimui apie programos klaidą arba pasiūlymams dėl Sistemos žurnalų " "žiūryklės programos ar šio žinyno, sekite nuorodas System Log Viewer is useful only to those who " "have access to the system log files, which generally requires root access." msgstr "" -"Sistemos failų žiūryklė pravarti tik tiems, kas " -"turi prieigą prie sistemos žurnalų failų – tam reikia administratoriaus " +"Sistemos žurnalų žiūryklė pravarti tik tiems, kas" +" turi prieigą prie sistemos žurnalų failų – tam reikia administratoriaus " "teisių." #. (itstool) path: sect1/title @@ -401,8 +402,8 @@ msgstr "" "Numatytuoju atveju, Sistemos žurnalų žiūryklė " "stebi kiekvieną atvertą žurnalą, ir kiekvienas pakeitimas automatiškai " -"atsiranda pagrindiniame lange. Daugiau informacijos – ." +"atsiranda pagrindiniame lange. Daugiau informacijos – ." #. (itstool) path: sect1/title #: C/index.docbook:299 @@ -412,7 +413,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:302 msgid "To View a Log" -msgstr "Peržiūrėti žurnalą" +msgstr "Žurnalo peržiūra" #. (itstool) path: sect2/para #: C/index.docbook:303 @@ -460,7 +461,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:322 msgid "To Copy Log Lines to the Clipboard" -msgstr "Kopijuoti žurnalo eilutes į iškarpinę" +msgstr "Žurnalo eilučių kopijavimas į iškarpinę" #. (itstool) path: sect2/para #: C/index.docbook:323 diff -Nru mate-utils-1.26.0/logview/help/lv/index.docbook mate-utils-1.26.1/logview/help/lv/index.docbook --- mate-utils-1.26.0/logview/help/lv/index.docbook 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/lv/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Ievads - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Komandrinda - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Izmantojums - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/lv/legal.xml mate-utils-1.26.1/logview/help/lv/legal.xml --- mate-utils-1.26.0/logview/help/lv/legal.xml 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/lv/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/lv/lv.po mate-utils-1.26.1/logview/help/lv/lv.po --- mate-utils-1.26.0/logview/help/lv/lv.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/lv/lv.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Latvian (https://www.transifex.com/mate/teams/13566/lv/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Latvian (https://app.transifex.com/mate/teams/13566/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/mai/index.docbook mate-utils-1.26.1/logview/help/mai/index.docbook --- mate-utils-1.26.0/logview/help/mai/index.docbook 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/mai/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - परिचय - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - कमांड लाइन - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - प्रयोग - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/mai/legal.xml mate-utils-1.26.1/logview/help/mai/legal.xml --- mate-utils-1.26.0/logview/help/mai/legal.xml 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/mai/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/mai/mai.po mate-utils-1.26.1/logview/help/mai/mai.po --- mate-utils-1.26.0/logview/help/mai/mai.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/mai/mai.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Maithili (https://www.transifex.com/mate/teams/13566/mai/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Maithili (https://app.transifex.com/mate/teams/13566/mai/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/Makefile.in mate-utils-1.26.1/logview/help/Makefile.in --- mate-utils-1.26.0/logview/help/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/logview/help/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,561 +0,0 @@ -# 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 . -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 = logview/help -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 = -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__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.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@ -HELP_ID = mate-system-log -HELP_FILES = index.docbook legal.xml -HELP_MEDIA = \ - figures/syslog_window.png - - -# Add linguas to be ignored, e.g. IGNORE_HELP_LINGUAS = ca de es fr -@USE_NLS_TRUE@IGNORE_HELP_LINGUAS = -@USE_NLS_FALSE@HELP_LINGUAS = -@USE_NLS_TRUE@HELP_LINGUAS = $(if $(IGNORE_HELP_LINGUAS), \ -@USE_NLS_TRUE@ $(filter-out $(IGNORE_HELP_LINGUAS),$(subst /,,$(dir $(wildcard */*.po)))), \ -@USE_NLS_TRUE@ $(subst /,,$(dir $(wildcard */*.po))) ) - -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 logview/help/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign logview/help/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): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -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 -installdirs: -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: - -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-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-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: - -.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-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-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 - -.PRECIOUS: Makefile - - -@YELP_HELP_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 -Nru mate-utils-1.26.0/logview/help/mate-system-log.omf.in mate-utils-1.26.1/logview/help/mate-system-log.omf.in --- mate-utils-1.26.0/logview/help/mate-system-log.omf.in 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/logview/help/mate-system-log.omf.in 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + user's guide + + + + diff -Nru mate-utils-1.26.0/logview/help/mg/index.docbook mate-utils-1.26.1/logview/help/mg/index.docbook --- mate-utils-1.26.0/logview/help/mg/index.docbook 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/mg/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Lazam-baiko - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/mg/legal.xml mate-utils-1.26.1/logview/help/mg/legal.xml --- mate-utils-1.26.0/logview/help/mg/legal.xml 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/mg/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/mg/mg.po mate-utils-1.26.1/logview/help/mg/mg.po --- mate-utils-1.26.0/logview/help/mg/mg.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/mg/mg.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Malagasy (https://www.transifex.com/mate/teams/13566/mg/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Malagasy (https://app.transifex.com/mate/teams/13566/mg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/mk/index.docbook mate-utils-1.26.1/logview/help/mk/index.docbook --- mate-utils-1.26.0/logview/help/mk/index.docbook 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/mk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Претставување - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Командна линија - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Употреба - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/mk/legal.xml mate-utils-1.26.1/logview/help/mk/legal.xml --- mate-utils-1.26.0/logview/help/mk/legal.xml 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/mk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/mk/mk.po mate-utils-1.26.1/logview/help/mk/mk.po --- mate-utils-1.26.0/logview/help/mk/mk.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/mk/mk.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# exoos , 2018 +# Stefano Karapetsas , 2021 +# exoos , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: exoos , 2018\n" -"Language-Team: Macedonian (https://www.transifex.com/mate/teams/13566/mk/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: exoos , 2021\n" +"Language-Team: Macedonian (https://app.transifex.com/mate/teams/13566/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -196,8 +196,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ml/index.docbook mate-utils-1.26.1/logview/help/ml/index.docbook --- mate-utils-1.26.0/logview/help/ml/index.docbook 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ml/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - അവതരണം - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - ആജ്ഞാ സ്ഥാനം - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - ഉപയോഗം - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ml/legal.xml mate-utils-1.26.1/logview/help/ml/legal.xml --- mate-utils-1.26.0/logview/help/ml/legal.xml 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ml/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/ml/ml.po mate-utils-1.26.1/logview/help/ml/ml.po --- mate-utils-1.26.0/logview/help/ml/ml.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ml/ml.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Malayalam (https://www.transifex.com/mate/teams/13566/ml/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Malayalam (https://app.transifex.com/mate/teams/13566/ml/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/mn/index.docbook mate-utils-1.26.1/logview/help/mn/index.docbook --- mate-utils-1.26.0/logview/help/mn/index.docbook 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/mn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Тушаалын мөр - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/mn/legal.xml mate-utils-1.26.1/logview/help/mn/legal.xml --- mate-utils-1.26.0/logview/help/mn/legal.xml 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/mn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/mn/mn.po mate-utils-1.26.1/logview/help/mn/mn.po --- mate-utils-1.26.0/logview/help/mn/mn.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/mn/mn.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Mongolian (https://www.transifex.com/mate/teams/13566/mn/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Mongolian (https://app.transifex.com/mate/teams/13566/mn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/mr/index.docbook mate-utils-1.26.1/logview/help/mr/index.docbook --- mate-utils-1.26.0/logview/help/mr/index.docbook 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/mr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - परिचय - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - आदेश पंक्ती - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - वापर - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/mr/legal.xml mate-utils-1.26.1/logview/help/mr/legal.xml --- mate-utils-1.26.0/logview/help/mr/legal.xml 2021-08-05 19:48:49.000000000 +0000 +++ mate-utils-1.26.1/logview/help/mr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/mr/mr.po mate-utils-1.26.1/logview/help/mr/mr.po --- mate-utils-1.26.0/logview/help/mr/mr.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/mr/mr.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Vaibhav S Dalvi , 2018 +# Stefano Karapetsas , 2021 +# Vaibhav S Dalvi , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Vaibhav S Dalvi , 2018\n" -"Language-Team: Marathi (https://www.transifex.com/mate/teams/13566/mr/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Vaibhav S Dalvi , 2021\n" +"Language-Team: Marathi (https://app.transifex.com/mate/teams/13566/mr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -196,8 +196,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ms/index.docbook mate-utils-1.26.1/logview/help/ms/index.docbook --- mate-utils-1.26.0/logview/help/ms/index.docbook 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ms/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,224 +0,0 @@ - - - - - - -]> - - -
- - - - Manual Pelihat Log Sistem - - - Pelihat Log Sistem ialah antaramuka pengguna bergrafik untuk melihat dan memantau fail log sistem. - - - 2015-2021 Projek Dokumentasi MATE - 2003 Sun Microsystems - 2000 Judith Samson - - - Projek Dokumentasi MATE - - - Projek Dokumentasi GNOME - - - - - - Pasukan Pendokumenan MATE Atas Meja MATE - Sun Pasukan Dokumentasi GNOME Sun Microsystems
gdocteam@sun.com
- - Judith Samson Projek Dokumentasi GNOME
judith@samsonsource.com
- - Paul Cutler Projek Dokumentasi GNOME
pcutler@gnome.org
- - Vincent Noel
vincent.noel@gmail.com
- - -
- - - Manual Pelihat Log Sistem V1.10 Julai 2015 - Wolfgang Ulbrich - Projek Dokumentasi MATE - - Manual Pelihat Log Sistem V2.5 Oktober 2009 - Paul Cutler pcutler@gnome.org - Projek Dokumentasi GNOME - - Manual Pelihat Log Sistem V2.4 Oktober 2005 - Vincent Noel vincent.noel@gmail.com - Projek Dokumentasi GNOME - - Panduan Pelihat Log Sistem V2.3 Oktober 2002 - Sun Pasukan Dokumentasi GNOME gdocteam@sun.com - Projek Dokumentasi GNOME - - Panduan Pelihat Log Sistem V2.2 Ogos 2002 - Sun Pasukan Dokumentasi GNOME gdocteam@sun.com - Projek Dokumentasi GNOME - - Panduan Pelihat Log Sistem V2.1 Julai 2002 - Sun Pasukan Dokumentasi GNOME gdocteam@sun.com - Projek Dokumentasi GNOME - - Panduan Pelihat Log Sistem V2.0 Mei 2002 - Sun Pasukan Dokumentasi GNOME gdocteam@sun.com - Projek Dokumentasi GNOME - - Panduan Logview 2000 - Judith Samson judith@samsonsource.com - Projek Dokumentasi GNOME - - - - Panduan ini menerangkan versi 1.10 bagi Pelihat Log Sistem. - - Maklumbalas - Untuk melaporkan pepijat atau membuat saranan berkenaan aplikasi Pelihat Log Sistem atau panduan ini, ikuti arahan di dalam Halaman Maklumbalas MATE. - - -
- - Pelihat Log Sistem - - - - - - Pengenalan - - Pelihat Log Sistem ialah pelihat terpacu-menu, bergrafik yang anda boleh guna untuk melihat dan memantau log sistem anda. Pelihat Log Sistem bersertakan dengan beberapa fungsi yang dapat membantu pengurusan log anda, termasuklah pantau log dan papar statistik log. - - Pelihat Log Sistem, berguna jika anda berjinak-jinak dengan pentadbiran sistem kerana ia menyediakan paparan log yang lebih mudah dan mesra-pengguna berbanding fail log berteks semata-mata. Ia juga beguna bagi pentadbir berpengalaman, kerana ia mengandungi pemantau yang membolehkan anda pantau log-log penting dan kritikal. - - Pelihat Log Sistem hanya berguna jika anda mempunyai capaian pada fail log sistem, iaitu umumnya memerlukan capaian root. - - - - - Membiasakan Diri - - Anda boleh memulakan Pelihat Log Sistem dengan cara berikut: - - - Menu Aplikasi - - Pilih Alatan SistemPelihat Fail Log. - - - - Baris perintah - - Taip mate-system-log, kemudian ketik Return. - - - - - - - Ketika anda memulakan Pelihat Log Sistem, tetingkap berikut dipaparkan. - - -
- Tetingkap Pelihat Log Sistem - - Menunjukkan tetingkap utama Pelihat Log Sistem. Ia mengandungi palang menu, kawasan paparan, palang tatal, dan palang status. - -
- - Kali pertama anda memulakan Pelihat Log Sistem, aplikasi akan memaparkan beberapa fail log secara lalai (seperti var/log/messages). Log yang dibuka tersenarai di sebelah kiri tetingkap aplikasi. Log terpilih di dalam senarai ini dipaparkan dalam kawasan utama tetingkap aplikasi. - - Secara lalai, Pelihat Log Sistem memantau setiap log dibuka, dan apa-apa perubahan muncul secara automatik di dalam tetingkap utama. Sila rujuk untuk maklumat lanjut. - -
- - - - - Penggunaan - - - Melihat Log - Untuk melihat fail log, pilih FailBuka. Dalam dialog Buka Log, pilih log yang mahu dibuka, kemudian klik Buka. Guna palang tatal untuk menatal fail log. - - Anda boleh membuka sebanyak mana fail log yang dikehendaki. Pelihat Log Sistem memaparkan satu log pada satu masa dalam tetingkap Pelihat Log Sistem. Log yang telah dibuka tersenarai di bahagian kiri tetingkap aplikasi. Manakala, log terpilih dalam senarai ini akan dipaparkan dalam kawasan utama tetingkap aplikasi. Untuk memaparkan log lain yang sudah dibuka dalam Pelihat Log Sistem, hanya klik log tersebut di dalam senarai log. - - Perhatian, Pelihat Log Sistem juga membenarkan anda buka log berzip (nama fail yang berakhir dengan ".gz"). - - - - Menyalin Baris Log ke dalam Papan Keratan - Untuk menyalin satu atau lebih baris log ke dalam papan keratan, hanya pilih baris dikehendaki di dalam kawasan utama dan pilih pilihan menu SuntingSalin. Jika anda mahu menyalin keseluruhan log ke dalam papan keratan, pilih semua melalui pilihan menu SuntingPilih Semua, kemudian pilih SuntingSalin. - - - - Menyembunyikan Palang Sisi - Untuk menyembunyikan palang sisi kiri, yang mengandungi senarai log dan kalendar, hanya pilih pilihan menu LihatAnak tetingkap sisi. - - - - Memantau Log - Anda boleh gunakan Pelihat Log Sistem untuk memantau log. Secara lalai, semua log dibuka dalam Pelihat Log Sistem dipantau perubahannya. Jika baris baharu ditambah ke dalam log yang dipantau oleh Pelihat Log Sistem, nama log yang ditebalkan akan muncul di dalam senarai log. Jika log semasa dipapar dalam kawasan utama, baris baharu akan muncul secara automatik dipenghujung log dan, selepas lima saat, nama log akan kembali seperti asalnya. - - - - - Melihat Maklumat Log - Maklumat log umumnya dipapar dalam palang status, ia termasuklah : - - Bilangan baris dalam log. - - Saiz log dalam bait. - - Tarikh log diubahsuai. - - - Palang status boleh dipapar atau disembunyikan melalui pilihan Lihat Palang Status. - - - - Menutup Log - Untuk menutup fail log, pilih FailTutup. - - - - Keluar dari Pelihat Log Sistem - Untuk keluar dari Pelihat Log Sistem, pilih FailKeluar. - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ms/legal.xml mate-utils-1.26.1/logview/help/ms/legal.xml --- mate-utils-1.26.0/logview/help/ms/legal.xml 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ms/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Keizinan diberi untuk menyalin, mengedar dan/atau mengubahsuai dokumen ini bawah terma Lesen Dokumentasi Bebas GNU (GDFL), bagi Versi 1.1 atau mana-mana versi terkemudian yang telah diterbitkan oleh Free Software Foundation tanpa Seksyen Tak Varian, tanpa Teks Muka-Hadapan, dan tanpa Teks Muka Belakang. Anda boleh temui satu salinan GFDL di dalam pautan atau di dalam fail COPYING-DOCS yang disertakan bersama-sama panduan ini. - Panduan ini adalah sebahagian dari koleksi panduan MATE yang diedar bawah GFDL. Jika anda mahu edar panduan ini secara berasingan dari koleksi asalnya, anda boleh membuat sedemikian dengan menambah satu salinan lesen ke dalam panduan sepertimana yang dijelaskan dalam seksyen 6 lesen tersebut. - - Kebanyakan nama digunakan oleh syarikat untuk membezakan produk dan perkhidmatan mereka dituntut sebagai tanda dagangan. Jika nama tersebut ada di dalam dokumentasi MATE, dan ahli-ahli Projek Dokumentasi MATE sedar akan tanda dagangan tersebut, kerana nama-nama tersebut telah di huruf besarkan atau huruf awalnya telah dihuruf besarkan. - - DOKUMEN DAN VERSI UBAHSUAI DOKUMEN DISEDIAKAN BAWAH TERMA LESEN DOKUMENTASI BEBAS GNU DENGAN PERKARA BERIKUT: - - DOKUMEN DISEDIAKAN SEBAGAI DASAR "SEBAGAIMANA ADANYA", TANPA JAMINAN ATAS APA JUA, SAMA ADA DIUNGKAP ATAU DILAKSANA, TERMASUKLAH, TANPA HAD, JAMINAN TERHADAP DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN ADALAH BEBAS MASALAH KEBOLEHNIAGAAN. SESUAI ATAS TUJUAN TERTENTU ATAU BUKAN-PELANGGARAN. KESELURUHAN RISIKO ATAS KUALITI, KETEPATAN, DAN PRESTASI DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN TERLETAK PADA DIRI ANDA. SEKIRANYA TERDAPAT MANA-MANA DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN YANG BERMASALAH DALAM APA JUA BENTUK, ANDA (BUKAN PENULIS, PENGARANG ATAU MANA-MANA PENYUMBANG ASAL) MENANGGUNG KOS APA JUA PERKHIDMATAN, PEMBAIKAN ATAU PEMBETULAN YANG DIPERLUKAN. PENAFIAN JAMINAN INI TERBENTUK SEBAGAI BAHAGIAN PENTING LESEN INI. MAKA TIDAK PENGGUNAAN MANA-MANA DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN DIIZINKAN KECUALI TERTAKLUK DI BAWAH PENAFIAN INI; DAN - - - TANPA DI BAWAH APA-APA KEADAAN DAN TEORI PERUNDANGAN, SAMA ADA DALAM TORT (TERMASUKLAH KECUAIAN), KONTRAK, ATAU SEUMPAMA DENGANNYA, SI PENGARANG, PENULIS ASAL, MANA-MANA PENYUMBANG, ATAU MANA-MANA PENGEDAR DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN, ATAU MANA-MANA PEMBEKAL ATAS APA JUA KUMPULAN, JUGA PADA MANA-MANA INDIVIDU ATAS KEROSAKAN SECARA LANGSUNG ATAU TIDAK LANGSUNG, SECARA KHUSUS, TIDAK SENGAJA ATAU, KEROSAKAN LANJUTAN TERHADAP SESIAPA SAHAJA, TERMASUKLAH TANPA HAD BAGI KEROSAKAN NAMA BAIK, GANGGUAN KERJA, KEGAGALAN ATAU KEROSAKAN KOMPUTER, ATAU MANA-MANA MAHUPUN SEMUA KEROSAKAN LAIN BERKAITAN PENGGUNAAN DOKUMEN DAN VERSI UBAHSUAI DOKUMEN, WALAUPUN PIHAK TERSEBUT TELAH DIMAKLUMKAN ADANYA KEBARANGKALIAN KEROSAKAN SEBEGITU BOLEH BERLAKU. - - - diff -Nru mate-utils-1.26.0/logview/help/ms/ms.po mate-utils-1.26.1/logview/help/ms/ms.po --- mate-utils-1.26.0/logview/help/ms/ms.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ms/ms.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 # abuyop , 2021 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: abuyop , 2021\n" -"Language-Team: Malay (https://www.transifex.com/mate/teams/13566/ms/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Malay (https://app.transifex.com/mate/teams/13566/ms/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -227,8 +227,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Untuk melaporkan pepijat atau membuat saranan berkenaan aplikasi Pelihat Log" " Sistem atau panduan ini, ikuti arahan di dalam - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - 2000 Judith Samson - - - MATE dokumentasjonsprosjekt - - - GNOME dokumentasjonsprosjekt - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Tilbakemelding - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduksjon - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Kom i gang - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Kommandolinje - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Bruk - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/nb/legal.xml mate-utils-1.26.1/logview/help/nb/legal.xml --- mate-utils-1.26.0/logview/help/nb/legal.xml 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/nb/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/nb/nb.po mate-utils-1.26.1/logview/help/nb/nb.po --- mate-utils-1.26.0/logview/help/nb/nb.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/nb/nb.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,18 +1,18 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Allan Nordhøy , 2018 -# Imre Kristoffer Eilertsen , 2018 -# b84df44fb72862b85bae7a669218c6c2, 2019 +# Stefano Karapetsas , 2021 +# Allan Nordhøy , 2021 +# Imre Kristoffer Eilertsen , 2021 +# b84df44fb72862b85bae7a669218c6c2, 2021 # Jan Sherdahl, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" "Last-Translator: Jan Sherdahl, 2021\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/mate/teams/13566/nb/)\n" +"Language-Team: Norwegian Bokmål (https://app.transifex.com/mate/teams/13566/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -209,8 +209,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/nds/index.docbook mate-utils-1.26.1/logview/help/nds/index.docbook --- mate-utils-1.26.0/logview/help/nds/index.docbook 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/nds/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Command line - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - gebruk - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/nds/legal.xml mate-utils-1.26.1/logview/help/nds/legal.xml --- mate-utils-1.26.0/logview/help/nds/legal.xml 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/nds/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/nds/nds.po mate-utils-1.26.1/logview/help/nds/nds.po --- mate-utils-1.26.0/logview/help/nds/nds.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/nds/nds.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Low German (https://www.transifex.com/mate/teams/13566/nds/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Low German (https://app.transifex.com/mate/teams/13566/nds/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -198,8 +198,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ne/index.docbook mate-utils-1.26.1/logview/help/ne/index.docbook --- mate-utils-1.26.0/logview/help/ne/index.docbook 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ne/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - परिचय - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - आदेश रेखा - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - प्रयोग - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ne/legal.xml mate-utils-1.26.1/logview/help/ne/legal.xml --- mate-utils-1.26.0/logview/help/ne/legal.xml 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ne/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/ne/ne.po mate-utils-1.26.1/logview/help/ne/ne.po --- mate-utils-1.26.0/logview/help/ne/ne.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ne/ne.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# chautari , 2018 +# Stefano Karapetsas , 2021 +# chautari , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: chautari , 2018\n" -"Language-Team: Nepali (https://www.transifex.com/mate/teams/13566/ne/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: chautari , 2021\n" +"Language-Team: Nepali (https://app.transifex.com/mate/teams/13566/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -198,8 +198,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/nl/index.docbook mate-utils-1.26.1/logview/help/nl/index.docbook --- mate-utils-1.26.0/logview/help/nl/index.docbook 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/nl/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,377 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - MATE Documentatie Project - - - GNOME Documentatie Project - - - - - - MATE Documentatie Team Mate bureaublad - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Terukoppeling - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introductie - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Opdrachtregel - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Gebruik - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/nl/legal.xml mate-utils-1.26.1/logview/help/nl/legal.xml --- mate-utils-1.26.0/logview/help/nl/legal.xml 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/nl/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - Deze handleiding maakt deel uit van een verzameling MATE handleidingen onder de GFDL. Als u deze handleiding afzonderlijk wil verspreiden, dan kan u dit door een kopie van de licentie van de handleiding toe te voegen, zoals beschreven in hoofdstuk 6 van de licentie. - - Vele van de namen zoals gebruikt bij bedrijven om hun producten en services te onderscheiden zijn geclaimd als handelsmerken. Wanneer deze namen voorkomen in enige MATE documentatie, en de leden van het MATE Documentatie Project hiervan bewust zijn gemaakt, dan zullen deze namen in hoofdletters zijn of beginnen met hoofdletters. - - HET DOCUMENT EEN AANGEPASTE VERSIES VAN HET DOCUMENT WORDEN AANGEBODEN ONDER DE VOORWAARDEN VAN DE GNU FREE DOCUMENTATION LICENTIE MET HET BEGRIP DAT: - - HET DOCUMENT IS AANGEBODEN OP EEN "ZOALS HET IS" BASIS, ZONDER ENIGE VORM VAN GARANTIE, ZOWEL UITGESPROKEN ALS GEÏMPLICEERD, INCLUSIEF, ZONDER BEPERKINGEN, GARANTIES DAT HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET DOCUMENT VRIJ VERHANDELBARE GEBREKEN OF GESCHIKT IS VOOR EEN BEPAALD DOEL IS, OF GEEN INBREUK MAAKT. HET VOLLEDIGE RISICO BETREFFEND DE KWALITEIT, ACCURAATHEID, EN PRESTATIES VAN HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET DOCUMENT LIGT BIJ U. INDIEN HET DOCUMENT DEFECT BLIJKT TE ZIJN IN ENIGE VORM, U (NIET DE INITIËLE SCHRIJVER, AUTEUR OF ENIGE BIJDRAGER) ZAL DE KOSTEN KOSTEN VOOR ENIGE NODIGE SERVICE, REPARATIE OF CORRECTIE OP ZICH NEMEN. DEZE DISCLAIMER BETREFT DE GARANTIE IS EEN ESSENTIEEL ONDERDEEL VAN DEZE LICENTIE. GEEN ENKEL GEBRUIK VAN DIT DOCUMENT OF AANGEPASTE VERSIE VAN HET DOCUMENT IS TOEGESTAAN ALS VOLGT ZONDER DEZE DISCLAIMER; EN - - - 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. - - - - diff -Nru mate-utils-1.26.0/logview/help/nl/nl.po mate-utils-1.26.1/logview/help/nl/nl.po --- mate-utils-1.26.0/logview/help/nl/nl.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/nl/nl.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,20 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Pjotr , 2018 -# dragnadh, 2018 -# Ronald van Zuijlen, 2018 -# Robert Antoni Buj i Gelonch , 2019 -# Benji Leenders, 2020 +# Robert Antoni Buj i Gelonch , 2021 +# Stefano Karapetsas , 2021 +# Pjotr , 2021 +# dragnadh, 2021 # b9b0d258fa591da5350b6e67cf68cd68_9fecbb4 <28506b9ff23f99a34b566250ce31bbad_250479>, 2021 +# Ronald van Zuijlen, 2021 +# kaasknak, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: b9b0d258fa591da5350b6e67cf68cd68_9fecbb4 <28506b9ff23f99a34b566250ce31bbad_250479>, 2021\n" -"Language-Team: Dutch (https://www.transifex.com/mate/teams/13566/nl/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: kaasknak, 2021\n" +"Language-Team: Dutch (https://app.transifex.com/mate/teams/13566/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,18 +24,7 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "" -"Launchpad-bijdragers:\n" -" Daniël H. https://launchpad.net/~daan-is-here\n" -" Mark Cilissen https://launchpad.net/~pixlism\n" -" Peter van der Does https://launchpad.net/~pdoes\n" -" Tom Louwrier https://launchpad.net/~tom-louwrier\n" -" Twan Coenraad https://launchpad.net/~t.coenraad\n" -" cumulus007 https://launchpad.net/~cumulus-007\n" -" kactusrvm https://launchpad.net/~kactusrvm\n" -" kriekske https://launchpad.net/~kriekenbuik-gmail\n" -"Andere bijdragers:\n" -"Pjotr" +msgstr "Pjotr (pjotrvertaalt@gmail.com)" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -214,8 +203,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -508,9 +498,9 @@ " section 6 of the license." msgstr "" "Deze handleiding maakt deel uit van een verzameling MATE handleidingen onder" -" de GFDL. Als u deze handleiding afzonderlijk wil verspreiden, dan kan u dit" -" door een kopie van de licentie van de handleiding toe te voegen, zoals " -"beschreven in hoofdstuk 6 van de licentie." +" de GFDL. Als u deze handleiding afzonderlijk wilt verspreiden, dan kan u " +"dit doen door een kopie van de licentie aan de handleiding toe te voegen, " +"zoals beschreven in hoofdstuk 6 van de licentie." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -521,11 +511,11 @@ "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" -"Vele van de namen zoals gebruikt bij bedrijven om hun producten en services " -"te onderscheiden zijn geclaimd als handelsmerken. Wanneer deze namen " -"voorkomen in enige MATE documentatie, en de leden van het MATE Documentatie " -"Project hiervan bewust zijn gemaakt, dan zullen deze namen in hoofdletters " -"zijn of beginnen met hoofdletters." +"Vele van de namen die worden gebruikt door bedrijven om hun producten en " +"diensten te onderscheiden zijn vastgelegd als handelsmerken. Wanneer deze " +"namen voorkomen in enige MATE documentatie, en wanneer de leden van het MATE" +" Documentatie Project hierop attent zijn gemaakt, zullen deze namen in " +"hoofdletters zijn of beginnen met hoofdletters." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -542,18 +532,18 @@ "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 "" -"HET DOCUMENT IS AANGEBODEN OP EEN \"ZOALS HET IS\" BASIS, ZONDER ENIGE VORM " -"VAN GARANTIE, ZOWEL UITGESPROKEN ALS GEÏMPLICEERD, INCLUSIEF, ZONDER " +"HET DOCUMENT WORDT AANGEBODEN OP EEN \"ZOALS HET IS\" BASIS, ZONDER ENIGE " +"VORM VAN GARANTIE, ZOWEL UITGESPROKEN ALS GEÏMPLICEERD, INCLUSIEF, ZONDER " "BEPERKINGEN, GARANTIES DAT HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET " -"DOCUMENT VRIJ VERHANDELBARE GEBREKEN OF GESCHIKT IS VOOR EEN BEPAALD DOEL " -"IS, OF GEEN INBREUK MAAKT. HET VOLLEDIGE RISICO BETREFFEND DE KWALITEIT, " -"ACCURAATHEID, EN PRESTATIES VAN HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET" -" DOCUMENT LIGT BIJ U. INDIEN HET DOCUMENT DEFECT BLIJKT TE ZIJN IN ENIGE " -"VORM, U (NIET DE INITIËLE SCHRIJVER, AUTEUR OF ENIGE BIJDRAGER) ZAL DE " -"KOSTEN KOSTEN VOOR ENIGE NODIGE SERVICE, REPARATIE OF CORRECTIE OP ZICH " -"NEMEN. DEZE DISCLAIMER BETREFT DE GARANTIE IS EEN ESSENTIEEL ONDERDEEL VAN " +"DOCUMENT VRIJ IS VAN VERHANDELBARE GEBREKEN OF GESCHIKT IS VOOR EEN BEPAALD " +"DOEL IS, OF GEEN INBREUK MAAKT. HET VOLLEDIGE RISICO BETREFFENDE DE " +"KWALITEIT, ACCURAATHEID, EN PRESTATIES VAN HET DOCUMENT OF DE AANGEPASTE " +"VERSIE VAN HET DOCUMENT LIGT BIJ U. INDIEN HET DOCUMENT DEFECT BLIJKT TE " +"ZIJN IN ENIGE VORM, ZAL U (NIET DE INITIËLE SCHRIJVER, AUTEUR OF ENIGE " +"BIJDRAGER) DE KOSTEN VOOR BENODIGD ONDERHOUD, REPARATIE OF CORRECTIE OP ZICH" +" NEMEN. DEZE AANSPRAKELIJKHEIDSUITSLUITING IS EEN WEZENLIJK ONDERDEEL VAN " "DEZE LICENTIE. GEEN ENKEL GEBRUIK VAN DIT DOCUMENT OF AANGEPASTE VERSIE VAN " -"HET DOCUMENT IS TOEGESTAAN ALS VOLGT ZONDER DEZE DISCLAIMER; EN" +"HET DOCUMENT IS TOEGESTAAN ZONDER DEZE UITSLUITING VAN AANSPRAKELIJKHEID; EN" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -569,6 +559,17 @@ "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" +"ONDER GEEN ENKELE OMSTANDIGHEDEN EN ONDER GEEN JURIDISCHE THEORIE, ZIJ HET " +"WETTELIJK (INCLUSIEF NALATIGHEID), CONTRACT, OF ANDERZIJDS ZAL DE AUTEUR, " +"INITIËLE AUTEUR, ENIGE BIJDRAGER VAN HET DOCUMENT OF DE AANGEPASTE VERSIE " +"VAN HET DOCUMENT, NOCH ENIGE LEVERANCIER VAN EEN VAN DEZE PARTIJEN, " +"AANSPRAKELIJK GEHOUDEN WORDEN DOOR ENIG PERSOON VOOR ENIGE DIRECTE, " +"INDIRECTE, SPECIALE, INCIDENTELE, OF GEVOLG SCHADE IN ELKE VORM INCLUSIEF, " +"ZONDER BEPERKING, SCHADE DOOR VERLIES VAN GOEDE WIL, WERK ONDERBREKING, " +"COMPUTER FALEN OF STORING, OF ENIGE ANDERE VORM VAN SCHADE OF VERLIES ALS " +"GEVOLGEN VAN HET GEBRUIKT VAN HET DOCUMENT EN DE AANGEPASTE VERSIES VAN HET " +"DOCUMENT, ZELFS ALS ZO EEN PARTIJ GEÏNFORMEERD ZOU ZIJN OVER DE MOGELIJKHEID" +" VAN ZULKE SCHADES." #. (itstool) path: legalnotice/para #: C/legal.xml:28 @@ -577,6 +578,6 @@ "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" -"HET DOCUMENT EEN AANGEPASTE VERSIES VAN HET DOCUMENT WORDEN AANGEBODEN ONDER" -" DE VOORWAARDEN VAN DE GNU FREE DOCUMENTATION LICENTIE MET HET BEGRIP DAT: " -"<_:orderedlist-1/>" +"HET DOCUMENT EN AANGEPASTE VERSIES VAN HET DOCUMENT WORDEN BESCHIKBAAR " +"GESTELD ONDER DE VOORWAARDEN VAN DE GNU FREE DOCUMENTATION LICENTIE WAARBIJ " +"BUITENDIEN GELDT DAT: <_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/logview/help/nn/index.docbook mate-utils-1.26.1/logview/help/nn/index.docbook --- mate-utils-1.26.0/logview/help/nn/index.docbook 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/nn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,382 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - MATE Dokumentasjonsprosjekt - - - GNOME Dokumentasjonsprosjekt - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Tilbakemelding - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Innføring - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Kommandolinje - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Bruk - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/nn/legal.xml mate-utils-1.26.1/logview/help/nn/legal.xml --- mate-utils-1.26.0/logview/help/nn/legal.xml 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/nn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/nn/nn.po mate-utils-1.26.1/logview/help/nn/nn.po --- mate-utils-1.26.0/logview/help/nn/nn.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/nn/nn.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Øystein Steffensen-Alværvik, 2018 -# Andrew Rabbitt , 2020 +# Stefano Karapetsas , 2021 +# Øystein Steffensen-Alværvik, 2021 +# Andrew Rabbitt , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Andrew Rabbitt , 2020\n" -"Language-Team: Norwegian Nynorsk (https://www.transifex.com/mate/teams/13566/nn/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Andrew Rabbitt , 2021\n" +"Language-Team: Norwegian Nynorsk (https://app.transifex.com/mate/teams/13566/nn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,7 +22,8 @@ msgid "translator-credits" msgstr "" "Åsmund Skjæveland \n" -"Eskild Hustvedt " +"Eskild Hustvedt \n" +"Andrew J Rabbitt " #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -199,8 +200,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/nso/index.docbook mate-utils-1.26.1/logview/help/nso/index.docbook --- mate-utils-1.26.0/logview/help/nso/index.docbook 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/nso/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Command line - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/nso/legal.xml mate-utils-1.26.1/logview/help/nso/legal.xml --- mate-utils-1.26.0/logview/help/nso/legal.xml 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/nso/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/nso/nso.po mate-utils-1.26.1/logview/help/nso/nso.po --- mate-utils-1.26.0/logview/help/nso/nso.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/nso/nso.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Northern Sotho (https://www.transifex.com/mate/teams/13566/nso/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Northern Sotho (https://app.transifex.com/mate/teams/13566/nso/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/oc/index.docbook mate-utils-1.26.1/logview/help/oc/index.docbook --- mate-utils-1.26.0/logview/help/oc/index.docbook 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/oc/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,294 +0,0 @@ - - - - - - -]> - - -
- - - - Manual de la visualizaira de jornals sistèma - - - La visualizaira de jornals sistèma es una interfàcia grafica per veire e susvelhar los fichièrs de jornal sistèma. - - - 2015-2021 MATE Documentation Project - 2003 Sun Microsystems - 2000 Judith Samson - - - Projècte de documentacion de MATE - - - GNOME Documentation Project - - - - - - MATE Documentation Team Mate desktop - Sun GNOME Documentation Team Sun Microsystems
gdocteam@sun.com
- - Judith Samson GNOME Documentation Project
judith@samsonsource.com
- - Paul Cutler GNOME Documentation Team
pcutler@gnome.org
- - Vincent Noel
vincent.noel@gmail.com
- - -
- - - System Log Viewer Manual V1.10 July 2015 - Wolfgang Ulbrich - Projècte de documentacion de MATE - - Manual de la visualizaira de jornals sistèma V2.5 Octòbre de 2009 - Paul Cutler pcutler@gnome.org - GNOME Documentation Project - - Manual de la visualizaira de jornals sistèma V2.4 October 2005 - Vincent Noel vincent.noel@gmail.com - GNOME Documentation Project - - Manual de la visualizaira de jornals sistèma V2.3 Octòbre de 2002 - Sun GNOME Documentation Team gdocteam@sun.com - GNOME Documentation Project - - SManual de la visualizaira de jornals sistèma V2.2 Agost de 2002 - Sun GNOME Documentation Team gdocteam@sun.com - GNOME Documentation Project - - Manual de la visualizaira de jornals sistèma V2.1 Julhet de 2002 - Sun GNOME Documentation Team gdocteam@sun.com - GNOME Documentation Project - - Manual de la visualizaira de jornals sistèma V2.0 Mai de 2002 - Sun GNOME Documentation Team gdocteam@sun.com - GNOME Documentation Project - - Logview Manual 2000 - Judith Samson judith@samsonsource.com - GNOME Documentation Project - - - - This manual describes version 1.10 of System Log Viewer. - - - Comentaris - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - Visualizaira de jornals sistèma - - - - - - Introduccion - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Començar - - You can start System Log Viewer in the following ways: - - - - Menú Aplicacions - - Choose System ToolsLog File Viewer. - - - - Linha de comanda - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- Fenèstra de la visualizaira de jornals sistèma - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Utilizacion - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/oc/legal.xml mate-utils-1.26.1/logview/help/oc/legal.xml --- mate-utils-1.26.0/logview/help/oc/legal.xml 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/oc/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Autorizacion vos es donada de copiar, distribuir e/o modificar aqueste document segon los tèrmes de la Licéncia GNU Free Documentation License (GFDL), Version 1.1 o ulteriora publicada per la Free Software Foundation sens seccion inalterabla, sens tèxt de primièra pagina de cubèrta ni tèxt de darrièra pagina de cubèrta. Trobaretz un exemplari de la GFDL en seguissent aqueste ligam o dins lo fichièr COPYING-DOCS provesit amb lo present manual. - Aqueste manual fa part de la colleccion de manuals de MATE distribuits jols tèrmes de la licéncia de documentacion liura GNU. Se volètz distribuir aqueste document a despart de la colleccion, o podètz far en ajustant un exemplar de la licéncia al manual, coma indicat a la seccion 6 de la licéncia. - - La màger part dels noms utilizats per las entrepresas per distinguir lors produches e servicis son de marcas depausadas. Quand aqueles noms apareisson dins la documentacion MATE e que los membres del projècte de Documentacion MATE son informats de l’existéncia d’aquelas marcas depausadas, siá aqueles noms entièrs, siá lor primièra letra es en majuscula. - - LOS DOCUMENTS E LAS VERSIONS MODIFICADAS D’AQUESTE DOCUMENT SON FORNITS JOLS TÈRMES DE LA LICÉNCIA DE DOCUMENTACION LIURA GNU ESTANT QUE : - - LO DOCUMENT ES PROVESIT « TAL COMA ES » SENS CAP DE GARANTIDA DE QUIN TIPE QUE SIÁ, EXPLICITA O IMPLICADA, AQUÒ INCLUTZ, SENS CAP DE LIMIT, LAS GARANTIDAS QUE LO DOCUMENT O UNA VERSION MODIFICADA NON AJA PAS CAP DE DEFAUT, QUE SIÁ COMERCIABLE, QUE SIÁ ADAPTAT PER UN USATGE PARTICULAR O QUE ENFRANGA PAS LA LEI. TOT LO RISC RESPÈCTE A LA QUALITAT, L’EXACTITUD O LAS QUALITATS TECNICAS DEL DOCUMENT O DE SAS VERSIONS MODIFICADAS ES VÒSTRE. SE PER CAS LO DOCUMENT O UNA VERSION MODIFICADA S’AVERÈSSE DEFECTUÓS AL RESPÈCTE DE QUIN ASPÈCTE QUE SIÁ, VOSAUTRES (NON PAS LO REDACTOR INICIAL, L’AUTOR O QUIN CONTRIBUIDOR QUE SIÁ) ASSUMISSÈTZ LO CÒST DE TOTA MANTENENÇA, REPARACION O CORRECCION NECESSÀRIA. AQUESTA DESCARGA DE GARANTIDA CONSTITUÍS UNA PART ESSENCIALA D’AQUESTA LICÉNCIA. CAP D’UTILIZACION D’AQUESTE DOCUMENT O VERSION MODIFICADA ES AUTORIZADA LEVAT JOS AQUESTA DESCARGA DE GARANTIDA E - - - EN CAP DE CIRCONSTÀNCIA E JOS CAP D’INTERPRETACION LEGALA, QUE SIÁ DE RESPONSABILITAT CIVILA (NEGLIGÉNCIA INCLUSA), CONTRACTUALA O AUTRA, L’AUTOR, LO REDACTOR INICIAL, TOT CONTRIBUIDOR E TOT DISTRIBUIDOR D’AQUESTE DOCUMENT O DE SA VERSION MODIFICADA NI CAP DE PROVESIDOR D’AQUESTES PARTS SERÀN PAS RESPONSABLES AL RESPÈCTE DE QUIN DAMATGE DIRÈCTE, INDIRÈCTE, ESPECIAL O ACCIDENTAL QUE SIÁ DE TOT TIPE E TANBEN, SENS LIMITACION, LOS DAMATGES LIGATS A LA PÈRDA DE CLIENTÈLA, LAS INTERRUPCIONS DE TRABALH, ALS DEFALHIMENTS E DISFONCIONAMENTS INFORMATICS O TOTA AUTRA PÈRDA LIGADA A L’UTILIZACION DEL DOCUMENT E DE SAS VERSIONS MODIFICADAS, ATAL METEIS S’AQUESTES PART ÈRAN AVISATS DE LA POSSIBILITAT D’AQUESTES DAMATGES. - - - diff -Nru mate-utils-1.26.0/logview/help/oc/oc.po mate-utils-1.26.1/logview/help/oc/oc.po --- mate-utils-1.26.0/logview/help/oc/oc.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/oc/oc.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# 48c2de07903ce5a77a8e90265f95c4c2_8909374 <837c8d0ab97b27e737893c19f79bd4de_348476>, 2018 +# Stefano Karapetsas , 2021 # Quentin PAGÈS, 2021 +# Wolfgang Ulbrich , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Quentin PAGÈS, 2021\n" -"Language-Team: Occitan (post 1500) (https://www.transifex.com/mate/teams/13566/oc/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Wolfgang Ulbrich , 2021\n" +"Language-Team: Occitan (post 1500) (https://app.transifex.com/mate/teams/13566/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,8 +21,8 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"Yannig Marchegay (Kokoyaya) & Cédric Valmary " -"(totenoc.eu) " +"Yannig Marchegay (Kokoyaya) , Cédric Valmary " +"(totenoc.eu) , Quentin Pagès" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -130,8 +129,8 @@ "System Log Viewer Manual V1.10 July 2015" " <_:revdescription-1/>" msgstr "" -"System Log Viewer Manual V1.10 July 2015" -" <_:revdescription-1/>" +"Manual de la visualizaira de jornals sistèma V1.10 " +"Julhet 2015 <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:129 @@ -231,8 +230,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/or/index.docbook mate-utils-1.26.1/logview/help/or/index.docbook --- mate-utils-1.26.0/logview/help/or/index.docbook 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/or/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - ପରିଚୟ - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - ଆଦେଶ ରେଖା - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - ବ୍ୟବହାର ବିଧି - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/or/legal.xml mate-utils-1.26.1/logview/help/or/legal.xml --- mate-utils-1.26.0/logview/help/or/legal.xml 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/or/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/or/or.po mate-utils-1.26.1/logview/help/or/or.po --- mate-utils-1.26.0/logview/help/or/or.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/or/or.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Oriya (https://www.transifex.com/mate/teams/13566/or/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Odia (https://app.transifex.com/mate/teams/13566/or/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/pa/index.docbook mate-utils-1.26.1/logview/help/pa/index.docbook --- mate-utils-1.26.0/logview/help/pa/index.docbook 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/pa/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - ਗਨੋਮ ਦਸਤਾਵੇਜ਼ ਪ੍ਰੋਜੈਕਟ - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - ਸੁਝਾਅ - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - ਜਾਣ ਪਛਾਣ - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - ਕਾਰਜ ਮੇਨੂ - - Choose System ToolsLog File Viewer. - - - - ਕਮਾਂਡ ਲਾਈਨ - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - ਵਰਤੋਂ - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/pa/legal.xml mate-utils-1.26.1/logview/help/pa/legal.xml --- mate-utils-1.26.0/logview/help/pa/legal.xml 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/pa/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - ਇਹ ਦਸਤਾਵੇਜ਼ ਗਨੋਮ ਦਸਤਾਵੇਜ਼ ਭੰਡਾਰ ਦਾ ਭਾਗ ਹੈ, ਜੋ ਕਿ GFDL ਦੇ ਅਧੀਨ ਜਾਰੀ ਕੀਤਾ ਗਿਆ ਹੈ। ਜੇ ਤੁਸੀਂ ਇਹ ਦਸਤਾਵੇਜ਼ ਨੂੰ ਭੰਡਾਰ ਤੋਂ ਬਿਨਾਂ ਵੰਡਣਾ ਚਾਹੁੰਦੇ ਹੋ ਤਾਂ ਤੁਸੀਂ ਇਹ ਲਾਈਸੈਂਸ ਦੇ ਭਾਗ 6 ਵਿੱਚ ਦੱਸੇ ਮੁਤਾਬਕ ਦਸਤਾਵੇਜ਼ ਨਾਲ ਲਾਈਸੈਂਸ ਦੀ ਇੱਕ ਨਕਲ ਜੋੜ ਕੇ ਕਰ ਸਕਦੇ ਹੋ। - - ਕੰਪਨੀਆਂ ਵਲੋਂ ਆਪਣੇ ਉਤਪਾਦਾਂ ਅਤੇ ਸੇਵਾਵਾਂ ਲਈ ਵਰਤੇ ਗਏ ਕਈ ਨਾਂ ਮਾਰਕੇ ਹਨ। ਜਦੋਂ ਵੀ ਉਹ ਨਾਂ ਕਿਸੇ ਗਨੋਮ ਦਸਤਾਵੇਜ਼ ਪ੍ਰੋਜੈਕਟ ਵਿੱਚ ਆਉਦੇ ਹਨ ਅਤੇ ਗਨੋਮ ਦਸਤਾਵੇਜ਼ ਪ੍ਰੋਜੈਕਟ ਦੇ ਮੈਂਬਰ ਹਨ ਤਾਂ ਉਨ੍ਹਾਂ ਮਾਰਕਿਆਂ ਬਾਰੇ ਜਾਣਕਾਰੀ ਦੇਣ ਲਈ, ਉਹਨਾਂ ਨੇ ਦੇ ਨਾਂ ਵੱਡੇ ਅੱਖਰਾਂ ਵਿੱਚ ਜਾਂ ਪਹਿਲੇਂ ਅੱਖਰ ਵੱਡੇ ਰੱਖੇ ਗਏ ਹਨ। - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/pa/pa.po mate-utils-1.26.1/logview/help/pa/pa.po --- mate-utils-1.26.0/logview/help/pa/pa.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/pa/pa.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Wolfgang Ulbrich , 2018\n" -"Language-Team: Panjabi (Punjabi) (https://www.transifex.com/mate/teams/13566/pa/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Wolfgang Ulbrich , 2021\n" +"Language-Team: Panjabi (Punjabi) (https://app.transifex.com/mate/teams/13566/pa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -200,8 +200,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/pl/index.docbook mate-utils-1.26.1/logview/help/pl/index.docbook --- mate-utils-1.26.0/logview/help/pl/index.docbook 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/pl/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,370 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - 2015-2021 dokumentacja projektu MATE - 2003 Sun Microsystems - 2000 Judith Samson - - - Projekt dokumentacji MATE - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - Vincent Noel
vincent.noel@gmail.com
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Opinia - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Wprowadzenie - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Wiersz poleceń - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Użycie - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/pl/legal.xml mate-utils-1.26.1/logview/help/pl/legal.xml --- mate-utils-1.26.0/logview/help/pl/legal.xml 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/pl/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Udziela się zgody na kopiowanie, dystrybucję i/lub modyfikację tego tekstu na warunkach licencji GNU Free Documentation License (GFDL) w wersji 1.1 lub nowszej, opublikowanej przez Free Software Foundation bez Sekcji Niezmiennych, bez Strony Tytułowej i bez Treści Okładki. Kopia tekstu licencji GFDL umieszczona została pod tym odnośnik lub w pliku COPYING-DOCS rozpowszechnianym razem z tą instrukcją. - Ten podręcznik jest częścią zestawu podręczników MATE rozpowszechnianych na licencji GFDL. Jeżeli chcesz rozpowszechnić tą instrukcję osobno od zestawu, możesz to zrobić dodając kopię licencji do podręcznika, jak opisano w dziale 6 tej licencji. - - Wiele nazw używanych przez firmy do rozróżnienia ich produktów i usług jest zgłoszonych jako znaki towarowe. W przypadku pojawienia się tych nazw w dowolnej dokumentacji MATE, a członkowie Projektu Dokumentacji MATE są świadomi tych znaków towarowych, wówczas nazwy są pisane wielkimi literami lub pierwszymi wielkimi literami. - - DOKUMENT I ZMODYFIKOWANE WERSJE DOKUMENTU SĄ DOSTARCZANE NA WARUNKACH LICENCJI WOLNEJ DOKUMENTACJI GNU Z DALSZYM ZROZUMIENIEM, ŻE: - - DOKUMENT JEST DOSTARCZANY W STANIE „TAK JAK JEST”, BEZ JAKIEGOKOLWIEK WYRAŻENIA, DOMNIEMANIA GWARANCJI, W TYM MIĘDZY INNYMI GWARANCJI, ŻE DOKUMENT LUB ZMODYFIKOWANA WERSJA DOKUMENTU JEST WOLNA OD WAD HANDLOWYCH LUB DO OKREŚLONEGO CELU -NARUSZENIE. CAŁKOWITE RYZYKO DOTYCZĄCE JAKOŚCI, DOKŁADNOŚCI I WYDAJNOŚCI DOKUMENTU LUB ZMODYFIKOWANEJ WERSJI DOKUMENTU SPOCZYWA NA UŻYTKOWNIKU. JEŻELI JAKIKOLWIEK DOKUMENT LUB ZMODYFIKOWANA WERSJA OKAŻE SIĘ WADLIWA POD JAKIMKOLWIEK WZGLĘGEM, UŻYTKOWNIK (NIE WSTĘPNY PISARZ, AUTOR CZY ŻADEN WSPÓŁPRACOWNIK) PONOSI KOSZTY WSZELKICH NIEZBĘDNYCH SERWISÓW, NAPRAW LUB POPRAWEK. NINIEJSZE WYŁĄCZENIE GWARANCJI STANOWI ISTOTNĄ CZĘŚĆ LICENCJI. ZGODNIE Z NINIEJSZYM WYŁĄCZENIEM ODPOWIEDZIALNOŚCI NIE JEST ZEZWOLONE NA KORZYSTANIE Z JAKICHKOLWIEK DOKUMENTÓW LUB ZMODYFIKOWANYCH WERSJI DOKUMENTU; ORAZ - - - W ŻADNYM PRZYPADKU I W ŻADNEJ TEORII PRAWNEJ, CZY W DZIAŁANIU CZYNNYM (W TYM ZANIEDBANIA), UMOWY LUB W INNY SPOSÓB, AUTOR, PISARZ WSTĘPNY, WSPÓŁPRACOWNIK ANI DYSTRYBUTOR DOKUMENTU LUB ZMODYFIKOWANA WERSJA DOKUMENTU TAKICH STRON NIE PONOSI ODPOWIEDZIALNOŚCI WOBEC JAKICHKOLWIEK OSÓB ZA JAKIEKOLWIEK BEZPOŚREDNIE, POŚREDNIE, SZCZEGÓLNE, PRZYPADKOWE LUB WTÓRNE SZKODY JAKIEGOKOLWIEK CHARAKTERU, W TYM MIĘDZY INNYMI USZKODZENIA ZA UTRATĘ WŁAŚCIWOŚCI, PRZERWY W PRACY, AWARIE LUB INNE USZKODZENIA KOMPUTERA LUB STRATY WYNIKAJĄCE Z KORZYSTANIA Z DOKUMENTU I ZMODYFIKOWANYCH WERSJI DOKUMENTU, NAWET JEŚLI STRONA ZOSTAŁA POINFORMOWANA O MOŻLIWOŚCI WYSTĄPIENIA TAKICH SZKÓD. - - - diff -Nru mate-utils-1.26.0/logview/help/pl/pl.po mate-utils-1.26.1/logview/help/pl/pl.po --- mate-utils-1.26.0/logview/help/pl/pl.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/pl/pl.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,22 +1,22 @@ # # Translators: -# Piotr Drąg , 2018 -# Piotr Strębski , 2018 -# Stefano Karapetsas , 2018 -# Marcin GTriderXC , 2018 -# pietrasagh , 2018 -# Przemek P , 2018 -# Dominik Adrian Grzywak, 2018 -# Szymon Blaut , 2021 +# Piotr Strębski , 2021 +# Stefano Karapetsas , 2021 +# clefebvre , 2021 +# Dominik Adrian Grzywak, 2021 +# Marcin GTriderXC , 2021 +# Przemek P , 2021 # Daniel Tokarzewski , 2021 +# Szymon Blaut , 2021 +# pietrasagh , 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Daniel Tokarzewski , 2021\n" -"Language-Team: Polish (https://www.transifex.com/mate/teams/13566/pl/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: pietrasagh , 2022\n" +"Language-Team: Polish (https://app.transifex.com/mate/teams/13566/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,10 +27,16 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"Tłumacze środowiska MATE, 2013-2014, 2016-2018\n" +"Tłumacze środowiska MATE, 2014-2020\n" "\n" -"Tomasz Bielecki, 2005\n" -"Paweł Marciniak, 2007" +"Zbigniew Chyla, 2002-2003\n" +"Artur Flinta, 2003-2005\n" +"Wadim Dziedzic, 2007-2009\n" +"Tomasz Dominikowski, 2008-2009\n" +"Joanna Mazgaj, 2009\n" +"Piotr Drąg, 2010\n" +"Aviary.pl, 2007-2010\n" +"Daniel Tokarzewski, 2020" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -71,7 +77,7 @@ #: C/index.docbook:152 C/index.docbook:162 C/index.docbook:172 #: C/index.docbook:182 C/index.docbook:192 msgid "GNOME Documentation Project" -msgstr "GNOME Documentation Project" +msgstr "Dokumentacja projektu GNOME" #. (itstool) path: authorgroup/author #: C/index.docbook:60 @@ -209,8 +215,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -253,7 +260,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:244 msgid "Getting Started" -msgstr "" +msgstr "Pierwsze kroki" #. (itstool) path: sect1/para #: C/index.docbook:246 @@ -481,7 +488,7 @@ #. (itstool) path: para/ulink #: C/legal.xml:9 msgid "link" -msgstr "odnośnik" +msgstr "dowiązanie" #. (itstool) path: legalnotice/para #: C/legal.xml:2 diff -Nru mate-utils-1.26.0/logview/help/ps/index.docbook mate-utils-1.26.1/logview/help/ps/index.docbook --- mate-utils-1.26.0/logview/help/ps/index.docbook 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ps/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - بولۍ ليکه - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - کارونه - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ps/legal.xml mate-utils-1.26.1/logview/help/ps/legal.xml --- mate-utils-1.26.0/logview/help/ps/legal.xml 2021-08-05 19:48:50.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ps/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/ps/ps.po mate-utils-1.26.1/logview/help/ps/ps.po --- mate-utils-1.26.0/logview/help/ps/ps.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ps/ps.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Pushto (https://www.transifex.com/mate/teams/13566/ps/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Pashto (https://app.transifex.com/mate/teams/13566/ps/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/pt/index.docbook mate-utils-1.26.1/logview/help/pt/index.docbook --- mate-utils-1.26.0/logview/help/pt/index.docbook 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/pt/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,357 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - 2015-2021 Projecto de Documentação do MATE - 2003 Sun Microsystems - 2000 Judith Samson - - - Projeto de Documentação do MATE - - - Projeto de Documentação do GNOME - - - - - - Equipa de Documentação do MATE MATE Desktop - Sun Equipa de Documentação do GNOME Sun Microsystems
gdocteam@sun.com
- - Judith Samson Projeto de Documentação GNOME
judith@samsonsource.com
- - Paul Cutler Equipa de Documentação do GNOME
pcutler@gnome.org
- - Vincent Noel
vincent.noel@gmail.com
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Enviar Opiniões - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Hugo Carvalho - - hugokarvalho@gmail.com - - - - 2018 - - Hugo Carvalho - -
- - - System Log Viewer - - - - - - - Introdução - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Iniciação - - You can start System Log Viewer in the following ways: - - - - Menu de Aplicações - - Escolha Ferramentas do SistemaVisualizador de Ficheiros de Registo. - - - - Linha de comando - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Utilização - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/pt/legal.xml mate-utils-1.26.1/logview/help/pt/legal.xml --- mate-utils-1.26.0/logview/help/pt/legal.xml 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/pt/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - É dada permissão para copiar, distribuir e/ou alterar este documento sob os termos da Licença de Documentação Livre GNU (GFDL), Versão 1.1 ou qualquer outra posteriormente publicada pela Free Software Foundation sem quaisquer Secções Invariantes, Textos de Capa ou Prefácios, e sem Textos Finais ou Posfácios. Poderá encontrar uma cópia da GFDL neste atalho ou no ficheiro COPYING-DOCS distribuído com este manual. - Este manual é parte de uma coleção de manuais MATE distribuídos sob a GFDL. Se desejar distribuir este manual separadamente da coleção, poderá fazê-lo desde que lhe adicione uma cópia da licença, tal como descrito na secção 6 desta licença. - - Muitos dos nomes utilizados pelas empresas para distinguir os seus produtos e serviços são reclamados como marcas registadas. Onde esses nomes surgirem em qualquer documentação MATE, e aos membros do Projeto de Documentação do MATE for dado conhecimento dessas marcas registadas, estes nomes estarão todos em maiúsculas ou com a primeira letra de cada palavra em maiúscula. - - O DOCUMENTO E VERSÕES MODIFICADAS DO DOCUMENTO SÃO DISPONIBILIZADAS NOS TERMOS DA LICENÇA DE DOCUMENTAÇÃO LIVRE GNU (GNU FREE DOCUMENTATION LICENSE) COM O SUBSEQUENTE ENTENDIMENTO DE QUE: - - ESTE DOCUMENTO É DISPONIBILIZADO NUMA BASE "TAL COMO ESTÁ", SEM QUALQUER GARANTIA DE QUALQUER TIPO, NEM EXPRESSA NEM IMPLÍCITA, INCLUINDO, MAS SEM LIMITAR, GARANTIAS DE QUE O DOCUMENTO OU VERSÃO ALTERADA DO DOCUMENTO SE ENCONTRA LIVRE DE DEFEITOS PARA COMERCIALIZAÇÃO, ADEQUADO A UM PROPÓSITO ESPECÍFICO OU QUE NÃO INFRINJA. A TOTALIDADE DO RISCO DE QUALIDADE, PORMENORIZAÇÃO, E DESEMPENHO DO DOCUMENTO OU VERSÃO ALTERADA DO DOCUMENTO É SUA. CASO ALGUM DOCUMENTO OU VERSÃO ALTERADA SE DEMONSTRE DEFICIENTE EM QUALQUER ASPETO, O LEITOR (E NÃO O AUTOR INICIAR, OU QUALQUER CONTRIBUINTE POSTERIOR) ASSUME O CUSTO DE TODO O SERVIÇO DE REPARAÇÃO, ASSISTÊNCIA OU CORREÇÃO QUE POSSE SER NECESSÁRIO. ESTA DESRESPONSABILIZAÇÃO DE GARANTIA CONSTITUI UMA PARTE ESSENCIAL DESTA LICENÇA. NENHUMA UTILIZAÇÃO DE QUALQUER DOCUMENTO OU VERSÃO ALTERADO DO DOCUMENTO SE ENCONTRA AUTORIZADA EXCETO SE SUJEITA A ESTA DESRESPONSABILIZAÇÃO; E - - - SOB QUAISQUER CIRCUNSTÂNCIAS E TEORIA LEGAL, QUER SEJA POR ERRO (INCLUINDO NEGLIGÊNCIA), CONTRATO, OU QUALQUER OUTRO MOTIVO, PODERÁ O AUTOR, ESCRITOR INICIAL, QUALQUER CONTRIBUINTE, OU QUALQUER DISTRIBUIDOR DO DOCUMENTO OU VERSÃO ALTERADA DO DOCUMENTO, OU QUALQUER FORNECEDOR DE UMA DESSAS PARTES, SER RESPONSÁVEL PERANTE QUALQUER PESSOA POR QUAISQUER DANOS DIRETOS, INDIRETOS, ESPECIAIS, ACIDENTAIS OU CONSEQUENCIAIS DE QUALQUER TIPO INCLUINDO, SEM LIMITAR, DANOS POR PERCA DE BOM NOME (GOODWILL), PARAGENS DE TRABALHO, FALHA OU MAU FUNCIONAMENTO INFORMÁTICO, OU QUALQUER E TODOS OS OUTROS DANOS OU PERCAS DECORRENTES OU RELACIONADAS COM A UTILIZAÇÃO DO DOCUMENTO E VERSÕES ALTERADAS DO DOCUMENTO, MESMO QUE TAL PARTE TENHA SIDO INFORMADA DA POSSIBILIDADE DE OCORREREM TAIS DANOS. - - - diff -Nru mate-utils-1.26.0/logview/help/pt/pt.po mate-utils-1.26.1/logview/help/pt/pt.po --- mate-utils-1.26.0/logview/help/pt/pt.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/pt/pt.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,30 +1,31 @@ # # Translators: -# Carlos Moreira, 2018 -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Manuela Silva , 2018 -# Hugo Carvalho , 2020 +# Carlos Moreira, 2021 +# clefebvre , 2021 +# Wolfgang Ulbrich , 2021 # Rui , 2021 +# Manuela Silva , 2021 # José Vieira , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" "Last-Translator: José Vieira , 2021\n" -"Language-Team: Portuguese (https://www.transifex.com/mate/teams/13566/pt/)\n" +"Language-Team: Portuguese (https://app.transifex.com/mate/teams/13566/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Hugo Carvalho , 2018" +msgstr "" +"Hugo Carvalho , 2018\n" +"José Vieira , 2021" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -66,7 +67,7 @@ #: C/index.docbook:152 C/index.docbook:162 C/index.docbook:172 #: C/index.docbook:182 C/index.docbook:192 msgid "GNOME Documentation Project" -msgstr "Projeto de Documentação do GNOME" +msgstr "Projecto de Documentação do GNOME" #. (itstool) path: authorgroup/author #: C/index.docbook:60 @@ -209,14 +210,15 @@ #. (itstool) path: legalnotice/title #: C/index.docbook:200 msgid "Feedback" -msgstr "Enviar Opiniões" +msgstr "Opinião" #. (itstool) path: legalnotice/para #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/pt_BR/index.docbook mate-utils-1.26.1/logview/help/pt_BR/index.docbook --- mate-utils-1.26.0/logview/help/pt_BR/index.docbook 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/pt_BR/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,382 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - Projeto de Documentação do MATE - - - Projeto de Documentação do GNOME - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Retorno - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introdução - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Começando - - You can start System Log Viewer in the following ways: - - - - Menu Aplicativos - - Choose System ToolsLog File Viewer. - - - - Linha de comando - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Uso - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/pt_BR/legal.xml mate-utils-1.26.1/logview/help/pt_BR/legal.xml --- mate-utils-1.26.0/logview/help/pt_BR/legal.xml 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/pt_BR/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - É concedida permissão para copiar, distribuir e / ou modificar este documento sob os termos da Licença de Documentação Livre GNU (GFDL), Versão 1.1 ou qualquer versão posterior publicada pela Free Software Foundation sem Seções Invariantes, sem Textos de Capa Frontal e sem textos de contracapa. Você pode encontrar uma cópia da GFDL no link ou no arquivo COPYING-DOCS distribuído com este manual. - Esse manual é parte de uma coleção de manuais do MATE distribuída sob a GFDL. Se você quiser distribuir essa manual separado da coleção, pode fazê-lo adicionando uma cópia da licença ao manual, como descrito na seção 6 da licença. - - Muitos dos nomes usados por companhias para distinguir seus produtos e serviços são marcas registradas. Quando esses nomes ocorrem em alguma parte da documentação do MATE, e os membros do Projeto de documentação do MATE estiverem cientes de serem marcas registradas, esses nomes estarão maiúsculas ou com as iniciais em maiúsculas. - - O DOCUMENTO E AS VERSÕES MODIFICADAS DO DOCUMENTO SÃO FORNECIDOS DE ACORDO COM OS TERMOS DA LICENÇA DE DOCUMENTAÇÃO GRATUITA DA GNU COM O ENTENDIMENTO COMPREENDIDO DE QUE: - - O DOCUMENTO É FORNECIDO COMO UMA BASE "COMO ESTÁ", SEM GARANTIAS DE QUALQUER TIPO, TANTO EXPRESSA OU IMPLÍCITA, INCLUINDO, SEM LIMITAÇÃO, GARANTIAS DE QUE O DOCUMENTO OU VERSÃO MODIFICADA DO DOCUMENTO É COMERCIALIZÁVEL, LIVRE DE DEFEITOS, PRÓPRIO PARA UM PROPÓSITO ESPECÍFICO OU SEM INFRAÇÕES. TODO O RISCO A RESPEITO DA QUALIDADE, EXATIDÃO, E DESEMPENHO DO DOCUMENTO OU VERSÕES MODIFICADAS DO DOCUMENTO É SEU. SE ALGUM DOCUMENTO OU VERSÃO MODIFICADA SE PROVAR DEFEITUOSO EM QUALQUER ASPECTO, VOCÊ (NÃO O ESCRITOR INICIAL, AUTOR OU QUALQUER CONTRIBUIDOR) ASSUME O CUSTO DE QUALQUER SERVIÇO NECESSÁRIO, REPARO OU CORREÇÃO. ESTA RENÚNCIA DE GARANTIAS CONSTITUI UMA PARTE ESSENCIAL DESTA LICENÇA. NENHUM USO DESTE DOCUMENTO OU VERSÃO MODIFICADA DESTE DOCUMENTO É AUTORIZADO SE NÃO FOR SOB ESTA RENÚNCIA; E - - - SOB NENHUM CIRCUNSTÂNCIA E SOB NENHUMA TEORIA LEGAL, TANTO EM DADO (INCLUINDO NEGLIGÊNCIA), CONTRATO, OU OUTROS, DEVEM O AUTOR, ESCRITOR INICIAL, QUALQUER CONTRIBUIDOR, OU QUALQUER DISTRIBUIDOR DO DOCUMENTO OU VERSÃO MODIFICADA DO DOCUMENTO, OU QUALQUER FORNECEDOR DE ALGUMA DESSAS PARTES, SER CONSIDERADOS RESPONSÁVEIS A QUALQUER PESSOA POR QUALQUER DANO, SEJA DIRETO, INDIRETO, ESPECIAL, ACIDENTAL OU CONSEQÜENCIAL DE QUALQUER INDIVÍDUO, INCLUINDO, SEM LIMITAÇÃO, DANOS POR PERDA DE BOA VONTADE, TRABALHO PARADO, FALHA NO COMPUTADOR OU MAL FUNCIONAMENTO, OU QUALQUER E TODOS OS OUTROS DANOS OU PERDAS RESULTANTES OU RELACIONADAS AO USO DO DOCUMENTO E VERSÕES MODIFICADAS, MESMO QUE TAL PARTE TENHA SIDO INFORMADA DA POSSIBILIDADE DE TAIS DANOS. - - - diff -Nru mate-utils-1.26.0/logview/help/pt_BR/pt_BR.po mate-utils-1.26.1/logview/help/pt_BR/pt_BR.po --- mate-utils-1.26.0/logview/help/pt_BR/pt_BR.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/pt_BR/pt_BR.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,25 +1,27 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Marcelo Ghelman , 2018 -# Wolfgang Ulbrich , 2018 -# b36c7cf4cf669a51ae00d04c19629819, 2018 -# Italo Penaforte , 2018 -# Robert Antoni Buj i Gelonch , 2019 -# George Silva , 2020 +# Robert Antoni Buj i Gelonch , 2021 +# Stefano Karapetsas , 2021 +# Marcelo Ghelman , 2021 +# Wolfgang Ulbrich , 2021 +# Italo Penaforte , 2021 +# b36c7cf4cf669a51ae00d04c19629819, 2021 +# George Silva , 2021 +# Josué Teodoro Moreira , 2021 +# Luciano Luck, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: George Silva , 2020\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mate/teams/13566/pt_BR/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Luciano Luck, 2022\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/mate/teams/13566/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -28,7 +30,6 @@ "Equipe de tradução no Transifex:\n" "Fabrizzio Alphonsus Soares https://www.transifex.com/accounts/profile/fabrizzio\n" "Alberto Federman Neto https://www.transifex.com/accounts/profile/albfneto\n" -"Aldo Oliveira https://www.transifex.com/user/profile/AldoBR/\n" "Appes https://www.transifex.com/accounts/profile/apps\n" "arm332 https://www.transifex.com/accounts/profile/arm332\n" "augusteiner https://www.transifex.com/accounts/profile/augusteiner\n" @@ -47,7 +48,9 @@ "Michele dos Santos da Silva https://www.transifex.com/accounts/profile/mchelem\n" "Thiago Cangussu https://www.transifex.com/accounts/profile/cangussu.thg\n" "vitorgatti https://www.transifex.com/accounts/profile/vitorgatti\n" -"George Salu da Silva https://www.transifex.com/user/profile/George_salu_da_silva/" +"Ítalo Rangel Penaforte https://www.transifex.com/accounts/profile/italo.penaforte\n" +"George Salu da Silva https://www.transifex.com/user/profile/George_salu_da_silva/\n" +"Josué Teodoro Moreira https://www.transifex.com/user/profile/J0sueTM/" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -65,6 +68,7 @@ #: C/index.docbook:30 msgid "2015-2021 MATE Documentation Project" msgstr "" +"2015-2021 Projecto de Documentação do MATE" #. (itstool) path: articleinfo/copyright #: C/index.docbook:34 @@ -224,8 +228,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ro/index.docbook mate-utils-1.26.1/logview/help/ro/index.docbook --- mate-utils-1.26.0/logview/help/ro/index.docbook 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ro/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introducere - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Linie de comandă - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Utilizare - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ro/legal.xml mate-utils-1.26.1/logview/help/ro/legal.xml --- mate-utils-1.26.0/logview/help/ro/legal.xml 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ro/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/ro/ro.po mate-utils-1.26.1/logview/help/ro/ro.po --- mate-utils-1.26.0/logview/help/ro/ro.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ro/ro.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Daniel , 2018 +# Stefano Karapetsas , 2021 +# Daniel , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Daniel , 2018\n" -"Language-Team: Romanian (https://www.transifex.com/mate/teams/13566/ro/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Daniel , 2021\n" +"Language-Team: Romanian (https://app.transifex.com/mate/teams/13566/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -196,8 +196,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ru/index.docbook mate-utils-1.26.1/logview/help/ru/index.docbook --- mate-utils-1.26.0/logview/help/ru/index.docbook 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ru/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,333 +0,0 @@ - - - - - - -]> - - -
- - - - Руководство по Программе просмотра системных журналов - - - Программа просмотра системных журналов — это графический интерфейс для просмотра и отслеживания изменений в файлах системных журналов. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - Проект документирования MATE - - - Проект документирования GNOME - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - Это руководство описывает версию 1.10 Программы просмотра системных журналов. - - Обратная связь - Чтобы сообщить об ошибке или внести предложение относительно Программы просмотра системных журналов или этого руководства, следуйте указаниям на Странице обратной связи MATE. - - -
- - Программа просмотра системных журналов - - - - - - Введение - - Программа просмотра системных журналов — это графическое, управляемое через меню приложение, позволяющее просматривать и отслеживать изменения в системных журналах. Программа просмотра системных журналов предоставляет несколько функций, которые могут помочь в управлении системными журналами, включая отслеживание изменений и показ статистики журналов. - - Программа просмотра системных журналов будет полезна новичкам в администрировании системы, так как обеспечивает простой, более удобный для пользователя показ журналов, чем просмотр файла журнала в виде обычного текста. Она пригодится и более опытным администраторам, поскольку содержит монитор для постоянного отслеживания ключевых системных журналов. - - Программа просмотра системных журналов полезна только тем пользователям, у которых есть доступ к файлам системных журналов (обычно для этого требуется доступ от имени root). - - - - - Начало работы - - Запустить Программу просмотра системных журналов можно следующими способами: - - - меню Приложения - - Выберите СистемныеПрограмма просмотра журналов. - - - - Командная строка - - Наберите mate-system-log и нажмите Enter. - - - - - - - После запуска Программы просмотра системных журналов появляется следующее окно. - - -
- Окно программы просмотра системных журналов - - Показывает главное окно Программы просмотра системных журналов, содержащее строку меню, область отображения, полосы прокрутки и строку состояния. - -
- - При первом запуске Программы просмотра системных журналов приложение по умолчанию показывает несколько файлов журналов (таких как /var/log/messages). Открытые журналы перечислены с левой стороны окна приложения. Содержимое выбранного в списке журнала отображается в главной области окна приложения. - - По умолчанию Программа просмотра системных журналов отслеживает все открытые журналы, и каждое изменение автоматически отображается в главном окне. Подробнее смотрите . - -
- - - - - Использование - - - Просмотр журнала - Для просмотра журнала выберите ФайлОткрыть. В диалоговом окне Открыть журнал выберите нужный журнал и нажмите Открыть. Используйте полосы прокрутки для перемещения по журналу. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - Копирование строк журнала в буфер обмена - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - Скрытие боковой панели - Для скрытия боковой панели, содержащей список журналов и календарь, просто выберите в меню ВидБоковая панель. - - - - Мониторинг журналов - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - Просмотр информации о журнале - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - Закрытие просмотра журнала - Для закрытия журнала выберите ФайлЗакрыть. - - - - Завершение работы с Программой просмотра системных журналов - Для выхода изПрограммы просмотра системных журналов выберите ФайлВыход. - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ru/legal.xml mate-utils-1.26.1/logview/help/ru/legal.xml --- mate-utils-1.26.0/logview/help/ru/legal.xml 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ru/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Разрешается копировать, распространять и / или изменять этот документ в соответствии с условиями лицензии GNU Free Documentation License (GFDL), версии 1.1 или любой более поздней версии, опубликованной Фондом свободного программного обеспечения без каких-либо инвариантных разделов, без добавления текста в начале или в конце. Вы можете найти копию GFDL здесь ссылка или в файле COPYING-DOCS, распространяемом вместе с этим руководством. - Этот документ является частью документации MATE, распространяемой на условиях лицензии GFDL. Если вы хотите распространять этот документ отдельно от общей документации, вы должны приложить копию лицензии к документу, как написано в части 6 лицензии. - - Некоторые имена и марки используются компаниями для обозначения их продуктов и услуг и являются торговыми марками. Там, где эти имена присутствуют в документации и где участники проекта документирования MATE знают об этом, имена выделяются заглавными буквами или начальной заглавной буквой. - - ДОКУМЕНТ И ИЗМЕНЁННЫЕ ВЕРСИИ ДОКУМЕНТА ПРЕДОСТАВЛЯЮТСЯ ПРЕДОСТАВЛЯЮТСЯ ПО УСЛОВИЯМ ЛИЦЕНЗИИ БЕСПЛАТНОЙ ДОКУМЕНТАЦИИ GNU С ПОНИМАНИЕМ ЧТО: - - ДОКУМЕНТ РАСПРОСТРАНЯЕТСЯ «КАК ЕСТЬ», БЕЗ ВСЯКИХ ГАРАНТИЙ, ЯВНЫХ ИЛИ НЕЯВНЫХ, ВКЛЮЧАЯ, БЕЗ ОГРАНИЧЕНИЙ, ГАРАНТИИ ТОГО, ЧТО ДОКУМЕНТ ИЛИ ИЗМЕНЁННАЯ ВЕРСИЯ ДОКУМЕНТА СВОБОДНА ОТ ДЕФЕКТОВ, ПРИГОДНА К ПРОДАЖЕ, ПРИГОДНА К ИСПОЛЬЗОВАНИЮ В ОПРЕДЕЛЁННЫХ ЦЕЛЯХ ИЛИ НЕ НАРУШАЕТ ЗАКОНЫ. ВЕСЬ РИСК, КАСАЮЩИЙСЯ КАЧЕСТВА, ТОЧНОСТИ ИЛИ ПРАВИЛЬНОСТИ ДОКУМЕНТА ИЛИ ИЗМЕНЁННЫХ ВЕРСИЙ ДОКУМЕНТА, ЛЕЖИТ НА ВАС. ЕСЛИ ДОКУМЕНТ ИЛИ ИЗМЕНЁННАЯ ВЕРСИЯ ДОКУМЕНТА ИМЕЕТ НЕДОСТАТКИ, ВЫ (А НЕ АВТОР ДОКУМЕНТА ИЛИ ЕГО ПОМОЩНИК) БЕРЁТЕ НА СЕБЯ СТОИМОСТЬ ЛЮБОЙ НЕОБХОДИМОЙ ДОРАБОТКИ, КОРРЕКЦИИ ИЛИ ВОССТАНОВЛЕНИЯ. ЭТОТ ОТКАЗ ОТ ГАРАНТИЙ СОСТАВЛЯЕТ ВАЖНУЮ ЧАСТЬ ЛИЦЕНЗИИ. НИКАКОЕ ИСПОЛЬЗОВАНИЕ ДОКУМЕНТА ИЛИ ИЗМЕНЁННОЙ ВЕРСИИ ДОКУМЕНТА НЕ ДОПУСКАЕТСЯ БЕЗ ДАННОГО ПРЕДУПРЕЖДЕНИЯ И - - - НИ ПРИ КАКИХ ОБСТОЯТЕЛЬСТВАХ И НИ ПРИ КАКОМ ЗАКОННОМ СПОСОБЕ, НИ ПО КАКОМУ СОГЛАШЕНИЮ ИЛИ ДРУГОЙ ПРИЧИНЕ, АВТОР, СОЗДАТЕЛЬ, ПОМОЩНИКИ ИЛИ РАСПРОСТРАНИТЕЛИ ДОКУМЕНТА НЕ НЕСУТ ОТВЕТСТВЕННОСТЬ ЗА ПРЯМОЙ, КОСВЕННЫЙ, СПЕЦИАЛЬНЫЙ, СЛУЧАЙНЫЙ ИЛИ ПРЕДНАМЕРЕННЫЙ УЩЕРБ ЛЮБОГО СВОЙСТВА, ВКЛЮЧАЯ, БЕЗ ОГРАНИЧЕНИЯ, ПОТЕРЮ ЖЕЛАНИЯ, РАБОТОСПОСОБНОСТИ, КОМПЬЮТЕРНЫЕ СБОИ ИЛИ ПОЛОМКИ, ИЛИ ЛЮБОЙ ДРУГОЙ УЩЕРБ ИЛИ ПОТЕРИ, ВОЗНИКАЮЩИЕ ВСЛЕДСТВИЕ ИЛИ СВЯЗАННЫЕ С ИСПОЛЬЗОВАНИЕМ ДОКУМЕНТА ИЛИ ИЗМЕНЁННЫХ ВЕРСИЙ ДОКУМЕНТА, ДАЖЕ ЕСЛИ СТОРОНА БЫЛА УВЕДОМЛЕНА О ВОЗМОЖНОСТИ ТАКОГО УЩЕРБА. - - - diff -Nru mate-utils-1.26.0/logview/help/ru/ru.po mate-utils-1.26.1/logview/help/ru/ru.po --- mate-utils-1.26.0/logview/help/ru/ru.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ru/ru.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,21 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Дмитрий Михирев, 2018 -# AlexL , 2018 -# Wolfgang Ulbrich , 2018 -# Alex Putz, 2018 -# Aleksey Kabanov , 2018 +# Stefano Karapetsas , 2021 +# Aleksey Kabanov , 2021 +# AlexL , 2021 +# Wolfgang Ulbrich , 2021 +# Alex Puts, 2021 +# Olesya Gerasimenko , 2021 +# Alexey Rodionov , 2021 +# Sergej A. , 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Aleksey Kabanov , 2018\n" -"Language-Team: Russian (https://www.transifex.com/mate/teams/13566/ru/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Sergej A. , 2022\n" +"Language-Team: Russian (https://app.transifex.com/mate/teams/13566/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -28,6 +30,7 @@ "Александр Сигачёв \n" "Александр Соколов\n" "Александр Хромин\n" +"Алексей Родионов \n" "Алексей Рочев \n" "Алексей Сорокин \n" "Андрей Иванков\n" @@ -73,7 +76,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:30 msgid "2015-2021 MATE Documentation Project" -msgstr "" +msgstr "2015-2021 Проект документирования MATE" #. (itstool) path: articleinfo/copyright #: C/index.docbook:34 @@ -83,7 +86,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:38 msgid "2000 Judith Samson" -msgstr "" +msgstr "2000 Judith Samson" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -105,6 +108,8 @@ "MATE Documentation Team Mate " "desktop " msgstr "" +"Группа документирования MATE Mate " +"desktop " #. (itstool) path: authorgroup/author #: C/index.docbook:66 @@ -113,6 +118,9 @@ " Sun Microsystems
" "gdocteam@sun.com
" msgstr "" +"Sun Группа документирования GNOME " +" Sun Microsystems
" +"gdocteam@sun.com
" #. (itstool) path: authorgroup/author #: C/index.docbook:75 @@ -121,6 +129,9 @@ "GNOME Documentation Project
" "judith@samsonsource.com
" msgstr "" +"Judith Samson " +"Проект документирования GNOME
" +"judith@samsonsource.com
" #. (itstool) path: authorgroup/author #: C/index.docbook:84 @@ -129,6 +140,9 @@ "GNOME Documentation Team
" "pcutler@gnome.org
" msgstr "" +"Paul Cutler " +"Группа документирования GNOME
" +"pcutler@gnome.org
" #. (itstool) path: authorgroup/author #: C/index.docbook:93 @@ -136,11 +150,13 @@ "Vincent Noel " "
vincent.noel@gmail.com
" msgstr "" +"Vincent Noel " +"
vincent.noel@gmail.com
" #. (itstool) path: revdescription/para #: C/index.docbook:120 msgid "Wolfgang Ulbrich" -msgstr "Вольфганг Ульбрих" +msgstr "Wolfgang Ulbrich" #. (itstool) path: revhistory/revision #: C/index.docbook:116 @@ -148,11 +164,13 @@ "System Log Viewer Manual V1.10 July 2015" " <_:revdescription-1/>" msgstr "" +" Руководство по Программе просмотра системных журналов " +"V1.10 Июль 2015 <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:129 msgid "Paul Cutler pcutler@gnome.org" -msgstr "" +msgstr "Paul Cutler pcutler@gnome.org" #. (itstool) path: revhistory/revision #: C/index.docbook:125 @@ -160,11 +178,13 @@ "System Log Viewer Manual V2.5 October " "2009 <_:revdescription-1/>" msgstr "" +" Руководство по Программе просмотра системных журналов " +"V2.5 Октябрь 2009 <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:139 msgid "Vincent Noel vincent.noel@gmail.com" -msgstr "" +msgstr "Vincent Noel vincent.noel@gmail.com" #. (itstool) path: revhistory/revision #: C/index.docbook:135 @@ -172,12 +192,14 @@ "System Log Viewer Manual V2.4 October " "2005 <_:revdescription-1/>" msgstr "" +" Руководство по Программе просмотра системных журналов " +"V2.4 Октябрь 2005 <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:149 C/index.docbook:159 C/index.docbook:169 #: C/index.docbook:179 msgid "Sun GNOME Documentation Team gdocteam@sun.com" -msgstr "" +msgstr "Группа документирования Sun GNOME gdocteam@sun.com" #. (itstool) path: revhistory/revision #: C/index.docbook:145 @@ -185,6 +207,8 @@ "System Log Viewer Manual V2.3 October " "2002 <_:revdescription-1/>" msgstr "" +" Руководство по Программе просмотра системных журналов " +"V2.3 Октябрь 2002 <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:155 @@ -192,6 +216,8 @@ "System Log Viewer Manual V2.2 August " "2002 <_:revdescription-1/>" msgstr "" +" Руководство по Программе просмотра системных журналов " +"V2.2 Август 2002 <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:165 @@ -199,6 +225,8 @@ "System Log Viewer Manual V2.1 July 2002 " "<_:revdescription-1/>" msgstr "" +" Руководство по Программе просмотра системных журналов " +"V2.1 Июль 2002 <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:175 @@ -206,11 +234,13 @@ "System Log Viewer Manual V2.0 May 2002 " "<_:revdescription-1/>" msgstr "" +" Руководство по Программе просмотра системных журналов " +"V2.0 Май 2002 <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:189 msgid "Judith Samson judith@samsonsource.com" -msgstr "" +msgstr "Judith Samson judith@samsonsource.com" #. (itstool) path: revhistory/revision #: C/index.docbook:185 @@ -218,6 +248,8 @@ "Logview Manual 2000 " "<_:revdescription-1/>" msgstr "" +" Руководство по Программе просмотра журналов " +"2000 <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:197 @@ -235,8 +267,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Чтобы сообщить об ошибке или внести предложение относительно Программы " "просмотра системных журналов или этого руководства, следуйте указаниям на " @@ -312,7 +345,7 @@ #. (itstool) path: varlistentry/term #: C/index.docbook:250 msgid "Applications menu" -msgstr "меню Приложения" +msgstr "Меню Приложения" #. (itstool) path: listitem/para #: C/index.docbook:252 @@ -402,8 +435,8 @@ msgstr "" "По умолчанию Программа просмотра системных " "журналов отслеживает все открытые журналы, и каждое изменение " -"автоматически отображается в главном окне. Подробнее смотрите ." +"автоматически отображается в главном окне. Подробнее смотрите ." #. (itstool) path: sect1/title #: C/index.docbook:299 @@ -440,6 +473,14 @@ "area of the application window. To display another log already opened in " "System Log Viewer, select it in the log list." msgstr "" +"Вы можете открыть столько журналов, сколько пожелаете. " +"Программа просмотра системных журналов отображает" +" только по одному журналу в области Просмотра системных " +"журналов. Список открытых журналов показан в левой части окна " +"приложения. Выбранный в этом списке журнал отображается в основной области " +"окна приложения. Чтобы вывести другой журнал в области " +"Просмотра системных журналов, выберите его в " +"списке журналов." #. (itstool) path: sect2/para #: C/index.docbook:317 @@ -447,6 +488,9 @@ "Note that System Log Viewer also lets you open " "zipped logs (whole filenames end in \".gz\")." msgstr "" +"Обратите внимание, что Программа просмотра системных " +"журналов также позволяет открывать заархивированные журналы " +"(названия файлов которых заканчиваются на «.gz»)." #. (itstool) path: sect2/title #: C/index.docbook:322 @@ -464,6 +508,14 @@ "All menu option, then choose " "EditCopy." msgstr "" +"Чтобы скопировать одну или несколько строк журнала в буфер обмена, просто " +"выберите строки в основной области и воспользуйтесь пунктом меню " +"ПравкаКопировать." +" Если вы хотите скопировать весь журнал в буфер обмена, выделите его целиком" +" с помощью пункта меню " +"ПравкаВыделить " +"всё, затем воспользуйтесь " +"ПравкаКопировать." #. (itstool) path: sect2/title #: C/index.docbook:335 @@ -497,6 +549,15 @@ "the new lines will appear automatically at the end of the log and, after " "five seconds, the log name will turn back to normal in the list." msgstr "" +"Вы можете использовать Программу просмотра системных " +"журналов для мониторинга журналов. По умолчанию, все журналы " +"открытые в Программе просмотра системных журналов" +" отслеживаются на внесённые изменения. Если в журнал, отслеживаемый " +"Программой просмотра системных журналов, " +"добавляются новые строки, то название журнала в общем списке будет выделено " +"жирным шрифтом. Если журнал в данный момент отображается в основной области," +" новые строки автоматически будут появляться в конце журнала, и через пять " +"секунд название журнала вернется к обычному состоянию." #. (itstool) path: sect2/title #: C/index.docbook:355 @@ -506,22 +567,22 @@ #. (itstool) path: sect2/para #: C/index.docbook:356 msgid "Log information are generally displayed in the status bar, including :" -msgstr "" +msgstr "Информация о журнале обычно отображается в строке состояния:" #. (itstool) path: listitem/para #: C/index.docbook:359 msgid "Number of lines in the log." -msgstr "" +msgstr "Количество строк в журнале." #. (itstool) path: listitem/para #: C/index.docbook:361 msgid "Size of the log in bytes." -msgstr "" +msgstr "Размер журнала в байтах." #. (itstool) path: listitem/para #: C/index.docbook:363 msgid "Date the log was last modified." -msgstr "" +msgstr "Дата последнего изменения журнала." #. (itstool) path: sect2/para #: C/index.docbook:366 @@ -530,6 +591,9 @@ "ViewStatusbar" " option." msgstr "" +"Строку состояния можно скрыть или отобразить с помощью настройки меню " +"ВидСтрока " +"состояния." #. (itstool) path: sect2/title #: C/index.docbook:372 @@ -633,8 +697,8 @@ "ИЗМЕНЁННЫХ ВЕРСИЙ ДОКУМЕНТА, ЛЕЖИТ НА ВАС. ЕСЛИ ДОКУМЕНТ ИЛИ ИЗМЕНЁННАЯ " "ВЕРСИЯ ДОКУМЕНТА ИМЕЕТ НЕДОСТАТКИ, ВЫ (А НЕ АВТОР ДОКУМЕНТА ИЛИ ЕГО " "ПОМОЩНИК) БЕРЁТЕ НА СЕБЯ СТОИМОСТЬ ЛЮБОЙ НЕОБХОДИМОЙ ДОРАБОТКИ, КОРРЕКЦИИ " -"ИЛИ ВОССТАНОВЛЕНИЯ. ЭТОТ ОТКАЗ ОТ ГАРАНТИЙ СОСТАВЛЯЕТ ВАЖНУЮ ЧАСТЬ ЛИЦЕНЗИИ." -" НИКАКОЕ ИСПОЛЬЗОВАНИЕ ДОКУМЕНТА ИЛИ ИЗМЕНЁННОЙ ВЕРСИИ ДОКУМЕНТА НЕ " +"ИЛИ ВОССТАНОВЛЕНИЯ. ЭТОТ ОТКАЗ ОТ ГАРАНТИЙ СОСТАВЛЯЕТ ВАЖНУЮ ЧАСТЬ " +"ЛИЦЕНЗИИ.НИКАКОЕ ИСПОЛЬЗОВАНИЕ ДОКУМЕНТА ИЛИ ИЗМЕНЁННОЙ ВЕРСИИ ДОКУМЕНТА НЕ " "ДОПУСКАЕТСЯ БЕЗ ДАННОГО ПРЕДУПРЕЖДЕНИЯ И" #. (itstool) path: listitem/para @@ -655,7 +719,7 @@ "СОГЛАШЕНИЮ ИЛИ ДРУГОЙ ПРИЧИНЕ, АВТОР, СОЗДАТЕЛЬ, ПОМОЩНИКИ ИЛИ " "РАСПРОСТРАНИТЕЛИ ДОКУМЕНТА НЕ НЕСУТ ОТВЕТСТВЕННОСТЬ ЗА ПРЯМОЙ, КОСВЕННЫЙ, " "СПЕЦИАЛЬНЫЙ, СЛУЧАЙНЫЙ ИЛИ ПРЕДНАМЕРЕННЫЙ УЩЕРБ ЛЮБОГО СВОЙСТВА, ВКЛЮЧАЯ, " -"БЕЗ ОГРАНИЧЕНИЯ, ПОТЕРЮ ЖЕЛАНИЯ, РАБОТОСПОСОБНОСТИ, КОМПЬЮТЕРНЫЕ СБОИ ИЛИ " +"БЕЗ ОГРАНИЧЕНИЯ, ПОТЕРЮ РЕПУТАЦИИ, РАБОТОСПОСОБНОСТИ, КОМПЬЮТЕРНЫЕ СБОИ ИЛИ " "ПОЛОМКИ, ИЛИ ЛЮБОЙ ДРУГОЙ УЩЕРБ ИЛИ ПОТЕРИ, ВОЗНИКАЮЩИЕ ВСЛЕДСТВИЕ ИЛИ " "СВЯЗАННЫЕ С ИСПОЛЬЗОВАНИЕМ ДОКУМЕНТА ИЛИ ИЗМЕНЁННЫХ ВЕРСИЙ ДОКУМЕНТА, ДАЖЕ " "ЕСЛИ СТОРОНА БЫЛА УВЕДОМЛЕНА О ВОЗМОЖНОСТИ ТАКОГО УЩЕРБА." @@ -667,6 +731,5 @@ "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" -"ДОКУМЕНТ И ИЗМЕНЁННЫЕ ВЕРСИИ ДОКУМЕНТА ПРЕДОСТАВЛЯЮТСЯ ПРЕДОСТАВЛЯЮТСЯ ПО " -"УСЛОВИЯМ ЛИЦЕНЗИИ БЕСПЛАТНОЙ ДОКУМЕНТАЦИИ GNU С ПОНИМАНИЕМ ЧТО: " -"<_:orderedlist-1/>" +"ДОКУМЕНТ И ИЗМЕНЁННЫЕ ВЕРСИИ ДОКУМЕНТА ПРЕДОСТАВЛЯЮТСЯ ПО УСЛОВИЯМ ЛИЦЕНЗИИ " +"БЕСПЛАТНОЙ ДОКУМЕНТАЦИИ GNU С ПОНИМАНИЕМ, ЧТО: <_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/logview/help/si/index.docbook mate-utils-1.26.1/logview/help/si/index.docbook --- mate-utils-1.26.0/logview/help/si/index.docbook 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/si/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - රේඛීය විධාන - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - භාවිතය - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/si/legal.xml mate-utils-1.26.1/logview/help/si/legal.xml --- mate-utils-1.26.0/logview/help/si/legal.xml 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/si/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/si/si.po mate-utils-1.26.1/logview/help/si/si.po --- mate-utils-1.26.0/logview/help/si/si.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/si/si.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Sinhala (https://www.transifex.com/mate/teams/13566/si/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Sinhala (https://app.transifex.com/mate/teams/13566/si/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/sk/index.docbook mate-utils-1.26.1/logview/help/sk/index.docbook --- mate-utils-1.26.0/logview/help/sk/index.docbook 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,382 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - MATE Dokumentačný projekt - - - GNOME Dokumentačný projekt - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Reakcia - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Úvod - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Začíname - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Príkazový riadok - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Využitie - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/sk/legal.xml mate-utils-1.26.1/logview/help/sk/legal.xml --- mate-utils-1.26.0/logview/help/sk/legal.xml 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Je povolené kopírovať, šíriť a upravovať tento dokument pod podmienkami GNU Free Documentation License(GFDL), verzie 1.1 alebo akýchkoľvek ďaľších verzí poublikovaných Free Softvare Foundation s Nemennými sekciami, bez vrchných a bez spodných textov. Kópiu GFDL môžete nájsť na na odkaz alebo v súbore COPYING-DOCS ktorý je distribuovaný spolu s týmto manuálom. - Tento manuál je časť s kolekcie MATE manuálov ktoré sú distribuované pod GFDL. Ak chcete distribuovať tento manuál bez celej kolekcie, môžete to spraviť ak ku nemu pridáte kópiu licencie, ako je to vysvetlené v sekcií 6 v licencí. - - Veľa z mien používaných spoločnosťami sú ich ochranné známky. V MATE dokumentácií sa používajú mnohé ochranné známky a členovia MATE Dokumentačného projektu ich preto odlišujú začiatočnými písmenami. - - DOKUMENT A ZMENENÉ VERZIE TOHTO DOKUMENTU SA POSKYTUJÚ ZA ĎAĽŠÍCH PODMIENOK GNU FREE DOCUMENTATION LICENSE S POCHOPENÍM TOHTO: - - DOKUMNET SA POSKYTUJE "TAK AKO JE", BEZ ZÁRUKY AKÉHOKOĽVEK DRUHU, ČI UŽ VÝSLOVNÉHO, VYPLÝVAJÚCEHO, A BEZ ZÁRUKY ŽE TENTO DOKUMENT JE BEZ AKÝCHKOĽVEK CHÝB, ALEBO VHODNÝ PRE KONKRÉTNY ÚČEL ALEBO OPRÁVNENIE. VŠETKA ZODPOVEDNOSŤ ZA KVALITU, PRESNOSŤ A ÚČINNOSŤ DOKUMENTU JE NA VÁS. AK SA DOKUMENT ALEBO JEHO MODIFIKÁCIA UKÁŽE PREUKÁZATEĽNE VADNÁ, MÔŽETE(ALE NIE AK STE POČIATOČNÝ AUTOR, AUTOR ALEBO AKÝKOĽVEK PRISPIEVATEĽ) PREVZIAŤ NÁKLADY NA UDRŽIAVANIE, OPRAVOVANIE A OPRAVU. TOTO VYHLÁSENIE SA POKLADÁ ZA NEODDELITELNÚ SÚČASŤ LICENCIE. NA POUŽÍVANIE DOKUMENTOV ALEBO ICH ZMENENÝCH VERZÍ SA VZŤAHUJE TÁTO LICENCIA OKREM TOHTO VYLÚČENIA ZODPOVEDNOSTI; A - - - V ŽIADNOM PRÍPADE A ZA ŽIADNYCH PRÁVNYCH TEÓRIÍ, ČI ÚMYSELNÉ UBLÍŽENIE (AJ Z NEDBANLIVOSTI), ZMLUVOU, ALEBO INAK SA AUTOR, POČIATOČNÝ SPISOVATEĽ, VŠETCI PRISPIEVATELIA, DISTRIBÚTOR DOKUMENTU ALEBO JEHO MODIFIKOVANEJ VERZIE, ALEBO DODÁVATEĽ AKEJKOĽVEK STRANY, NEZODPOVEDÁ ŽIADNEJ OSOBE ZA AKÉKOĽVEK PRIAME, NEPRIAME, ZVLÁŠTNE, NÁHODNÉ, ALEBO VYPLÝVAJÚCE ŠKODY AKÉHOKOĽVEK CHARAKTERU, AKO OBMEDZENIA, STRATA DOBRÉHO MENA, PRERUŠENIE PRÁCE, ZLYHANIE POČÍTAČA ČI PORUCHY, ALEBO AKÉKOĽVEK INÉ ŠKODY A STRATY KTORÉ VZNIKNÚ, ALEBO SA BUDÚ VZŤAHOVAŤ NA POUŽÍVANIE TOHOTO DOKUMENTU ČI ZMENENÝCH VERZIÍ TOHTO DOKUMENTU AJ KEĎ STRANA BOLA INFORMOVANÁ O MOŽNOSTI TAKÝCHTO ŠKÔD. - - - diff -Nru mate-utils-1.26.0/logview/help/sk/sk.po mate-utils-1.26.1/logview/help/sk/sk.po --- mate-utils-1.26.0/logview/help/sk/sk.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sk/sk.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Dušan Kazik , 2018 -# Stefano Karapetsas , 2018 -# Vendelín Slezák , 2018 -# Ján Ďanovský , 2020 +# Ján Ďanovský , 2021 +# Dušan Kazik , 2021 +# Stefano Karapetsas , 2021 +# Vendelín Slezák , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Ján Ďanovský , 2020\n" -"Language-Team: Slovak (https://www.transifex.com/mate/teams/13566/sk/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Vendelín Slezák , 2021\n" +"Language-Team: Slovak (https://app.transifex.com/mate/teams/13566/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -203,8 +203,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/sl/index.docbook mate-utils-1.26.1/logview/help/sl/index.docbook --- mate-utils-1.26.0/logview/help/sl/index.docbook 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sl/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,382 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - MATE Projektna dokumentacija - - - GNOME Projektna dokumentacija - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Odziv - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Uvod - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Ukazna vrstica - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Uporaba - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/sl/legal.xml mate-utils-1.26.1/logview/help/sl/legal.xml --- mate-utils-1.26.0/logview/help/sl/legal.xml 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sl/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/sl/sl.po mate-utils-1.26.1/logview/help/sl/sl.po --- mate-utils-1.26.0/logview/help/sl/sl.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sl/sl.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Damir Mevkić , 2019 -# Helena S , 2020 -# Arnold Marko , 2020 +# Stefano Karapetsas , 2021 +# Damir Mevkić 52K , 2021 +# Helena S , 2021 +# Arnold Marko , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Arnold Marko , 2020\n" -"Language-Team: Slovenian (https://www.transifex.com/mate/teams/13566/sl/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Arnold Marko , 2021\n" +"Language-Team: Slovenian (https://app.transifex.com/mate/teams/13566/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -43,7 +43,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:34 msgid "2003 Sun Microsystems" -msgstr "2003 Sun Microsystems" +msgstr "2003 Sun Microsystems" #. (itstool) path: articleinfo/copyright #: C/index.docbook:38 @@ -54,7 +54,7 @@ #. (itstool) path: revdescription/para #: C/index.docbook:51 C/index.docbook:122 msgid "MATE Documentation Project" -msgstr "MATE Projektna dokumentacija" +msgstr "MATE projekt dokumentacije" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -62,7 +62,7 @@ #: C/index.docbook:152 C/index.docbook:162 C/index.docbook:172 #: C/index.docbook:182 C/index.docbook:192 msgid "GNOME Documentation Project" -msgstr "GNOME Projektna dokumentacija" +msgstr "GNOME Projekt dokumentacije" #. (itstool) path: authorgroup/author #: C/index.docbook:60 @@ -198,8 +198,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/sq/index.docbook mate-utils-1.26.1/logview/help/sq/index.docbook --- mate-utils-1.26.0/logview/help/sq/index.docbook 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sq/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - Dokumentimi Projektit MATE - - - Dokumentimi Projektit GNOME - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Sugjerime - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - paraqitje - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Rreshti i komandës - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Përdorimi - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/sq/legal.xml mate-utils-1.26.1/logview/help/sq/legal.xml --- mate-utils-1.26.0/logview/help/sq/legal.xml 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sq/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,70 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - Ky manual është pjesë e një koleksioni të manualeve të MATE të shpërndara nën GFDL. Nëse dëshironi ta shpërndani këtë manual veçmas nga koleksioni, mund ta bëni duke shtuar një kopje të licencës në manual, siç përshkruhet në seksionin 6 të licencës. - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/sq/sq.po mate-utils-1.26.1/logview/help/sq/sq.po --- mate-utils-1.26.0/logview/help/sq/sq.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sq/sq.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Alban , 2018 -# Indrit Bashkimi , 2018 +# Stefano Karapetsas , 2021 +# Alban , 2021 # Ardit Dani , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" "Last-Translator: Ardit Dani , 2021\n" -"Language-Team: Albanian (https://www.transifex.com/mate/teams/13566/sq/)\n" +"Language-Team: Albanian (https://app.transifex.com/mate/teams/13566/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,6 +21,7 @@ msgctxt "_" msgid "translator-credits" msgstr "" +"Ardit Dani \n" "Elian Myftiu \n" "Indrit Bashkimi \n" "Laurent Dhima " @@ -57,7 +57,7 @@ #. (itstool) path: revdescription/para #: C/index.docbook:51 C/index.docbook:122 msgid "MATE Documentation Project" -msgstr "Dokumentimi Projektit MATE" +msgstr "Dokumentacion Projekti MATE" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -201,8 +201,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/sr/index.docbook mate-utils-1.26.1/logview/help/sr/index.docbook --- mate-utils-1.26.0/logview/help/sr/index.docbook 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,224 +0,0 @@ - - - - - - -]> - - -
- - - - Упутство прегледника системског дневника - - - Прегледач системског дневника је графичко корисничко сучеље за преглед и праћење датотека системског дневника - - - 2015-2021 Пројекат Мејтове документације - 2003 Sun Microsystems - 2000 Џудит Самсон - - - Пројекат Мејтове документације - - - Пројекат Гномове документације - - - - - - Тим Мејтове документације Мејтова радна површ - Sun Тим Гномове документације Sun Microsystems
gdocteam@sun.com
- - Џудит Самсон Пројекат Гномове документације
judith@samsonsource.com
- - Пол Катлер Тим Гномове документације
pcutler@gnome.org
- - Винсент Ноел
vincent.noel@gmail.com
- - -
- - - Упутство прегледника системског дневника и1.10 Јул 2015 - Волфганг Улбрих - Пројекат Мејтове документације - - Упутство прегледника системског дневника и2.5 Октобар 2009 - Пол Катлер pcutler@gnome.org - Пројекат Гномове документације - - Упутство прегледника системског дневника и2.4 Октобар 2005 - Винсент Ноел vincent.noel@gmail.com - Пројекат Гномове документације - - Упутство прегледника системског дневника и2.3 Октобар 2002 - Sun тим Гномове документације gdocteam@sun.com - Пројекат Гномове документације - - Упутство прегледника системског дневника и2.2 Август 2002 - Sun тим Гномове документације gdocteam@sun.com - Пројекат Гномове документације - - Упутство прегледника системског дневника и2.1 Јул 2002 - Sun тим Гномове документације gdocteam@sun.com - Пројекат Гномове документације - - Упутство прегледника системског дневника и2.0 Мај 2002 - Sun тим Гномове документације gdocteam@sun.com - Пројекат Гномове документације - - Упутство прегледника дневника 2000 - Џудит Самсон judith@samsonsource.com - Пројекат Гномове документације - - - - Ово упуство описује издање 1.10 Прегледника системског дневника. - - Примедбе - Да пријавите грешку или дате предлог у вези Прегледника системског дневника или овог упутства, пратите упутства на Мејтовој страници примедби. - - -
- - Прегледач системског дневника - - - - - - Увод - - Прегледач системског дневника је графички, изборником вођен прегледник који можете да користите да прегледате и пратите дневнике система. Прегледач системског дневника долази са неколико функција које вам могу помоћи да управљате дневницима, укључујући праћење дневника и приказ статистика дневника. - - Прегледач системског дневника је користан ако сте нови у администрацији система јер обезбеђује лакши, пријатељскији приказ ваших дневника од текстуалног приказа датотеке дневника. Такође је користан за искусније администраторе, јер садржи праћење које вам омогућава да непрекидно пратите важне дневнике. - - Прегледач системског дневника је користан само онима који имају приступ датотекама системског дневника, које углавном захтевају администраторски приступ. - - - - - Први кораци - - Можете да покренете Прегледач системског дневника на следеће начине: - - - Изборник „Програми“ - - Изаберите „Системске алаткеПрегледач системског дневника“. - - - - Наредба - - Упушите „mate-system-log“, затим притисните Унеси. - - - - - - - Када покренете „Прегледача системског дневника“, биће приказан следећи прозор. - - -
- Прозор Прегледача системског дневника - - Приказује главни прозор Прегледача системског дневника. Садржи траку изборника, област за приказ, траке клизача, и траку стања. - -
- - Када први пут покренете Прегледача системског дневника, програм приказује неколико датотека дневника по основи (као што је „/var/log/messages“). Отворени дневници су излистани на левој страни прозора програма. Дневник изабран са овог списка је приказан у главној површи прозора програма. - - По основи, Прегледач системског дневника прати сваки отворени дневник, и свака промена се аутоматски појављује у главном прозору. Видите за више информација. - -
- - - - - Употреба - - - Прегледање дневника - Да прегледате дневник, изаберите „ДатотекаОтвори“. У прозорчету „Отвори дневник“, изаберите дневник који желите да отворите, затим кликните на „Отвори“. Користите клизаче за кретање кроз дневник. - - Можете да отворите онолико дневника колико желите. „Прегледач системског дневника“ приказује један дневник у једно време у прозору „Прегледача системског дневника“. Отворени дневници су исписани на левој страни прозора програма. Дневник изабран на овом списку је приказан у главној површи прозора програма. Да прикажете други дневник већ отворен у „Прегледачу системског дневника“, изаберите га са списка дневника. - - Знајте да вам „Прегледач системског дневника“ такође омогућава да отворите запаковане дневнике (читави називи датотека се завршавају на „.gz“). - - - - Умножавање редова дневника у оставу - Да умножите један или више редова дневника у оставу, само изаберите редове у главној површи и изаберите опцију изборника „УредиУмножи“. Ако желите да умножите читав дневник у оставу, изаберите га опцијом изборника „УредиИзабери све“, затим изаберите „УредиУмножи“. - - - - Скривање бочне површи - Да сакријете леву бочну површ, која садржи списак дневника и календар, само изаберите опцију изборника „ПрегледБочна површ“. - - - - Праћење дневника - Можете да користите „Прегледач системског дневника“ за праћење дневника. По основи, сви дневници отворени у „Прегледачу системског дневника“ се прате за променама. Ако су нови редови додати у дневник праћен „Прегледачем системског дневника“, назив дневника ће се појавити подебљаним словима на списку дневника. Ако је дневник тренутно приказан у главној површи, нови редови ће се аутоматски појавити на крају дневника и, након пет секунди, назив дневника ће постати обичан на списку. - - - - - Прегледање информација дневника - Информације дневника се уопштено приказују на траци стања, укључујући: - - Број редова у дневнику. - - Величину дневника у бајтовима. - - Датум последње промене дневника. - - - Трака стања може бити приказана или скривена коришћењем опције „ПрегледТрака стања“. - - - - Затварање дневника - Да затворите дневник, изаберите „ДатотекаЗатвори“. - - - - Излазак из Прегледача системског дневника - Да изађете из „Прегледача системског дневника“, изаберите „ДатотекаИзађи“. - - - - -
diff -Nru mate-utils-1.26.0/logview/help/sr/legal.xml mate-utils-1.26.1/logview/help/sr/legal.xml --- mate-utils-1.26.0/logview/help/sr/legal.xml 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Дозвољено је умножавање, расподела, вршење измена овог документа под условима Гну-ове Лиценце Слободне Документације (ГЛСД), верзије 1.1 или било које касније верзије без непромењивих одељака, текста на насловној и последњој страни, а коју је објавила Задужбина Слободног Софтвера. Примерак ГЛСД можете пронаћи на овој веза или у датотеци „COPYING-DOCS“ која је приложена уз ово упутство. - Ово упутство је део скупа Мејтових докумената објављених под GFDL. Уколико желите да расподељујете ово упутство одвојено од скупа, то можете урадити додавањем примерка лиценце документу, како је описано у одељку 6 саме лиценце. - - Многи називи које компаније користе у циљу препознатљивости својих производа и услуга представљају робне марке. Када (уколико) се такви називи појављују(спомињу) у било којем Мејтовом документу, а чланови Мејтовог документационог пројекта имају сазнања о томе, тада су називи исписани великим словима или са великим почетним словима. - - OVAJ DOKUMENT I NJEGOVE IZMENJENE VERZIJE SU DOSTUPNE POD USLOVIMA GNU-OVE SLOBODNE DOKUMENTACIONE DOZVOLE UZ DODATNU SAGLASNOST DA: - - ДОКУМЕНТ ЈЕ ДОСТУПАН СА СВИМ СВОЈИМ ДОБРИМ И ЛОШИМ СТРАНАМА БЕЗ БИЛО КАКВОГ ЈАМСТВА, БИЛО ОНО ИЗРЕЧЕНО ИЛИ НЕ, УКЉУЧУЈУЋИ БЕЗ ОГРАНИЧЕЊА, ЈАМСТВО ДА ЈЕ ОВАЈ ДОКУМЕНТ ИЛИ ЊЕГОВА ИЗМЕЊЕНА ВЕРЗИЈА БЕЗ НЕДОСТАТАКА, СПРЕМАН ЗА ТРЖИШТЕ, СВРСИСХОДАН И НЕ НАРУШАВА ЗАКОНСКЕ НОРМЕ. ЦЕЛОКУПАН РИЗИК КОЈИ СЕ ОДНОСИ НА КВАЛИТЕТ, ТАЧНОСТ И ДОМЕТ (УЧИНАК) ДОКУМЕНТА ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ СНОСИ КОРИСНИК. УКОЛИКО СЕ У БИЛО КОЈЕМ ДОКУМЕНТУ ИЛИ ЊЕГОВОЈ ИЗМЕЊЕНОЈ ВЕРЗИЈИ ПОЈАВИ НЕДОСТАТАК (ГРЕШКА) БИЛО КОЈЕ ВРСТЕ, КОРИСНИК (А НЕ АУТОР ИЗВОРНЕ ВЕРЗИЈЕ, БИЛО КОЈИ ДРУГИ АУТОР ИЛИ САРАДНИК) СНОСИ СВЕ ТРОШКОВЕ НЕОПХОДНОГ СЕРВИСИРАЊА, ПОПРАВКЕ ИЛИ ИСПРАВКЕ. ОВО ОГРАНИЧЕЊЕ ЈАМСТВА ПРЕДСТАВЉА САСТАВНИ ДЕО ОВЕ ДОЗВОЛЕ. УПОТРЕБА БИЛО КОЈЕГ ДОКУМЕНТА ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ НИЈЕ ДОЗВОЉЕНА ОСИМ ПОД УСЛОВИМА ОВОГ ОГРАНИЧЕЊА ЈАМСТВА. - - - НИ ПОД КАКВИМ ОКОЛНОСТИМА ИЛИ ЗАКОНУ, БИЛО ЗБОГ КРШЕЊА (ИЛИ НЕМАРА) УГОВОРА, ИЛИ НА БИЛО КОЈИ ДРУГИ НАЧИН, АУТОР (ПРВОБИТНЕ ВЕРЗИЈЕ), САРАДНИК ИЛИ ИСПОРУЧИВАЛАЦ ДОКУМЕНТА ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ, НИТИ ДОБАВЉАЧ БИЛО КОЈЕ ОД НАВЕДЕНИХ СТРАНА НЕЋЕ СНОСИТИ МАТЕРИЈАЛНУ ОДГОВОРНОСТ ЗА НАСТАЛА ДИРЕКТНА, ИНДИРЕКТНА, ПОСЕБНА, СЛУЧАЈНА ИЛИ ТИМЕ НАСТАЛА ОШТЕЋЕЊА БИЛО КОЈЕ ВРСТЕ УКЉУЧУЈУЋИ, БЕЗ ОГРАНИЧЕЊА, ШТЕТУ НАНЕСЕНУ УГЛЕДУ ФИРМЕ, ПРЕСТАНКУ ПРОИЗВОДЊЕ, ОТКАЗИВАЊЕ РАДА РАЧУНАРА ИЛИ КВАРА КАО И ЗА СВЕ ОСТАЛЕ ШТЕТЕ ИЛИ ГУБИТКЕ НАСТАЛЕ УСЛЕД КОРИШЋЕЊА ДОКУМЕНТА И ЊЕГОВИХ ИЗМЕЊЕНИХ ВЕРЗИЈА ЧАК И АКО ЈЕ ОШТЕЋЕНА СТРАНА БИЛА ОБАВЕШТЕНА О МОГУЋНОСТИ НАСТАНКА ТЕ ШТЕТЕ. - - - diff -Nru mate-utils-1.26.0/logview/help/sr/sr.po mate-utils-1.26.1/logview/help/sr/sr.po --- mate-utils-1.26.0/logview/help/sr/sr.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sr/sr.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 # Мирослав Николић , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" "Last-Translator: Мирослав Николић , 2021\n" -"Language-Team: Serbian (https://www.transifex.com/mate/teams/13566/sr/)\n" +"Language-Team: Serbian (https://app.transifex.com/mate/teams/13566/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,7 +18,10 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Мирослав Николић " +msgstr "" +"Мирослав Николић ; 2012—2021.\n" +"\n" +"http://prevod.org — превод на српски језик." #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -228,8 +230,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Да пријавите грешку или дате предлог у вези Прегледника системског дневника " "или овог упутства, пратите упутства на Applications menu" -msgstr "Изборник „Програми“" +msgstr "Изборник „Програми“" #. (itstool) path: listitem/para #: C/index.docbook:252 @@ -317,7 +320,7 @@ #. (itstool) path: varlistentry/term #: C/index.docbook:256 msgid "Command line" -msgstr "Наредба" +msgstr "Терминал" #. (itstool) path: listitem/para #: C/index.docbook:258 @@ -397,7 +400,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:299 msgid "Usage" -msgstr "Употреба" +msgstr "Коришћење" #. (itstool) path: sect2/title #: C/index.docbook:302 @@ -583,7 +586,7 @@ #. (itstool) path: para/ulink #: C/legal.xml:9 msgid "link" -msgstr "веза" +msgstr "вези" #. (itstool) path: legalnotice/para #: C/legal.xml:2 @@ -596,8 +599,8 @@ "with this manual." msgstr "" "Дозвољено је умножавање, расподела, вршење измена овог документа под " -"условима Гну-ове Лиценце Слободне Документације (ГЛСД), верзије 1.1 или било" -" које касније верзије без непромењивих одељака, текста на насловној и " +"условима Гнуове Лиценце Слободне Документације (ГЛСД), верзије 1.1 или било " +"које касније верзије без непромењивих одељака, текста на насловној и " "последњој страни, а коју је објавила Задужбина Слободног Софтвера. Примерак " "ГЛСД можете пронаћи на овој <_:ulink-1/> или у датотеци „COPYING-DOCS“ која " "је приложена уз ово упутство." @@ -610,7 +613,7 @@ "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" -"Ово упутство је део скупа Мејтових докумената објављених под GFDL. Уколико " +"Ово упутство је део скупа Мејтових докумената објављених под ГСДД. Уколико " "желите да расподељујете ово упутство одвојено од скупа, то можете урадити " "додавањем примерка лиценце документу, како је описано у одељку 6 саме " "лиценце." @@ -625,8 +628,8 @@ "capital letters." msgstr "" "Многи називи које компаније користе у циљу препознатљивости својих производа" -" и услуга представљају робне марке. Када (уколико) се такви називи " -"појављују(спомињу) у било којем Мејтовом документу, а чланови Мејтовог " +" и услуга представљају робне марке. Када (уколико) се такви називи појављују" +" (спомињу) у било којем Мејтовом документу, а чланови Мејтовог " "документационог пројекта имају сазнања о томе, тада су називи исписани " "великим словима или са великим почетним словима." @@ -656,7 +659,7 @@ "ТРОШКОВЕ НЕОПХОДНОГ СЕРВИСИРАЊА, ПОПРАВКЕ ИЛИ ИСПРАВКЕ. ОВО ОГРАНИЧЕЊЕ " "ЈАМСТВА ПРЕДСТАВЉА САСТАВНИ ДЕО ОВЕ ДОЗВОЛЕ. УПОТРЕБА БИЛО КОЈЕГ ДОКУМЕНТА " "ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ НИЈЕ ДОЗВОЉЕНА ОСИМ ПОД УСЛОВИМА ОВОГ ОГРАНИЧЕЊА" -" ЈАМСТВА." +" ЈАМСТВА; И" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -689,5 +692,5 @@ "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" -"OVAJ DOKUMENT I NJEGOVE IZMENJENE VERZIJE SU DOSTUPNE POD USLOVIMA GNU-OVE " -"SLOBODNE DOKUMENTACIONE DOZVOLE UZ DODATNU SAGLASNOST DA: <_:orderedlist-1/>" +"ОВАЈ ДОКУМЕНТ И ЊЕГОВА ИЗМЕЊЕНА ИЗДАЊА ЈЕ ДОСТУПАН ПОД УСЛОВИМА ГНУОВЕ " +"СЛОБОДНЕ ДОКУМЕНТАЦИОНЕ ДОЗВОЛЕ УЗ ДОДАТНУ САГЛАСНОСТ ДА: <_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/logview/help/sr@latin/index.docbook mate-utils-1.26.1/logview/help/sr@latin/index.docbook --- mate-utils-1.26.0/logview/help/sr@latin/index.docbook 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sr@latin/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Uvod - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Naredba - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Upotreba - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/sr@latin/legal.xml mate-utils-1.26.1/logview/help/sr@latin/legal.xml --- mate-utils-1.26.0/logview/help/sr@latin/legal.xml 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sr@latin/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/sr@latin/sr@latin.po mate-utils-1.26.1/logview/help/sr@latin/sr@latin.po --- mate-utils-1.26.0/logview/help/sr@latin/sr@latin.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sr@latin/sr@latin.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Ivan Pejić , 2018 +# Stefano Karapetsas , 2021 +# Ivan Pejić , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Ivan Pejić , 2018\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/mate/teams/13566/sr@latin/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Ivan Pejić , 2021\n" +"Language-Team: Serbian (Latin) (https://app.transifex.com/mate/teams/13566/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -199,8 +199,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/sv/index.docbook mate-utils-1.26.1/logview/help/sv/index.docbook --- mate-utils-1.26.0/logview/help/sv/index.docbook 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sv/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,373 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - 2000 Judith Samson - - - Dokumentationsprojekt för MATE - - - Dokumentationsprojekt för GNOME - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - Vincent Noel
vincent.noel@gmail.com
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Återkoppling - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduktion - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Program-menyn - - Choose System ToolsLog File Viewer. - - - - Kommandorad - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Användning - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/sv/legal.xml mate-utils-1.26.1/logview/help/sv/legal.xml --- mate-utils-1.26.0/logview/help/sv/legal.xml 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sv/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - Denna handbok utgör en av flera MATE-handböcker som distribueras under villkoren i GFDL. Om du vill distribuera denna handbok separat från övriga handböcker kan du göra detta genom att lägga till en kopia av licensavtalet i handboken enligt instruktionerna i avsnitt 6 i licensavtalet. - - Flera namn på produkter och tjänster är registrerade varumärken. I de fall dessa namn förekommer i MATE-dokumentation - och medlemmarna i MATE-dokumentationsprojektet är medvetna om dessa varumärken - är de skrivna med versaler eller med inledande versal. - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/sv/sv.po mate-utils-1.26.1/logview/help/sv/sv.po --- mate-utils-1.26.0/logview/help/sv/sv.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/sv/sv.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,20 @@ # # Translators: -# Kristoffer Grundström , 2018 -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Daniel Gullbransen, 2018 -# crash , 2019 -# eckeman , 2020 -# Luna Jernberg , 2020 +# Kristoffer Grundström , 2021 +# Luna Jernberg , 2021 +# Stefano Karapetsas , 2021 +# crash , 2021 +# Wolfgang Ulbrich , 2021 +# eckeman , 2021 +# Daniel Gullbransen, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Luna Jernberg , 2020\n" -"Language-Team: Swedish (https://www.transifex.com/mate/teams/13566/sv/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Daniel Gullbransen, 2021\n" +"Language-Team: Swedish (https://app.transifex.com/mate/teams/13566/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,7 +24,7 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Kristoffer Grundström " +msgstr "Kristoffer Grundström " #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -203,8 +203,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ta/index.docbook mate-utils-1.26.1/logview/help/ta/index.docbook --- mate-utils-1.26.0/logview/help/ta/index.docbook 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ta/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - அறிமுகம் - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - கட்டளை வரி - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - பயன்பாடு - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ta/legal.xml mate-utils-1.26.1/logview/help/ta/legal.xml --- mate-utils-1.26.0/logview/help/ta/legal.xml 2021-08-05 19:48:51.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ta/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/ta/ta.po mate-utils-1.26.1/logview/help/ta/ta.po --- mate-utils-1.26.0/logview/help/ta/ta.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ta/ta.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Tamil (https://www.transifex.com/mate/teams/13566/ta/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Tamil (https://app.transifex.com/mate/teams/13566/ta/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -198,8 +198,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/te/index.docbook mate-utils-1.26.1/logview/help/te/index.docbook --- mate-utils-1.26.0/logview/help/te/index.docbook 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/te/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,398 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Praveen Illa - - mail2ipn@gmail.com - - - - 2014 - - Praveen Illa - -
- - - System Log Viewer - - - - - - - ఉపోద్ఘాతము - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - ఆదేశ పంక్తి - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - వినిమయం - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/te/legal.xml mate-utils-1.26.1/logview/help/te/legal.xml --- mate-utils-1.26.0/logview/help/te/legal.xml 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/te/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/te/te.po mate-utils-1.26.1/logview/help/te/te.po --- mate-utils-1.26.0/logview/help/te/te.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/te/te.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# ప్రవీణ్ ఇళ్ళ , 2018 -# Stefano Karapetsas , 2018 +# ప్రవీణ్ ఇళ్ళ , 2021 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Telugu (https://www.transifex.com/mate/teams/13566/te/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Telugu (https://app.transifex.com/mate/teams/13566/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -196,8 +196,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/th/index.docbook mate-utils-1.26.1/logview/help/th/index.docbook --- mate-utils-1.26.0/logview/help/th/index.docbook 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/th/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,398 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - โครงการเอกสาร MATE - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - ร่วมเสนอแนะ - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Akom Chotiphantawanon - - knight2000@gmail.com - - - - 2016 - - Akom Chotiphantawanon - -
- - - System Log Viewer - - - - - - - เกริ่นนำ - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - เมนู โปรแกรม - - Choose System ToolsLog File Viewer. - - - - บรรทัดคำสั่ง - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - วิธีใช้ - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/th/legal.xml mate-utils-1.26.1/logview/help/th/legal.xml --- mate-utils-1.26.0/logview/help/th/legal.xml 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/th/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - คู่มือนี้ เป็นส่วนหนึ่งของชุดคู่มือ MATE ที่เผยแพร่ภายใต้ GFDL ถ้าคุณต้องการเผยแพร่คู่มือนี้แยกต่างหากจากชุด คุณสามารถทำได้โดยเพิ่มสำเนาของสัญญาอนุญาตไปกับคู่มือ ตามที่อธิบายในข้อ 6 ของสัญญาอนุญาต - - มีชื่อหลายชื่อที่บริษัทต่างๆ ใช้แยกความแตกต่างของผลิตภัณฑ์และบริการของตนจากบริษัทอื่น และอ้างเป็นเครื่องหมายการค้า ที่ใดก็ตามที่ชื่อเหล่านั้นปรากฏในเอกสารของ MATE และสมาชิกโครงการเอกสาร MATE ได้รับทราบเกี่ยวกับเครื่องหมายการค้าเหล่านั้น ชื่อเหล่านั้นจะเขียนด้วยตัวพิมพ์ใหญ่ หรือขึ้นต้นด้วยตัวพิมพ์ใหญ่ - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/th/th.po mate-utils-1.26.1/logview/help/th/th.po --- mate-utils-1.26.0/logview/help/th/th.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/th/th.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Akom , 2018 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 +# Akom , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Akom , 2018\n" -"Language-Team: Thai (https://www.transifex.com/mate/teams/13566/th/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Akom , 2021\n" +"Language-Team: Thai (https://app.transifex.com/mate/teams/13566/th/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,7 +20,7 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Akom Chotiphantawanon , 2016" +msgstr "Akom Chotiphantawanon " #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/tr/index.docbook mate-utils-1.26.1/logview/help/tr/index.docbook --- mate-utils-1.26.0/logview/help/tr/index.docbook 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/tr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - 2000 Judith Samson - - - MATE Belgelendirme Projesi - - - GNOME Belgelendirme Projesi - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - Vincent Noel
vincent.noel@gmail.com
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Geri bildirim - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Fatih Demir - - kabalak@kabalak.net - - - - 2000. - - Fatih Demir - - - - - Görkem Çetin - - gorkem@gelecek.com.tr - - - - 2002/2003. - - Görkem Çetin - - - - - Barış Çicek - - baris@teamforce.name.tr - - - - 2004 - - 2008 - - 2009. - - Barış Çicek - - - - - Muhammet Kara - - muhammet.k@gmail.com - - - - 2011. - - Muhammet Kara - - - - - hsngrms - - dead-bodies-everywhere@hotmail.com - - - - 2012 - - hsngrms - - - - - Atilla Öntaş - - tarakbumba@gmail.com - - - - 2014 - - Atilla Öntaş - - - - - Emre FIRAT - - emrefirat93@gmail.com - - - - 2013 - - 2014 - - 2015 - - Emre FIRAT - -
- - - System Log Viewer - - - - - - - Başlangıç - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Başlangıç - - You can start System Log Viewer in the following ways: - - - - Uygulamalar menüsü - - Choose System ToolsLog File Viewer. - - - - Komut satırı - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Kullanım - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/tr/legal.xml mate-utils-1.26.1/logview/help/tr/legal.xml --- mate-utils-1.26.0/logview/help/tr/legal.xml 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/tr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Bu belgeyi kopyalama, dağıtma ve/veya değiştirme izni, değişmez bölümsüz, ön kapak metinsiz ve arka kapak metinsiz şekilde GNU Free Documentation License (GNU Özgür Belgeleme Lisansı, GFDL), sürüm 1.1 ya da Free Software Foundation tarafından yayınlanan daha yeni bir sürüm kapsamında verilmiştir. GFDL'in bir kopyasını bu bağlantı ya da bu kılavuzla dağıtılan COPYING-DOCS dosyasında bulabilirsiniz. - Bu kılavuz, GFDL (GNU Özgür Belgelendirme Lisansı) kapsamında yayınlanan MATE kılavuzları koleksiyonunun bir parçasıdır. Bu kılavuzu koleksiyondan ayrı bir biçimde dağıtmak istiyorsanız, lisansın 6. bölümünde açıklandığı gibi kılavuza lisansın bir kopyasını ilave ederek yapabilirsiniz. - - Firmalar tarafından ürün ve hizmetlerinin ayırt edilmeleri için kullandıkları isimlerin birçoğu tescilli marka olarak ayrılmıştır. Bu isimlerin MATE belgelendirilmesinde yer alması ve MATE Belgelendirme Projesi mensupları bu tescilli markalardan haberdar edildikleri durumda, isimlerin ilk harfi ya da tamamı büyük harflerle yazılır. - - BELGE VE BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİ GNU FREE DOCUMENTATION LICENSE (YANİ GNU ÖZGÜR BELGE LİSANSI) KAPSAMINDA, ŞU KONULARDA ANLAŞMAYLA SUNULMUŞTUR: - - BELGE OLDUĞU GİBİ, AÇIK VEYA ZIMNİ HİÇBİR TÜRLÜ GARANTİ OLMADAN SUNULMUŞTUR, Kİ BUNA SINIRLAMA OLMAKSIZIN BELGE VEYA BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİNİN BELLİ BİR AMACA UYGUN OLMALARI, KUSURDAN ARINMIŞ OLMALARI VEYA HAK İHLALİNDE BULUNMAMALARI GARANTİLERİ OLMAMASI DA DAHİLDİR. BELGE VE BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİNİN KALİTESİ, DOĞRULUĞU VE PERFORMANSINA İLİŞKİN TÜM RİSK SİZE AİTTİR. HERHANGİ BİR BELGE VEYA BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMÜNÜN KUSURLU OLMASI HALİNDE, GEREKLİ SERVİS, ONARIM VE DÜZELTMENİN ÜCRETİNİ SİZ ÜSTLENİRSİNİZ (İLK YAZAR, HAZIRLAYAN VEYA HERHANGİ BİR KATILIMCI DEĞİL). BU GARANTİ REDDİ BU LİSANSIN TEMEL BİR PARÇASINI OLUŞTURMAKTADIR. HERHANGİ BİR BELGENİN VEYA BELGENİN DEĞİŞTİRİLMİŞ BİR SÜRÜMÜNÜN KULLANIMINA SADECE BU GARANTİ REDDİ ALTINDA İZİN VERİLMİŞTİR; VE - - - HİÇBİR KOŞULDA VE HİÇBİR YASAL TEORİDE, Kİ BU TAZMİNAT YÜKÜMLÜLÜĞÜ (İHMAK DE DAHİL), KONTRATO VEYA BAŞKA BİR ŞEKİLİ DE İÇERİR, BELGEYİ VE BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİNİ İLK YAZAN, YAZAR, HERHANGİ BİR KATKIDA BULUNAN, DAĞITAN VEYA BU TARAFLARIN HERHANGİ BİR TEDARİKÇİSİ HERHANGİ DOĞRUDAN, DOLAYLI, ÖZEL, ARIZİ ZARARLARDAN HERHANGİ BİR KİŞİ SORUMLU DEĞİLDİR, Kİ BUNA BU TÜR KAYIPLAR HAKKINDA BU TARFAFIN BİLGİLENDİRİLMİŞ OLMASI GEREKSE BİLE SINIRLANMAMIŞ OLMAK ÜZERE ŞEREFİYE KAYBI, İŞ DURMASI, BİLGİSAYAR BOZULMASI VE YANLIŞ ÇALIŞMASI VEYA BELGENİN VE BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİNİN KULLANIMINDAN VEYA KULLANIMIYLA İLİŞKİLİ TÜM KAYIPLAR DAHİLDİR. - - - diff -Nru mate-utils-1.26.0/logview/help/tr/tr.po mate-utils-1.26.1/logview/help/tr/tr.po --- mate-utils-1.26.0/logview/help/tr/tr.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/tr/tr.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,18 +1,20 @@ # # Translators: -# mauron, 2018 -# Stefano Karapetsas , 2018 -# Butterfly , 2018 -# Murat Servan Kahraman, 2018 -# Yaşar Çiv , 2018 +# mauron, 2021 +# Stefano Karapetsas , 2021 +# Butterfly , 2021 +# Murat Servan Kahraman, 2021 +# Yaşar Çiv , 2021 +# hilalis , 2021 +# Gurbuzguven <6mehmet6@gmail.com>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Yaşar Çiv , 2018\n" -"Language-Team: Turkish (https://www.transifex.com/mate/teams/13566/tr/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Gurbuzguven <6mehmet6@gmail.com>, 2021\n" +"Language-Team: Turkish (https://app.transifex.com/mate/teams/13566/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -32,7 +34,8 @@ "hsngrms , 2012\n" "mauron, 2012, 2013, 2014, 2015, 2016, 2017, 2018\n" "Atilla Öntaş , 2014\n" -"Emre FIRAT , 2013, 2014, 2015" +"Emre FIRAT , 2013, 2014, 2015\n" +"Hilalis BIRDS , 2021" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -49,7 +52,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:30 msgid "2015-2021 MATE Documentation Project" -msgstr "" +msgstr "2015-2021MATE Belgelendirme Projesi" #. (itstool) path: articleinfo/copyright #: C/index.docbook:34 @@ -211,8 +214,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/ug/index.docbook mate-utils-1.26.1/logview/help/ug/index.docbook --- mate-utils-1.26.0/logview/help/ug/index.docbook 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ug/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - تونۇشتۇرۇش - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - بۇيرۇق قۇرى - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - ئىشلىتىلىشى - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ug/legal.xml mate-utils-1.26.1/logview/help/ug/legal.xml --- mate-utils-1.26.0/logview/help/ug/legal.xml 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ug/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/ug/ug.po mate-utils-1.26.1/logview/help/ug/ug.po --- mate-utils-1.26.0/logview/help/ug/ug.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ug/ug.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Uyghur (https://www.transifex.com/mate/teams/13566/ug/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Uyghur (https://app.transifex.com/mate/teams/13566/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -204,8 +204,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/uk/index.docbook mate-utils-1.26.1/logview/help/uk/index.docbook --- mate-utils-1.26.0/logview/help/uk/index.docbook 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/uk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,271 +0,0 @@ - - - - - - -]> - - -
- - - - Керівництво по Програмі перегляду системних журналів - - - Програма перегляду системних журналів — це графічний інтерфейс для перегляду й відстеження змін у файлах системних журналів. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - 2000 Джудіт Самсон - - - Проєкт документування MATE - - - Проєкт документації GNOME - - - - - - Команда документування MATE Оточення стільниці Mate - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - Джудіт Самсон Проєкт документування GNOME
judith@samsonsource.com
- - Пол Катлер Команда документування GNOME
pcutler@gnome.org
- - Вінсент Ноель
vincent.noel@gmail.com
- - -
- - - Керівництво по Програмі перегляду системних журналів V1.10 Липень 2015 - Вольфґанґ Ульбріх - Проєкт документування MATE - - Керівництво по Програмі перегляду системних журналів V2.5 Жовтень 2009 - Пол Катлер pcutler@gnome.org - Проєкт документації GNOME - - Керівництво по Програмі перегляду системних журналів V2.4 Жовтень 2005 - Вінсент Ноель vincent.noel@gmail.com - Проєкт документації GNOME - - Керівництво по Програмі перегляду системних журналів V2.3 Жовтень 2002 - Sun GNOME Documentation Team - gdocteam@sun.com - - Проєкт документації GNOME - - Керівництво по Програмі перегляду системних журналів V2.2 Серпень 2002 - Sun GNOME Documentation Team - gdocteam@sun.com - - Проєкт документації GNOME - - Керівництво по Програмі перегляду системних журналів V2.1 Липень 2002 - Sun GNOME Documentation Team - gdocteam@sun.com - - Проєкт документації GNOME - - Керівництво по Програмі перегляду системних журналів V2.0 Травень 2002 - Sun GNOME Documentation Team - gdocteam@sun.com - - Проєкт документації GNOME - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - Це керівництво надає опис версії 1.10 Програми перегляду системних журналів. - - Зворотній зв'язок - Щоб повідомити про помилку або внести пропозицію стосовно Програми перегляду системних журналів або цього керівництва, дотримуйтеся вказівок на Сторінці зворотнього зв'язку MATE. - - -
- - Програма перегляду системних журналів - - - - - - Вступ - - Програма перегляду системних журналів — це графічний, керований через меню застосунок, що дозволяє продивлятися й відстежувати зміни у системних журналах. Програма перегляду системних журналів надає декілька функцій, які можуть допомогти у керуванні системними журналами, включаючи відстеження змін й показ статистики журналів. - - Програма перегляду системних журналів буде корисна новачкам в адмініструванні системи, оскільки забезпечує простий, більш зручний для користувача показ журналів, ніж перегляд файлу журналу у вигляді звичайного тексту. Вона корисна й більш досвідченим адміністраторам, оскільки містить монітор для постійного відстеження ключових системних журналів. - - Програма перегляду системних журналів корисна лише тим користувачам, у яких є доступ до файлів системних журналів (зазвичай потрібен доступ від імени root). - - - - - Початок роботи - - Запустити Програму перегляду системних журналів можна такими способами: - - - Меню Програми - - Виберіть Системні засобиПрограма перегляду журналів. - - - - Командний рядок - - Наберіть mate-system-log, та натисніть Enter. - - - - - - - Після запуску Програми перегляду системних журналів, з'являється наступне вікно. - - -
- Вікно програми перегляду системних журналів - - Показывает главное окно Программы просмотра системных журналов, содержащее строку меню, область отображения, полосы прокрутки и строку состояния. - -
- - При першому запуску Програми перегляду системних журналівприложение по умолчанию показывает несколько файлов журналов (таких как /var/log/messages). Открытые журналы перечислены с левой стороны окна приложения. Содержимое выбранного в списке журнала отображается в главной области окна приложения. - - Типово Програма перегляду системних журналів відстежує усі відкриті журнали, й кожна зміна автоматично показується у головному вікні. Докладніше дивіться . - -
- - - - - Використання - - - Щоб переглянути журнал - Для перегляду журналу виберіть ФайлВідкрити. У діялоґовому вікні Відкрити журнал виберіть потрібний журнал та натисніть Відкрити. Використовуйте смуги гортання для переміщення по журналу. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - Щоб копіювати рядки журналу до буфера обміну - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - Приховуваня бічної панелі - Для приховування бічної панелі, що містить перелік журналів і календар, просто виберіть в меню ВиглядБічна панель. - - - - Моніторинг журналів - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - Щоб переглянути відомости журналу - Інформація журналу, як правило, показується у рядку стану, зокрема: - - Кількість рядків у журналі. - - Розмір журналу в байтах. - - Дата останньої зміни журналу. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - Щоб закрити журнал - Щоб закрити журнал, виберіть ФайлЗакрити. - - - - Завершення роботи з Програмою перегляду системних журналів - Щоб вийти з Програми перегляду системних журналів, виберіть ФайлВийти. - - - - -
diff -Nru mate-utils-1.26.0/logview/help/uk/legal.xml mate-utils-1.26.1/logview/help/uk/legal.xml --- mate-utils-1.26.0/logview/help/uk/legal.xml 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/uk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Дозволяється копіювати, розповсюджувати і / або змінювати цей документ у відповідности з умовами ліцензії GNU Free Documentation License (GFDL), версії 1.1 або будь-якої пізнішої версії, оголошеній Фундацією вільного програмного забезпечення без будь-яких інваріянтних розділів, без додавання тексту на початку або в кінці. Ви можете знайти копію GFDL тут посилання або у файлі COPYING-DOCS, розповсюджуваному разом з цим керівництвом. - Цей посібник є частиною збірки документації MATE, яка розповсюджується на умовах ліцензії GFDL. Якщо ви бажаєте розповсюджувати цей посібник окремо від збірки, можете це зробити додавши до нього копію ліцензії, як описано в пункті 6 ліцензії. - - Деякі назви, які використовуються компаніями для розповсюдження своїх продуктів та послуг є торговими марками. Якщо такі назви зустрічаються в документації MATE і учасникам проєкту документування MATE відомо, що вони є торговими марками, тоді ці назви виділяться великими літерами або починаються з великої літери. - - ДОКУМЕНТ Й ЗМІНЕНІ ВЕРСІЇ ДОКУМЕНТУ НАДАЮТЬСЯ ЗА УМОВАМИ ЛІЦЕНЗІЇ БЕЗКОШТОВНОЇ ДОКУМЕНТАЦІЇ GNU З РОЗУМІННЯМ ЩО: - - ДОКУМЕНТ НАДАЄТЬСЯ \"ЯК Є\", БЕЗ БУДЬ-ЯКИХ ГАРАНТІЇ, ЯВНИХ ЧИ НЕЯВНИХ, ВКЛЮЧАЮЧИ, АЛЕ НЕ ОБМЕЖУЮЧИСЬ, ГАРАНТІЙ ЩО ЦЕЙ ДОКУМЕНТ ЧИ ЗМІНЕНА ВЕРСІЯ ДОКУМЕНТА ВІЛЬНІ ВІД ДЕФЕКТІВ, ПРИДАТНІ ДО ПРОДАЖУ, ВІДПОВІДАЮТЬ ПЕВНІЙ МЕТІ АБО НЕ ПОРУШУЮТЬ ЧИЇСЬ ПРАВА. ВЕСЬ РИЗИК ЗА ЯКІСТЬ, ТОЧНІСТЬ, ТА ЧИННІСТЬ ЦЬОГО ДОКУМЕНТУ АБО ЙОГО ЗМІНЕНИХ ВЕРСІЙ ЛЕЖИТЬ НА ВАС. ЯКЩО БУДЬ-ЯКИЙ ДОКУМЕНТ ЧИ ЗМІНЕНА ВЕРСІЯ БУДУТЬ ВИЗНАНІ ДЕФЕКТНИМИ У БУДЬ-ЯКОМУ ВІДНОШЕННІ, ВИ (НЕ ПОЧАТКОВИЙ УКЛАДАЧ, АВТОР АБО БУДЬ-ЯКИЙ СПІВАВТОР) БЕРЕТЕ НА СЕБЕ ВИТРАТИ ЗА БУДЬ-ЯКЕ НЕОБХІДНЕ ОБСЛУГОВУВАННЯ, РЕМОНТ ЧИ ВИПРАВЛЕННЯ. ЦЯ ВІДМОВА ВІД ГАРАНТІЙ СКЛАДАЄ ВАЖЛИВУ ЧАСТИНУ ЦІЄЇ ЛІЦЕНЗІЇ. НЕ ДОПУСКАЄТЬСЯ ВИКОРИСТАННЯ ЦЬОГО ДОКУМЕНТУ АБО ЙОГО ЗМІНЕНОЇ ВЕРСІЇ БЕЗ ПРИЙНЯТТЯ ЦІЄЇ ВІДМОВИ; ТА - - - НІ ЗА ЯКИХ ОБСТАВИН ТА ЗА БУДЬ-ЯКОГО ЗАКОНОДАВСТВА, ЧИ ТО ГРОМАДЯНСЬКОЇ ВІДПОВІДАЛЬНОСТІ (ВКЛЮЧАЮЧИ ХАЛАТНІСТЬ), ДОГОВОРУ, ЧИ ЧОГОСЬ ІНШОГО, АВТОР, ПОЧАТКОВИЙ УКЛАДАЧ, БУДЬ-ЯКИЙ СПІВАВТОР, АБО ДИСТРИБ'ЮТОР ДОКУМЕНТУ ЧИ ЗМІНЕНОЇ ВЕРСІЇ ДОКУМЕНТУ, АБО БУДЬ-ЯКИЙ ПОСТАЧАЛЬНИК БУДЬ-ЯКОЇ З ЦИХ СТОРІН, НЕ НЕСЕ ВІДПОВІДАЛЬНІСТЬ ПЕРЕД БУДЬ-ЯКОЮ ОСОБОЮ ЗА БУДЬ-ЯКІ ПРЯМІ, НЕПРЯМІ, ОСОБЛИВІ, ВИПАДКОВІ, АБО ІСТОТНІ ЗБИТКИ БУДЬ-ЯКОГО ХАРАКТЕРУ ВКЛЮЧАЮЧИ, АЛЕ НЕ ОБМЕЖУЮЧИСЬ, ЗБИТКАМИ ВІД ВТРАТИ ПРЕСТИЖУ, ЗУПИНКИ РОБОТИ, ЗБОЇВ АБО НЕСПРАВНОСТЕЙ КОМП'ЮТЕРА, АБО БУДЬ-ЯКІ ІНШІ ЗБИТКИ АБО ВТРАТИ ЩО ВИНИКЛИ БЕЗВІДНОСНО АБО ВНАСЛІДОК ВИКОРИСТАННЯ ЦЬОГО ДОКУМЕНТУ ТА ЗМІНЕНИХ ВЕРСІЙ ЦЬОГО ДОКУМЕНТУ, НАВІТЬ ЯКЩО ЦІ СТОРОНИ, МОЖЛИВО, БУЛИ ПРОІНФОРМОВАНІ ПРО МОЖЛИВІСТЬ ТАКИХ ЗБИТКІВ. - - - diff -Nru mate-utils-1.26.0/logview/help/uk/uk.po mate-utils-1.26.1/logview/help/uk/uk.po --- mate-utils-1.26.0/logview/help/uk/uk.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/uk/uk.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Robert Antoni Buj i Gelonch , 2019 +# Robert Antoni Buj i Gelonch , 2021 +# Stefano Karapetsas , 2021 # Микола Ткач , 2021 +# Wolfgang Ulbrich , 2021 +# Юрій Яновський , 2021 +# Sergiy , 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Микола Ткач , 2021\n" -"Language-Team: Ukrainian (https://www.transifex.com/mate/teams/13566/uk/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Sergiy , 2022\n" +"Language-Team: Ukrainian (https://app.transifex.com/mate/teams/13566/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,8 +25,9 @@ msgid "translator-credits" msgstr "" "Yarema aka Knedlyk ,\n" -"Микола Ткач ,\n" -"Oleh Tsyupka " +"Микола Ткач ,\n" +"Oleh Tsyupka \n" +"Юрій Яновський " #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -43,7 +46,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:30 msgid "2015-2021 MATE Documentation Project" -msgstr "" +msgstr "2015-2021 Проект документування MATE" #. (itstool) path: articleinfo/copyright #: C/index.docbook:34 @@ -67,7 +70,7 @@ #: C/index.docbook:152 C/index.docbook:162 C/index.docbook:172 #: C/index.docbook:182 C/index.docbook:192 msgid "GNOME Documentation Project" -msgstr "Проєкт документації GNOME" +msgstr "Проєкт документування GNOME" #. (itstool) path: authorgroup/author #: C/index.docbook:60 @@ -228,8 +231,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" "Щоб повідомити про помилку або внести пропозицію стосовно Програми перегляду" " системних журналів або цього керівництва, дотримуйтеся вказівок на " msgstr "" " Показывает главное окно" -" Программы просмотра системных журналов, содержащее строку меню, область " -"отображения, полосы прокрутки и строку состояния. " +"format=\"PNG\"/> Показує головне вікно " +"Програми перегляду системних журналів, що містить рядок меню, область " +"показу, смуги гортання й рядок стану. " #. (itstool) path: sect1/para #: C/index.docbook:282 @@ -381,10 +385,10 @@ "in the main area of the application window." msgstr "" "При першому запуску Програми перегляду системних " -"журналівприложение по умолчанию показывает несколько файлов " -"журналов (таких как /var/log/messages). Открытые " -"журналы перечислены с левой стороны окна приложения. Содержимое выбранного в" -" списке журнала отображается в главной области окна приложения." +"журналівтиповий додаток показує декілька файлів журналів " +"(таких як /var/log/messages). Відкриті журнали " +"перелічені з лівого боку вікна додатку. Вміст вибраного у переліку журналу " +"показується у головній області вікна додатку." #. (itstool) path: sect1/para #: C/index.docbook:290 @@ -568,12 +572,12 @@ " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" -"Дозволяється копіювати, розповсюджувати і / або змінювати цей документ у " -"відповідности з умовами ліцензії GNU Free Documentation License (GFDL), " -"версії 1.1 або будь-якої пізнішої версії, оголошеній Фундацією вільного " -"програмного забезпечення без будь-яких інваріянтних розділів, без додавання " -"тексту на початку або в кінці. Ви можете знайти копію GFDL тут <_:ulink-1/> " -"або у файлі COPYING-DOCS, розповсюджуваному разом з цим керівництвом." +"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-1/> or in the file COPYING-DOCS distributed " +"with this manual." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -583,8 +587,8 @@ "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. Якщо ви бажаєте розповсюджувати цей посібник окремо " +"Цей посібник є частиною збірки документації MATE, яка розповсюджується за " +"умовами ліцензії GFDL. Якщо ви бажаєте розповсюджувати цей посібник окремо " "від збірки, можете це зробити додавши до нього копію ліцензії, як описано в " "пункті 6 ліцензії." diff -Nru mate-utils-1.26.0/logview/help/ur/index.docbook mate-utils-1.26.1/logview/help/ur/index.docbook --- mate-utils-1.26.0/logview/help/ur/index.docbook 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ur/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - تعارف - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - کمانڈ لائن - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - استعمال - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/ur/legal.xml mate-utils-1.26.1/logview/help/ur/legal.xml --- mate-utils-1.26.0/logview/help/ur/legal.xml 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ur/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/ur/ur.po mate-utils-1.26.1/logview/help/ur/ur.po --- mate-utils-1.26.0/logview/help/ur/ur.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/ur/ur.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# mauron, 2018 +# mauron, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: mauron, 2018\n" -"Language-Team: Urdu (https://www.transifex.com/mate/teams/13566/ur/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: mauron, 2021\n" +"Language-Team: Urdu (https://app.transifex.com/mate/teams/13566/ur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -201,8 +201,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/uz/index.docbook mate-utils-1.26.1/logview/help/uz/index.docbook --- mate-utils-1.26.0/logview/help/uz/index.docbook 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/uz/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Command line - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Ishlatilishi - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/uz/legal.xml mate-utils-1.26.1/logview/help/uz/legal.xml --- mate-utils-1.26.0/logview/help/uz/legal.xml 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/uz/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/uz/uz.po mate-utils-1.26.1/logview/help/uz/uz.po --- mate-utils-1.26.0/logview/help/uz/uz.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/uz/uz.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Muzaffar Habibullayev , 2018 +# Stefano Karapetsas , 2021 +# Muzaffar Habibullayev , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Muzaffar Habibullayev , 2018\n" -"Language-Team: Uzbek (https://www.transifex.com/mate/teams/13566/uz/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Muzaffar Habibullayev , 2021\n" +"Language-Team: Uzbek (https://app.transifex.com/mate/teams/13566/uz/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -196,8 +196,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/vi/index.docbook mate-utils-1.26.1/logview/help/vi/index.docbook --- mate-utils-1.26.0/logview/help/vi/index.docbook 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/vi/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Giới thiệu - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Dòng lệnh - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Sử dụng - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/vi/legal.xml mate-utils-1.26.1/logview/help/vi/legal.xml --- mate-utils-1.26.0/logview/help/vi/legal.xml 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/vi/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/vi/vi.po mate-utils-1.26.1/logview/help/vi/vi.po --- mate-utils-1.26.0/logview/help/vi/vi.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/vi/vi.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Duy Truong Nguyen , 2018 +# Stefano Karapetsas , 2021 +# Duy Truong Nguyen , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Duy Truong Nguyen , 2018\n" -"Language-Team: Vietnamese (https://www.transifex.com/mate/teams/13566/vi/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Duy Truong Nguyen , 2021\n" +"Language-Team: Vietnamese (https://app.transifex.com/mate/teams/13566/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -196,8 +196,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/wa/index.docbook mate-utils-1.26.1/logview/help/wa/index.docbook --- mate-utils-1.26.0/logview/help/wa/index.docbook 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/wa/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Roye di comande - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/wa/legal.xml mate-utils-1.26.1/logview/help/wa/legal.xml --- mate-utils-1.26.0/logview/help/wa/legal.xml 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/wa/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/wa/wa.po mate-utils-1.26.1/logview/help/wa/wa.po --- mate-utils-1.26.0/logview/help/wa/wa.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/wa/wa.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Walloon (https://www.transifex.com/mate/teams/13566/wa/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Walloon (https://app.transifex.com/mate/teams/13566/wa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/xh/index.docbook mate-utils-1.26.1/logview/help/xh/index.docbook --- mate-utils-1.26.0/logview/help/xh/index.docbook 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/xh/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Umgca woMyalelo - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/xh/legal.xml mate-utils-1.26.1/logview/help/xh/legal.xml --- mate-utils-1.26.0/logview/help/xh/legal.xml 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/xh/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/xh/xh.po mate-utils-1.26.1/logview/help/xh/xh.po --- mate-utils-1.26.0/logview/help/xh/xh.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/xh/xh.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Xhosa (https://www.transifex.com/mate/teams/13566/xh/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Xhosa (https://app.transifex.com/mate/teams/13566/xh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/yo/index.docbook mate-utils-1.26.1/logview/help/yo/index.docbook --- mate-utils-1.26.0/logview/help/yo/index.docbook 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/yo/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Command line - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/yo/legal.xml mate-utils-1.26.1/logview/help/yo/legal.xml --- mate-utils-1.26.0/logview/help/yo/legal.xml 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/yo/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/yo/yo.po mate-utils-1.26.1/logview/help/yo/yo.po --- mate-utils-1.26.0/logview/help/yo/yo.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/yo/yo.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Yoruba (https://www.transifex.com/mate/teams/13566/yo/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Yoruba (https://app.transifex.com/mate/teams/13566/yo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -195,8 +195,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/zh_CN/index.docbook mate-utils-1.26.1/logview/help/zh_CN/index.docbook --- mate-utils-1.26.0/logview/help/zh_CN/index.docbook 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/zh_CN/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,509 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - 2015-2021 MATE 文档团队 - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - MATE 文档项目 - - - GNOME 文档项目 - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - 反馈 - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Christopher Meng - - i@cicku.me - - - - 2012-2013 - - Christopher Meng - - - - - ravix - - dr.neemous@gmail.com - - - - 2013 - - ravix - - - - - Dianjin Wang - - 1132321739qq@gmail.com - - - - 2012 - - Dianjin Wang - - - - - Cravix - - dr.neemous@gmail.com - - - - 2013 - - Cravix - - - - - nyanyh - - rebuilty@gmail.com - - - - 2013 - - nyanyh - - - - - liulitchi - - xingzuo88@qq.com - - - - 2013 - - liulitchi - - - - - 玉堂白鹤 - - yjwork@qq.com - - - - 2015 - - 玉堂白鹤 - - - - - Mingye Wang - - arthur200126@gmail.com - - - - 2015-2016 - - Mingye Wang - - - - - 白铭骢 - - jeffbai@aosc.xyz - - - - 2015-2016 - - 白铭骢 - - - - - 刘子兴 - - liushuyu@aosc.xyz - - - - 2015-2016 - - 刘子兴 - -
- - - System Log Viewer - - - - - - - 介绍 - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - 入门 - - You can start System Log Viewer in the following ways: - - - - 应用程序菜单 - - Choose System ToolsLog File Viewer. - - - - 命令行 - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - 用法 - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/zh_CN/legal.xml mate-utils-1.26.1/logview/help/zh_CN/legal.xml --- mate-utils-1.26.0/logview/help/zh_CN/legal.xml 2021-08-05 19:48:52.000000000 +0000 +++ mate-utils-1.26.1/logview/help/zh_CN/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 对于本文档的复制、分发和/或修改必须遵循自由软件基金会 (Free Software Foundation) 发布的 GNU 自由文档许可证 (GFDL) 版本 1.1 或更高版本,该许可证没有固定的部分、没有封面和背页文本。您可以在此 链接 或者随本文档一并发行的 COPYING-DOCS 中找到 GFDL 的副本。 - 本手册是在 GFDL 许可之下分发的 MATE 手册集合的一部分。如果想要单独分发此手册,可以在手册中添加该许可证的一份副本然后分发,如该许可证的第 6 部分所述。 - - 各个公司使用的许多用于区别它们产品和服务的名称都声明为商标。在所有的 MATE 文档以及 MATE 文档项目的成员中,这些名称都是以全大写字母或首字母大写显示,从而表明它们是商标。 - - 本文档和文档是根据 GNU 免费文档许可协议的条款提供的,并且还有进一步的阐述: - - 文档按“原样”提供,不提供任何明示或暗示的保证,包括但不限于:文档或文档的修改版本没有适销性方面的缺陷、适合特定目的的适用性,以及没有侵权行为。您将自行承担本文档以及文档修改版本的质量、准确性以及性能方面的风险。如果任何文档或文档修改版本存在缺陷,您(而不是最初的编写者、作者或撰写人)将承担所有必需的服务、维修或更正的费用。此免责声明是本许可证的重要组成部分。如果不接受此免责声明,那么您就没有权利使用任何文档或文档的修改版本;并且 - - - 无论在任何情况以及在任何法律理论下,本文档或文档修改版本的作者、最初的编写者、任何撰写人或任何分发者,或者任意这些方的任何提供者都不对任何人由于使用本文档或文档修改版本引起或带来的任何直接的、间接的、特殊的、偶然的或继发的损失承担任何民事(包括疏忽)、合同或其它方面的责任,这些损失包括但不限于信誉损失、工作停止、计算机失败或故障,或任何以及所有其它损失或由此引发的或与之相关的损失,即使这些方已被告知存在出现此类损失的可能性时也是如此。 - - - diff -Nru mate-utils-1.26.0/logview/help/zh_CN/zh_CN.po mate-utils-1.26.1/logview/help/zh_CN/zh_CN.po --- mate-utils-1.26.0/logview/help/zh_CN/zh_CN.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/zh_CN/zh_CN.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Mingcong Bai , 2018 -# Wolfgang Ulbrich , 2018 -# biqiu-ssw , 2018 -# zhineng404 , 2019 +# Stefano Karapetsas , 2021 +# Mingcong Bai , 2021 +# Wolfgang Ulbrich , 2021 +# biqiu-ssw , 2021 +# zhineng404 , 2021 # OkayPJ <1535253694@qq.com>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" "Last-Translator: OkayPJ <1535253694@qq.com>, 2021\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mate/teams/13566/zh_CN/)\n" +"Language-Team: Chinese (China) (https://app.transifex.com/mate/teams/13566/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,17 +24,18 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"Christopher Meng , 2012-2013\n" -"ravix , 2013\n" +"Christopher Meng , 2012-2013\n" +"ravix , 2013\n" "Dianjin Wang <1132321739qq@gmail.com>, 2012\n" -"Cravix , 2013\n" -"nyanyh , 2013\n" -"liulitchi , 2013\n" -"玉堂白鹤 , 2015\n" -"Mingye Wang , 2015-2016\n" -"白铭骢 , 2015-2016\n" -"刘子兴 , 2015-2016\n" -"比丘,2018-2019" +"Cravix , 2013\n" +"nyanyh , 2013\n" +"liulitchi , 2013\n" +"玉堂白鹤 , 2015\n" +"Mingye Wang , 2015-2016\n" +"白铭骢 , 2015-2016\n" +"刘子兴 , 2015-2016\n" +"比丘 , 2018-2019\n" +"OkayPJ , 2020" #. (itstool) path: articleinfo/title #: C/index.docbook:23 @@ -211,8 +212,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/zh-Hans/zh-Hans.po mate-utils-1.26.1/logview/help/zh-Hans/zh-Hans.po --- mate-utils-1.26.0/logview/help/zh-Hans/zh-Hans.po 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/logview/help/zh-Hans/zh-Hans.po 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,541 @@ +# +# Translators: +# Xiaoyuan Chen , 2021 +# 敏超 马 , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2021-06-04 20:34+0200\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: 敏超 马 , 2021\n" +"Language-Team: Chinese Simplified (https://app.transifex.com/mate/teams/13566/zh-Hans/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh-Hans\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Put one translator per line, in the form NAME , YEAR1, YEAR2 +msgctxt "_" +msgid "translator-credits" +msgstr "翻译人员-致谢" + +#. (itstool) path: articleinfo/title +#: C/index.docbook:23 +msgid "System Log Viewer Manual" +msgstr "" + +#. (itstool) path: abstract/para +#: C/index.docbook:26 +msgid "" +"System Log Viewer is a graphical user interface to view and monitor system " +"log files." +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:30 +msgid "2015-2021 MATE Documentation Project" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:34 +msgid "2003 Sun Microsystems" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:38 +msgid "2000 Judith Samson" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:51 C/index.docbook:122 +msgid "MATE Documentation Project" +msgstr "MATE 文档项目" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:54 C/index.docbook:132 C/index.docbook:142 +#: C/index.docbook:152 C/index.docbook:162 C/index.docbook:172 +#: C/index.docbook:182 C/index.docbook:192 +msgid "GNOME Documentation Project" +msgstr "GNOME 文档项目" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:60 +msgid "" +"MATE Documentation Team Mate " +"desktop " +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:66 +msgid "" +"Sun GNOME Documentation Team " +" Sun Microsystems
" +"gdocteam@sun.com
" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:75 +msgid "" +"Judith Samson " +"GNOME Documentation Project
" +"judith@samsonsource.com
" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:84 +msgid "" +"Paul Cutler " +"GNOME Documentation Team
" +"pcutler@gnome.org
" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:93 +msgid "" +"Vincent Noel " +"
vincent.noel@gmail.com
" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:120 +msgid "Wolfgang Ulbrich" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:116 +msgid "" +"System Log Viewer Manual V1.10 July 2015" +" <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:129 +msgid "Paul Cutler pcutler@gnome.org" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:125 +msgid "" +"System Log Viewer Manual V2.5 October " +"2009 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:139 +msgid "Vincent Noel vincent.noel@gmail.com" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:135 +msgid "" +"System Log Viewer Manual V2.4 October " +"2005 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:149 C/index.docbook:159 C/index.docbook:169 +#: C/index.docbook:179 +msgid "Sun GNOME Documentation Team gdocteam@sun.com" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:145 +msgid "" +"System Log Viewer Manual V2.3 October " +"2002 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:155 +msgid "" +"System Log Viewer Manual V2.2 August " +"2002 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:165 +msgid "" +"System Log Viewer Manual V2.1 July 2002 " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:175 +msgid "" +"System Log Viewer Manual V2.0 May 2002 " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:189 +msgid "Judith Samson judith@samsonsource.com" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:185 +msgid "" +"Logview Manual 2000 " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: articleinfo/releaseinfo +#: C/index.docbook:197 +msgid "This manual describes version 1.10 of System Log Viewer." +msgstr "" + +#. (itstool) path: legalnotice/title +#: C/index.docbook:200 +msgid "Feedback" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/index.docbook:201 +msgid "" +"To report a bug or make a suggestion regarding the System Log Viewer " +"application or this manual, follow the directions in the MATE Feedback " +"Page." +msgstr "" + +#. (itstool) path: article/indexterm +#: C/index.docbook:210 +msgid "System Log Viewer" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:218 +msgid "Introduction" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:220 +msgid "" +"System Log Viewer is a graphical, menu-driven " +"viewer that you can use to view and monitor your system logs. " +"System Log Viewer comes with a few functions that" +" can help you manage your logs, including a log monitor and log statistics " +"display." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:228 +msgid "" +"System Log Viewer is useful if you are new to " +"system administration because it provides an easier, more user-friendly " +"display of your logs than a text display of the log file. It is also useful " +"for more experienced administrators, as it contains a monitor to enable you " +"to continuously monitor crucial logs." +msgstr "" + +#. (itstool) path: warning/para +#: C/index.docbook:237 +msgid "" +"System Log Viewer is useful only to those who " +"have access to the system log files, which generally requires root access." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:244 +msgid "Getting Started" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:246 +msgid "" +"You can start System Log Viewer in the following " +"ways:" +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:250 +msgid "Applications menu" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:252 +msgid "" +"Choose System ToolsLog " +"File Viewer." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:256 +msgid "Command line" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:258 +msgid "" +"Type mate-system-log, then press Return." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:265 +msgid "" +"When you start System Log Viewer, the following " +"window is displayed." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:269 +msgid "System Log Viewer Window" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:273 +msgctxt "_" +msgid "" +"external ref='figures/syslog_window.png' " +"md5='7cb5e186fe792ed85e408ff33f21eced'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:271 +msgid "" +" Shows System Log Viewer" +" main window. Contains menubar, display area, scrollbars, and statusbar. " +" " +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:282 +msgid "" +"The first time you start System Log Viewer, the " +"application displays several log files by default (such as " +"/var/log/messages). Opened logs are listed on the left " +"side of the application window. The log selected in this list is displayed " +"in the main area of the application window." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:290 +msgid "" +"By default, System Log Viewer monitors every " +"opened log, and any change appears automatically in the main window. See " +" for more information." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:299 +msgid "Usage" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:302 +msgid "To View a Log" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:303 +msgid "" +"To view a log, choose " +"FileOpen." +" In the Open Log dialog, select the log that you want " +"to open, then click Open. Use the scrollbars to " +"scroll through the log." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:309 +msgid "" +"You can open as many logs as you want. System Log " +"Viewer displays one log at a time in the System Log " +"Viewer window. Opened logs are listed on the left side of the " +"application window. The log selected in this list is displayed in the main " +"area of the application window. To display another log already opened in " +"System Log Viewer, select it in the log list." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:317 +msgid "" +"Note that System Log Viewer also lets you open " +"zipped logs (whole filenames end in \".gz\")." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:322 +msgid "To Copy Log Lines to the Clipboard" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:323 +msgid "" +"To copy one or more log lines to the clipboard, just select the lines in the" +" main area and choose the " +"EditCopy" +" menu option. If you want to copy the entire log to the clipboard, select it" +" entirely using the EditSelect " +"All menu option, then choose " +"EditCopy." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:335 +msgid "To Hide the Sidebar" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:336 +msgid "" +"To hide the left sidebar, which contains the log list and calendar, just " +"select the ViewSide " +"pane menu option." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:343 +msgid "To Monitor Logs" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:344 +msgid "" +"You can use System Log Viewer to monitor logs. By" +" default, all logs opened in System Log Viewer " +"are monitored for changes. If new lines are added to a log monitored by " +"System Log Viewer, the log name will appear in " +"bold in the log list. If the log is currently displayed in the main area, " +"the new lines will appear automatically at the end of the log and, after " +"five seconds, the log name will turn back to normal in the list." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:355 +msgid "To View Log Information" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:356 +msgid "Log information are generally displayed in the status bar, including :" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:359 +msgid "Number of lines in the log." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:361 +msgid "Size of the log in bytes." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:363 +msgid "Date the log was last modified." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:366 +msgid "" +"The status bar can be displayed or hidden using the " +"ViewStatusbar" +" option." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:372 +msgid "To Close a Log" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:373 +msgid "" +"To close a log, choose " +"FileClose." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:379 +msgid "To Exit System Log Viewer" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:380 +msgid "" +"To exit System Log Viewer, choose " +"FileQuit." +msgstr "" + +#. (itstool) path: para/ulink +#: C/legal.xml:9 +msgid "link" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml: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-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 -Nru mate-utils-1.26.0/logview/help/zh_HK/index.docbook mate-utils-1.26.1/logview/help/zh_HK/index.docbook --- mate-utils-1.26.0/logview/help/zh_HK/index.docbook 2021-08-05 19:48:53.000000000 +0000 +++ mate-utils-1.26.1/logview/help/zh_HK/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - 導覽 - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - 命令列 - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - 用量 - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/zh_HK/legal.xml mate-utils-1.26.1/logview/help/zh_HK/legal.xml --- mate-utils-1.26.0/logview/help/zh_HK/legal.xml 2021-08-05 19:48:53.000000000 +0000 +++ mate-utils-1.26.1/logview/help/zh_HK/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/zh_HK/zh_HK.po mate-utils-1.26.1/logview/help/zh_HK/zh_HK.po --- mate-utils-1.26.0/logview/help/zh_HK/zh_HK.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/zh_HK/zh_HK.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Chinese (Hong Kong) (https://www.transifex.com/mate/teams/13566/zh_HK/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Chinese (Hong Kong) (https://app.transifex.com/mate/teams/13566/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -198,8 +198,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/help/zh_TW/index.docbook mate-utils-1.26.1/logview/help/zh_TW/index.docbook --- mate-utils-1.26.0/logview/help/zh_TW/index.docbook 2021-08-05 19:48:53.000000000 +0000 +++ mate-utils-1.26.1/logview/help/zh_TW/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,395 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - 2003 Sun Microsystems - - 2000 - Judith Samson - - - - MATE文件專案 - - - GNOME文件專案 - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - 回饋 - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - - - - - Walter Cheuk - - wwycheuk@gmail.com - - - - 2016. - - Walter Cheuk - -
- - - System Log Viewer - - - - - - - 導覽 - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - 命令列 - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - 用量 - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/zh_TW/legal.xml mate-utils-1.26.1/logview/help/zh_TW/legal.xml --- mate-utils-1.26.0/logview/help/zh_TW/legal.xml 2021-08-05 19:48:53.000000000 +0000 +++ mate-utils-1.26.1/logview/help/zh_TW/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/zh_TW/zh_TW.po mate-utils-1.26.1/logview/help/zh_TW/zh_TW.po --- mate-utils-1.26.0/logview/help/zh_TW/zh_TW.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/zh_TW/zh_TW.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,18 @@ # # Translators: -# Walter Cheuk , 2018 -# Stefano Karapetsas , 2018 -# 趙惟倫 , 2018 -# 黃柏諺 , 2018 -# lin feather , 2018 -# byStarTW (pan93412) , 2018 -# Woodman Tuen , 2018 +# Stefano Karapetsas , 2021 +# 黃柏諺 , 2021 +# lin feather , 2021 +# pan93412 , 2021 +# Woodman Tuen , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Woodman Tuen , 2018\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mate/teams/13566/zh_TW/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Woodman Tuen , 2021\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/mate/teams/13566/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -25,7 +23,7 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"黃柏諺 ,2013-14\n" +"Jeff Huang ,2013-2021\n" "Launchpad 貢獻者:\n" " Jose Sun https://launchpad.net/~josesun\n" " Toomore https://launchpad.net/~toomore\n" @@ -207,8 +205,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm @@ -479,7 +478,7 @@ #. (itstool) path: para/ulink #: C/legal.xml:9 msgid "link" -msgstr "鏈結" +msgstr "連結" #. (itstool) path: legalnotice/para #: C/legal.xml:2 diff -Nru mate-utils-1.26.0/logview/help/zu/index.docbook mate-utils-1.26.1/logview/help/zu/index.docbook --- mate-utils-1.26.0/logview/help/zu/index.docbook 2021-08-05 19:48:53.000000000 +0000 +++ mate-utils-1.26.1/logview/help/zu/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,385 +0,0 @@ - - - - - - -]> - - -
- - - - System Log Viewer Manual - - - System Log Viewer is a graphical user interface to view and monitor - system log files. - - - - 2015-2021 - MATE Documentation Project - - - 2003 - Sun Microsystems - - - 2000 - Judith Samson - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - - MATE Documentation Team - - Mate desktop - - - - Sun - GNOME Documentation Team - - Sun Microsystems -
gdocteam@sun.com
-
-
- - - Judith - Samson - - GNOME Documentation Project -
judith@samsonsource.com
-
-
- - - Paul - Cutler - - GNOME Documentation Team -
pcutler@gnome.org
-
-
- - - Vincent - Noel - -
vincent.noel@gmail.com
-
-
- - -
- - - - System Log Viewer Manual V1.10 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - System Log Viewer Manual V2.5 - October 2009 - - Paul Cutler - pcutler@gnome.org - - GNOME Documentation Project - - - - System Log Viewer Manual V2.4 - October 2005 - - Vincent Noel - vincent.noel@gmail.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.3 - October 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.2 - August 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.1 - July 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - System Log Viewer Manual V2.0 - May 2002 - - Sun GNOME Documentation Team - gdocteam@sun.com - - GNOME Documentation Project - - - - Logview Manual - 2000 - - Judith Samson - judith@samsonsource.com - - GNOME Documentation Project - - - - - This manual describes version 1.10 of System Log Viewer. - - - Feedback - To report a bug or make a suggestion regarding the System Log Viewer application or - this manual, follow the directions in the - MATE Feedback Page. - - - -
- - - System Log Viewer - - - - - - - Introduction - - - System Log Viewer is a graphical, menu-driven - viewer that you can use to view and monitor your system - logs. System Log Viewer comes with a few functions that - can help you manage your logs, including a log monitor and log statistics - display. - - - - System Log Viewer is useful if you are new to system - administration because it provides an easier, more user-friendly - display of your logs than a - text display of the log file. It is also useful for more - experienced administrators, as it contains a monitor to enable you - to continuously monitor crucial logs. - - - System Log Viewer is useful only to those - who have access to the system log files, which generally requires root - access. - - - - - Getting Started - - You can start System Log Viewer in the following ways: - - - - Applications menu - - Choose System ToolsLog File Viewer. - - - - Command line - - Type mate-system-log, then press Return. - - - - - - - When you start System Log Viewer, the following window is displayed. - - -
- System Log Viewer Window - - - - - - - Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. - - - -
- - The first time you start System Log Viewer, the application - displays several log files by default (such as - /var/log/messages). - Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. - - - By default, System Log Viewer - monitors every opened log, and any change appears automatically in the - main window. See for more information. - -
- - - - - Usage - - - To View a Log - To view a log, choose FileOpen. - In the Open Log dialog, select the - log that you want to open, then click - Open. Use the scrollbars to scroll through the - log. - - You can open as many logs as you - want. System Log Viewer displays one log at a time in - the System Log Viewer window. Opened logs are listed on the left side of the - application window. The log selected in this list is displayed in the - main area of the application window. To display another log - already opened in System Log Viewer, select it in the - log list. - - Note that System Log Viewer also lets you open - zipped logs (whole filenames end in ".gz"). - - - - To Copy Log Lines to the Clipboard - To copy one or more log lines to the clipboard, just select the lines in - the main area and choose the - EditCopy - menu option. - If you want to copy the entire log to the clipboard, select it entirely - using the EditSelect - All menu option, then choose - EditCopy. - - - - - To Hide the Sidebar - To hide the left sidebar, which contains the log list and calendar, - just select the - ViewSide pane - menu option. - - - - To Monitor Logs - You can use System Log Viewer to monitor - logs. By default, all logs opened in System Log Viewer - are monitored for changes. If new lines are added to a log monitored - by System Log Viewer, the log name will appear in bold in - the log list. If the log is currently displayed in the main area, the - new lines will appear automatically at the end of the log and, after five - seconds, the log name will turn back to normal in the list. - - - - - To View Log Information - Log information are generally displayed in the status bar, - including : - - Number of lines in the log. - - Size of the log in bytes. - - Date the log was last modified. - - - The status bar can be displayed or hidden using the - ViewStatusbar - option. - - - - To Close a Log - To close a log, choose - FileClose. - - - - - To Exit System Log Viewer - To exit System Log Viewer, choose - FileQuit. - - - - - -
diff -Nru mate-utils-1.26.0/logview/help/zu/legal.xml mate-utils-1.26.1/logview/help/zu/legal.xml --- mate-utils-1.26.0/logview/help/zu/legal.xml 2021-08-05 19:48:53.000000000 +0000 +++ mate-utils-1.26.1/logview/help/zu/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/logview/help/zu/zu.po mate-utils-1.26.1/logview/help/zu/zu.po --- mate-utils-1.26.0/logview/help/zu/zu.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/logview/help/zu/zu.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-14 23:21+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Zulu (https://www.transifex.com/mate/teams/13566/zu/)\n" +"PO-Revision-Date: 2021-09-21 19:09+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Zulu (https://app.transifex.com/mate/teams/13566/zu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -197,8 +197,9 @@ #: C/index.docbook:201 msgid "" "To report a bug or make a suggestion regarding the System Log Viewer " -"application or this manual, follow the directions in the MATE Feedback Page." +"application or this manual, follow the directions in the MATE Feedback " +"Page." msgstr "" #. (itstool) path: article/indexterm diff -Nru mate-utils-1.26.0/logview/Makefile.in mate-utils-1.26.1/logview/Makefile.in --- mate-utils-1.26.0/logview/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/logview/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,727 +0,0 @@ -# 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 . -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 = logview -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 = -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 = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir distdir-am -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in TODO -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -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@ -SUBDIRS = data help src -all: all-recursive - -.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 logview/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign logview/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): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -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: - -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-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ - check-am clean clean-generic clean-libtool cscopelist-am ctags \ - ctags-am distclean distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am 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-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - installdirs-am maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ - ps ps-am tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - --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 -Nru mate-utils-1.26.0/logview/src/Makefile.in mate-utils-1.26.1/logview/src/Makefile.in --- mate-utils-1.26.0/logview/src/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/logview/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,1196 +0,0 @@ -# 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 . - -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@ -bin_PROGRAMS = mate-system-log$(EXEEXT) -subdir = logview/src -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 = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am_mate_system_log_OBJECTS = mate_system_log-logview-app.$(OBJEXT) \ - mate_system_log-logview-main.$(OBJEXT) \ - mate_system_log-logview-manager.$(OBJEXT) \ - mate_system_log-logview-utils.$(OBJEXT) \ - mate_system_log-logview-loglist.$(OBJEXT) \ - mate_system_log-logview-window.$(OBJEXT) \ - mate_system_log-logview-log.$(OBJEXT) \ - mate_system_log-logview-findbar.$(OBJEXT) \ - mate_system_log-logview-prefs.$(OBJEXT) \ - mate_system_log-logview-filter.$(OBJEXT) \ - mate_system_log-logview-filter-manager.$(OBJEXT) -am__objects_1 = mate_system_log-logview-marshal.$(OBJEXT) \ - mate_system_log-logview-resources.$(OBJEXT) -nodist_mate_system_log_OBJECTS = $(am__objects_1) -mate_system_log_OBJECTS = $(am_mate_system_log_OBJECTS) \ - $(nodist_mate_system_log_OBJECTS) -am__DEPENDENCIES_1 = -mate_system_log_DEPENDENCIES = $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) -am__v_lt_0 = --silent -am__v_lt_1 = -mate_system_log_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(mate_system_log_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ - -o $@ -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 = -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__maybe_remake_depfiles = depfiles -am__depfiles_remade = ./$(DEPDIR)/mate_system_log-logview-app.Po \ - ./$(DEPDIR)/mate_system_log-logview-filter-manager.Po \ - ./$(DEPDIR)/mate_system_log-logview-filter.Po \ - ./$(DEPDIR)/mate_system_log-logview-findbar.Po \ - ./$(DEPDIR)/mate_system_log-logview-log.Po \ - ./$(DEPDIR)/mate_system_log-logview-loglist.Po \ - ./$(DEPDIR)/mate_system_log-logview-main.Po \ - ./$(DEPDIR)/mate_system_log-logview-manager.Po \ - ./$(DEPDIR)/mate_system_log-logview-marshal.Po \ - ./$(DEPDIR)/mate_system_log-logview-prefs.Po \ - ./$(DEPDIR)/mate_system_log-logview-resources.Po \ - ./$(DEPDIR)/mate_system_log-logview-utils.Po \ - ./$(DEPDIR)/mate_system_log-logview-window.Po -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -SOURCES = $(mate_system_log_SOURCES) $(nodist_mate_system_log_SOURCES) -DIST_SOURCES = $(mate_system_log_SOURCES) -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir distdir-am -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -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@ -SUBDIRS = tests -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"mate-system-log\" \ - -DMATELOCALEDIR=\""$(datadir)/locale"\" \ - -DDATADIR=\""$(datadir)"\" \ - -DLOGVIEWINSTALLPREFIX=\""$(prefix)/\"" \ - $(NULL) - -BUILT_SOURCES = \ - logview-marshal.c \ - logview-marshal.h \ - logview-resources.c \ - logview-resources.h - -nodist_mate_system_log_SOURCES = \ - $(BUILT_SOURCES) - -mate_system_log_SOURCES = \ - logview-app.c \ - logview-app.h \ - logview-main.c \ - logview-about.h \ - logview-manager.c \ - logview-manager.h \ - logview-utils.c \ - logview-utils.h \ - logview-loglist.c \ - logview-loglist.h \ - logview-window.c \ - logview-window.h \ - logview-log.h \ - logview-log.c \ - logview-findbar.h \ - logview-findbar.c \ - logview-prefs.c \ - logview-prefs.h \ - logview-filter.h \ - logview-filter.c \ - logview-filter-manager.h \ - logview-filter-manager.c - -mate_system_log_CFLAGS = \ - $(GLIB_CFLAGS) \ - $(GTHREAD_CFLAGS) \ - $(GIO_CFLAGS) \ - $(GTK_CFLAGS) \ - $(WARN_CFLAGS) \ - $(NULL) - -mate_system_log_LDADD = \ - $(GLIB_LIBS) \ - $(GIO_LIBS) \ - $(GTHREAD_LIBS) \ - $(GTK_LIBS) \ - $(Z_LIBS) \ - -lm - -EXTRA_DIST = logview-marshal.list -CLEANFILES = \ - $(BUILT_SOURCES) - -all: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) all-recursive - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(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 logview/src/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign logview/src/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): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ - fi; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p \ - || test -f $$p1 \ - ; then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' \ - -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' \ - `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list - -mate-system-log$(EXEEXT): $(mate_system_log_OBJECTS) $(mate_system_log_DEPENDENCIES) $(EXTRA_mate_system_log_DEPENDENCIES) - @rm -f mate-system-log$(EXEEXT) - $(AM_V_CCLD)$(mate_system_log_LINK) $(mate_system_log_OBJECTS) $(mate_system_log_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_system_log-logview-app.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_system_log-logview-filter-manager.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_system_log-logview-filter.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_system_log-logview-findbar.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_system_log-logview-log.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_system_log-logview-loglist.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_system_log-logview-main.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_system_log-logview-manager.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_system_log-logview-marshal.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_system_log-logview-prefs.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_system_log-logview-resources.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_system_log-logview-utils.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_system_log-logview-window.Po@am__quote@ # am--include-marker - -$(am__depfiles_remade): - @$(MKDIR_P) $(@D) - @echo '# dummy' >$@-t && $(am__mv) $@-t $@ - -am--depfiles: $(am__depfiles_remade) - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< - -mate_system_log-logview-app.o: logview-app.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-app.o -MD -MP -MF $(DEPDIR)/mate_system_log-logview-app.Tpo -c -o mate_system_log-logview-app.o `test -f 'logview-app.c' || echo '$(srcdir)/'`logview-app.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-app.Tpo $(DEPDIR)/mate_system_log-logview-app.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-app.c' object='mate_system_log-logview-app.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-app.o `test -f 'logview-app.c' || echo '$(srcdir)/'`logview-app.c - -mate_system_log-logview-app.obj: logview-app.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-app.obj -MD -MP -MF $(DEPDIR)/mate_system_log-logview-app.Tpo -c -o mate_system_log-logview-app.obj `if test -f 'logview-app.c'; then $(CYGPATH_W) 'logview-app.c'; else $(CYGPATH_W) '$(srcdir)/logview-app.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-app.Tpo $(DEPDIR)/mate_system_log-logview-app.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-app.c' object='mate_system_log-logview-app.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-app.obj `if test -f 'logview-app.c'; then $(CYGPATH_W) 'logview-app.c'; else $(CYGPATH_W) '$(srcdir)/logview-app.c'; fi` - -mate_system_log-logview-main.o: logview-main.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-main.o -MD -MP -MF $(DEPDIR)/mate_system_log-logview-main.Tpo -c -o mate_system_log-logview-main.o `test -f 'logview-main.c' || echo '$(srcdir)/'`logview-main.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-main.Tpo $(DEPDIR)/mate_system_log-logview-main.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-main.c' object='mate_system_log-logview-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-main.o `test -f 'logview-main.c' || echo '$(srcdir)/'`logview-main.c - -mate_system_log-logview-main.obj: logview-main.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-main.obj -MD -MP -MF $(DEPDIR)/mate_system_log-logview-main.Tpo -c -o mate_system_log-logview-main.obj `if test -f 'logview-main.c'; then $(CYGPATH_W) 'logview-main.c'; else $(CYGPATH_W) '$(srcdir)/logview-main.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-main.Tpo $(DEPDIR)/mate_system_log-logview-main.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-main.c' object='mate_system_log-logview-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-main.obj `if test -f 'logview-main.c'; then $(CYGPATH_W) 'logview-main.c'; else $(CYGPATH_W) '$(srcdir)/logview-main.c'; fi` - -mate_system_log-logview-manager.o: logview-manager.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-manager.o -MD -MP -MF $(DEPDIR)/mate_system_log-logview-manager.Tpo -c -o mate_system_log-logview-manager.o `test -f 'logview-manager.c' || echo '$(srcdir)/'`logview-manager.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-manager.Tpo $(DEPDIR)/mate_system_log-logview-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-manager.c' object='mate_system_log-logview-manager.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-manager.o `test -f 'logview-manager.c' || echo '$(srcdir)/'`logview-manager.c - -mate_system_log-logview-manager.obj: logview-manager.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-manager.obj -MD -MP -MF $(DEPDIR)/mate_system_log-logview-manager.Tpo -c -o mate_system_log-logview-manager.obj `if test -f 'logview-manager.c'; then $(CYGPATH_W) 'logview-manager.c'; else $(CYGPATH_W) '$(srcdir)/logview-manager.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-manager.Tpo $(DEPDIR)/mate_system_log-logview-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-manager.c' object='mate_system_log-logview-manager.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-manager.obj `if test -f 'logview-manager.c'; then $(CYGPATH_W) 'logview-manager.c'; else $(CYGPATH_W) '$(srcdir)/logview-manager.c'; fi` - -mate_system_log-logview-utils.o: logview-utils.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-utils.o -MD -MP -MF $(DEPDIR)/mate_system_log-logview-utils.Tpo -c -o mate_system_log-logview-utils.o `test -f 'logview-utils.c' || echo '$(srcdir)/'`logview-utils.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-utils.Tpo $(DEPDIR)/mate_system_log-logview-utils.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-utils.c' object='mate_system_log-logview-utils.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-utils.o `test -f 'logview-utils.c' || echo '$(srcdir)/'`logview-utils.c - -mate_system_log-logview-utils.obj: logview-utils.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-utils.obj -MD -MP -MF $(DEPDIR)/mate_system_log-logview-utils.Tpo -c -o mate_system_log-logview-utils.obj `if test -f 'logview-utils.c'; then $(CYGPATH_W) 'logview-utils.c'; else $(CYGPATH_W) '$(srcdir)/logview-utils.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-utils.Tpo $(DEPDIR)/mate_system_log-logview-utils.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-utils.c' object='mate_system_log-logview-utils.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-utils.obj `if test -f 'logview-utils.c'; then $(CYGPATH_W) 'logview-utils.c'; else $(CYGPATH_W) '$(srcdir)/logview-utils.c'; fi` - -mate_system_log-logview-loglist.o: logview-loglist.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-loglist.o -MD -MP -MF $(DEPDIR)/mate_system_log-logview-loglist.Tpo -c -o mate_system_log-logview-loglist.o `test -f 'logview-loglist.c' || echo '$(srcdir)/'`logview-loglist.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-loglist.Tpo $(DEPDIR)/mate_system_log-logview-loglist.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-loglist.c' object='mate_system_log-logview-loglist.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-loglist.o `test -f 'logview-loglist.c' || echo '$(srcdir)/'`logview-loglist.c - -mate_system_log-logview-loglist.obj: logview-loglist.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-loglist.obj -MD -MP -MF $(DEPDIR)/mate_system_log-logview-loglist.Tpo -c -o mate_system_log-logview-loglist.obj `if test -f 'logview-loglist.c'; then $(CYGPATH_W) 'logview-loglist.c'; else $(CYGPATH_W) '$(srcdir)/logview-loglist.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-loglist.Tpo $(DEPDIR)/mate_system_log-logview-loglist.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-loglist.c' object='mate_system_log-logview-loglist.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-loglist.obj `if test -f 'logview-loglist.c'; then $(CYGPATH_W) 'logview-loglist.c'; else $(CYGPATH_W) '$(srcdir)/logview-loglist.c'; fi` - -mate_system_log-logview-window.o: logview-window.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-window.o -MD -MP -MF $(DEPDIR)/mate_system_log-logview-window.Tpo -c -o mate_system_log-logview-window.o `test -f 'logview-window.c' || echo '$(srcdir)/'`logview-window.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-window.Tpo $(DEPDIR)/mate_system_log-logview-window.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-window.c' object='mate_system_log-logview-window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-window.o `test -f 'logview-window.c' || echo '$(srcdir)/'`logview-window.c - -mate_system_log-logview-window.obj: logview-window.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-window.obj -MD -MP -MF $(DEPDIR)/mate_system_log-logview-window.Tpo -c -o mate_system_log-logview-window.obj `if test -f 'logview-window.c'; then $(CYGPATH_W) 'logview-window.c'; else $(CYGPATH_W) '$(srcdir)/logview-window.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-window.Tpo $(DEPDIR)/mate_system_log-logview-window.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-window.c' object='mate_system_log-logview-window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-window.obj `if test -f 'logview-window.c'; then $(CYGPATH_W) 'logview-window.c'; else $(CYGPATH_W) '$(srcdir)/logview-window.c'; fi` - -mate_system_log-logview-log.o: logview-log.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-log.o -MD -MP -MF $(DEPDIR)/mate_system_log-logview-log.Tpo -c -o mate_system_log-logview-log.o `test -f 'logview-log.c' || echo '$(srcdir)/'`logview-log.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-log.Tpo $(DEPDIR)/mate_system_log-logview-log.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-log.c' object='mate_system_log-logview-log.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-log.o `test -f 'logview-log.c' || echo '$(srcdir)/'`logview-log.c - -mate_system_log-logview-log.obj: logview-log.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-log.obj -MD -MP -MF $(DEPDIR)/mate_system_log-logview-log.Tpo -c -o mate_system_log-logview-log.obj `if test -f 'logview-log.c'; then $(CYGPATH_W) 'logview-log.c'; else $(CYGPATH_W) '$(srcdir)/logview-log.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-log.Tpo $(DEPDIR)/mate_system_log-logview-log.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-log.c' object='mate_system_log-logview-log.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-log.obj `if test -f 'logview-log.c'; then $(CYGPATH_W) 'logview-log.c'; else $(CYGPATH_W) '$(srcdir)/logview-log.c'; fi` - -mate_system_log-logview-findbar.o: logview-findbar.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-findbar.o -MD -MP -MF $(DEPDIR)/mate_system_log-logview-findbar.Tpo -c -o mate_system_log-logview-findbar.o `test -f 'logview-findbar.c' || echo '$(srcdir)/'`logview-findbar.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-findbar.Tpo $(DEPDIR)/mate_system_log-logview-findbar.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-findbar.c' object='mate_system_log-logview-findbar.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-findbar.o `test -f 'logview-findbar.c' || echo '$(srcdir)/'`logview-findbar.c - -mate_system_log-logview-findbar.obj: logview-findbar.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-findbar.obj -MD -MP -MF $(DEPDIR)/mate_system_log-logview-findbar.Tpo -c -o mate_system_log-logview-findbar.obj `if test -f 'logview-findbar.c'; then $(CYGPATH_W) 'logview-findbar.c'; else $(CYGPATH_W) '$(srcdir)/logview-findbar.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-findbar.Tpo $(DEPDIR)/mate_system_log-logview-findbar.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-findbar.c' object='mate_system_log-logview-findbar.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-findbar.obj `if test -f 'logview-findbar.c'; then $(CYGPATH_W) 'logview-findbar.c'; else $(CYGPATH_W) '$(srcdir)/logview-findbar.c'; fi` - -mate_system_log-logview-prefs.o: logview-prefs.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-prefs.o -MD -MP -MF $(DEPDIR)/mate_system_log-logview-prefs.Tpo -c -o mate_system_log-logview-prefs.o `test -f 'logview-prefs.c' || echo '$(srcdir)/'`logview-prefs.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-prefs.Tpo $(DEPDIR)/mate_system_log-logview-prefs.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-prefs.c' object='mate_system_log-logview-prefs.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-prefs.o `test -f 'logview-prefs.c' || echo '$(srcdir)/'`logview-prefs.c - -mate_system_log-logview-prefs.obj: logview-prefs.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-prefs.obj -MD -MP -MF $(DEPDIR)/mate_system_log-logview-prefs.Tpo -c -o mate_system_log-logview-prefs.obj `if test -f 'logview-prefs.c'; then $(CYGPATH_W) 'logview-prefs.c'; else $(CYGPATH_W) '$(srcdir)/logview-prefs.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-prefs.Tpo $(DEPDIR)/mate_system_log-logview-prefs.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-prefs.c' object='mate_system_log-logview-prefs.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-prefs.obj `if test -f 'logview-prefs.c'; then $(CYGPATH_W) 'logview-prefs.c'; else $(CYGPATH_W) '$(srcdir)/logview-prefs.c'; fi` - -mate_system_log-logview-filter.o: logview-filter.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-filter.o -MD -MP -MF $(DEPDIR)/mate_system_log-logview-filter.Tpo -c -o mate_system_log-logview-filter.o `test -f 'logview-filter.c' || echo '$(srcdir)/'`logview-filter.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-filter.Tpo $(DEPDIR)/mate_system_log-logview-filter.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-filter.c' object='mate_system_log-logview-filter.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-filter.o `test -f 'logview-filter.c' || echo '$(srcdir)/'`logview-filter.c - -mate_system_log-logview-filter.obj: logview-filter.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-filter.obj -MD -MP -MF $(DEPDIR)/mate_system_log-logview-filter.Tpo -c -o mate_system_log-logview-filter.obj `if test -f 'logview-filter.c'; then $(CYGPATH_W) 'logview-filter.c'; else $(CYGPATH_W) '$(srcdir)/logview-filter.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-filter.Tpo $(DEPDIR)/mate_system_log-logview-filter.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-filter.c' object='mate_system_log-logview-filter.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-filter.obj `if test -f 'logview-filter.c'; then $(CYGPATH_W) 'logview-filter.c'; else $(CYGPATH_W) '$(srcdir)/logview-filter.c'; fi` - -mate_system_log-logview-filter-manager.o: logview-filter-manager.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-filter-manager.o -MD -MP -MF $(DEPDIR)/mate_system_log-logview-filter-manager.Tpo -c -o mate_system_log-logview-filter-manager.o `test -f 'logview-filter-manager.c' || echo '$(srcdir)/'`logview-filter-manager.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-filter-manager.Tpo $(DEPDIR)/mate_system_log-logview-filter-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-filter-manager.c' object='mate_system_log-logview-filter-manager.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-filter-manager.o `test -f 'logview-filter-manager.c' || echo '$(srcdir)/'`logview-filter-manager.c - -mate_system_log-logview-filter-manager.obj: logview-filter-manager.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-filter-manager.obj -MD -MP -MF $(DEPDIR)/mate_system_log-logview-filter-manager.Tpo -c -o mate_system_log-logview-filter-manager.obj `if test -f 'logview-filter-manager.c'; then $(CYGPATH_W) 'logview-filter-manager.c'; else $(CYGPATH_W) '$(srcdir)/logview-filter-manager.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-filter-manager.Tpo $(DEPDIR)/mate_system_log-logview-filter-manager.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-filter-manager.c' object='mate_system_log-logview-filter-manager.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-filter-manager.obj `if test -f 'logview-filter-manager.c'; then $(CYGPATH_W) 'logview-filter-manager.c'; else $(CYGPATH_W) '$(srcdir)/logview-filter-manager.c'; fi` - -mate_system_log-logview-marshal.o: logview-marshal.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-marshal.o -MD -MP -MF $(DEPDIR)/mate_system_log-logview-marshal.Tpo -c -o mate_system_log-logview-marshal.o `test -f 'logview-marshal.c' || echo '$(srcdir)/'`logview-marshal.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-marshal.Tpo $(DEPDIR)/mate_system_log-logview-marshal.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-marshal.c' object='mate_system_log-logview-marshal.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-marshal.o `test -f 'logview-marshal.c' || echo '$(srcdir)/'`logview-marshal.c - -mate_system_log-logview-marshal.obj: logview-marshal.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-marshal.obj -MD -MP -MF $(DEPDIR)/mate_system_log-logview-marshal.Tpo -c -o mate_system_log-logview-marshal.obj `if test -f 'logview-marshal.c'; then $(CYGPATH_W) 'logview-marshal.c'; else $(CYGPATH_W) '$(srcdir)/logview-marshal.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-marshal.Tpo $(DEPDIR)/mate_system_log-logview-marshal.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-marshal.c' object='mate_system_log-logview-marshal.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-marshal.obj `if test -f 'logview-marshal.c'; then $(CYGPATH_W) 'logview-marshal.c'; else $(CYGPATH_W) '$(srcdir)/logview-marshal.c'; fi` - -mate_system_log-logview-resources.o: logview-resources.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-resources.o -MD -MP -MF $(DEPDIR)/mate_system_log-logview-resources.Tpo -c -o mate_system_log-logview-resources.o `test -f 'logview-resources.c' || echo '$(srcdir)/'`logview-resources.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-resources.Tpo $(DEPDIR)/mate_system_log-logview-resources.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-resources.c' object='mate_system_log-logview-resources.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-resources.o `test -f 'logview-resources.c' || echo '$(srcdir)/'`logview-resources.c - -mate_system_log-logview-resources.obj: logview-resources.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -MT mate_system_log-logview-resources.obj -MD -MP -MF $(DEPDIR)/mate_system_log-logview-resources.Tpo -c -o mate_system_log-logview-resources.obj `if test -f 'logview-resources.c'; then $(CYGPATH_W) 'logview-resources.c'; else $(CYGPATH_W) '$(srcdir)/logview-resources.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_system_log-logview-resources.Tpo $(DEPDIR)/mate_system_log-logview-resources.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='logview-resources.c' object='mate_system_log-logview-resources.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_system_log_CFLAGS) $(CFLAGS) -c -o mate_system_log-logview-resources.obj `if test -f 'logview-resources.c'; then $(CYGPATH_W) 'logview-resources.c'; else $(CYGPATH_W) '$(srcdir)/logview-resources.c'; fi` - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" distdir="$(distdir)" \ - dist-hook -check-am: all-am -check: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) check-recursive -all-am: Makefile $(PROGRAMS) -installdirs: installdirs-recursive -installdirs-am: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -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." - -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) -clean: clean-recursive - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f ./$(DEPDIR)/mate_system_log-logview-app.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-filter-manager.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-filter.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-findbar.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-log.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-loglist.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-main.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-manager.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-marshal.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-prefs.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-resources.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-utils.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-window.Po - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f ./$(DEPDIR)/mate_system_log-logview-app.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-filter-manager.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-filter.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-findbar.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-log.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-loglist.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-main.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-manager.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-marshal.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-prefs.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-resources.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-utils.Po - -rm -f ./$(DEPDIR)/mate_system_log-logview-window.Po - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: $(am__recursive_targets) all check install install-am \ - install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ - am--depfiles check check-am clean clean-binPROGRAMS \ - clean-generic clean-libtool cscopelist-am ctags ctags-am \ - dist-hook distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-binPROGRAMS \ - 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-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs installdirs-am \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \ - uninstall-binPROGRAMS - -.PRECIOUS: Makefile - - -logview-marshal.h: logview-marshal.list $(GLIB_GENMARSHAL) - $(GLIB_GENMARSHAL) $< --header --prefix=logview_marshal >> $@ - -logview-marshal.c: logview-marshal.list $(GLIB_GENMARSHAL) - echo "#include \"logview-marshal.h\"" > $@ && \ - $(GLIB_GENMARSHAL) $< --body --prefix=logview_marshal >> $@ - -logview-resources.h logview-resources.c: $(srcdir)/../data/org.mate.system-log.gresource.xml Makefile $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies --sourcedir $(srcdir)/../data $(srcdir)/../data/org.mate.system-log.gresource.xml) - $(AM_V_GEN) XMLLINT=$(XMLLINT) $(GLIB_COMPILE_RESOURCES) --target $@ --sourcedir $(srcdir)/../data --generate --c-name logview $< - -dist-hook: - cd $(distdir) ; rm -f $(CLEANFILES) - --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 -Nru mate-utils-1.26.0/logview/src/tests/Makefile.in mate-utils-1.26.1/logview/src/tests/Makefile.in --- mate-utils-1.26.0/logview/src/tests/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/logview/src/tests/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,733 +0,0 @@ -# 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 . - -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@ -noinst_PROGRAMS = test-reader$(EXEEXT) -subdir = logview/src/tests -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 = -CONFIG_CLEAN_VPATH_FILES = -PROGRAMS = $(noinst_PROGRAMS) -am__dirstamp = $(am__leading_dot)dirstamp -am_test_reader_OBJECTS = test-reader.$(OBJEXT) \ - ../logview-log.$(OBJEXT) ../logview-utils.$(OBJEXT) -test_reader_OBJECTS = $(am_test_reader_OBJECTS) -am__DEPENDENCIES_1 = -test_reader_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) -am__v_lt_0 = --silent -am__v_lt_1 = -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 = -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__maybe_remake_depfiles = depfiles -am__depfiles_remade = ../$(DEPDIR)/logview-log.Po \ - ../$(DEPDIR)/logview-utils.Po ./$(DEPDIR)/test-reader.Po -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -SOURCES = $(test_reader_SOURCES) -DIST_SOURCES = $(test_reader_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp -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@ -AM_CPPFLAGS = \ - $(GLIB_CFLAGS) \ - $(GIO_CFLAGS) \ - -I../ - -test_reader_SOURCES = test-reader.c ../logview-log.c ../logview-utils.c -test_reader_LDADD = $(GLIB_LIBS) $(GIO_LIBS) $(Z_LIBS) -lm -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(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 logview/src/tests/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign logview/src/tests/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): - -clean-noinstPROGRAMS: - @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -../$(am__dirstamp): - @$(MKDIR_P) .. - @: > ../$(am__dirstamp) -../$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ../$(DEPDIR) - @: > ../$(DEPDIR)/$(am__dirstamp) -../logview-log.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) -../logview-utils.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) - -test-reader$(EXEEXT): $(test_reader_OBJECTS) $(test_reader_DEPENDENCIES) $(EXTRA_test_reader_DEPENDENCIES) - @rm -f test-reader$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(test_reader_OBJECTS) $(test_reader_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -rm -f ../*.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/logview-log.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/logview-utils.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-reader.Po@am__quote@ # am--include-marker - -$(am__depfiles_remade): - @$(MKDIR_P) $(@D) - @echo '# dummy' >$@-t && $(am__mv) $@-t $@ - -am--depfiles: $(am__depfiles_remade) - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 $(PROGRAMS) -installdirs: -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: - -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) - -rm -f ../$(DEPDIR)/$(am__dirstamp) - -rm -f ../$(am__dirstamp) - -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 clean-noinstPROGRAMS \ - mostlyclean-am - -distclean: distclean-am - -rm -f ../$(DEPDIR)/logview-log.Po - -rm -f ../$(DEPDIR)/logview-utils.Po - -rm -f ./$(DEPDIR)/test-reader.Po - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -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-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f ../$(DEPDIR)/logview-log.Po - -rm -f ../$(DEPDIR)/logview-utils.Po - -rm -f ./$(DEPDIR)/test-reader.Po - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ - clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \ - ctags ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am 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-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - --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 -Nru mate-utils-1.26.0/ltmain.sh mate-utils-1.26.1/ltmain.sh --- mate-utils-1.26.0/ltmain.sh 2021-08-05 19:45:21.000000000 +0000 +++ mate-utils-1.26.1/ltmain.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,11149 +0,0 @@ -#! /bin/sh -## DO NOT EDIT - This file generated from ./build-aux/ltmain.in -## by inline-source v2014-01-03.01 - -# libtool (GNU libtool) 2.4.6 -# Provide generalized library-building support services. -# Written by Gordon Matzigkeit , 1996 - -# Copyright (C) 1996-2015 Free Software Foundation, Inc. -# This is free software; see the source for copying conditions. There is NO -# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -# GNU Libtool 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. -# -# As a special exception to the GNU General Public License, -# if you distribute this file as part of a program or library that -# is built using GNU Libtool, you may include this file under the -# same distribution terms that you use for the rest of that program. -# -# GNU Libtool 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 . - - -PROGRAM=libtool -PACKAGE=libtool -VERSION=2.4.6 -package_revision=2.4.6 - - -## ------ ## -## Usage. ## -## ------ ## - -# Run './libtool --help' for help with using this script from the -# command line. - - -## ------------------------------- ## -## User overridable command paths. ## -## ------------------------------- ## - -# After configure completes, it has a better idea of some of the -# shell tools we need than the defaults used by the functions shared -# with bootstrap, so set those here where they can still be over- -# ridden by the user, but otherwise take precedence. - -: ${AUTOCONF="autoconf"} -: ${AUTOMAKE="automake"} - - -## -------------------------- ## -## Source external libraries. ## -## -------------------------- ## - -# Much of our low-level functionality needs to be sourced from external -# libraries, which are installed to $pkgauxdir. - -# Set a version string for this script. -scriptversion=2015-01-20.17; # UTC - -# General shell script boiler plate, and helper functions. -# Written by Gary V. Vaughan, 2004 - -# Copyright (C) 2004-2015 Free Software Foundation, Inc. -# This is free software; see the source for copying conditions. There is NO -# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -# 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. - -# As a special exception to the GNU General Public License, if you distribute -# this file as part of a program or library that is built using GNU Libtool, -# you may include this file under the same distribution terms that you use -# for the rest of that program. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNES 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 . - -# Please report bugs or propose patches to gary@gnu.org. - - -## ------ ## -## Usage. ## -## ------ ## - -# Evaluate this file near the top of your script to gain access to -# the functions and variables defined here: -# -# . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh -# -# If you need to override any of the default environment variable -# settings, do that before evaluating this file. - - -## -------------------- ## -## Shell normalisation. ## -## -------------------- ## - -# Some shells need a little help to be as Bourne compatible as possible. -# Before doing anything else, make sure all that help has been provided! - -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac -fi - -# NLS nuisances: We save the old values in case they are required later. -_G_user_locale= -_G_safe_locale= -for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES -do - eval "if test set = \"\${$_G_var+set}\"; then - save_$_G_var=\$$_G_var - $_G_var=C - export $_G_var - _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" - _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" - fi" -done - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -# Make sure IFS has a sensible default -sp=' ' -nl=' -' -IFS="$sp $nl" - -# There are apparently some retarded systems that use ';' as a PATH separator! -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - - -## ------------------------- ## -## Locate command utilities. ## -## ------------------------- ## - - -# func_executable_p FILE -# ---------------------- -# Check that FILE is an executable regular file. -func_executable_p () -{ - test -f "$1" && test -x "$1" -} - - -# func_path_progs PROGS_LIST CHECK_FUNC [PATH] -# -------------------------------------------- -# Search for either a program that responds to --version with output -# containing "GNU", or else returned by CHECK_FUNC otherwise, by -# trying all the directories in PATH with each of the elements of -# PROGS_LIST. -# -# CHECK_FUNC should accept the path to a candidate program, and -# set $func_check_prog_result if it truncates its output less than -# $_G_path_prog_max characters. -func_path_progs () -{ - _G_progs_list=$1 - _G_check_func=$2 - _G_PATH=${3-"$PATH"} - - _G_path_prog_max=0 - _G_path_prog_found=false - _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} - for _G_dir in $_G_PATH; do - IFS=$_G_save_IFS - test -z "$_G_dir" && _G_dir=. - for _G_prog_name in $_G_progs_list; do - for _exeext in '' .EXE; do - _G_path_prog=$_G_dir/$_G_prog_name$_exeext - func_executable_p "$_G_path_prog" || continue - case `"$_G_path_prog" --version 2>&1` in - *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; - *) $_G_check_func $_G_path_prog - func_path_progs_result=$func_check_prog_result - ;; - esac - $_G_path_prog_found && break 3 - done - done - done - IFS=$_G_save_IFS - test -z "$func_path_progs_result" && { - echo "no acceptable sed could be found in \$PATH" >&2 - exit 1 - } -} - - -# We want to be able to use the functions in this file before configure -# has figured out where the best binaries are kept, which means we have -# to search for them ourselves - except when the results are already set -# where we skip the searches. - -# Unless the user overrides by setting SED, search the path for either GNU -# sed, or the sed that truncates its output the least. -test -z "$SED" && { - _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ - for _G_i in 1 2 3 4 5 6 7; do - _G_sed_script=$_G_sed_script$nl$_G_sed_script - done - echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed - _G_sed_script= - - func_check_prog_sed () - { - _G_path_prog=$1 - - _G_count=0 - printf 0123456789 >conftest.in - while : - do - cat conftest.in conftest.in >conftest.tmp - mv conftest.tmp conftest.in - cp conftest.in conftest.nl - echo '' >> conftest.nl - "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break - diff conftest.out conftest.nl >/dev/null 2>&1 || break - _G_count=`expr $_G_count + 1` - if test "$_G_count" -gt "$_G_path_prog_max"; then - # Best one so far, save it but keep looking for a better one - func_check_prog_result=$_G_path_prog - _G_path_prog_max=$_G_count - fi - # 10*(2^10) chars as input seems more than enough - test 10 -lt "$_G_count" && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out - } - - func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin - rm -f conftest.sed - SED=$func_path_progs_result -} - - -# Unless the user overrides by setting GREP, search the path for either GNU -# grep, or the grep that truncates its output the least. -test -z "$GREP" && { - func_check_prog_grep () - { - _G_path_prog=$1 - - _G_count=0 - _G_path_prog_max=0 - printf 0123456789 >conftest.in - while : - do - cat conftest.in conftest.in >conftest.tmp - mv conftest.tmp conftest.in - cp conftest.in conftest.nl - echo 'GREP' >> conftest.nl - "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break - diff conftest.out conftest.nl >/dev/null 2>&1 || break - _G_count=`expr $_G_count + 1` - if test "$_G_count" -gt "$_G_path_prog_max"; then - # Best one so far, save it but keep looking for a better one - func_check_prog_result=$_G_path_prog - _G_path_prog_max=$_G_count - fi - # 10*(2^10) chars as input seems more than enough - test 10 -lt "$_G_count" && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out - } - - func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin - GREP=$func_path_progs_result -} - - -## ------------------------------- ## -## User overridable command paths. ## -## ------------------------------- ## - -# All uppercase variable names are used for environment variables. These -# variables can be overridden by the user before calling a script that -# uses them if a suitable command of that name is not already available -# in the command search PATH. - -: ${CP="cp -f"} -: ${ECHO="printf %s\n"} -: ${EGREP="$GREP -E"} -: ${FGREP="$GREP -F"} -: ${LN_S="ln -s"} -: ${MAKE="make"} -: ${MKDIR="mkdir"} -: ${MV="mv -f"} -: ${RM="rm -f"} -: ${SHELL="${CONFIG_SHELL-/bin/sh}"} - - -## -------------------- ## -## Useful sed snippets. ## -## -------------------- ## - -sed_dirname='s|/[^/]*$||' -sed_basename='s|^.*/||' - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='s|\([`"$\\]\)|\\\1|g' - -# Same as above, but do not quote variable references. -sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' - -# Sed substitution that turns a string into a regex matching for the -# string literally. -sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' - -# Sed substitution that converts a w32 file name or path -# that contains forward slashes, into one that contains -# (escaped) backslashes. A very naive implementation. -sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' - -# Re-'\' parameter expansions in output of sed_double_quote_subst that -# were '\'-ed in input to the same. If an odd number of '\' preceded a -# '$' in input to sed_double_quote_subst, that '$' was protected from -# expansion. Since each input '\' is now two '\'s, look for any number -# of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. -_G_bs='\\' -_G_bs2='\\\\' -_G_bs4='\\\\\\\\' -_G_dollar='\$' -sed_double_backslash="\ - s/$_G_bs4/&\\ -/g - s/^$_G_bs2$_G_dollar/$_G_bs&/ - s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g - s/\n//g" - - -## ----------------- ## -## Global variables. ## -## ----------------- ## - -# Except for the global variables explicitly listed below, the following -# functions in the '^func_' namespace, and the '^require_' namespace -# variables initialised in the 'Resource management' section, sourcing -# this file will not pollute your global namespace with anything -# else. There's no portable way to scope variables in Bourne shell -# though, so actually running these functions will sometimes place -# results into a variable named after the function, and often use -# temporary variables in the '^_G_' namespace. If you are careful to -# avoid using those namespaces casually in your sourcing script, things -# should continue to work as you expect. And, of course, you can freely -# overwrite any of the functions or variables defined here before -# calling anything to customize them. - -EXIT_SUCCESS=0 -EXIT_FAILURE=1 -EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. -EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. - -# Allow overriding, eg assuming that you follow the convention of -# putting '$debug_cmd' at the start of all your functions, you can get -# bash to show function call trace with: -# -# debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name -debug_cmd=${debug_cmd-":"} -exit_cmd=: - -# By convention, finish your script with: -# -# exit $exit_status -# -# so that you can set exit_status to non-zero if you want to indicate -# something went wrong during execution without actually bailing out at -# the point of failure. -exit_status=$EXIT_SUCCESS - -# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh -# is ksh but when the shell is invoked as "sh" and the current value of -# the _XPG environment variable is not equal to 1 (one), the special -# positional parameter $0, within a function call, is the name of the -# function. -progpath=$0 - -# The name of this program. -progname=`$ECHO "$progpath" |$SED "$sed_basename"` - -# Make sure we have an absolute progpath for reexecution: -case $progpath in - [\\/]*|[A-Za-z]:\\*) ;; - *[\\/]*) - progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` - progdir=`cd "$progdir" && pwd` - progpath=$progdir/$progname - ;; - *) - _G_IFS=$IFS - IFS=${PATH_SEPARATOR-:} - for progdir in $PATH; do - IFS=$_G_IFS - test -x "$progdir/$progname" && break - done - IFS=$_G_IFS - test -n "$progdir" || progdir=`pwd` - progpath=$progdir/$progname - ;; -esac - - -## ----------------- ## -## Standard options. ## -## ----------------- ## - -# The following options affect the operation of the functions defined -# below, and should be set appropriately depending on run-time para- -# meters passed on the command line. - -opt_dry_run=false -opt_quiet=false -opt_verbose=false - -# Categories 'all' and 'none' are always available. Append any others -# you will pass as the first argument to func_warning from your own -# code. -warning_categories= - -# By default, display warnings according to 'opt_warning_types'. Set -# 'warning_func' to ':' to elide all warnings, or func_fatal_error to -# treat the next displayed warning as a fatal error. -warning_func=func_warn_and_continue - -# Set to 'all' to display all warnings, 'none' to suppress all -# warnings, or a space delimited list of some subset of -# 'warning_categories' to display only the listed warnings. -opt_warning_types=all - - -## -------------------- ## -## Resource management. ## -## -------------------- ## - -# This section contains definitions for functions that each ensure a -# particular resource (a file, or a non-empty configuration variable for -# example) is available, and if appropriate to extract default values -# from pertinent package files. Call them using their associated -# 'require_*' variable to ensure that they are executed, at most, once. -# -# It's entirely deliberate that calling these functions can set -# variables that don't obey the namespace limitations obeyed by the rest -# of this file, in order that that they be as useful as possible to -# callers. - - -# require_term_colors -# ------------------- -# Allow display of bold text on terminals that support it. -require_term_colors=func_require_term_colors -func_require_term_colors () -{ - $debug_cmd - - test -t 1 && { - # COLORTERM and USE_ANSI_COLORS environment variables take - # precedence, because most terminfo databases neglect to describe - # whether color sequences are supported. - test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} - - if test 1 = "$USE_ANSI_COLORS"; then - # Standard ANSI escape sequences - tc_reset='' - tc_bold=''; tc_standout='' - tc_red=''; tc_green='' - tc_blue=''; tc_cyan='' - else - # Otherwise trust the terminfo database after all. - test -n "`tput sgr0 2>/dev/null`" && { - tc_reset=`tput sgr0` - test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` - tc_standout=$tc_bold - test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` - test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` - test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` - test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` - test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` - } - fi - } - - require_term_colors=: -} - - -## ----------------- ## -## Function library. ## -## ----------------- ## - -# This section contains a variety of useful functions to call in your -# scripts. Take note of the portable wrappers for features provided by -# some modern shells, which will fall back to slower equivalents on -# less featureful shells. - - -# func_append VAR VALUE -# --------------------- -# Append VALUE onto the existing contents of VAR. - - # We should try to minimise forks, especially on Windows where they are - # unreasonably slow, so skip the feature probes when bash or zsh are - # being used: - if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then - : ${_G_HAVE_ARITH_OP="yes"} - : ${_G_HAVE_XSI_OPS="yes"} - # The += operator was introduced in bash 3.1 - case $BASH_VERSION in - [12].* | 3.0 | 3.0*) ;; - *) - : ${_G_HAVE_PLUSEQ_OP="yes"} - ;; - esac - fi - - # _G_HAVE_PLUSEQ_OP - # Can be empty, in which case the shell is probed, "yes" if += is - # useable or anything else if it does not work. - test -z "$_G_HAVE_PLUSEQ_OP" \ - && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ - && _G_HAVE_PLUSEQ_OP=yes - -if test yes = "$_G_HAVE_PLUSEQ_OP" -then - # This is an XSI compatible shell, allowing a faster implementation... - eval 'func_append () - { - $debug_cmd - - eval "$1+=\$2" - }' -else - # ...otherwise fall back to using expr, which is often a shell builtin. - func_append () - { - $debug_cmd - - eval "$1=\$$1\$2" - } -fi - - -# func_append_quoted VAR VALUE -# ---------------------------- -# Quote VALUE and append to the end of shell variable VAR, separated -# by a space. -if test yes = "$_G_HAVE_PLUSEQ_OP"; then - eval 'func_append_quoted () - { - $debug_cmd - - func_quote_for_eval "$2" - eval "$1+=\\ \$func_quote_for_eval_result" - }' -else - func_append_quoted () - { - $debug_cmd - - func_quote_for_eval "$2" - eval "$1=\$$1\\ \$func_quote_for_eval_result" - } -fi - - -# func_append_uniq VAR VALUE -# -------------------------- -# Append unique VALUE onto the existing contents of VAR, assuming -# entries are delimited by the first character of VALUE. For example: -# -# func_append_uniq options " --another-option option-argument" -# -# will only append to $options if " --another-option option-argument " -# is not already present somewhere in $options already (note spaces at -# each end implied by leading space in second argument). -func_append_uniq () -{ - $debug_cmd - - eval _G_current_value='`$ECHO $'$1'`' - _G_delim=`expr "$2" : '\(.\)'` - - case $_G_delim$_G_current_value$_G_delim in - *"$2$_G_delim"*) ;; - *) func_append "$@" ;; - esac -} - - -# func_arith TERM... -# ------------------ -# Set func_arith_result to the result of evaluating TERMs. - test -z "$_G_HAVE_ARITH_OP" \ - && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ - && _G_HAVE_ARITH_OP=yes - -if test yes = "$_G_HAVE_ARITH_OP"; then - eval 'func_arith () - { - $debug_cmd - - func_arith_result=$(( $* )) - }' -else - func_arith () - { - $debug_cmd - - func_arith_result=`expr "$@"` - } -fi - - -# func_basename FILE -# ------------------ -# Set func_basename_result to FILE with everything up to and including -# the last / stripped. -if test yes = "$_G_HAVE_XSI_OPS"; then - # If this shell supports suffix pattern removal, then use it to avoid - # forking. Hide the definitions single quotes in case the shell chokes - # on unsupported syntax... - _b='func_basename_result=${1##*/}' - _d='case $1 in - */*) func_dirname_result=${1%/*}$2 ;; - * ) func_dirname_result=$3 ;; - esac' - -else - # ...otherwise fall back to using sed. - _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' - _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` - if test "X$func_dirname_result" = "X$1"; then - func_dirname_result=$3 - else - func_append func_dirname_result "$2" - fi' -fi - -eval 'func_basename () -{ - $debug_cmd - - '"$_b"' -}' - - -# func_dirname FILE APPEND NONDIR_REPLACEMENT -# ------------------------------------------- -# Compute the dirname of FILE. If nonempty, add APPEND to the result, -# otherwise set result to NONDIR_REPLACEMENT. -eval 'func_dirname () -{ - $debug_cmd - - '"$_d"' -}' - - -# func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT -# -------------------------------------------------------- -# Perform func_basename and func_dirname in a single function -# call: -# dirname: Compute the dirname of FILE. If nonempty, -# add APPEND to the result, otherwise set result -# to NONDIR_REPLACEMENT. -# value returned in "$func_dirname_result" -# basename: Compute filename of FILE. -# value retuned in "$func_basename_result" -# For efficiency, we do not delegate to the functions above but instead -# duplicate the functionality here. -eval 'func_dirname_and_basename () -{ - $debug_cmd - - '"$_b"' - '"$_d"' -}' - - -# func_echo ARG... -# ---------------- -# Echo program name prefixed message. -func_echo () -{ - $debug_cmd - - _G_message=$* - - func_echo_IFS=$IFS - IFS=$nl - for _G_line in $_G_message; do - IFS=$func_echo_IFS - $ECHO "$progname: $_G_line" - done - IFS=$func_echo_IFS -} - - -# func_echo_all ARG... -# -------------------- -# Invoke $ECHO with all args, space-separated. -func_echo_all () -{ - $ECHO "$*" -} - - -# func_echo_infix_1 INFIX ARG... -# ------------------------------ -# Echo program name, followed by INFIX on the first line, with any -# additional lines not showing INFIX. -func_echo_infix_1 () -{ - $debug_cmd - - $require_term_colors - - _G_infix=$1; shift - _G_indent=$_G_infix - _G_prefix="$progname: $_G_infix: " - _G_message=$* - - # Strip color escape sequences before counting printable length - for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" - do - test -n "$_G_tc" && { - _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` - _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` - } - done - _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes - - func_echo_infix_1_IFS=$IFS - IFS=$nl - for _G_line in $_G_message; do - IFS=$func_echo_infix_1_IFS - $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 - _G_prefix=$_G_indent - done - IFS=$func_echo_infix_1_IFS -} - - -# func_error ARG... -# ----------------- -# Echo program name prefixed message to standard error. -func_error () -{ - $debug_cmd - - $require_term_colors - - func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 -} - - -# func_fatal_error ARG... -# ----------------------- -# Echo program name prefixed message to standard error, and exit. -func_fatal_error () -{ - $debug_cmd - - func_error "$*" - exit $EXIT_FAILURE -} - - -# func_grep EXPRESSION FILENAME -# ----------------------------- -# Check whether EXPRESSION matches any line of FILENAME, without output. -func_grep () -{ - $debug_cmd - - $GREP "$1" "$2" >/dev/null 2>&1 -} - - -# func_len STRING -# --------------- -# Set func_len_result to the length of STRING. STRING may not -# start with a hyphen. - test -z "$_G_HAVE_XSI_OPS" \ - && (eval 'x=a/b/c; - test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ - && _G_HAVE_XSI_OPS=yes - -if test yes = "$_G_HAVE_XSI_OPS"; then - eval 'func_len () - { - $debug_cmd - - func_len_result=${#1} - }' -else - func_len () - { - $debug_cmd - - func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` - } -fi - - -# func_mkdir_p DIRECTORY-PATH -# --------------------------- -# Make sure the entire path to DIRECTORY-PATH is available. -func_mkdir_p () -{ - $debug_cmd - - _G_directory_path=$1 - _G_dir_list= - - if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then - - # Protect directory names starting with '-' - case $_G_directory_path in - -*) _G_directory_path=./$_G_directory_path ;; - esac - - # While some portion of DIR does not yet exist... - while test ! -d "$_G_directory_path"; do - # ...make a list in topmost first order. Use a colon delimited - # list incase some portion of path contains whitespace. - _G_dir_list=$_G_directory_path:$_G_dir_list - - # If the last portion added has no slash in it, the list is done - case $_G_directory_path in */*) ;; *) break ;; esac - - # ...otherwise throw away the child directory and loop - _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` - done - _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` - - func_mkdir_p_IFS=$IFS; IFS=: - for _G_dir in $_G_dir_list; do - IFS=$func_mkdir_p_IFS - # mkdir can fail with a 'File exist' error if two processes - # try to create one of the directories concurrently. Don't - # stop in that case! - $MKDIR "$_G_dir" 2>/dev/null || : - done - IFS=$func_mkdir_p_IFS - - # Bail out if we (or some other process) failed to create a directory. - test -d "$_G_directory_path" || \ - func_fatal_error "Failed to create '$1'" - fi -} - - -# func_mktempdir [BASENAME] -# ------------------------- -# Make a temporary directory that won't clash with other running -# libtool processes, and avoids race conditions if possible. If -# given, BASENAME is the basename for that directory. -func_mktempdir () -{ - $debug_cmd - - _G_template=${TMPDIR-/tmp}/${1-$progname} - - if test : = "$opt_dry_run"; then - # Return a directory name, but don't create it in dry-run mode - _G_tmpdir=$_G_template-$$ - else - - # If mktemp works, use that first and foremost - _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` - - if test ! -d "$_G_tmpdir"; then - # Failing that, at least try and use $RANDOM to avoid a race - _G_tmpdir=$_G_template-${RANDOM-0}$$ - - func_mktempdir_umask=`umask` - umask 0077 - $MKDIR "$_G_tmpdir" - umask $func_mktempdir_umask - fi - - # If we're not in dry-run mode, bomb out on failure - test -d "$_G_tmpdir" || \ - func_fatal_error "cannot create temporary directory '$_G_tmpdir'" - fi - - $ECHO "$_G_tmpdir" -} - - -# func_normal_abspath PATH -# ------------------------ -# Remove doubled-up and trailing slashes, "." path components, -# and cancel out any ".." path components in PATH after making -# it an absolute path. -func_normal_abspath () -{ - $debug_cmd - - # These SED scripts presuppose an absolute path with a trailing slash. - _G_pathcar='s|^/\([^/]*\).*$|\1|' - _G_pathcdr='s|^/[^/]*||' - _G_removedotparts=':dotsl - s|/\./|/|g - t dotsl - s|/\.$|/|' - _G_collapseslashes='s|/\{1,\}|/|g' - _G_finalslash='s|/*$|/|' - - # Start from root dir and reassemble the path. - func_normal_abspath_result= - func_normal_abspath_tpath=$1 - func_normal_abspath_altnamespace= - case $func_normal_abspath_tpath in - "") - # Empty path, that just means $cwd. - func_stripname '' '/' "`pwd`" - func_normal_abspath_result=$func_stripname_result - return - ;; - # The next three entries are used to spot a run of precisely - # two leading slashes without using negated character classes; - # we take advantage of case's first-match behaviour. - ///*) - # Unusual form of absolute path, do nothing. - ;; - //*) - # Not necessarily an ordinary path; POSIX reserves leading '//' - # and for example Cygwin uses it to access remote file shares - # over CIFS/SMB, so we conserve a leading double slash if found. - func_normal_abspath_altnamespace=/ - ;; - /*) - # Absolute path, do nothing. - ;; - *) - # Relative path, prepend $cwd. - func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath - ;; - esac - - # Cancel out all the simple stuff to save iterations. We also want - # the path to end with a slash for ease of parsing, so make sure - # there is one (and only one) here. - func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` - while :; do - # Processed it all yet? - if test / = "$func_normal_abspath_tpath"; then - # If we ascended to the root using ".." the result may be empty now. - if test -z "$func_normal_abspath_result"; then - func_normal_abspath_result=/ - fi - break - fi - func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$_G_pathcar"` - func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$_G_pathcdr"` - # Figure out what to do with it - case $func_normal_abspath_tcomponent in - "") - # Trailing empty path component, ignore it. - ;; - ..) - # Parent dir; strip last assembled component from result. - func_dirname "$func_normal_abspath_result" - func_normal_abspath_result=$func_dirname_result - ;; - *) - # Actual path component, append it. - func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" - ;; - esac - done - # Restore leading double-slash if one was found on entry. - func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result -} - - -# func_notquiet ARG... -# -------------------- -# Echo program name prefixed message only when not in quiet mode. -func_notquiet () -{ - $debug_cmd - - $opt_quiet || func_echo ${1+"$@"} - - # A bug in bash halts the script if the last line of a function - # fails when set -e is in force, so we need another command to - # work around that: - : -} - - -# func_relative_path SRCDIR DSTDIR -# -------------------------------- -# Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. -func_relative_path () -{ - $debug_cmd - - func_relative_path_result= - func_normal_abspath "$1" - func_relative_path_tlibdir=$func_normal_abspath_result - func_normal_abspath "$2" - func_relative_path_tbindir=$func_normal_abspath_result - - # Ascend the tree starting from libdir - while :; do - # check if we have found a prefix of bindir - case $func_relative_path_tbindir in - $func_relative_path_tlibdir) - # found an exact match - func_relative_path_tcancelled= - break - ;; - $func_relative_path_tlibdir*) - # found a matching prefix - func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" - func_relative_path_tcancelled=$func_stripname_result - if test -z "$func_relative_path_result"; then - func_relative_path_result=. - fi - break - ;; - *) - func_dirname $func_relative_path_tlibdir - func_relative_path_tlibdir=$func_dirname_result - if test -z "$func_relative_path_tlibdir"; then - # Have to descend all the way to the root! - func_relative_path_result=../$func_relative_path_result - func_relative_path_tcancelled=$func_relative_path_tbindir - break - fi - func_relative_path_result=../$func_relative_path_result - ;; - esac - done - - # Now calculate path; take care to avoid doubling-up slashes. - func_stripname '' '/' "$func_relative_path_result" - func_relative_path_result=$func_stripname_result - func_stripname '/' '/' "$func_relative_path_tcancelled" - if test -n "$func_stripname_result"; then - func_append func_relative_path_result "/$func_stripname_result" - fi - - # Normalisation. If bindir is libdir, return '.' else relative path. - if test -n "$func_relative_path_result"; then - func_stripname './' '' "$func_relative_path_result" - func_relative_path_result=$func_stripname_result - fi - - test -n "$func_relative_path_result" || func_relative_path_result=. - - : -} - - -# func_quote_for_eval ARG... -# -------------------------- -# Aesthetically quote ARGs to be evaled later. -# This function returns two values: -# i) func_quote_for_eval_result -# double-quoted, suitable for a subsequent eval -# ii) func_quote_for_eval_unquoted_result -# has all characters that are still active within double -# quotes backslashified. -func_quote_for_eval () -{ - $debug_cmd - - func_quote_for_eval_unquoted_result= - func_quote_for_eval_result= - while test 0 -lt $#; do - case $1 in - *[\\\`\"\$]*) - _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; - *) - _G_unquoted_arg=$1 ;; - esac - if test -n "$func_quote_for_eval_unquoted_result"; then - func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" - else - func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" - fi - - case $_G_unquoted_arg in - # Double-quote args containing shell metacharacters to delay - # word splitting, command substitution and variable expansion - # for a subsequent eval. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - _G_quoted_arg=\"$_G_unquoted_arg\" - ;; - *) - _G_quoted_arg=$_G_unquoted_arg - ;; - esac - - if test -n "$func_quote_for_eval_result"; then - func_append func_quote_for_eval_result " $_G_quoted_arg" - else - func_append func_quote_for_eval_result "$_G_quoted_arg" - fi - shift - done -} - - -# func_quote_for_expand ARG -# ------------------------- -# Aesthetically quote ARG to be evaled later; same as above, -# but do not quote variable references. -func_quote_for_expand () -{ - $debug_cmd - - case $1 in - *[\\\`\"]*) - _G_arg=`$ECHO "$1" | $SED \ - -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; - *) - _G_arg=$1 ;; - esac - - case $_G_arg in - # Double-quote args containing shell metacharacters to delay - # word splitting and command substitution for a subsequent eval. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - _G_arg=\"$_G_arg\" - ;; - esac - - func_quote_for_expand_result=$_G_arg -} - - -# func_stripname PREFIX SUFFIX NAME -# --------------------------------- -# strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. -# PREFIX and SUFFIX must not contain globbing or regex special -# characters, hashes, percent signs, but SUFFIX may contain a leading -# dot (in which case that matches only a dot). -if test yes = "$_G_HAVE_XSI_OPS"; then - eval 'func_stripname () - { - $debug_cmd - - # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are - # positional parameters, so assign one to ordinary variable first. - func_stripname_result=$3 - func_stripname_result=${func_stripname_result#"$1"} - func_stripname_result=${func_stripname_result%"$2"} - }' -else - func_stripname () - { - $debug_cmd - - case $2 in - .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; - *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; - esac - } -fi - - -# func_show_eval CMD [FAIL_EXP] -# ----------------------------- -# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is -# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP -# is given, then evaluate it. -func_show_eval () -{ - $debug_cmd - - _G_cmd=$1 - _G_fail_exp=${2-':'} - - func_quote_for_expand "$_G_cmd" - eval "func_notquiet $func_quote_for_expand_result" - - $opt_dry_run || { - eval "$_G_cmd" - _G_status=$? - if test 0 -ne "$_G_status"; then - eval "(exit $_G_status); $_G_fail_exp" - fi - } -} - - -# func_show_eval_locale CMD [FAIL_EXP] -# ------------------------------------ -# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is -# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP -# is given, then evaluate it. Use the saved locale for evaluation. -func_show_eval_locale () -{ - $debug_cmd - - _G_cmd=$1 - _G_fail_exp=${2-':'} - - $opt_quiet || { - func_quote_for_expand "$_G_cmd" - eval "func_echo $func_quote_for_expand_result" - } - - $opt_dry_run || { - eval "$_G_user_locale - $_G_cmd" - _G_status=$? - eval "$_G_safe_locale" - if test 0 -ne "$_G_status"; then - eval "(exit $_G_status); $_G_fail_exp" - fi - } -} - - -# func_tr_sh -# ---------- -# Turn $1 into a string suitable for a shell variable name. -# Result is stored in $func_tr_sh_result. All characters -# not in the set a-zA-Z0-9_ are replaced with '_'. Further, -# if $1 begins with a digit, a '_' is prepended as well. -func_tr_sh () -{ - $debug_cmd - - case $1 in - [0-9]* | *[!a-zA-Z0-9_]*) - func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` - ;; - * ) - func_tr_sh_result=$1 - ;; - esac -} - - -# func_verbose ARG... -# ------------------- -# Echo program name prefixed message in verbose mode only. -func_verbose () -{ - $debug_cmd - - $opt_verbose && func_echo "$*" - - : -} - - -# func_warn_and_continue ARG... -# ----------------------------- -# Echo program name prefixed warning message to standard error. -func_warn_and_continue () -{ - $debug_cmd - - $require_term_colors - - func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 -} - - -# func_warning CATEGORY ARG... -# ---------------------------- -# Echo program name prefixed warning message to standard error. Warning -# messages can be filtered according to CATEGORY, where this function -# elides messages where CATEGORY is not listed in the global variable -# 'opt_warning_types'. -func_warning () -{ - $debug_cmd - - # CATEGORY must be in the warning_categories list! - case " $warning_categories " in - *" $1 "*) ;; - *) func_internal_error "invalid warning category '$1'" ;; - esac - - _G_category=$1 - shift - - case " $opt_warning_types " in - *" $_G_category "*) $warning_func ${1+"$@"} ;; - esac -} - - -# func_sort_ver VER1 VER2 -# ----------------------- -# 'sort -V' is not generally available. -# Note this deviates from the version comparison in automake -# in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a -# but this should suffice as we won't be specifying old -# version formats or redundant trailing .0 in bootstrap.conf. -# If we did want full compatibility then we should probably -# use m4_version_compare from autoconf. -func_sort_ver () -{ - $debug_cmd - - printf '%s\n%s\n' "$1" "$2" \ - | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n -} - -# func_lt_ver PREV CURR -# --------------------- -# Return true if PREV and CURR are in the correct order according to -# func_sort_ver, otherwise false. Use it like this: -# -# func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." -func_lt_ver () -{ - $debug_cmd - - test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` -} - - -# Local variables: -# mode: shell-script -# sh-indentation: 2 -# eval: (add-hook 'before-save-hook 'time-stamp) -# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" -# time-stamp-time-zone: "UTC" -# End: -#! /bin/sh - -# Set a version string for this script. -scriptversion=2014-01-07.03; # UTC - -# A portable, pluggable option parser for Bourne shell. -# Written by Gary V. Vaughan, 2010 - -# Copyright (C) 2010-2015 Free Software Foundation, Inc. -# This is free software; see the source for copying conditions. There is NO -# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -# 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 . - -# Please report bugs or propose patches to gary@gnu.org. - - -## ------ ## -## Usage. ## -## ------ ## - -# This file is a library for parsing options in your shell scripts along -# with assorted other useful supporting features that you can make use -# of too. -# -# For the simplest scripts you might need only: -# -# #!/bin/sh -# . relative/path/to/funclib.sh -# . relative/path/to/options-parser -# scriptversion=1.0 -# func_options ${1+"$@"} -# eval set dummy "$func_options_result"; shift -# ...rest of your script... -# -# In order for the '--version' option to work, you will need to have a -# suitably formatted comment like the one at the top of this file -# starting with '# Written by ' and ending with '# warranty; '. -# -# For '-h' and '--help' to work, you will also need a one line -# description of your script's purpose in a comment directly above the -# '# Written by ' line, like the one at the top of this file. -# -# The default options also support '--debug', which will turn on shell -# execution tracing (see the comment above debug_cmd below for another -# use), and '--verbose' and the func_verbose function to allow your script -# to display verbose messages only when your user has specified -# '--verbose'. -# -# After sourcing this file, you can plug processing for additional -# options by amending the variables from the 'Configuration' section -# below, and following the instructions in the 'Option parsing' -# section further down. - -## -------------- ## -## Configuration. ## -## -------------- ## - -# You should override these variables in your script after sourcing this -# file so that they reflect the customisations you have added to the -# option parser. - -# The usage line for option parsing errors and the start of '-h' and -# '--help' output messages. You can embed shell variables for delayed -# expansion at the time the message is displayed, but you will need to -# quote other shell meta-characters carefully to prevent them being -# expanded when the contents are evaled. -usage='$progpath [OPTION]...' - -# Short help message in response to '-h' and '--help'. Add to this or -# override it after sourcing this library to reflect the full set of -# options your script accepts. -usage_message="\ - --debug enable verbose shell tracing - -W, --warnings=CATEGORY - report the warnings falling in CATEGORY [all] - -v, --verbose verbosely report processing - --version print version information and exit - -h, --help print short or long help message and exit -" - -# Additional text appended to 'usage_message' in response to '--help'. -long_help_message=" -Warning categories include: - 'all' show all warnings - 'none' turn off all the warnings - 'error' warnings are treated as fatal errors" - -# Help message printed before fatal option parsing errors. -fatal_help="Try '\$progname --help' for more information." - - - -## ------------------------- ## -## Hook function management. ## -## ------------------------- ## - -# This section contains functions for adding, removing, and running hooks -# to the main code. A hook is just a named list of of function, that can -# be run in order later on. - -# func_hookable FUNC_NAME -# ----------------------- -# Declare that FUNC_NAME will run hooks added with -# 'func_add_hook FUNC_NAME ...'. -func_hookable () -{ - $debug_cmd - - func_append hookable_fns " $1" -} - - -# func_add_hook FUNC_NAME HOOK_FUNC -# --------------------------------- -# Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must -# first have been declared "hookable" by a call to 'func_hookable'. -func_add_hook () -{ - $debug_cmd - - case " $hookable_fns " in - *" $1 "*) ;; - *) func_fatal_error "'$1' does not accept hook functions." ;; - esac - - eval func_append ${1}_hooks '" $2"' -} - - -# func_remove_hook FUNC_NAME HOOK_FUNC -# ------------------------------------ -# Remove HOOK_FUNC from the list of functions called by FUNC_NAME. -func_remove_hook () -{ - $debug_cmd - - eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' -} - - -# func_run_hooks FUNC_NAME [ARG]... -# --------------------------------- -# Run all hook functions registered to FUNC_NAME. -# It is assumed that the list of hook functions contains nothing more -# than a whitespace-delimited list of legal shell function names, and -# no effort is wasted trying to catch shell meta-characters or preserve -# whitespace. -func_run_hooks () -{ - $debug_cmd - - case " $hookable_fns " in - *" $1 "*) ;; - *) func_fatal_error "'$1' does not support hook funcions.n" ;; - esac - - eval _G_hook_fns=\$$1_hooks; shift - - for _G_hook in $_G_hook_fns; do - eval $_G_hook '"$@"' - - # store returned options list back into positional - # parameters for next 'cmd' execution. - eval _G_hook_result=\$${_G_hook}_result - eval set dummy "$_G_hook_result"; shift - done - - func_quote_for_eval ${1+"$@"} - func_run_hooks_result=$func_quote_for_eval_result -} - - - -## --------------- ## -## Option parsing. ## -## --------------- ## - -# In order to add your own option parsing hooks, you must accept the -# full positional parameter list in your hook function, remove any -# options that you action, and then pass back the remaining unprocessed -# options in '_result', escaped suitably for -# 'eval'. Like this: -# -# my_options_prep () -# { -# $debug_cmd -# -# # Extend the existing usage message. -# usage_message=$usage_message' -# -s, --silent don'\''t print informational messages -# ' -# -# func_quote_for_eval ${1+"$@"} -# my_options_prep_result=$func_quote_for_eval_result -# } -# func_add_hook func_options_prep my_options_prep -# -# -# my_silent_option () -# { -# $debug_cmd -# -# # Note that for efficiency, we parse as many options as we can -# # recognise in a loop before passing the remainder back to the -# # caller on the first unrecognised argument we encounter. -# while test $# -gt 0; do -# opt=$1; shift -# case $opt in -# --silent|-s) opt_silent=: ;; -# # Separate non-argument short options: -# -s*) func_split_short_opt "$_G_opt" -# set dummy "$func_split_short_opt_name" \ -# "-$func_split_short_opt_arg" ${1+"$@"} -# shift -# ;; -# *) set dummy "$_G_opt" "$*"; shift; break ;; -# esac -# done -# -# func_quote_for_eval ${1+"$@"} -# my_silent_option_result=$func_quote_for_eval_result -# } -# func_add_hook func_parse_options my_silent_option -# -# -# my_option_validation () -# { -# $debug_cmd -# -# $opt_silent && $opt_verbose && func_fatal_help "\ -# '--silent' and '--verbose' options are mutually exclusive." -# -# func_quote_for_eval ${1+"$@"} -# my_option_validation_result=$func_quote_for_eval_result -# } -# func_add_hook func_validate_options my_option_validation -# -# You'll alse need to manually amend $usage_message to reflect the extra -# options you parse. It's preferable to append if you can, so that -# multiple option parsing hooks can be added safely. - - -# func_options [ARG]... -# --------------------- -# All the functions called inside func_options are hookable. See the -# individual implementations for details. -func_hookable func_options -func_options () -{ - $debug_cmd - - func_options_prep ${1+"$@"} - eval func_parse_options \ - ${func_options_prep_result+"$func_options_prep_result"} - eval func_validate_options \ - ${func_parse_options_result+"$func_parse_options_result"} - - eval func_run_hooks func_options \ - ${func_validate_options_result+"$func_validate_options_result"} - - # save modified positional parameters for caller - func_options_result=$func_run_hooks_result -} - - -# func_options_prep [ARG]... -# -------------------------- -# All initialisations required before starting the option parse loop. -# Note that when calling hook functions, we pass through the list of -# positional parameters. If a hook function modifies that list, and -# needs to propogate that back to rest of this script, then the complete -# modified list must be put in 'func_run_hooks_result' before -# returning. -func_hookable func_options_prep -func_options_prep () -{ - $debug_cmd - - # Option defaults: - opt_verbose=false - opt_warning_types= - - func_run_hooks func_options_prep ${1+"$@"} - - # save modified positional parameters for caller - func_options_prep_result=$func_run_hooks_result -} - - -# func_parse_options [ARG]... -# --------------------------- -# The main option parsing loop. -func_hookable func_parse_options -func_parse_options () -{ - $debug_cmd - - func_parse_options_result= - - # this just eases exit handling - while test $# -gt 0; do - # Defer to hook functions for initial option parsing, so they - # get priority in the event of reusing an option name. - func_run_hooks func_parse_options ${1+"$@"} - - # Adjust func_parse_options positional parameters to match - eval set dummy "$func_run_hooks_result"; shift - - # Break out of the loop if we already parsed every option. - test $# -gt 0 || break - - _G_opt=$1 - shift - case $_G_opt in - --debug|-x) debug_cmd='set -x' - func_echo "enabling shell trace mode" - $debug_cmd - ;; - - --no-warnings|--no-warning|--no-warn) - set dummy --warnings none ${1+"$@"} - shift - ;; - - --warnings|--warning|-W) - test $# = 0 && func_missing_arg $_G_opt && break - case " $warning_categories $1" in - *" $1 "*) - # trailing space prevents matching last $1 above - func_append_uniq opt_warning_types " $1" - ;; - *all) - opt_warning_types=$warning_categories - ;; - *none) - opt_warning_types=none - warning_func=: - ;; - *error) - opt_warning_types=$warning_categories - warning_func=func_fatal_error - ;; - *) - func_fatal_error \ - "unsupported warning category: '$1'" - ;; - esac - shift - ;; - - --verbose|-v) opt_verbose=: ;; - --version) func_version ;; - -\?|-h) func_usage ;; - --help) func_help ;; - - # Separate optargs to long options (plugins may need this): - --*=*) func_split_equals "$_G_opt" - set dummy "$func_split_equals_lhs" \ - "$func_split_equals_rhs" ${1+"$@"} - shift - ;; - - # Separate optargs to short options: - -W*) - func_split_short_opt "$_G_opt" - set dummy "$func_split_short_opt_name" \ - "$func_split_short_opt_arg" ${1+"$@"} - shift - ;; - - # Separate non-argument short options: - -\?*|-h*|-v*|-x*) - func_split_short_opt "$_G_opt" - set dummy "$func_split_short_opt_name" \ - "-$func_split_short_opt_arg" ${1+"$@"} - shift - ;; - - --) break ;; - -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; - *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; - esac - done - - # save modified positional parameters for caller - func_quote_for_eval ${1+"$@"} - func_parse_options_result=$func_quote_for_eval_result -} - - -# func_validate_options [ARG]... -# ------------------------------ -# Perform any sanity checks on option settings and/or unconsumed -# arguments. -func_hookable func_validate_options -func_validate_options () -{ - $debug_cmd - - # Display all warnings if -W was not given. - test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" - - func_run_hooks func_validate_options ${1+"$@"} - - # Bail if the options were screwed! - $exit_cmd $EXIT_FAILURE - - # save modified positional parameters for caller - func_validate_options_result=$func_run_hooks_result -} - - - -## ----------------- ## -## Helper functions. ## -## ----------------- ## - -# This section contains the helper functions used by the rest of the -# hookable option parser framework in ascii-betical order. - - -# func_fatal_help ARG... -# ---------------------- -# Echo program name prefixed message to standard error, followed by -# a help hint, and exit. -func_fatal_help () -{ - $debug_cmd - - eval \$ECHO \""Usage: $usage"\" - eval \$ECHO \""$fatal_help"\" - func_error ${1+"$@"} - exit $EXIT_FAILURE -} - - -# func_help -# --------- -# Echo long help message to standard output and exit. -func_help () -{ - $debug_cmd - - func_usage_message - $ECHO "$long_help_message" - exit 0 -} - - -# func_missing_arg ARGNAME -# ------------------------ -# Echo program name prefixed message to standard error and set global -# exit_cmd. -func_missing_arg () -{ - $debug_cmd - - func_error "Missing argument for '$1'." - exit_cmd=exit -} - - -# func_split_equals STRING -# ------------------------ -# Set func_split_equals_lhs and func_split_equals_rhs shell variables after -# splitting STRING at the '=' sign. -test -z "$_G_HAVE_XSI_OPS" \ - && (eval 'x=a/b/c; - test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ - && _G_HAVE_XSI_OPS=yes - -if test yes = "$_G_HAVE_XSI_OPS" -then - # This is an XSI compatible shell, allowing a faster implementation... - eval 'func_split_equals () - { - $debug_cmd - - func_split_equals_lhs=${1%%=*} - func_split_equals_rhs=${1#*=} - test "x$func_split_equals_lhs" = "x$1" \ - && func_split_equals_rhs= - }' -else - # ...otherwise fall back to using expr, which is often a shell builtin. - func_split_equals () - { - $debug_cmd - - func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` - func_split_equals_rhs= - test "x$func_split_equals_lhs" = "x$1" \ - || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` - } -fi #func_split_equals - - -# func_split_short_opt SHORTOPT -# ----------------------------- -# Set func_split_short_opt_name and func_split_short_opt_arg shell -# variables after splitting SHORTOPT after the 2nd character. -if test yes = "$_G_HAVE_XSI_OPS" -then - # This is an XSI compatible shell, allowing a faster implementation... - eval 'func_split_short_opt () - { - $debug_cmd - - func_split_short_opt_arg=${1#??} - func_split_short_opt_name=${1%"$func_split_short_opt_arg"} - }' -else - # ...otherwise fall back to using expr, which is often a shell builtin. - func_split_short_opt () - { - $debug_cmd - - func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` - func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` - } -fi #func_split_short_opt - - -# func_usage -# ---------- -# Echo short help message to standard output and exit. -func_usage () -{ - $debug_cmd - - func_usage_message - $ECHO "Run '$progname --help |${PAGER-more}' for full usage" - exit 0 -} - - -# func_usage_message -# ------------------ -# Echo short help message to standard output. -func_usage_message () -{ - $debug_cmd - - eval \$ECHO \""Usage: $usage"\" - echo - $SED -n 's|^# || - /^Written by/{ - x;p;x - } - h - /^Written by/q' < "$progpath" - echo - eval \$ECHO \""$usage_message"\" -} - - -# func_version -# ------------ -# Echo version message to standard output and exit. -func_version () -{ - $debug_cmd - - printf '%s\n' "$progname $scriptversion" - $SED -n ' - /(C)/!b go - :more - /\./!{ - N - s|\n# | | - b more - } - :go - /^# Written by /,/# warranty; / { - s|^# || - s|^# *$|| - s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| - p - } - /^# Written by / { - s|^# || - p - } - /^warranty; /q' < "$progpath" - - exit $? -} - - -# Local variables: -# mode: shell-script -# sh-indentation: 2 -# eval: (add-hook 'before-save-hook 'time-stamp) -# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" -# time-stamp-time-zone: "UTC" -# End: - -# Set a version string. -scriptversion='(GNU libtool) 2.4.6' - - -# func_echo ARG... -# ---------------- -# Libtool also displays the current mode in messages, so override -# funclib.sh func_echo with this custom definition. -func_echo () -{ - $debug_cmd - - _G_message=$* - - func_echo_IFS=$IFS - IFS=$nl - for _G_line in $_G_message; do - IFS=$func_echo_IFS - $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" - done - IFS=$func_echo_IFS -} - - -# func_warning ARG... -# ------------------- -# Libtool warnings are not categorized, so override funclib.sh -# func_warning with this simpler definition. -func_warning () -{ - $debug_cmd - - $warning_func ${1+"$@"} -} - - -## ---------------- ## -## Options parsing. ## -## ---------------- ## - -# Hook in the functions to make sure our own options are parsed during -# the option parsing loop. - -usage='$progpath [OPTION]... [MODE-ARG]...' - -# Short help message in response to '-h'. -usage_message="Options: - --config show all configuration variables - --debug enable verbose shell tracing - -n, --dry-run display commands without modifying any files - --features display basic configuration information and exit - --mode=MODE use operation mode MODE - --no-warnings equivalent to '-Wnone' - --preserve-dup-deps don't remove duplicate dependency libraries - --quiet, --silent don't print informational messages - --tag=TAG use configuration variables from tag TAG - -v, --verbose print more informational messages than default - --version print version information - -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] - -h, --help, --help-all print short, long, or detailed help message -" - -# Additional text appended to 'usage_message' in response to '--help'. -func_help () -{ - $debug_cmd - - func_usage_message - $ECHO "$long_help_message - -MODE must be one of the following: - - clean remove files from the build directory - compile compile a source file into a libtool object - execute automatically set library path, then run a program - finish complete the installation of libtool libraries - install install libraries or executables - link create a library or an executable - uninstall remove libraries from an installed directory - -MODE-ARGS vary depending on the MODE. When passed as first option, -'--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. -Try '$progname --help --mode=MODE' for a more detailed description of MODE. - -When reporting a bug, please describe a test case to reproduce it and -include the following information: - - host-triplet: $host - shell: $SHELL - compiler: $LTCC - compiler flags: $LTCFLAGS - linker: $LD (gnu? $with_gnu_ld) - version: $progname (GNU libtool) 2.4.6 - automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` - autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` - -Report bugs to . -GNU libtool home page: . -General help using GNU software: ." - exit 0 -} - - -# func_lo2o OBJECT-NAME -# --------------------- -# Transform OBJECT-NAME from a '.lo' suffix to the platform specific -# object suffix. - -lo2o=s/\\.lo\$/.$objext/ -o2lo=s/\\.$objext\$/.lo/ - -if test yes = "$_G_HAVE_XSI_OPS"; then - eval 'func_lo2o () - { - case $1 in - *.lo) func_lo2o_result=${1%.lo}.$objext ;; - * ) func_lo2o_result=$1 ;; - esac - }' - - # func_xform LIBOBJ-OR-SOURCE - # --------------------------- - # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) - # suffix to a '.lo' libtool-object suffix. - eval 'func_xform () - { - func_xform_result=${1%.*}.lo - }' -else - # ...otherwise fall back to using sed. - func_lo2o () - { - func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` - } - - func_xform () - { - func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` - } -fi - - -# func_fatal_configuration ARG... -# ------------------------------- -# Echo program name prefixed message to standard error, followed by -# a configuration failure hint, and exit. -func_fatal_configuration () -{ - func_fatal_error ${1+"$@"} \ - "See the $PACKAGE documentation for more information." \ - "Fatal configuration error." -} - - -# func_config -# ----------- -# Display the configuration for all the tags in this script. -func_config () -{ - re_begincf='^# ### BEGIN LIBTOOL' - re_endcf='^# ### END LIBTOOL' - - # Default configuration. - $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" - - # Now print the configurations for the tags. - for tagname in $taglist; do - $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" - done - - exit $? -} - - -# func_features -# ------------- -# Display the features supported by this script. -func_features () -{ - echo "host: $host" - if test yes = "$build_libtool_libs"; then - echo "enable shared libraries" - else - echo "disable shared libraries" - fi - if test yes = "$build_old_libs"; then - echo "enable static libraries" - else - echo "disable static libraries" - fi - - exit $? -} - - -# func_enable_tag TAGNAME -# ----------------------- -# Verify that TAGNAME is valid, and either flag an error and exit, or -# enable the TAGNAME tag. We also add TAGNAME to the global $taglist -# variable here. -func_enable_tag () -{ - # Global variable: - tagname=$1 - - re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" - re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" - sed_extractcf=/$re_begincf/,/$re_endcf/p - - # Validate tagname. - case $tagname in - *[!-_A-Za-z0-9,/]*) - func_fatal_error "invalid tag name: $tagname" - ;; - esac - - # Don't test for the "default" C tag, as we know it's - # there but not specially marked. - case $tagname in - CC) ;; - *) - if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then - taglist="$taglist $tagname" - - # Evaluate the configuration. Be careful to quote the path - # and the sed script, to avoid splitting on whitespace, but - # also don't use non-portable quotes within backquotes within - # quotes we have to do it in 2 steps: - extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` - eval "$extractedcf" - else - func_error "ignoring unknown tag $tagname" - fi - ;; - esac -} - - -# func_check_version_match -# ------------------------ -# Ensure that we are using m4 macros, and libtool script from the same -# release of libtool. -func_check_version_match () -{ - if test "$package_revision" != "$macro_revision"; then - if test "$VERSION" != "$macro_version"; then - if test -z "$macro_version"; then - cat >&2 <<_LT_EOF -$progname: Version mismatch error. This is $PACKAGE $VERSION, but the -$progname: definition of this LT_INIT comes from an older release. -$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION -$progname: and run autoconf again. -_LT_EOF - else - cat >&2 <<_LT_EOF -$progname: Version mismatch error. This is $PACKAGE $VERSION, but the -$progname: definition of this LT_INIT comes from $PACKAGE $macro_version. -$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION -$progname: and run autoconf again. -_LT_EOF - fi - else - cat >&2 <<_LT_EOF -$progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, -$progname: but the definition of this LT_INIT comes from revision $macro_revision. -$progname: You should recreate aclocal.m4 with macros from revision $package_revision -$progname: of $PACKAGE $VERSION and run autoconf again. -_LT_EOF - fi - - exit $EXIT_MISMATCH - fi -} - - -# libtool_options_prep [ARG]... -# ----------------------------- -# Preparation for options parsed by libtool. -libtool_options_prep () -{ - $debug_mode - - # Option defaults: - opt_config=false - opt_dlopen= - opt_dry_run=false - opt_help=false - opt_mode= - opt_preserve_dup_deps=false - opt_quiet=false - - nonopt= - preserve_args= - - # Shorthand for --mode=foo, only valid as the first argument - case $1 in - clean|clea|cle|cl) - shift; set dummy --mode clean ${1+"$@"}; shift - ;; - compile|compil|compi|comp|com|co|c) - shift; set dummy --mode compile ${1+"$@"}; shift - ;; - execute|execut|execu|exec|exe|ex|e) - shift; set dummy --mode execute ${1+"$@"}; shift - ;; - finish|finis|fini|fin|fi|f) - shift; set dummy --mode finish ${1+"$@"}; shift - ;; - install|instal|insta|inst|ins|in|i) - shift; set dummy --mode install ${1+"$@"}; shift - ;; - link|lin|li|l) - shift; set dummy --mode link ${1+"$@"}; shift - ;; - uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) - shift; set dummy --mode uninstall ${1+"$@"}; shift - ;; - esac - - # Pass back the list of options. - func_quote_for_eval ${1+"$@"} - libtool_options_prep_result=$func_quote_for_eval_result -} -func_add_hook func_options_prep libtool_options_prep - - -# libtool_parse_options [ARG]... -# --------------------------------- -# Provide handling for libtool specific options. -libtool_parse_options () -{ - $debug_cmd - - # Perform our own loop to consume as many options as possible in - # each iteration. - while test $# -gt 0; do - _G_opt=$1 - shift - case $_G_opt in - --dry-run|--dryrun|-n) - opt_dry_run=: - ;; - - --config) func_config ;; - - --dlopen|-dlopen) - opt_dlopen="${opt_dlopen+$opt_dlopen -}$1" - shift - ;; - - --preserve-dup-deps) - opt_preserve_dup_deps=: ;; - - --features) func_features ;; - - --finish) set dummy --mode finish ${1+"$@"}; shift ;; - - --help) opt_help=: ;; - - --help-all) opt_help=': help-all' ;; - - --mode) test $# = 0 && func_missing_arg $_G_opt && break - opt_mode=$1 - case $1 in - # Valid mode arguments: - clean|compile|execute|finish|install|link|relink|uninstall) ;; - - # Catch anything else as an error - *) func_error "invalid argument for $_G_opt" - exit_cmd=exit - break - ;; - esac - shift - ;; - - --no-silent|--no-quiet) - opt_quiet=false - func_append preserve_args " $_G_opt" - ;; - - --no-warnings|--no-warning|--no-warn) - opt_warning=false - func_append preserve_args " $_G_opt" - ;; - - --no-verbose) - opt_verbose=false - func_append preserve_args " $_G_opt" - ;; - - --silent|--quiet) - opt_quiet=: - opt_verbose=false - func_append preserve_args " $_G_opt" - ;; - - --tag) test $# = 0 && func_missing_arg $_G_opt && break - opt_tag=$1 - func_append preserve_args " $_G_opt $1" - func_enable_tag "$1" - shift - ;; - - --verbose|-v) opt_quiet=false - opt_verbose=: - func_append preserve_args " $_G_opt" - ;; - - # An option not handled by this hook function: - *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; - esac - done - - - # save modified positional parameters for caller - func_quote_for_eval ${1+"$@"} - libtool_parse_options_result=$func_quote_for_eval_result -} -func_add_hook func_parse_options libtool_parse_options - - - -# libtool_validate_options [ARG]... -# --------------------------------- -# Perform any sanity checks on option settings and/or unconsumed -# arguments. -libtool_validate_options () -{ - # save first non-option argument - if test 0 -lt $#; then - nonopt=$1 - shift - fi - - # preserve --debug - test : = "$debug_cmd" || func_append preserve_args " --debug" - - case $host in - # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 - # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 - *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) - # don't eliminate duplications in $postdeps and $predeps - opt_duplicate_compiler_generated_deps=: - ;; - *) - opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps - ;; - esac - - $opt_help || { - # Sanity checks first: - func_check_version_match - - test yes != "$build_libtool_libs" \ - && test yes != "$build_old_libs" \ - && func_fatal_configuration "not configured to build any kind of library" - - # Darwin sucks - eval std_shrext=\"$shrext_cmds\" - - # Only execute mode is allowed to have -dlopen flags. - if test -n "$opt_dlopen" && test execute != "$opt_mode"; then - func_error "unrecognized option '-dlopen'" - $ECHO "$help" 1>&2 - exit $EXIT_FAILURE - fi - - # Change the help message to a mode-specific one. - generic_help=$help - help="Try '$progname --help --mode=$opt_mode' for more information." - } - - # Pass back the unparsed argument list - func_quote_for_eval ${1+"$@"} - libtool_validate_options_result=$func_quote_for_eval_result -} -func_add_hook func_validate_options libtool_validate_options - - -# Process options as early as possible so that --help and --version -# can return quickly. -func_options ${1+"$@"} -eval set dummy "$func_options_result"; shift - - - -## ----------- ## -## Main. ## -## ----------- ## - -magic='%%%MAGIC variable%%%' -magic_exe='%%%MAGIC EXE variable%%%' - -# Global variables. -extracted_archives= -extracted_serial=0 - -# If this variable is set in any of the actions, the command in it -# will be execed at the end. This prevents here-documents from being -# left over by shells. -exec_cmd= - - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - -# func_generated_by_libtool -# True iff stdin has been generated by Libtool. This function is only -# a basic sanity check; it will hardly flush out determined imposters. -func_generated_by_libtool_p () -{ - $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 -} - -# func_lalib_p file -# True iff FILE is a libtool '.la' library or '.lo' object file. -# This function is only a basic sanity check; it will hardly flush out -# determined imposters. -func_lalib_p () -{ - test -f "$1" && - $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p -} - -# func_lalib_unsafe_p file -# True iff FILE is a libtool '.la' library or '.lo' object file. -# This function implements the same check as func_lalib_p without -# resorting to external programs. To this end, it redirects stdin and -# closes it afterwards, without saving the original file descriptor. -# As a safety measure, use it only where a negative result would be -# fatal anyway. Works if 'file' does not exist. -func_lalib_unsafe_p () -{ - lalib_p=no - if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then - for lalib_p_l in 1 2 3 4 - do - read lalib_p_line - case $lalib_p_line in - \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; - esac - done - exec 0<&5 5<&- - fi - test yes = "$lalib_p" -} - -# func_ltwrapper_script_p file -# True iff FILE is a libtool wrapper script -# This function is only a basic sanity check; it will hardly flush out -# determined imposters. -func_ltwrapper_script_p () -{ - test -f "$1" && - $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p -} - -# func_ltwrapper_executable_p file -# True iff FILE is a libtool wrapper executable -# This function is only a basic sanity check; it will hardly flush out -# determined imposters. -func_ltwrapper_executable_p () -{ - func_ltwrapper_exec_suffix= - case $1 in - *.exe) ;; - *) func_ltwrapper_exec_suffix=.exe ;; - esac - $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 -} - -# func_ltwrapper_scriptname file -# Assumes file is an ltwrapper_executable -# uses $file to determine the appropriate filename for a -# temporary ltwrapper_script. -func_ltwrapper_scriptname () -{ - func_dirname_and_basename "$1" "" "." - func_stripname '' '.exe' "$func_basename_result" - func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper -} - -# func_ltwrapper_p file -# True iff FILE is a libtool wrapper script or wrapper executable -# This function is only a basic sanity check; it will hardly flush out -# determined imposters. -func_ltwrapper_p () -{ - func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" -} - - -# func_execute_cmds commands fail_cmd -# Execute tilde-delimited COMMANDS. -# If FAIL_CMD is given, eval that upon failure. -# FAIL_CMD may read-access the current command in variable CMD! -func_execute_cmds () -{ - $debug_cmd - - save_ifs=$IFS; IFS='~' - for cmd in $1; do - IFS=$sp$nl - eval cmd=\"$cmd\" - IFS=$save_ifs - func_show_eval "$cmd" "${2-:}" - done - IFS=$save_ifs -} - - -# func_source file -# Source FILE, adding directory component if necessary. -# Note that it is not necessary on cygwin/mingw to append a dot to -# FILE even if both FILE and FILE.exe exist: automatic-append-.exe -# behavior happens only for exec(3), not for open(2)! Also, sourcing -# 'FILE.' does not work on cygwin managed mounts. -func_source () -{ - $debug_cmd - - case $1 in - */* | *\\*) . "$1" ;; - *) . "./$1" ;; - esac -} - - -# func_resolve_sysroot PATH -# Replace a leading = in PATH with a sysroot. Store the result into -# func_resolve_sysroot_result -func_resolve_sysroot () -{ - func_resolve_sysroot_result=$1 - case $func_resolve_sysroot_result in - =*) - func_stripname '=' '' "$func_resolve_sysroot_result" - func_resolve_sysroot_result=$lt_sysroot$func_stripname_result - ;; - esac -} - -# func_replace_sysroot PATH -# If PATH begins with the sysroot, replace it with = and -# store the result into func_replace_sysroot_result. -func_replace_sysroot () -{ - case $lt_sysroot:$1 in - ?*:"$lt_sysroot"*) - func_stripname "$lt_sysroot" '' "$1" - func_replace_sysroot_result='='$func_stripname_result - ;; - *) - # Including no sysroot. - func_replace_sysroot_result=$1 - ;; - esac -} - -# func_infer_tag arg -# Infer tagged configuration to use if any are available and -# if one wasn't chosen via the "--tag" command line option. -# Only attempt this if the compiler in the base compile -# command doesn't match the default compiler. -# arg is usually of the form 'gcc ...' -func_infer_tag () -{ - $debug_cmd - - if test -n "$available_tags" && test -z "$tagname"; then - CC_quoted= - for arg in $CC; do - func_append_quoted CC_quoted "$arg" - done - CC_expanded=`func_echo_all $CC` - CC_quoted_expanded=`func_echo_all $CC_quoted` - case $@ in - # Blanks in the command may have been stripped by the calling shell, - # but not from the CC environment variable when configure was run. - " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ - " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; - # Blanks at the start of $base_compile will cause this to fail - # if we don't check for them as well. - *) - for z in $available_tags; do - if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then - # Evaluate the configuration. - eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" - CC_quoted= - for arg in $CC; do - # Double-quote args containing other shell metacharacters. - func_append_quoted CC_quoted "$arg" - done - CC_expanded=`func_echo_all $CC` - CC_quoted_expanded=`func_echo_all $CC_quoted` - case "$@ " in - " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ - " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) - # The compiler in the base compile command matches - # the one in the tagged configuration. - # Assume this is the tagged configuration we want. - tagname=$z - break - ;; - esac - fi - done - # If $tagname still isn't set, then no tagged configuration - # was found and let the user know that the "--tag" command - # line option must be used. - if test -z "$tagname"; then - func_echo "unable to infer tagged configuration" - func_fatal_error "specify a tag with '--tag'" -# else -# func_verbose "using $tagname tagged configuration" - fi - ;; - esac - fi -} - - - -# func_write_libtool_object output_name pic_name nonpic_name -# Create a libtool object file (analogous to a ".la" file), -# but don't create it if we're doing a dry run. -func_write_libtool_object () -{ - write_libobj=$1 - if test yes = "$build_libtool_libs"; then - write_lobj=\'$2\' - else - write_lobj=none - fi - - if test yes = "$build_old_libs"; then - write_oldobj=\'$3\' - else - write_oldobj=none - fi - - $opt_dry_run || { - cat >${write_libobj}T </dev/null` - if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then - func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | - $SED -e "$sed_naive_backslashify"` - else - func_convert_core_file_wine_to_w32_result= - fi - fi -} -# end: func_convert_core_file_wine_to_w32 - - -# func_convert_core_path_wine_to_w32 ARG -# Helper function used by path conversion functions when $build is *nix, and -# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly -# configured wine environment available, with the winepath program in $build's -# $PATH. Assumes ARG has no leading or trailing path separator characters. -# -# ARG is path to be converted from $build format to win32. -# Result is available in $func_convert_core_path_wine_to_w32_result. -# Unconvertible file (directory) names in ARG are skipped; if no directory names -# are convertible, then the result may be empty. -func_convert_core_path_wine_to_w32 () -{ - $debug_cmd - - # unfortunately, winepath doesn't convert paths, only file names - func_convert_core_path_wine_to_w32_result= - if test -n "$1"; then - oldIFS=$IFS - IFS=: - for func_convert_core_path_wine_to_w32_f in $1; do - IFS=$oldIFS - func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" - if test -n "$func_convert_core_file_wine_to_w32_result"; then - if test -z "$func_convert_core_path_wine_to_w32_result"; then - func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result - else - func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" - fi - fi - done - IFS=$oldIFS - fi -} -# end: func_convert_core_path_wine_to_w32 - - -# func_cygpath ARGS... -# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when -# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) -# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or -# (2), returns the Cygwin file name or path in func_cygpath_result (input -# file name or path is assumed to be in w32 format, as previously converted -# from $build's *nix or MSYS format). In case (3), returns the w32 file name -# or path in func_cygpath_result (input file name or path is assumed to be in -# Cygwin format). Returns an empty string on error. -# -# ARGS are passed to cygpath, with the last one being the file name or path to -# be converted. -# -# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH -# environment variable; do not put it in $PATH. -func_cygpath () -{ - $debug_cmd - - if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then - func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` - if test "$?" -ne 0; then - # on failure, ensure result is empty - func_cygpath_result= - fi - else - func_cygpath_result= - func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" - fi -} -#end: func_cygpath - - -# func_convert_core_msys_to_w32 ARG -# Convert file name or path ARG from MSYS format to w32 format. Return -# result in func_convert_core_msys_to_w32_result. -func_convert_core_msys_to_w32 () -{ - $debug_cmd - - # awkward: cmd appends spaces to result - func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | - $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` -} -#end: func_convert_core_msys_to_w32 - - -# func_convert_file_check ARG1 ARG2 -# Verify that ARG1 (a file name in $build format) was converted to $host -# format in ARG2. Otherwise, emit an error message, but continue (resetting -# func_to_host_file_result to ARG1). -func_convert_file_check () -{ - $debug_cmd - - if test -z "$2" && test -n "$1"; then - func_error "Could not determine host file name corresponding to" - func_error " '$1'" - func_error "Continuing, but uninstalled executables may not work." - # Fallback: - func_to_host_file_result=$1 - fi -} -# end func_convert_file_check - - -# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH -# Verify that FROM_PATH (a path in $build format) was converted to $host -# format in TO_PATH. Otherwise, emit an error message, but continue, resetting -# func_to_host_file_result to a simplistic fallback value (see below). -func_convert_path_check () -{ - $debug_cmd - - if test -z "$4" && test -n "$3"; then - func_error "Could not determine the host path corresponding to" - func_error " '$3'" - func_error "Continuing, but uninstalled executables may not work." - # Fallback. This is a deliberately simplistic "conversion" and - # should not be "improved". See libtool.info. - if test "x$1" != "x$2"; then - lt_replace_pathsep_chars="s|$1|$2|g" - func_to_host_path_result=`echo "$3" | - $SED -e "$lt_replace_pathsep_chars"` - else - func_to_host_path_result=$3 - fi - fi -} -# end func_convert_path_check - - -# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG -# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT -# and appending REPL if ORIG matches BACKPAT. -func_convert_path_front_back_pathsep () -{ - $debug_cmd - - case $4 in - $1 ) func_to_host_path_result=$3$func_to_host_path_result - ;; - esac - case $4 in - $2 ) func_append func_to_host_path_result "$3" - ;; - esac -} -# end func_convert_path_front_back_pathsep - - -################################################## -# $build to $host FILE NAME CONVERSION FUNCTIONS # -################################################## -# invoked via '$to_host_file_cmd ARG' -# -# In each case, ARG is the path to be converted from $build to $host format. -# Result will be available in $func_to_host_file_result. - - -# func_to_host_file ARG -# Converts the file name ARG from $build format to $host format. Return result -# in func_to_host_file_result. -func_to_host_file () -{ - $debug_cmd - - $to_host_file_cmd "$1" -} -# end func_to_host_file - - -# func_to_tool_file ARG LAZY -# converts the file name ARG from $build format to toolchain format. Return -# result in func_to_tool_file_result. If the conversion in use is listed -# in (the comma separated) LAZY, no conversion takes place. -func_to_tool_file () -{ - $debug_cmd - - case ,$2, in - *,"$to_tool_file_cmd",*) - func_to_tool_file_result=$1 - ;; - *) - $to_tool_file_cmd "$1" - func_to_tool_file_result=$func_to_host_file_result - ;; - esac -} -# end func_to_tool_file - - -# func_convert_file_noop ARG -# Copy ARG to func_to_host_file_result. -func_convert_file_noop () -{ - func_to_host_file_result=$1 -} -# end func_convert_file_noop - - -# func_convert_file_msys_to_w32 ARG -# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic -# conversion to w32 is not available inside the cwrapper. Returns result in -# func_to_host_file_result. -func_convert_file_msys_to_w32 () -{ - $debug_cmd - - func_to_host_file_result=$1 - if test -n "$1"; then - func_convert_core_msys_to_w32 "$1" - func_to_host_file_result=$func_convert_core_msys_to_w32_result - fi - func_convert_file_check "$1" "$func_to_host_file_result" -} -# end func_convert_file_msys_to_w32 - - -# func_convert_file_cygwin_to_w32 ARG -# Convert file name ARG from Cygwin to w32 format. Returns result in -# func_to_host_file_result. -func_convert_file_cygwin_to_w32 () -{ - $debug_cmd - - func_to_host_file_result=$1 - if test -n "$1"; then - # because $build is cygwin, we call "the" cygpath in $PATH; no need to use - # LT_CYGPATH in this case. - func_to_host_file_result=`cygpath -m "$1"` - fi - func_convert_file_check "$1" "$func_to_host_file_result" -} -# end func_convert_file_cygwin_to_w32 - - -# func_convert_file_nix_to_w32 ARG -# Convert file name ARG from *nix to w32 format. Requires a wine environment -# and a working winepath. Returns result in func_to_host_file_result. -func_convert_file_nix_to_w32 () -{ - $debug_cmd - - func_to_host_file_result=$1 - if test -n "$1"; then - func_convert_core_file_wine_to_w32 "$1" - func_to_host_file_result=$func_convert_core_file_wine_to_w32_result - fi - func_convert_file_check "$1" "$func_to_host_file_result" -} -# end func_convert_file_nix_to_w32 - - -# func_convert_file_msys_to_cygwin ARG -# Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. -# Returns result in func_to_host_file_result. -func_convert_file_msys_to_cygwin () -{ - $debug_cmd - - func_to_host_file_result=$1 - if test -n "$1"; then - func_convert_core_msys_to_w32 "$1" - func_cygpath -u "$func_convert_core_msys_to_w32_result" - func_to_host_file_result=$func_cygpath_result - fi - func_convert_file_check "$1" "$func_to_host_file_result" -} -# end func_convert_file_msys_to_cygwin - - -# func_convert_file_nix_to_cygwin ARG -# Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed -# in a wine environment, working winepath, and LT_CYGPATH set. Returns result -# in func_to_host_file_result. -func_convert_file_nix_to_cygwin () -{ - $debug_cmd - - func_to_host_file_result=$1 - if test -n "$1"; then - # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. - func_convert_core_file_wine_to_w32 "$1" - func_cygpath -u "$func_convert_core_file_wine_to_w32_result" - func_to_host_file_result=$func_cygpath_result - fi - func_convert_file_check "$1" "$func_to_host_file_result" -} -# end func_convert_file_nix_to_cygwin - - -############################################# -# $build to $host PATH CONVERSION FUNCTIONS # -############################################# -# invoked via '$to_host_path_cmd ARG' -# -# In each case, ARG is the path to be converted from $build to $host format. -# The result will be available in $func_to_host_path_result. -# -# Path separators are also converted from $build format to $host format. If -# ARG begins or ends with a path separator character, it is preserved (but -# converted to $host format) on output. -# -# All path conversion functions are named using the following convention: -# file name conversion function : func_convert_file_X_to_Y () -# path conversion function : func_convert_path_X_to_Y () -# where, for any given $build/$host combination the 'X_to_Y' value is the -# same. If conversion functions are added for new $build/$host combinations, -# the two new functions must follow this pattern, or func_init_to_host_path_cmd -# will break. - - -# func_init_to_host_path_cmd -# Ensures that function "pointer" variable $to_host_path_cmd is set to the -# appropriate value, based on the value of $to_host_file_cmd. -to_host_path_cmd= -func_init_to_host_path_cmd () -{ - $debug_cmd - - if test -z "$to_host_path_cmd"; then - func_stripname 'func_convert_file_' '' "$to_host_file_cmd" - to_host_path_cmd=func_convert_path_$func_stripname_result - fi -} - - -# func_to_host_path ARG -# Converts the path ARG from $build format to $host format. Return result -# in func_to_host_path_result. -func_to_host_path () -{ - $debug_cmd - - func_init_to_host_path_cmd - $to_host_path_cmd "$1" -} -# end func_to_host_path - - -# func_convert_path_noop ARG -# Copy ARG to func_to_host_path_result. -func_convert_path_noop () -{ - func_to_host_path_result=$1 -} -# end func_convert_path_noop - - -# func_convert_path_msys_to_w32 ARG -# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic -# conversion to w32 is not available inside the cwrapper. Returns result in -# func_to_host_path_result. -func_convert_path_msys_to_w32 () -{ - $debug_cmd - - func_to_host_path_result=$1 - if test -n "$1"; then - # Remove leading and trailing path separator characters from ARG. MSYS - # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; - # and winepath ignores them completely. - func_stripname : : "$1" - func_to_host_path_tmp1=$func_stripname_result - func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" - func_to_host_path_result=$func_convert_core_msys_to_w32_result - func_convert_path_check : ";" \ - "$func_to_host_path_tmp1" "$func_to_host_path_result" - func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" - fi -} -# end func_convert_path_msys_to_w32 - - -# func_convert_path_cygwin_to_w32 ARG -# Convert path ARG from Cygwin to w32 format. Returns result in -# func_to_host_file_result. -func_convert_path_cygwin_to_w32 () -{ - $debug_cmd - - func_to_host_path_result=$1 - if test -n "$1"; then - # See func_convert_path_msys_to_w32: - func_stripname : : "$1" - func_to_host_path_tmp1=$func_stripname_result - func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` - func_convert_path_check : ";" \ - "$func_to_host_path_tmp1" "$func_to_host_path_result" - func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" - fi -} -# end func_convert_path_cygwin_to_w32 - - -# func_convert_path_nix_to_w32 ARG -# Convert path ARG from *nix to w32 format. Requires a wine environment and -# a working winepath. Returns result in func_to_host_file_result. -func_convert_path_nix_to_w32 () -{ - $debug_cmd - - func_to_host_path_result=$1 - if test -n "$1"; then - # See func_convert_path_msys_to_w32: - func_stripname : : "$1" - func_to_host_path_tmp1=$func_stripname_result - func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" - func_to_host_path_result=$func_convert_core_path_wine_to_w32_result - func_convert_path_check : ";" \ - "$func_to_host_path_tmp1" "$func_to_host_path_result" - func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" - fi -} -# end func_convert_path_nix_to_w32 - - -# func_convert_path_msys_to_cygwin ARG -# Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. -# Returns result in func_to_host_file_result. -func_convert_path_msys_to_cygwin () -{ - $debug_cmd - - func_to_host_path_result=$1 - if test -n "$1"; then - # See func_convert_path_msys_to_w32: - func_stripname : : "$1" - func_to_host_path_tmp1=$func_stripname_result - func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" - func_cygpath -u -p "$func_convert_core_msys_to_w32_result" - func_to_host_path_result=$func_cygpath_result - func_convert_path_check : : \ - "$func_to_host_path_tmp1" "$func_to_host_path_result" - func_convert_path_front_back_pathsep ":*" "*:" : "$1" - fi -} -# end func_convert_path_msys_to_cygwin - - -# func_convert_path_nix_to_cygwin ARG -# Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a -# a wine environment, working winepath, and LT_CYGPATH set. Returns result in -# func_to_host_file_result. -func_convert_path_nix_to_cygwin () -{ - $debug_cmd - - func_to_host_path_result=$1 - if test -n "$1"; then - # Remove leading and trailing path separator characters from - # ARG. msys behavior is inconsistent here, cygpath turns them - # into '.;' and ';.', and winepath ignores them completely. - func_stripname : : "$1" - func_to_host_path_tmp1=$func_stripname_result - func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" - func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" - func_to_host_path_result=$func_cygpath_result - func_convert_path_check : : \ - "$func_to_host_path_tmp1" "$func_to_host_path_result" - func_convert_path_front_back_pathsep ":*" "*:" : "$1" - fi -} -# end func_convert_path_nix_to_cygwin - - -# func_dll_def_p FILE -# True iff FILE is a Windows DLL '.def' file. -# Keep in sync with _LT_DLL_DEF_P in libtool.m4 -func_dll_def_p () -{ - $debug_cmd - - func_dll_def_p_tmp=`$SED -n \ - -e 's/^[ ]*//' \ - -e '/^\(;.*\)*$/d' \ - -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ - -e q \ - "$1"` - test DEF = "$func_dll_def_p_tmp" -} - - -# func_mode_compile arg... -func_mode_compile () -{ - $debug_cmd - - # Get the compilation command and the source file. - base_compile= - srcfile=$nonopt # always keep a non-empty value in "srcfile" - suppress_opt=yes - suppress_output= - arg_mode=normal - libobj= - later= - pie_flag= - - for arg - do - case $arg_mode in - arg ) - # do not "continue". Instead, add this to base_compile - lastarg=$arg - arg_mode=normal - ;; - - target ) - libobj=$arg - arg_mode=normal - continue - ;; - - normal ) - # Accept any command-line options. - case $arg in - -o) - test -n "$libobj" && \ - func_fatal_error "you cannot specify '-o' more than once" - arg_mode=target - continue - ;; - - -pie | -fpie | -fPIE) - func_append pie_flag " $arg" - continue - ;; - - -shared | -static | -prefer-pic | -prefer-non-pic) - func_append later " $arg" - continue - ;; - - -no-suppress) - suppress_opt=no - continue - ;; - - -Xcompiler) - arg_mode=arg # the next one goes into the "base_compile" arg list - continue # The current "srcfile" will either be retained or - ;; # replaced later. I would guess that would be a bug. - - -Wc,*) - func_stripname '-Wc,' '' "$arg" - args=$func_stripname_result - lastarg= - save_ifs=$IFS; IFS=, - for arg in $args; do - IFS=$save_ifs - func_append_quoted lastarg "$arg" - done - IFS=$save_ifs - func_stripname ' ' '' "$lastarg" - lastarg=$func_stripname_result - - # Add the arguments to base_compile. - func_append base_compile " $lastarg" - continue - ;; - - *) - # Accept the current argument as the source file. - # The previous "srcfile" becomes the current argument. - # - lastarg=$srcfile - srcfile=$arg - ;; - esac # case $arg - ;; - esac # case $arg_mode - - # Aesthetically quote the previous argument. - func_append_quoted base_compile "$lastarg" - done # for arg - - case $arg_mode in - arg) - func_fatal_error "you must specify an argument for -Xcompile" - ;; - target) - func_fatal_error "you must specify a target with '-o'" - ;; - *) - # Get the name of the library object. - test -z "$libobj" && { - func_basename "$srcfile" - libobj=$func_basename_result - } - ;; - esac - - # Recognize several different file suffixes. - # If the user specifies -o file.o, it is replaced with file.lo - case $libobj in - *.[cCFSifmso] | \ - *.ada | *.adb | *.ads | *.asm | \ - *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ - *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) - func_xform "$libobj" - libobj=$func_xform_result - ;; - esac - - case $libobj in - *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; - *) - func_fatal_error "cannot determine name of library object from '$libobj'" - ;; - esac - - func_infer_tag $base_compile - - for arg in $later; do - case $arg in - -shared) - test yes = "$build_libtool_libs" \ - || func_fatal_configuration "cannot build a shared library" - build_old_libs=no - continue - ;; - - -static) - build_libtool_libs=no - build_old_libs=yes - continue - ;; - - -prefer-pic) - pic_mode=yes - continue - ;; - - -prefer-non-pic) - pic_mode=no - continue - ;; - esac - done - - func_quote_for_eval "$libobj" - test "X$libobj" != "X$func_quote_for_eval_result" \ - && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ - && func_warning "libobj name '$libobj' may not contain shell special characters." - func_dirname_and_basename "$obj" "/" "" - objname=$func_basename_result - xdir=$func_dirname_result - lobj=$xdir$objdir/$objname - - test -z "$base_compile" && \ - func_fatal_help "you must specify a compilation command" - - # Delete any leftover library objects. - if test yes = "$build_old_libs"; then - removelist="$obj $lobj $libobj ${libobj}T" - else - removelist="$lobj $libobj ${libobj}T" - fi - - # On Cygwin there's no "real" PIC flag so we must build both object types - case $host_os in - cygwin* | mingw* | pw32* | os2* | cegcc*) - pic_mode=default - ;; - esac - if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then - # non-PIC code in shared libraries is not supported - pic_mode=default - fi - - # Calculate the filename of the output object if compiler does - # not support -o with -c - if test no = "$compiler_c_o"; then - output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext - lockfile=$output_obj.lock - else - output_obj= - need_locks=no - lockfile= - fi - - # Lock this critical section if it is needed - # We use this script file to make the link, it avoids creating a new file - if test yes = "$need_locks"; then - until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do - func_echo "Waiting for $lockfile to be removed" - sleep 2 - done - elif test warn = "$need_locks"; then - if test -f "$lockfile"; then - $ECHO "\ -*** ERROR, $lockfile exists and contains: -`cat $lockfile 2>/dev/null` - -This indicates that another process is trying to use the same -temporary object file, and libtool could not work around it because -your compiler does not support '-c' and '-o' together. If you -repeat this compilation, it may succeed, by chance, but you had better -avoid parallel builds (make -j) in this platform, or get a better -compiler." - - $opt_dry_run || $RM $removelist - exit $EXIT_FAILURE - fi - func_append removelist " $output_obj" - $ECHO "$srcfile" > "$lockfile" - fi - - $opt_dry_run || $RM $removelist - func_append removelist " $lockfile" - trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 - - func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 - srcfile=$func_to_tool_file_result - func_quote_for_eval "$srcfile" - qsrcfile=$func_quote_for_eval_result - - # Only build a PIC object if we are building libtool libraries. - if test yes = "$build_libtool_libs"; then - # Without this assignment, base_compile gets emptied. - fbsd_hideous_sh_bug=$base_compile - - if test no != "$pic_mode"; then - command="$base_compile $qsrcfile $pic_flag" - else - # Don't build PIC code - command="$base_compile $qsrcfile" - fi - - func_mkdir_p "$xdir$objdir" - - if test -z "$output_obj"; then - # Place PIC objects in $objdir - func_append command " -o $lobj" - fi - - func_show_eval_locale "$command" \ - 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' - - if test warn = "$need_locks" && - test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then - $ECHO "\ -*** ERROR, $lockfile contains: -`cat $lockfile 2>/dev/null` - -but it should contain: -$srcfile - -This indicates that another process is trying to use the same -temporary object file, and libtool could not work around it because -your compiler does not support '-c' and '-o' together. If you -repeat this compilation, it may succeed, by chance, but you had better -avoid parallel builds (make -j) in this platform, or get a better -compiler." - - $opt_dry_run || $RM $removelist - exit $EXIT_FAILURE - fi - - # Just move the object if needed, then go on to compile the next one - if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then - func_show_eval '$MV "$output_obj" "$lobj"' \ - 'error=$?; $opt_dry_run || $RM $removelist; exit $error' - fi - - # Allow error messages only from the first compilation. - if test yes = "$suppress_opt"; then - suppress_output=' >/dev/null 2>&1' - fi - fi - - # Only build a position-dependent object if we build old libraries. - if test yes = "$build_old_libs"; then - if test yes != "$pic_mode"; then - # Don't build PIC code - command="$base_compile $qsrcfile$pie_flag" - else - command="$base_compile $qsrcfile $pic_flag" - fi - if test yes = "$compiler_c_o"; then - func_append command " -o $obj" - fi - - # Suppress compiler output if we already did a PIC compilation. - func_append command "$suppress_output" - func_show_eval_locale "$command" \ - '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' - - if test warn = "$need_locks" && - test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then - $ECHO "\ -*** ERROR, $lockfile contains: -`cat $lockfile 2>/dev/null` - -but it should contain: -$srcfile - -This indicates that another process is trying to use the same -temporary object file, and libtool could not work around it because -your compiler does not support '-c' and '-o' together. If you -repeat this compilation, it may succeed, by chance, but you had better -avoid parallel builds (make -j) in this platform, or get a better -compiler." - - $opt_dry_run || $RM $removelist - exit $EXIT_FAILURE - fi - - # Just move the object if needed - if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then - func_show_eval '$MV "$output_obj" "$obj"' \ - 'error=$?; $opt_dry_run || $RM $removelist; exit $error' - fi - fi - - $opt_dry_run || { - func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" - - # Unlock the critical section if it was locked - if test no != "$need_locks"; then - removelist=$lockfile - $RM "$lockfile" - fi - } - - exit $EXIT_SUCCESS -} - -$opt_help || { - test compile = "$opt_mode" && func_mode_compile ${1+"$@"} -} - -func_mode_help () -{ - # We need to display help for each of the modes. - case $opt_mode in - "") - # Generic help is extracted from the usage comments - # at the start of this file. - func_help - ;; - - clean) - $ECHO \ -"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... - -Remove files from the build directory. - -RM is the name of the program to use to delete files associated with each FILE -(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed -to RM. - -If FILE is a libtool library, object or program, all the files associated -with it are deleted. Otherwise, only FILE itself is deleted using RM." - ;; - - compile) - $ECHO \ -"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE - -Compile a source file into a libtool library object. - -This mode accepts the following additional options: - - -o OUTPUT-FILE set the output file name to OUTPUT-FILE - -no-suppress do not suppress compiler output for multiple passes - -prefer-pic try to build PIC objects only - -prefer-non-pic try to build non-PIC objects only - -shared do not build a '.o' file suitable for static linking - -static only build a '.o' file suitable for static linking - -Wc,FLAG pass FLAG directly to the compiler - -COMPILE-COMMAND is a command to be used in creating a 'standard' object file -from the given SOURCEFILE. - -The output file name is determined by removing the directory component from -SOURCEFILE, then substituting the C source code suffix '.c' with the -library object suffix, '.lo'." - ;; - - execute) - $ECHO \ -"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... - -Automatically set library path, then run a program. - -This mode accepts the following additional options: - - -dlopen FILE add the directory containing FILE to the library path - -This mode sets the library path environment variable according to '-dlopen' -flags. - -If any of the ARGS are libtool executable wrappers, then they are translated -into their corresponding uninstalled binary, and any of their required library -directories are added to the library path. - -Then, COMMAND is executed, with ARGS as arguments." - ;; - - finish) - $ECHO \ -"Usage: $progname [OPTION]... --mode=finish [LIBDIR]... - -Complete the installation of libtool libraries. - -Each LIBDIR is a directory that contains libtool libraries. - -The commands that this mode executes may require superuser privileges. Use -the '--dry-run' option if you just want to see what would be executed." - ;; - - install) - $ECHO \ -"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... - -Install executables or libraries. - -INSTALL-COMMAND is the installation command. The first component should be -either the 'install' or 'cp' program. - -The following components of INSTALL-COMMAND are treated specially: - - -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation - -The rest of the components are interpreted as arguments to that command (only -BSD-compatible install options are recognized)." - ;; - - link) - $ECHO \ -"Usage: $progname [OPTION]... --mode=link LINK-COMMAND... - -Link object files or libraries together to form another library, or to -create an executable program. - -LINK-COMMAND is a command using the C compiler that you would use to create -a program from several object files. - -The following components of LINK-COMMAND are treated specially: - - -all-static do not do any dynamic linking at all - -avoid-version do not add a version suffix if possible - -bindir BINDIR specify path to binaries directory (for systems where - libraries must be found in the PATH setting at runtime) - -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime - -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols - -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) - -export-symbols SYMFILE - try to export only the symbols listed in SYMFILE - -export-symbols-regex REGEX - try to export only the symbols matching REGEX - -LLIBDIR search LIBDIR for required installed libraries - -lNAME OUTPUT-FILE requires the installed library libNAME - -module build a library that can dlopened - -no-fast-install disable the fast-install mode - -no-install link a not-installable executable - -no-undefined declare that a library does not refer to external symbols - -o OUTPUT-FILE create OUTPUT-FILE from the specified objects - -objectlist FILE use a list of object files found in FILE to specify objects - -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) - -precious-files-regex REGEX - don't remove output files matching REGEX - -release RELEASE specify package release information - -rpath LIBDIR the created library will eventually be installed in LIBDIR - -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries - -shared only do dynamic linking of libtool libraries - -shrext SUFFIX override the standard shared library file extension - -static do not do any dynamic linking of uninstalled libtool libraries - -static-libtool-libs - do not do any dynamic linking of libtool libraries - -version-info CURRENT[:REVISION[:AGE]] - specify library version info [each variable defaults to 0] - -weak LIBNAME declare that the target provides the LIBNAME interface - -Wc,FLAG - -Xcompiler FLAG pass linker-specific FLAG directly to the compiler - -Wl,FLAG - -Xlinker FLAG pass linker-specific FLAG directly to the linker - -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) - -All other options (arguments beginning with '-') are ignored. - -Every other argument is treated as a filename. Files ending in '.la' are -treated as uninstalled libtool libraries, other files are standard or library -object files. - -If the OUTPUT-FILE ends in '.la', then a libtool library is created, -only library objects ('.lo' files) may be specified, and '-rpath' is -required, except when creating a convenience library. - -If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created -using 'ar' and 'ranlib', or on Windows using 'lib'. - -If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file -is created, otherwise an executable program is created." - ;; - - uninstall) - $ECHO \ -"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... - -Remove libraries from an installation directory. - -RM is the name of the program to use to delete files associated with each FILE -(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed -to RM. - -If FILE is a libtool library, all the files associated with it are deleted. -Otherwise, only FILE itself is deleted using RM." - ;; - - *) - func_fatal_help "invalid operation mode '$opt_mode'" - ;; - esac - - echo - $ECHO "Try '$progname --help' for more information about other modes." -} - -# Now that we've collected a possible --mode arg, show help if necessary -if $opt_help; then - if test : = "$opt_help"; then - func_mode_help - else - { - func_help noexit - for opt_mode in compile link execute install finish uninstall clean; do - func_mode_help - done - } | $SED -n '1p; 2,$s/^Usage:/ or: /p' - { - func_help noexit - for opt_mode in compile link execute install finish uninstall clean; do - echo - func_mode_help - done - } | - $SED '1d - /^When reporting/,/^Report/{ - H - d - } - $x - /information about other modes/d - /more detailed .*MODE/d - s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' - fi - exit $? -fi - - -# func_mode_execute arg... -func_mode_execute () -{ - $debug_cmd - - # The first argument is the command name. - cmd=$nonopt - test -z "$cmd" && \ - func_fatal_help "you must specify a COMMAND" - - # Handle -dlopen flags immediately. - for file in $opt_dlopen; do - test -f "$file" \ - || func_fatal_help "'$file' is not a file" - - dir= - case $file in - *.la) - func_resolve_sysroot "$file" - file=$func_resolve_sysroot_result - - # Check to see that this really is a libtool archive. - func_lalib_unsafe_p "$file" \ - || func_fatal_help "'$lib' is not a valid libtool archive" - - # Read the libtool library. - dlname= - library_names= - func_source "$file" - - # Skip this library if it cannot be dlopened. - if test -z "$dlname"; then - # Warn if it was a shared library. - test -n "$library_names" && \ - func_warning "'$file' was not linked with '-export-dynamic'" - continue - fi - - func_dirname "$file" "" "." - dir=$func_dirname_result - - if test -f "$dir/$objdir/$dlname"; then - func_append dir "/$objdir" - else - if test ! -f "$dir/$dlname"; then - func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" - fi - fi - ;; - - *.lo) - # Just add the directory containing the .lo file. - func_dirname "$file" "" "." - dir=$func_dirname_result - ;; - - *) - func_warning "'-dlopen' is ignored for non-libtool libraries and objects" - continue - ;; - esac - - # Get the absolute pathname. - absdir=`cd "$dir" && pwd` - test -n "$absdir" && dir=$absdir - - # Now add the directory to shlibpath_var. - if eval "test -z \"\$$shlibpath_var\""; then - eval "$shlibpath_var=\"\$dir\"" - else - eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" - fi - done - - # This variable tells wrapper scripts just to set shlibpath_var - # rather than running their programs. - libtool_execute_magic=$magic - - # Check if any of the arguments is a wrapper script. - args= - for file - do - case $file in - -* | *.la | *.lo ) ;; - *) - # Do a test to see if this is really a libtool program. - if func_ltwrapper_script_p "$file"; then - func_source "$file" - # Transform arg to wrapped name. - file=$progdir/$program - elif func_ltwrapper_executable_p "$file"; then - func_ltwrapper_scriptname "$file" - func_source "$func_ltwrapper_scriptname_result" - # Transform arg to wrapped name. - file=$progdir/$program - fi - ;; - esac - # Quote arguments (to preserve shell metacharacters). - func_append_quoted args "$file" - done - - if $opt_dry_run; then - # Display what would be done. - if test -n "$shlibpath_var"; then - eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" - echo "export $shlibpath_var" - fi - $ECHO "$cmd$args" - exit $EXIT_SUCCESS - else - if test -n "$shlibpath_var"; then - # Export the shlibpath_var. - eval "export $shlibpath_var" - fi - - # Restore saved environment variables - for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES - do - eval "if test \"\${save_$lt_var+set}\" = set; then - $lt_var=\$save_$lt_var; export $lt_var - else - $lt_unset $lt_var - fi" - done - - # Now prepare to actually exec the command. - exec_cmd=\$cmd$args - fi -} - -test execute = "$opt_mode" && func_mode_execute ${1+"$@"} - - -# func_mode_finish arg... -func_mode_finish () -{ - $debug_cmd - - libs= - libdirs= - admincmds= - - for opt in "$nonopt" ${1+"$@"} - do - if test -d "$opt"; then - func_append libdirs " $opt" - - elif test -f "$opt"; then - if func_lalib_unsafe_p "$opt"; then - func_append libs " $opt" - else - func_warning "'$opt' is not a valid libtool archive" - fi - - else - func_fatal_error "invalid argument '$opt'" - fi - done - - if test -n "$libs"; then - if test -n "$lt_sysroot"; then - sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` - sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" - else - sysroot_cmd= - fi - - # Remove sysroot references - if $opt_dry_run; then - for lib in $libs; do - echo "removing references to $lt_sysroot and '=' prefixes from $lib" - done - else - tmpdir=`func_mktempdir` - for lib in $libs; do - $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ - > $tmpdir/tmp-la - mv -f $tmpdir/tmp-la $lib - done - ${RM}r "$tmpdir" - fi - fi - - if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then - for libdir in $libdirs; do - if test -n "$finish_cmds"; then - # Do each command in the finish commands. - func_execute_cmds "$finish_cmds" 'admincmds="$admincmds -'"$cmd"'"' - fi - if test -n "$finish_eval"; then - # Do the single finish_eval. - eval cmds=\"$finish_eval\" - $opt_dry_run || eval "$cmds" || func_append admincmds " - $cmds" - fi - done - fi - - # Exit here if they wanted silent mode. - $opt_quiet && exit $EXIT_SUCCESS - - if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then - echo "----------------------------------------------------------------------" - echo "Libraries have been installed in:" - for libdir in $libdirs; do - $ECHO " $libdir" - done - echo - echo "If you ever happen to want to link against installed libraries" - echo "in a given directory, LIBDIR, you must either use libtool, and" - echo "specify the full pathname of the library, or use the '-LLIBDIR'" - echo "flag during linking and do at least one of the following:" - if test -n "$shlibpath_var"; then - echo " - add LIBDIR to the '$shlibpath_var' environment variable" - echo " during execution" - fi - if test -n "$runpath_var"; then - echo " - add LIBDIR to the '$runpath_var' environment variable" - echo " during linking" - fi - if test -n "$hardcode_libdir_flag_spec"; then - libdir=LIBDIR - eval flag=\"$hardcode_libdir_flag_spec\" - - $ECHO " - use the '$flag' linker flag" - fi - if test -n "$admincmds"; then - $ECHO " - have your system administrator run these commands:$admincmds" - fi - if test -f /etc/ld.so.conf; then - echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" - fi - echo - - echo "See any operating system documentation about shared libraries for" - case $host in - solaris2.[6789]|solaris2.1[0-9]) - echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" - echo "pages." - ;; - *) - echo "more information, such as the ld(1) and ld.so(8) manual pages." - ;; - esac - echo "----------------------------------------------------------------------" - fi - exit $EXIT_SUCCESS -} - -test finish = "$opt_mode" && func_mode_finish ${1+"$@"} - - -# func_mode_install arg... -func_mode_install () -{ - $debug_cmd - - # There may be an optional sh(1) argument at the beginning of - # install_prog (especially on Windows NT). - if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || - # Allow the use of GNU shtool's install command. - case $nonopt in *shtool*) :;; *) false;; esac - then - # Aesthetically quote it. - func_quote_for_eval "$nonopt" - install_prog="$func_quote_for_eval_result " - arg=$1 - shift - else - install_prog= - arg=$nonopt - fi - - # The real first argument should be the name of the installation program. - # Aesthetically quote it. - func_quote_for_eval "$arg" - func_append install_prog "$func_quote_for_eval_result" - install_shared_prog=$install_prog - case " $install_prog " in - *[\\\ /]cp\ *) install_cp=: ;; - *) install_cp=false ;; - esac - - # We need to accept at least all the BSD install flags. - dest= - files= - opts= - prev= - install_type= - isdir=false - stripme= - no_mode=: - for arg - do - arg2= - if test -n "$dest"; then - func_append files " $dest" - dest=$arg - continue - fi - - case $arg in - -d) isdir=: ;; - -f) - if $install_cp; then :; else - prev=$arg - fi - ;; - -g | -m | -o) - prev=$arg - ;; - -s) - stripme=" -s" - continue - ;; - -*) - ;; - *) - # If the previous option needed an argument, then skip it. - if test -n "$prev"; then - if test X-m = "X$prev" && test -n "$install_override_mode"; then - arg2=$install_override_mode - no_mode=false - fi - prev= - else - dest=$arg - continue - fi - ;; - esac - - # Aesthetically quote the argument. - func_quote_for_eval "$arg" - func_append install_prog " $func_quote_for_eval_result" - if test -n "$arg2"; then - func_quote_for_eval "$arg2" - fi - func_append install_shared_prog " $func_quote_for_eval_result" - done - - test -z "$install_prog" && \ - func_fatal_help "you must specify an install program" - - test -n "$prev" && \ - func_fatal_help "the '$prev' option requires an argument" - - if test -n "$install_override_mode" && $no_mode; then - if $install_cp; then :; else - func_quote_for_eval "$install_override_mode" - func_append install_shared_prog " -m $func_quote_for_eval_result" - fi - fi - - if test -z "$files"; then - if test -z "$dest"; then - func_fatal_help "no file or destination specified" - else - func_fatal_help "you must specify a destination" - fi - fi - - # Strip any trailing slash from the destination. - func_stripname '' '/' "$dest" - dest=$func_stripname_result - - # Check to see that the destination is a directory. - test -d "$dest" && isdir=: - if $isdir; then - destdir=$dest - destname= - else - func_dirname_and_basename "$dest" "" "." - destdir=$func_dirname_result - destname=$func_basename_result - - # Not a directory, so check to see that there is only one file specified. - set dummy $files; shift - test "$#" -gt 1 && \ - func_fatal_help "'$dest' is not a directory" - fi - case $destdir in - [\\/]* | [A-Za-z]:[\\/]*) ;; - *) - for file in $files; do - case $file in - *.lo) ;; - *) - func_fatal_help "'$destdir' must be an absolute directory name" - ;; - esac - done - ;; - esac - - # This variable tells wrapper scripts just to set variables rather - # than running their programs. - libtool_install_magic=$magic - - staticlibs= - future_libdirs= - current_libdirs= - for file in $files; do - - # Do each installation. - case $file in - *.$libext) - # Do the static libraries later. - func_append staticlibs " $file" - ;; - - *.la) - func_resolve_sysroot "$file" - file=$func_resolve_sysroot_result - - # Check to see that this really is a libtool archive. - func_lalib_unsafe_p "$file" \ - || func_fatal_help "'$file' is not a valid libtool archive" - - library_names= - old_library= - relink_command= - func_source "$file" - - # Add the libdir to current_libdirs if it is the destination. - if test "X$destdir" = "X$libdir"; then - case "$current_libdirs " in - *" $libdir "*) ;; - *) func_append current_libdirs " $libdir" ;; - esac - else - # Note the libdir as a future libdir. - case "$future_libdirs " in - *" $libdir "*) ;; - *) func_append future_libdirs " $libdir" ;; - esac - fi - - func_dirname "$file" "/" "" - dir=$func_dirname_result - func_append dir "$objdir" - - if test -n "$relink_command"; then - # Determine the prefix the user has applied to our future dir. - inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` - - # Don't allow the user to place us outside of our expected - # location b/c this prevents finding dependent libraries that - # are installed to the same prefix. - # At present, this check doesn't affect windows .dll's that - # are installed into $libdir/../bin (currently, that works fine) - # but it's something to keep an eye on. - test "$inst_prefix_dir" = "$destdir" && \ - func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" - - if test -n "$inst_prefix_dir"; then - # Stick the inst_prefix_dir data into the link command. - relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` - else - relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` - fi - - func_warning "relinking '$file'" - func_show_eval "$relink_command" \ - 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' - fi - - # See the names of the shared library. - set dummy $library_names; shift - if test -n "$1"; then - realname=$1 - shift - - srcname=$realname - test -n "$relink_command" && srcname=${realname}T - - # Install the shared library and build the symlinks. - func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ - 'exit $?' - tstripme=$stripme - case $host_os in - cygwin* | mingw* | pw32* | cegcc*) - case $realname in - *.dll.a) - tstripme= - ;; - esac - ;; - os2*) - case $realname in - *_dll.a) - tstripme= - ;; - esac - ;; - esac - if test -n "$tstripme" && test -n "$striplib"; then - func_show_eval "$striplib $destdir/$realname" 'exit $?' - fi - - if test "$#" -gt 0; then - # Delete the old symlinks, and create new ones. - # Try 'ln -sf' first, because the 'ln' binary might depend on - # the symlink we replace! Solaris /bin/ln does not understand -f, - # so we also need to try rm && ln -s. - for linkname - do - test "$linkname" != "$realname" \ - && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" - done - fi - - # Do each command in the postinstall commands. - lib=$destdir/$realname - func_execute_cmds "$postinstall_cmds" 'exit $?' - fi - - # Install the pseudo-library for information purposes. - func_basename "$file" - name=$func_basename_result - instname=$dir/${name}i - func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' - - # Maybe install the static library, too. - test -n "$old_library" && func_append staticlibs " $dir/$old_library" - ;; - - *.lo) - # Install (i.e. copy) a libtool object. - - # Figure out destination file name, if it wasn't already specified. - if test -n "$destname"; then - destfile=$destdir/$destname - else - func_basename "$file" - destfile=$func_basename_result - destfile=$destdir/$destfile - fi - - # Deduce the name of the destination old-style object file. - case $destfile in - *.lo) - func_lo2o "$destfile" - staticdest=$func_lo2o_result - ;; - *.$objext) - staticdest=$destfile - destfile= - ;; - *) - func_fatal_help "cannot copy a libtool object to '$destfile'" - ;; - esac - - # Install the libtool object if requested. - test -n "$destfile" && \ - func_show_eval "$install_prog $file $destfile" 'exit $?' - - # Install the old object if enabled. - if test yes = "$build_old_libs"; then - # Deduce the name of the old-style object file. - func_lo2o "$file" - staticobj=$func_lo2o_result - func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' - fi - exit $EXIT_SUCCESS - ;; - - *) - # Figure out destination file name, if it wasn't already specified. - if test -n "$destname"; then - destfile=$destdir/$destname - else - func_basename "$file" - destfile=$func_basename_result - destfile=$destdir/$destfile - fi - - # If the file is missing, and there is a .exe on the end, strip it - # because it is most likely a libtool script we actually want to - # install - stripped_ext= - case $file in - *.exe) - if test ! -f "$file"; then - func_stripname '' '.exe' "$file" - file=$func_stripname_result - stripped_ext=.exe - fi - ;; - esac - - # Do a test to see if this is really a libtool program. - case $host in - *cygwin* | *mingw*) - if func_ltwrapper_executable_p "$file"; then - func_ltwrapper_scriptname "$file" - wrapper=$func_ltwrapper_scriptname_result - else - func_stripname '' '.exe' "$file" - wrapper=$func_stripname_result - fi - ;; - *) - wrapper=$file - ;; - esac - if func_ltwrapper_script_p "$wrapper"; then - notinst_deplibs= - relink_command= - - func_source "$wrapper" - - # Check the variables that should have been set. - test -z "$generated_by_libtool_version" && \ - func_fatal_error "invalid libtool wrapper script '$wrapper'" - - finalize=: - for lib in $notinst_deplibs; do - # Check to see that each library is installed. - libdir= - if test -f "$lib"; then - func_source "$lib" - fi - libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` - if test -n "$libdir" && test ! -f "$libfile"; then - func_warning "'$lib' has not been installed in '$libdir'" - finalize=false - fi - done - - relink_command= - func_source "$wrapper" - - outputname= - if test no = "$fast_install" && test -n "$relink_command"; then - $opt_dry_run || { - if $finalize; then - tmpdir=`func_mktempdir` - func_basename "$file$stripped_ext" - file=$func_basename_result - outputname=$tmpdir/$file - # Replace the output file specification. - relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` - - $opt_quiet || { - func_quote_for_expand "$relink_command" - eval "func_echo $func_quote_for_expand_result" - } - if eval "$relink_command"; then : - else - func_error "error: relink '$file' with the above command before installing it" - $opt_dry_run || ${RM}r "$tmpdir" - continue - fi - file=$outputname - else - func_warning "cannot relink '$file'" - fi - } - else - # Install the binary that we compiled earlier. - file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` - fi - fi - - # remove .exe since cygwin /usr/bin/install will append another - # one anyway - case $install_prog,$host in - */usr/bin/install*,*cygwin*) - case $file:$destfile in - *.exe:*.exe) - # this is ok - ;; - *.exe:*) - destfile=$destfile.exe - ;; - *:*.exe) - func_stripname '' '.exe' "$destfile" - destfile=$func_stripname_result - ;; - esac - ;; - esac - func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' - $opt_dry_run || if test -n "$outputname"; then - ${RM}r "$tmpdir" - fi - ;; - esac - done - - for file in $staticlibs; do - func_basename "$file" - name=$func_basename_result - - # Set up the ranlib parameters. - oldlib=$destdir/$name - func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 - tool_oldlib=$func_to_tool_file_result - - func_show_eval "$install_prog \$file \$oldlib" 'exit $?' - - if test -n "$stripme" && test -n "$old_striplib"; then - func_show_eval "$old_striplib $tool_oldlib" 'exit $?' - fi - - # Do each command in the postinstall commands. - func_execute_cmds "$old_postinstall_cmds" 'exit $?' - done - - test -n "$future_libdirs" && \ - func_warning "remember to run '$progname --finish$future_libdirs'" - - if test -n "$current_libdirs"; then - # Maybe just do a dry run. - $opt_dry_run && current_libdirs=" -n$current_libdirs" - exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' - else - exit $EXIT_SUCCESS - fi -} - -test install = "$opt_mode" && func_mode_install ${1+"$@"} - - -# func_generate_dlsyms outputname originator pic_p -# Extract symbols from dlprefiles and create ${outputname}S.o with -# a dlpreopen symbol table. -func_generate_dlsyms () -{ - $debug_cmd - - my_outputname=$1 - my_originator=$2 - my_pic_p=${3-false} - my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` - my_dlsyms= - - if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then - if test -n "$NM" && test -n "$global_symbol_pipe"; then - my_dlsyms=${my_outputname}S.c - else - func_error "not configured to extract global symbols from dlpreopened files" - fi - fi - - if test -n "$my_dlsyms"; then - case $my_dlsyms in - "") ;; - *.c) - # Discover the nlist of each of the dlfiles. - nlist=$output_objdir/$my_outputname.nm - - func_show_eval "$RM $nlist ${nlist}S ${nlist}T" - - # Parse the name list into a source file. - func_verbose "creating $output_objdir/$my_dlsyms" - - $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ -/* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ -/* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ - -#ifdef __cplusplus -extern \"C\" { -#endif - -#if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) -#pragma GCC diagnostic ignored \"-Wstrict-prototypes\" -#endif - -/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE -/* DATA imports from DLLs on WIN32 can't be const, because runtime - relocations are performed -- see ld's documentation on pseudo-relocs. */ -# define LT_DLSYM_CONST -#elif defined __osf__ -/* This system does not cope well with relocations in const data. */ -# define LT_DLSYM_CONST -#else -# define LT_DLSYM_CONST const -#endif - -#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) - -/* External symbol declarations for the compiler. */\ -" - - if test yes = "$dlself"; then - func_verbose "generating symbol list for '$output'" - - $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" - - # Add our own program objects to the symbol list. - progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` - for progfile in $progfiles; do - func_to_tool_file "$progfile" func_convert_file_msys_to_w32 - func_verbose "extracting global C symbols from '$func_to_tool_file_result'" - $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" - done - - if test -n "$exclude_expsyms"; then - $opt_dry_run || { - eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' - eval '$MV "$nlist"T "$nlist"' - } - fi - - if test -n "$export_symbols_regex"; then - $opt_dry_run || { - eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' - eval '$MV "$nlist"T "$nlist"' - } - fi - - # Prepare the list of exported symbols - if test -z "$export_symbols"; then - export_symbols=$output_objdir/$outputname.exp - $opt_dry_run || { - $RM $export_symbols - eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' - case $host in - *cygwin* | *mingw* | *cegcc* ) - eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' - eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' - ;; - esac - } - else - $opt_dry_run || { - eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' - eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' - eval '$MV "$nlist"T "$nlist"' - case $host in - *cygwin* | *mingw* | *cegcc* ) - eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' - eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' - ;; - esac - } - fi - fi - - for dlprefile in $dlprefiles; do - func_verbose "extracting global C symbols from '$dlprefile'" - func_basename "$dlprefile" - name=$func_basename_result - case $host in - *cygwin* | *mingw* | *cegcc* ) - # if an import library, we need to obtain dlname - if func_win32_import_lib_p "$dlprefile"; then - func_tr_sh "$dlprefile" - eval "curr_lafile=\$libfile_$func_tr_sh_result" - dlprefile_dlbasename= - if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then - # Use subshell, to avoid clobbering current variable values - dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` - if test -n "$dlprefile_dlname"; then - func_basename "$dlprefile_dlname" - dlprefile_dlbasename=$func_basename_result - else - # no lafile. user explicitly requested -dlpreopen . - $sharedlib_from_linklib_cmd "$dlprefile" - dlprefile_dlbasename=$sharedlib_from_linklib_result - fi - fi - $opt_dry_run || { - if test -n "$dlprefile_dlbasename"; then - eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' - else - func_warning "Could not compute DLL name from $name" - eval '$ECHO ": $name " >> "$nlist"' - fi - func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 - eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | - $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" - } - else # not an import lib - $opt_dry_run || { - eval '$ECHO ": $name " >> "$nlist"' - func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 - eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" - } - fi - ;; - *) - $opt_dry_run || { - eval '$ECHO ": $name " >> "$nlist"' - func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 - eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" - } - ;; - esac - done - - $opt_dry_run || { - # Make sure we have at least an empty file. - test -f "$nlist" || : > "$nlist" - - if test -n "$exclude_expsyms"; then - $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T - $MV "$nlist"T "$nlist" - fi - - # Try sorting and uniquifying the output. - if $GREP -v "^: " < "$nlist" | - if sort -k 3 /dev/null 2>&1; then - sort -k 3 - else - sort +2 - fi | - uniq > "$nlist"S; then - : - else - $GREP -v "^: " < "$nlist" > "$nlist"S - fi - - if test -f "$nlist"S; then - eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' - else - echo '/* NONE */' >> "$output_objdir/$my_dlsyms" - fi - - func_show_eval '$RM "${nlist}I"' - if test -n "$global_symbol_to_import"; then - eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' - fi - - echo >> "$output_objdir/$my_dlsyms" "\ - -/* The mapping between symbol names and symbols. */ -typedef struct { - const char *name; - void *address; -} lt_dlsymlist; -extern LT_DLSYM_CONST lt_dlsymlist -lt_${my_prefix}_LTX_preloaded_symbols[];\ -" - - if test -s "$nlist"I; then - echo >> "$output_objdir/$my_dlsyms" "\ -static void lt_syminit(void) -{ - LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; - for (; symbol->name; ++symbol) - {" - $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" - echo >> "$output_objdir/$my_dlsyms" "\ - } -}" - fi - echo >> "$output_objdir/$my_dlsyms" "\ -LT_DLSYM_CONST lt_dlsymlist -lt_${my_prefix}_LTX_preloaded_symbols[] = -{ {\"$my_originator\", (void *) 0}," - - if test -s "$nlist"I; then - echo >> "$output_objdir/$my_dlsyms" "\ - {\"@INIT@\", (void *) <_syminit}," - fi - - case $need_lib_prefix in - no) - eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" - ;; - *) - eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" - ;; - esac - echo >> "$output_objdir/$my_dlsyms" "\ - {0, (void *) 0} -}; - -/* This works around a problem in FreeBSD linker */ -#ifdef FREEBSD_WORKAROUND -static const void *lt_preloaded_setup() { - return lt_${my_prefix}_LTX_preloaded_symbols; -} -#endif - -#ifdef __cplusplus -} -#endif\ -" - } # !$opt_dry_run - - pic_flag_for_symtable= - case "$compile_command " in - *" -static "*) ;; - *) - case $host in - # compiling the symbol table file with pic_flag works around - # a FreeBSD bug that causes programs to crash when -lm is - # linked before any other PIC object. But we must not use - # pic_flag when linking with -static. The problem exists in - # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. - *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) - pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; - *-*-hpux*) - pic_flag_for_symtable=" $pic_flag" ;; - *) - $my_pic_p && pic_flag_for_symtable=" $pic_flag" - ;; - esac - ;; - esac - symtab_cflags= - for arg in $LTCFLAGS; do - case $arg in - -pie | -fpie | -fPIE) ;; - *) func_append symtab_cflags " $arg" ;; - esac - done - - # Now compile the dynamic symbol file. - func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' - - # Clean up the generated files. - func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' - - # Transform the symbol file into the correct name. - symfileobj=$output_objdir/${my_outputname}S.$objext - case $host in - *cygwin* | *mingw* | *cegcc* ) - if test -f "$output_objdir/$my_outputname.def"; then - compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` - finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` - else - compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` - finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` - fi - ;; - *) - compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` - finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` - ;; - esac - ;; - *) - func_fatal_error "unknown suffix for '$my_dlsyms'" - ;; - esac - else - # We keep going just in case the user didn't refer to - # lt_preloaded_symbols. The linker will fail if global_symbol_pipe - # really was required. - - # Nullify the symbol file. - compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` - finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` - fi -} - -# func_cygming_gnu_implib_p ARG -# This predicate returns with zero status (TRUE) if -# ARG is a GNU/binutils-style import library. Returns -# with nonzero status (FALSE) otherwise. -func_cygming_gnu_implib_p () -{ - $debug_cmd - - func_to_tool_file "$1" func_convert_file_msys_to_w32 - func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` - test -n "$func_cygming_gnu_implib_tmp" -} - -# func_cygming_ms_implib_p ARG -# This predicate returns with zero status (TRUE) if -# ARG is an MS-style import library. Returns -# with nonzero status (FALSE) otherwise. -func_cygming_ms_implib_p () -{ - $debug_cmd - - func_to_tool_file "$1" func_convert_file_msys_to_w32 - func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` - test -n "$func_cygming_ms_implib_tmp" -} - -# func_win32_libid arg -# return the library type of file 'arg' -# -# Need a lot of goo to handle *both* DLLs and import libs -# Has to be a shell function in order to 'eat' the argument -# that is supplied when $file_magic_command is called. -# Despite the name, also deal with 64 bit binaries. -func_win32_libid () -{ - $debug_cmd - - win32_libid_type=unknown - win32_fileres=`file -L $1 2>/dev/null` - case $win32_fileres in - *ar\ archive\ import\ library*) # definitely import - win32_libid_type="x86 archive import" - ;; - *ar\ archive*) # could be an import, or static - # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. - if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | - $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then - case $nm_interface in - "MS dumpbin") - if func_cygming_ms_implib_p "$1" || - func_cygming_gnu_implib_p "$1" - then - win32_nmres=import - else - win32_nmres= - fi - ;; - *) - func_to_tool_file "$1" func_convert_file_msys_to_w32 - win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | - $SED -n -e ' - 1,100{ - / I /{ - s|.*|import| - p - q - } - }'` - ;; - esac - case $win32_nmres in - import*) win32_libid_type="x86 archive import";; - *) win32_libid_type="x86 archive static";; - esac - fi - ;; - *DLL*) - win32_libid_type="x86 DLL" - ;; - *executable*) # but shell scripts are "executable" too... - case $win32_fileres in - *MS\ Windows\ PE\ Intel*) - win32_libid_type="x86 DLL" - ;; - esac - ;; - esac - $ECHO "$win32_libid_type" -} - -# func_cygming_dll_for_implib ARG -# -# Platform-specific function to extract the -# name of the DLL associated with the specified -# import library ARG. -# Invoked by eval'ing the libtool variable -# $sharedlib_from_linklib_cmd -# Result is available in the variable -# $sharedlib_from_linklib_result -func_cygming_dll_for_implib () -{ - $debug_cmd - - sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` -} - -# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs -# -# The is the core of a fallback implementation of a -# platform-specific function to extract the name of the -# DLL associated with the specified import library LIBNAME. -# -# SECTION_NAME is either .idata$6 or .idata$7, depending -# on the platform and compiler that created the implib. -# -# Echos the name of the DLL associated with the -# specified import library. -func_cygming_dll_for_implib_fallback_core () -{ - $debug_cmd - - match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` - $OBJDUMP -s --section "$1" "$2" 2>/dev/null | - $SED '/^Contents of section '"$match_literal"':/{ - # Place marker at beginning of archive member dllname section - s/.*/====MARK====/ - p - d - } - # These lines can sometimes be longer than 43 characters, but - # are always uninteresting - /:[ ]*file format pe[i]\{,1\}-/d - /^In archive [^:]*:/d - # Ensure marker is printed - /^====MARK====/p - # Remove all lines with less than 43 characters - /^.\{43\}/!d - # From remaining lines, remove first 43 characters - s/^.\{43\}//' | - $SED -n ' - # Join marker and all lines until next marker into a single line - /^====MARK====/ b para - H - $ b para - b - :para - x - s/\n//g - # Remove the marker - s/^====MARK====// - # Remove trailing dots and whitespace - s/[\. \t]*$// - # Print - /./p' | - # we now have a list, one entry per line, of the stringified - # contents of the appropriate section of all members of the - # archive that possess that section. Heuristic: eliminate - # all those that have a first or second character that is - # a '.' (that is, objdump's representation of an unprintable - # character.) This should work for all archives with less than - # 0x302f exports -- but will fail for DLLs whose name actually - # begins with a literal '.' or a single character followed by - # a '.'. - # - # Of those that remain, print the first one. - $SED -e '/^\./d;/^.\./d;q' -} - -# func_cygming_dll_for_implib_fallback ARG -# Platform-specific function to extract the -# name of the DLL associated with the specified -# import library ARG. -# -# This fallback implementation is for use when $DLLTOOL -# does not support the --identify-strict option. -# Invoked by eval'ing the libtool variable -# $sharedlib_from_linklib_cmd -# Result is available in the variable -# $sharedlib_from_linklib_result -func_cygming_dll_for_implib_fallback () -{ - $debug_cmd - - if func_cygming_gnu_implib_p "$1"; then - # binutils import library - sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` - elif func_cygming_ms_implib_p "$1"; then - # ms-generated import library - sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` - else - # unknown - sharedlib_from_linklib_result= - fi -} - - -# func_extract_an_archive dir oldlib -func_extract_an_archive () -{ - $debug_cmd - - f_ex_an_ar_dir=$1; shift - f_ex_an_ar_oldlib=$1 - if test yes = "$lock_old_archive_extraction"; then - lockfile=$f_ex_an_ar_oldlib.lock - until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do - func_echo "Waiting for $lockfile to be removed" - sleep 2 - done - fi - func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ - 'stat=$?; rm -f "$lockfile"; exit $stat' - if test yes = "$lock_old_archive_extraction"; then - $opt_dry_run || rm -f "$lockfile" - fi - if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then - : - else - func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" - fi -} - - -# func_extract_archives gentop oldlib ... -func_extract_archives () -{ - $debug_cmd - - my_gentop=$1; shift - my_oldlibs=${1+"$@"} - my_oldobjs= - my_xlib= - my_xabs= - my_xdir= - - for my_xlib in $my_oldlibs; do - # Extract the objects. - case $my_xlib in - [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; - *) my_xabs=`pwd`"/$my_xlib" ;; - esac - func_basename "$my_xlib" - my_xlib=$func_basename_result - my_xlib_u=$my_xlib - while :; do - case " $extracted_archives " in - *" $my_xlib_u "*) - func_arith $extracted_serial + 1 - extracted_serial=$func_arith_result - my_xlib_u=lt$extracted_serial-$my_xlib ;; - *) break ;; - esac - done - extracted_archives="$extracted_archives $my_xlib_u" - my_xdir=$my_gentop/$my_xlib_u - - func_mkdir_p "$my_xdir" - - case $host in - *-darwin*) - func_verbose "Extracting $my_xabs" - # Do not bother doing anything if just a dry run - $opt_dry_run || { - darwin_orig_dir=`pwd` - cd $my_xdir || exit $? - darwin_archive=$my_xabs - darwin_curdir=`pwd` - func_basename "$darwin_archive" - darwin_base_archive=$func_basename_result - darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` - if test -n "$darwin_arches"; then - darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` - darwin_arch= - func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" - for darwin_arch in $darwin_arches; do - func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" - $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" - cd "unfat-$$/$darwin_base_archive-$darwin_arch" - func_extract_an_archive "`pwd`" "$darwin_base_archive" - cd "$darwin_curdir" - $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" - done # $darwin_arches - ## Okay now we've a bunch of thin objects, gotta fatten them up :) - darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` - darwin_file= - darwin_files= - for darwin_file in $darwin_filelist; do - darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` - $LIPO -create -output "$darwin_file" $darwin_files - done # $darwin_filelist - $RM -rf unfat-$$ - cd "$darwin_orig_dir" - else - cd $darwin_orig_dir - func_extract_an_archive "$my_xdir" "$my_xabs" - fi # $darwin_arches - } # !$opt_dry_run - ;; - *) - func_extract_an_archive "$my_xdir" "$my_xabs" - ;; - esac - my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` - done - - func_extract_archives_result=$my_oldobjs -} - - -# func_emit_wrapper [arg=no] -# -# Emit a libtool wrapper script on stdout. -# Don't directly open a file because we may want to -# incorporate the script contents within a cygwin/mingw -# wrapper executable. Must ONLY be called from within -# func_mode_link because it depends on a number of variables -# set therein. -# -# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR -# variable will take. If 'yes', then the emitted script -# will assume that the directory where it is stored is -# the $objdir directory. This is a cygwin/mingw-specific -# behavior. -func_emit_wrapper () -{ - func_emit_wrapper_arg1=${1-no} - - $ECHO "\ -#! $SHELL - -# $output - temporary wrapper script for $objdir/$outputname -# Generated by $PROGRAM (GNU $PACKAGE) $VERSION -# -# The $output program cannot be directly executed until all the libtool -# libraries that it depends on are installed. -# -# This wrapper script should never be moved out of the build directory. -# If it is, it will not operate correctly. - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='$sed_quote_subst' - -# Be Bourne compatible -if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which - # is contrary to our usage. Disable this feature. - alias -g '\${1+\"\$@\"}'='\"\$@\"' - setopt NO_GLOB_SUBST -else - case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac -fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -relink_command=\"$relink_command\" - -# This environment variable determines our operation mode. -if test \"\$libtool_install_magic\" = \"$magic\"; then - # install mode needs the following variables: - generated_by_libtool_version='$macro_version' - notinst_deplibs='$notinst_deplibs' -else - # When we are sourced in execute mode, \$file and \$ECHO are already set. - if test \"\$libtool_execute_magic\" != \"$magic\"; then - file=\"\$0\"" - - qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` - $ECHO "\ - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -\$1 -_LTECHO_EOF' -} - ECHO=\"$qECHO\" - fi - -# Very basic option parsing. These options are (a) specific to -# the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ that is used only on -# windows platforms, and (c) all begin with the string "--lt-" -# (application programs are unlikely to have options that match -# this pattern). -# -# There are only two supported options: --lt-debug and -# --lt-dump-script. There is, deliberately, no --lt-help. -# -# The first argument to this parsing function should be the -# script's $0 value, followed by "$@". -lt_option_debug= -func_parse_lt_options () -{ - lt_script_arg0=\$0 - shift - for lt_opt - do - case \"\$lt_opt\" in - --lt-debug) lt_option_debug=1 ;; - --lt-dump-script) - lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` - test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. - lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` - cat \"\$lt_dump_D/\$lt_dump_F\" - exit 0 - ;; - --lt-*) - \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 - exit 1 - ;; - esac - done - - # Print the debug banner immediately: - if test -n \"\$lt_option_debug\"; then - echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 - fi -} - -# Used when --lt-debug. Prints its arguments to stdout -# (redirection is the responsibility of the caller) -func_lt_dump_args () -{ - lt_dump_args_N=1; - for lt_arg - do - \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" - lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` - done -} - -# Core function for launching the target application -func_exec_program_core () -{ -" - case $host in - # Backslashes separate directories on plain windows - *-*-mingw | *-*-os2* | *-cegcc*) - $ECHO "\ - if test -n \"\$lt_option_debug\"; then - \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 - func_lt_dump_args \${1+\"\$@\"} 1>&2 - fi - exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} -" - ;; - - *) - $ECHO "\ - if test -n \"\$lt_option_debug\"; then - \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 - func_lt_dump_args \${1+\"\$@\"} 1>&2 - fi - exec \"\$progdir/\$program\" \${1+\"\$@\"} -" - ;; - esac - $ECHO "\ - \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 - exit 1 -} - -# A function to encapsulate launching the target application -# Strips options in the --lt-* namespace from \$@ and -# launches target application with the remaining arguments. -func_exec_program () -{ - case \" \$* \" in - *\\ --lt-*) - for lt_wr_arg - do - case \$lt_wr_arg in - --lt-*) ;; - *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; - esac - shift - done ;; - esac - func_exec_program_core \${1+\"\$@\"} -} - - # Parse options - func_parse_lt_options \"\$0\" \${1+\"\$@\"} - - # Find the directory that this script lives in. - thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` - test \"x\$thisdir\" = \"x\$file\" && thisdir=. - - # Follow symbolic links until we get to the real thisdir. - file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` - while test -n \"\$file\"; do - destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` - - # If there was a directory component, then change thisdir. - if test \"x\$destdir\" != \"x\$file\"; then - case \"\$destdir\" in - [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; - *) thisdir=\"\$thisdir/\$destdir\" ;; - esac - fi - - file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` - file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` - done - - # Usually 'no', except on cygwin/mingw when embedded into - # the cwrapper. - WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 - if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then - # special case for '.' - if test \"\$thisdir\" = \".\"; then - thisdir=\`pwd\` - fi - # remove .libs from thisdir - case \"\$thisdir\" in - *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; - $objdir ) thisdir=. ;; - esac - fi - - # Try to get the absolute directory name. - absdir=\`cd \"\$thisdir\" && pwd\` - test -n \"\$absdir\" && thisdir=\"\$absdir\" -" - - if test yes = "$fast_install"; then - $ECHO "\ - program=lt-'$outputname'$exeext - progdir=\"\$thisdir/$objdir\" - - if test ! -f \"\$progdir/\$program\" || - { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ - test \"X\$file\" != \"X\$progdir/\$program\"; }; then - - file=\"\$\$-\$program\" - - if test ! -d \"\$progdir\"; then - $MKDIR \"\$progdir\" - else - $RM \"\$progdir/\$file\" - fi" - - $ECHO "\ - - # relink executable if necessary - if test -n \"\$relink_command\"; then - if relink_command_output=\`eval \$relink_command 2>&1\`; then : - else - \$ECHO \"\$relink_command_output\" >&2 - $RM \"\$progdir/\$file\" - exit 1 - fi - fi - - $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || - { $RM \"\$progdir/\$program\"; - $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } - $RM \"\$progdir/\$file\" - fi" - else - $ECHO "\ - program='$outputname' - progdir=\"\$thisdir/$objdir\" -" - fi - - $ECHO "\ - - if test -f \"\$progdir/\$program\"; then" - - # fixup the dll searchpath if we need to. - # - # Fix the DLL searchpath if we need to. Do this before prepending - # to shlibpath, because on Windows, both are PATH and uninstalled - # libraries must come first. - if test -n "$dllsearchpath"; then - $ECHO "\ - # Add the dll search path components to the executable PATH - PATH=$dllsearchpath:\$PATH -" - fi - - # Export our shlibpath_var if we have one. - if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then - $ECHO "\ - # Add our own library path to $shlibpath_var - $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" - - # Some systems cannot cope with colon-terminated $shlibpath_var - # The second colon is a workaround for a bug in BeOS R4 sed - $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` - - export $shlibpath_var -" - fi - - $ECHO "\ - if test \"\$libtool_execute_magic\" != \"$magic\"; then - # Run the actual program with our arguments. - func_exec_program \${1+\"\$@\"} - fi - else - # The program doesn't exist. - \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 - \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 - \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 - exit 1 - fi -fi\ -" -} - - -# func_emit_cwrapperexe_src -# emit the source code for a wrapper executable on stdout -# Must ONLY be called from within func_mode_link because -# it depends on a number of variable set therein. -func_emit_cwrapperexe_src () -{ - cat < -#include -#ifdef _MSC_VER -# include -# include -# include -#else -# include -# include -# ifdef __CYGWIN__ -# include -# endif -#endif -#include -#include -#include -#include -#include -#include -#include -#include - -#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) - -/* declarations of non-ANSI functions */ -#if defined __MINGW32__ -# ifdef __STRICT_ANSI__ -int _putenv (const char *); -# endif -#elif defined __CYGWIN__ -# ifdef __STRICT_ANSI__ -char *realpath (const char *, char *); -int putenv (char *); -int setenv (const char *, const char *, int); -# endif -/* #elif defined other_platform || defined ... */ -#endif - -/* portability defines, excluding path handling macros */ -#if defined _MSC_VER -# define setmode _setmode -# define stat _stat -# define chmod _chmod -# define getcwd _getcwd -# define putenv _putenv -# define S_IXUSR _S_IEXEC -#elif defined __MINGW32__ -# define setmode _setmode -# define stat _stat -# define chmod _chmod -# define getcwd _getcwd -# define putenv _putenv -#elif defined __CYGWIN__ -# define HAVE_SETENV -# define FOPEN_WB "wb" -/* #elif defined other platforms ... */ -#endif - -#if defined PATH_MAX -# define LT_PATHMAX PATH_MAX -#elif defined MAXPATHLEN -# define LT_PATHMAX MAXPATHLEN -#else -# define LT_PATHMAX 1024 -#endif - -#ifndef S_IXOTH -# define S_IXOTH 0 -#endif -#ifndef S_IXGRP -# define S_IXGRP 0 -#endif - -/* path handling portability macros */ -#ifndef DIR_SEPARATOR -# define DIR_SEPARATOR '/' -# define PATH_SEPARATOR ':' -#endif - -#if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ - defined __OS2__ -# define HAVE_DOS_BASED_FILE_SYSTEM -# define FOPEN_WB "wb" -# ifndef DIR_SEPARATOR_2 -# define DIR_SEPARATOR_2 '\\' -# endif -# ifndef PATH_SEPARATOR_2 -# define PATH_SEPARATOR_2 ';' -# endif -#endif - -#ifndef DIR_SEPARATOR_2 -# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) -#else /* DIR_SEPARATOR_2 */ -# define IS_DIR_SEPARATOR(ch) \ - (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) -#endif /* DIR_SEPARATOR_2 */ - -#ifndef PATH_SEPARATOR_2 -# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) -#else /* PATH_SEPARATOR_2 */ -# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) -#endif /* PATH_SEPARATOR_2 */ - -#ifndef FOPEN_WB -# define FOPEN_WB "w" -#endif -#ifndef _O_BINARY -# define _O_BINARY 0 -#endif - -#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) -#define XFREE(stale) do { \ - if (stale) { free (stale); stale = 0; } \ -} while (0) - -#if defined LT_DEBUGWRAPPER -static int lt_debug = 1; -#else -static int lt_debug = 0; -#endif - -const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ - -void *xmalloc (size_t num); -char *xstrdup (const char *string); -const char *base_name (const char *name); -char *find_executable (const char *wrapper); -char *chase_symlinks (const char *pathspec); -int make_executable (const char *path); -int check_executable (const char *path); -char *strendzap (char *str, const char *pat); -void lt_debugprintf (const char *file, int line, const char *fmt, ...); -void lt_fatal (const char *file, int line, const char *message, ...); -static const char *nonnull (const char *s); -static const char *nonempty (const char *s); -void lt_setenv (const char *name, const char *value); -char *lt_extend_str (const char *orig_value, const char *add, int to_end); -void lt_update_exe_path (const char *name, const char *value); -void lt_update_lib_path (const char *name, const char *value); -char **prepare_spawn (char **argv); -void lt_dump_script (FILE *f); -EOF - - cat <= 0) - && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) - return 1; - else - return 0; -} - -int -make_executable (const char *path) -{ - int rval = 0; - struct stat st; - - lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", - nonempty (path)); - if ((!path) || (!*path)) - return 0; - - if (stat (path, &st) >= 0) - { - rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); - } - return rval; -} - -/* Searches for the full path of the wrapper. Returns - newly allocated full path name if found, NULL otherwise - Does not chase symlinks, even on platforms that support them. -*/ -char * -find_executable (const char *wrapper) -{ - int has_slash = 0; - const char *p; - const char *p_next; - /* static buffer for getcwd */ - char tmp[LT_PATHMAX + 1]; - size_t tmp_len; - char *concat_name; - - lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", - nonempty (wrapper)); - - if ((wrapper == NULL) || (*wrapper == '\0')) - return NULL; - - /* Absolute path? */ -#if defined HAVE_DOS_BASED_FILE_SYSTEM - if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') - { - concat_name = xstrdup (wrapper); - if (check_executable (concat_name)) - return concat_name; - XFREE (concat_name); - } - else - { -#endif - if (IS_DIR_SEPARATOR (wrapper[0])) - { - concat_name = xstrdup (wrapper); - if (check_executable (concat_name)) - return concat_name; - XFREE (concat_name); - } -#if defined HAVE_DOS_BASED_FILE_SYSTEM - } -#endif - - for (p = wrapper; *p; p++) - if (*p == '/') - { - has_slash = 1; - break; - } - if (!has_slash) - { - /* no slashes; search PATH */ - const char *path = getenv ("PATH"); - if (path != NULL) - { - for (p = path; *p; p = p_next) - { - const char *q; - size_t p_len; - for (q = p; *q; q++) - if (IS_PATH_SEPARATOR (*q)) - break; - p_len = (size_t) (q - p); - p_next = (*q == '\0' ? q : q + 1); - if (p_len == 0) - { - /* empty path: current directory */ - if (getcwd (tmp, LT_PATHMAX) == NULL) - lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", - nonnull (strerror (errno))); - tmp_len = strlen (tmp); - concat_name = - XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); - memcpy (concat_name, tmp, tmp_len); - concat_name[tmp_len] = '/'; - strcpy (concat_name + tmp_len + 1, wrapper); - } - else - { - concat_name = - XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); - memcpy (concat_name, p, p_len); - concat_name[p_len] = '/'; - strcpy (concat_name + p_len + 1, wrapper); - } - if (check_executable (concat_name)) - return concat_name; - XFREE (concat_name); - } - } - /* not found in PATH; assume curdir */ - } - /* Relative path | not found in path: prepend cwd */ - if (getcwd (tmp, LT_PATHMAX) == NULL) - lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", - nonnull (strerror (errno))); - tmp_len = strlen (tmp); - concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); - memcpy (concat_name, tmp, tmp_len); - concat_name[tmp_len] = '/'; - strcpy (concat_name + tmp_len + 1, wrapper); - - if (check_executable (concat_name)) - return concat_name; - XFREE (concat_name); - return NULL; -} - -char * -chase_symlinks (const char *pathspec) -{ -#ifndef S_ISLNK - return xstrdup (pathspec); -#else - char buf[LT_PATHMAX]; - struct stat s; - char *tmp_pathspec = xstrdup (pathspec); - char *p; - int has_symlinks = 0; - while (strlen (tmp_pathspec) && !has_symlinks) - { - lt_debugprintf (__FILE__, __LINE__, - "checking path component for symlinks: %s\n", - tmp_pathspec); - if (lstat (tmp_pathspec, &s) == 0) - { - if (S_ISLNK (s.st_mode) != 0) - { - has_symlinks = 1; - break; - } - - /* search backwards for last DIR_SEPARATOR */ - p = tmp_pathspec + strlen (tmp_pathspec) - 1; - while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) - p--; - if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) - { - /* no more DIR_SEPARATORS left */ - break; - } - *p = '\0'; - } - else - { - lt_fatal (__FILE__, __LINE__, - "error accessing file \"%s\": %s", - tmp_pathspec, nonnull (strerror (errno))); - } - } - XFREE (tmp_pathspec); - - if (!has_symlinks) - { - return xstrdup (pathspec); - } - - tmp_pathspec = realpath (pathspec, buf); - if (tmp_pathspec == 0) - { - lt_fatal (__FILE__, __LINE__, - "could not follow symlinks for %s", pathspec); - } - return xstrdup (tmp_pathspec); -#endif -} - -char * -strendzap (char *str, const char *pat) -{ - size_t len, patlen; - - assert (str != NULL); - assert (pat != NULL); - - len = strlen (str); - patlen = strlen (pat); - - if (patlen <= len) - { - str += len - patlen; - if (STREQ (str, pat)) - *str = '\0'; - } - return str; -} - -void -lt_debugprintf (const char *file, int line, const char *fmt, ...) -{ - va_list args; - if (lt_debug) - { - (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); - va_start (args, fmt); - (void) vfprintf (stderr, fmt, args); - va_end (args); - } -} - -static void -lt_error_core (int exit_status, const char *file, - int line, const char *mode, - const char *message, va_list ap) -{ - fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); - vfprintf (stderr, message, ap); - fprintf (stderr, ".\n"); - - if (exit_status >= 0) - exit (exit_status); -} - -void -lt_fatal (const char *file, int line, const char *message, ...) -{ - va_list ap; - va_start (ap, message); - lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); - va_end (ap); -} - -static const char * -nonnull (const char *s) -{ - return s ? s : "(null)"; -} - -static const char * -nonempty (const char *s) -{ - return (s && !*s) ? "(empty)" : nonnull (s); -} - -void -lt_setenv (const char *name, const char *value) -{ - lt_debugprintf (__FILE__, __LINE__, - "(lt_setenv) setting '%s' to '%s'\n", - nonnull (name), nonnull (value)); - { -#ifdef HAVE_SETENV - /* always make a copy, for consistency with !HAVE_SETENV */ - char *str = xstrdup (value); - setenv (name, str, 1); -#else - size_t len = strlen (name) + 1 + strlen (value) + 1; - char *str = XMALLOC (char, len); - sprintf (str, "%s=%s", name, value); - if (putenv (str) != EXIT_SUCCESS) - { - XFREE (str); - } -#endif - } -} - -char * -lt_extend_str (const char *orig_value, const char *add, int to_end) -{ - char *new_value; - if (orig_value && *orig_value) - { - size_t orig_value_len = strlen (orig_value); - size_t add_len = strlen (add); - new_value = XMALLOC (char, add_len + orig_value_len + 1); - if (to_end) - { - strcpy (new_value, orig_value); - strcpy (new_value + orig_value_len, add); - } - else - { - strcpy (new_value, add); - strcpy (new_value + add_len, orig_value); - } - } - else - { - new_value = xstrdup (add); - } - return new_value; -} - -void -lt_update_exe_path (const char *name, const char *value) -{ - lt_debugprintf (__FILE__, __LINE__, - "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", - nonnull (name), nonnull (value)); - - if (name && *name && value && *value) - { - char *new_value = lt_extend_str (getenv (name), value, 0); - /* some systems can't cope with a ':'-terminated path #' */ - size_t len = strlen (new_value); - while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) - { - new_value[--len] = '\0'; - } - lt_setenv (name, new_value); - XFREE (new_value); - } -} - -void -lt_update_lib_path (const char *name, const char *value) -{ - lt_debugprintf (__FILE__, __LINE__, - "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", - nonnull (name), nonnull (value)); - - if (name && *name && value && *value) - { - char *new_value = lt_extend_str (getenv (name), value, 0); - lt_setenv (name, new_value); - XFREE (new_value); - } -} - -EOF - case $host_os in - mingw*) - cat <<"EOF" - -/* Prepares an argument vector before calling spawn(). - Note that spawn() does not by itself call the command interpreter - (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : - ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); - GetVersionEx(&v); - v.dwPlatformId == VER_PLATFORM_WIN32_NT; - }) ? "cmd.exe" : "command.com"). - Instead it simply concatenates the arguments, separated by ' ', and calls - CreateProcess(). We must quote the arguments since Win32 CreateProcess() - interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a - special way: - - Space and tab are interpreted as delimiters. They are not treated as - delimiters if they are surrounded by double quotes: "...". - - Unescaped double quotes are removed from the input. Their only effect is - that within double quotes, space and tab are treated like normal - characters. - - Backslashes not followed by double quotes are not special. - - But 2*n+1 backslashes followed by a double quote become - n backslashes followed by a double quote (n >= 0): - \" -> " - \\\" -> \" - \\\\\" -> \\" - */ -#define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" -#define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" -char ** -prepare_spawn (char **argv) -{ - size_t argc; - char **new_argv; - size_t i; - - /* Count number of arguments. */ - for (argc = 0; argv[argc] != NULL; argc++) - ; - - /* Allocate new argument vector. */ - new_argv = XMALLOC (char *, argc + 1); - - /* Put quoted arguments into the new argument vector. */ - for (i = 0; i < argc; i++) - { - const char *string = argv[i]; - - if (string[0] == '\0') - new_argv[i] = xstrdup ("\"\""); - else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) - { - int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); - size_t length; - unsigned int backslashes; - const char *s; - char *quoted_string; - char *p; - - length = 0; - backslashes = 0; - if (quote_around) - length++; - for (s = string; *s != '\0'; s++) - { - char c = *s; - if (c == '"') - length += backslashes + 1; - length++; - if (c == '\\') - backslashes++; - else - backslashes = 0; - } - if (quote_around) - length += backslashes + 1; - - quoted_string = XMALLOC (char, length + 1); - - p = quoted_string; - backslashes = 0; - if (quote_around) - *p++ = '"'; - for (s = string; *s != '\0'; s++) - { - char c = *s; - if (c == '"') - { - unsigned int j; - for (j = backslashes + 1; j > 0; j--) - *p++ = '\\'; - } - *p++ = c; - if (c == '\\') - backslashes++; - else - backslashes = 0; - } - if (quote_around) - { - unsigned int j; - for (j = backslashes; j > 0; j--) - *p++ = '\\'; - *p++ = '"'; - } - *p = '\0'; - - new_argv[i] = quoted_string; - } - else - new_argv[i] = (char *) string; - } - new_argv[argc] = NULL; - - return new_argv; -} -EOF - ;; - esac - - cat <<"EOF" -void lt_dump_script (FILE* f) -{ -EOF - func_emit_wrapper yes | - $SED -n -e ' -s/^\(.\{79\}\)\(..*\)/\1\ -\2/ -h -s/\([\\"]\)/\\\1/g -s/$/\\n/ -s/\([^\n]*\).*/ fputs ("\1", f);/p -g -D' - cat <<"EOF" -} -EOF -} -# end: func_emit_cwrapperexe_src - -# func_win32_import_lib_p ARG -# True if ARG is an import lib, as indicated by $file_magic_cmd -func_win32_import_lib_p () -{ - $debug_cmd - - case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in - *import*) : ;; - *) false ;; - esac -} - -# func_suncc_cstd_abi -# !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! -# Several compiler flags select an ABI that is incompatible with the -# Cstd library. Avoid specifying it if any are in CXXFLAGS. -func_suncc_cstd_abi () -{ - $debug_cmd - - case " $compile_command " in - *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) - suncc_use_cstd_abi=no - ;; - *) - suncc_use_cstd_abi=yes - ;; - esac -} - -# func_mode_link arg... -func_mode_link () -{ - $debug_cmd - - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) - # It is impossible to link a dll without this setting, and - # we shouldn't force the makefile maintainer to figure out - # what system we are compiling for in order to pass an extra - # flag for every libtool invocation. - # allow_undefined=no - - # FIXME: Unfortunately, there are problems with the above when trying - # to make a dll that has undefined symbols, in which case not - # even a static library is built. For now, we need to specify - # -no-undefined on the libtool link line when we can be certain - # that all symbols are satisfied, otherwise we get a static library. - allow_undefined=yes - ;; - *) - allow_undefined=yes - ;; - esac - libtool_args=$nonopt - base_compile="$nonopt $@" - compile_command=$nonopt - finalize_command=$nonopt - - compile_rpath= - finalize_rpath= - compile_shlibpath= - finalize_shlibpath= - convenience= - old_convenience= - deplibs= - old_deplibs= - compiler_flags= - linker_flags= - dllsearchpath= - lib_search_path=`pwd` - inst_prefix_dir= - new_inherited_linker_flags= - - avoid_version=no - bindir= - dlfiles= - dlprefiles= - dlself=no - export_dynamic=no - export_symbols= - export_symbols_regex= - generated= - libobjs= - ltlibs= - module=no - no_install=no - objs= - os2dllname= - non_pic_objects= - precious_files_regex= - prefer_static_libs=no - preload=false - prev= - prevarg= - release= - rpath= - xrpath= - perm_rpath= - temp_rpath= - thread_safe=no - vinfo= - vinfo_number=no - weak_libs= - single_module=$wl-single_module - func_infer_tag $base_compile - - # We need to know -static, to get the right output filenames. - for arg - do - case $arg in - -shared) - test yes != "$build_libtool_libs" \ - && func_fatal_configuration "cannot build a shared library" - build_old_libs=no - break - ;; - -all-static | -static | -static-libtool-libs) - case $arg in - -all-static) - if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then - func_warning "complete static linking is impossible in this configuration" - fi - if test -n "$link_static_flag"; then - dlopen_self=$dlopen_self_static - fi - prefer_static_libs=yes - ;; - -static) - if test -z "$pic_flag" && test -n "$link_static_flag"; then - dlopen_self=$dlopen_self_static - fi - prefer_static_libs=built - ;; - -static-libtool-libs) - if test -z "$pic_flag" && test -n "$link_static_flag"; then - dlopen_self=$dlopen_self_static - fi - prefer_static_libs=yes - ;; - esac - build_libtool_libs=no - build_old_libs=yes - break - ;; - esac - done - - # See if our shared archives depend on static archives. - test -n "$old_archive_from_new_cmds" && build_old_libs=yes - - # Go through the arguments, transforming them on the way. - while test "$#" -gt 0; do - arg=$1 - shift - func_quote_for_eval "$arg" - qarg=$func_quote_for_eval_unquoted_result - func_append libtool_args " $func_quote_for_eval_result" - - # If the previous option needs an argument, assign it. - if test -n "$prev"; then - case $prev in - output) - func_append compile_command " @OUTPUT@" - func_append finalize_command " @OUTPUT@" - ;; - esac - - case $prev in - bindir) - bindir=$arg - prev= - continue - ;; - dlfiles|dlprefiles) - $preload || { - # Add the symbol object into the linking commands. - func_append compile_command " @SYMFILE@" - func_append finalize_command " @SYMFILE@" - preload=: - } - case $arg in - *.la | *.lo) ;; # We handle these cases below. - force) - if test no = "$dlself"; then - dlself=needless - export_dynamic=yes - fi - prev= - continue - ;; - self) - if test dlprefiles = "$prev"; then - dlself=yes - elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then - dlself=yes - else - dlself=needless - export_dynamic=yes - fi - prev= - continue - ;; - *) - if test dlfiles = "$prev"; then - func_append dlfiles " $arg" - else - func_append dlprefiles " $arg" - fi - prev= - continue - ;; - esac - ;; - expsyms) - export_symbols=$arg - test -f "$arg" \ - || func_fatal_error "symbol file '$arg' does not exist" - prev= - continue - ;; - expsyms_regex) - export_symbols_regex=$arg - prev= - continue - ;; - framework) - case $host in - *-*-darwin*) - case "$deplibs " in - *" $qarg.ltframework "*) ;; - *) func_append deplibs " $qarg.ltframework" # this is fixed later - ;; - esac - ;; - esac - prev= - continue - ;; - inst_prefix) - inst_prefix_dir=$arg - prev= - continue - ;; - mllvm) - # Clang does not use LLVM to link, so we can simply discard any - # '-mllvm $arg' options when doing the link step. - prev= - continue - ;; - objectlist) - if test -f "$arg"; then - save_arg=$arg - moreargs= - for fil in `cat "$save_arg"` - do -# func_append moreargs " $fil" - arg=$fil - # A libtool-controlled object. - - # Check to see that this really is a libtool object. - if func_lalib_unsafe_p "$arg"; then - pic_object= - non_pic_object= - - # Read the .lo file - func_source "$arg" - - if test -z "$pic_object" || - test -z "$non_pic_object" || - test none = "$pic_object" && - test none = "$non_pic_object"; then - func_fatal_error "cannot find name of object for '$arg'" - fi - - # Extract subdirectory from the argument. - func_dirname "$arg" "/" "" - xdir=$func_dirname_result - - if test none != "$pic_object"; then - # Prepend the subdirectory the object is found in. - pic_object=$xdir$pic_object - - if test dlfiles = "$prev"; then - if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then - func_append dlfiles " $pic_object" - prev= - continue - else - # If libtool objects are unsupported, then we need to preload. - prev=dlprefiles - fi - fi - - # CHECK ME: I think I busted this. -Ossama - if test dlprefiles = "$prev"; then - # Preload the old-style object. - func_append dlprefiles " $pic_object" - prev= - fi - - # A PIC object. - func_append libobjs " $pic_object" - arg=$pic_object - fi - - # Non-PIC object. - if test none != "$non_pic_object"; then - # Prepend the subdirectory the object is found in. - non_pic_object=$xdir$non_pic_object - - # A standard non-PIC object - func_append non_pic_objects " $non_pic_object" - if test -z "$pic_object" || test none = "$pic_object"; then - arg=$non_pic_object - fi - else - # If the PIC object exists, use it instead. - # $xdir was prepended to $pic_object above. - non_pic_object=$pic_object - func_append non_pic_objects " $non_pic_object" - fi - else - # Only an error if not doing a dry-run. - if $opt_dry_run; then - # Extract subdirectory from the argument. - func_dirname "$arg" "/" "" - xdir=$func_dirname_result - - func_lo2o "$arg" - pic_object=$xdir$objdir/$func_lo2o_result - non_pic_object=$xdir$func_lo2o_result - func_append libobjs " $pic_object" - func_append non_pic_objects " $non_pic_object" - else - func_fatal_error "'$arg' is not a valid libtool object" - fi - fi - done - else - func_fatal_error "link input file '$arg' does not exist" - fi - arg=$save_arg - prev= - continue - ;; - os2dllname) - os2dllname=$arg - prev= - continue - ;; - precious_regex) - precious_files_regex=$arg - prev= - continue - ;; - release) - release=-$arg - prev= - continue - ;; - rpath | xrpath) - # We need an absolute path. - case $arg in - [\\/]* | [A-Za-z]:[\\/]*) ;; - *) - func_fatal_error "only absolute run-paths are allowed" - ;; - esac - if test rpath = "$prev"; then - case "$rpath " in - *" $arg "*) ;; - *) func_append rpath " $arg" ;; - esac - else - case "$xrpath " in - *" $arg "*) ;; - *) func_append xrpath " $arg" ;; - esac - fi - prev= - continue - ;; - shrext) - shrext_cmds=$arg - prev= - continue - ;; - weak) - func_append weak_libs " $arg" - prev= - continue - ;; - xcclinker) - func_append linker_flags " $qarg" - func_append compiler_flags " $qarg" - prev= - func_append compile_command " $qarg" - func_append finalize_command " $qarg" - continue - ;; - xcompiler) - func_append compiler_flags " $qarg" - prev= - func_append compile_command " $qarg" - func_append finalize_command " $qarg" - continue - ;; - xlinker) - func_append linker_flags " $qarg" - func_append compiler_flags " $wl$qarg" - prev= - func_append compile_command " $wl$qarg" - func_append finalize_command " $wl$qarg" - continue - ;; - *) - eval "$prev=\"\$arg\"" - prev= - continue - ;; - esac - fi # test -n "$prev" - - prevarg=$arg - - case $arg in - -all-static) - if test -n "$link_static_flag"; then - # See comment for -static flag below, for more details. - func_append compile_command " $link_static_flag" - func_append finalize_command " $link_static_flag" - fi - continue - ;; - - -allow-undefined) - # FIXME: remove this flag sometime in the future. - func_fatal_error "'-allow-undefined' must not be used because it is the default" - ;; - - -avoid-version) - avoid_version=yes - continue - ;; - - -bindir) - prev=bindir - continue - ;; - - -dlopen) - prev=dlfiles - continue - ;; - - -dlpreopen) - prev=dlprefiles - continue - ;; - - -export-dynamic) - export_dynamic=yes - continue - ;; - - -export-symbols | -export-symbols-regex) - if test -n "$export_symbols" || test -n "$export_symbols_regex"; then - func_fatal_error "more than one -exported-symbols argument is not allowed" - fi - if test X-export-symbols = "X$arg"; then - prev=expsyms - else - prev=expsyms_regex - fi - continue - ;; - - -framework) - prev=framework - continue - ;; - - -inst-prefix-dir) - prev=inst_prefix - continue - ;; - - # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* - # so, if we see these flags be careful not to treat them like -L - -L[A-Z][A-Z]*:*) - case $with_gcc/$host in - no/*-*-irix* | /*-*-irix*) - func_append compile_command " $arg" - func_append finalize_command " $arg" - ;; - esac - continue - ;; - - -L*) - func_stripname "-L" '' "$arg" - if test -z "$func_stripname_result"; then - if test "$#" -gt 0; then - func_fatal_error "require no space between '-L' and '$1'" - else - func_fatal_error "need path for '-L' option" - fi - fi - func_resolve_sysroot "$func_stripname_result" - dir=$func_resolve_sysroot_result - # We need an absolute path. - case $dir in - [\\/]* | [A-Za-z]:[\\/]*) ;; - *) - absdir=`cd "$dir" && pwd` - test -z "$absdir" && \ - func_fatal_error "cannot determine absolute directory name of '$dir'" - dir=$absdir - ;; - esac - case "$deplibs " in - *" -L$dir "* | *" $arg "*) - # Will only happen for absolute or sysroot arguments - ;; - *) - # Preserve sysroot, but never include relative directories - case $dir in - [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; - *) func_append deplibs " -L$dir" ;; - esac - func_append lib_search_path " $dir" - ;; - esac - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) - testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` - case :$dllsearchpath: in - *":$dir:"*) ;; - ::) dllsearchpath=$dir;; - *) func_append dllsearchpath ":$dir";; - esac - case :$dllsearchpath: in - *":$testbindir:"*) ;; - ::) dllsearchpath=$testbindir;; - *) func_append dllsearchpath ":$testbindir";; - esac - ;; - esac - continue - ;; - - -l*) - if test X-lc = "X$arg" || test X-lm = "X$arg"; then - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) - # These systems don't actually have a C or math library (as such) - continue - ;; - *-*-os2*) - # These systems don't actually have a C library (as such) - test X-lc = "X$arg" && continue - ;; - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) - # Do not include libc due to us having libc/libc_r. - test X-lc = "X$arg" && continue - ;; - *-*-rhapsody* | *-*-darwin1.[012]) - # Rhapsody C and math libraries are in the System framework - func_append deplibs " System.ltframework" - continue - ;; - *-*-sco3.2v5* | *-*-sco5v6*) - # Causes problems with __ctype - test X-lc = "X$arg" && continue - ;; - *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) - # Compiler inserts libc in the correct place for threads to work - test X-lc = "X$arg" && continue - ;; - esac - elif test X-lc_r = "X$arg"; then - case $host in - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) - # Do not include libc_r directly, use -pthread flag. - continue - ;; - esac - fi - func_append deplibs " $arg" - continue - ;; - - -mllvm) - prev=mllvm - continue - ;; - - -module) - module=yes - continue - ;; - - # Tru64 UNIX uses -model [arg] to determine the layout of C++ - # classes, name mangling, and exception handling. - # Darwin uses the -arch flag to determine output architecture. - -model|-arch|-isysroot|--sysroot) - func_append compiler_flags " $arg" - func_append compile_command " $arg" - func_append finalize_command " $arg" - prev=xcompiler - continue - ;; - - -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ - |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) - func_append compiler_flags " $arg" - func_append compile_command " $arg" - func_append finalize_command " $arg" - case "$new_inherited_linker_flags " in - *" $arg "*) ;; - * ) func_append new_inherited_linker_flags " $arg" ;; - esac - continue - ;; - - -multi_module) - single_module=$wl-multi_module - continue - ;; - - -no-fast-install) - fast_install=no - continue - ;; - - -no-install) - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) - # The PATH hackery in wrapper scripts is required on Windows - # and Darwin in order for the loader to find any dlls it needs. - func_warning "'-no-install' is ignored for $host" - func_warning "assuming '-no-fast-install' instead" - fast_install=no - ;; - *) no_install=yes ;; - esac - continue - ;; - - -no-undefined) - allow_undefined=no - continue - ;; - - -objectlist) - prev=objectlist - continue - ;; - - -os2dllname) - prev=os2dllname - continue - ;; - - -o) prev=output ;; - - -precious-files-regex) - prev=precious_regex - continue - ;; - - -release) - prev=release - continue - ;; - - -rpath) - prev=rpath - continue - ;; - - -R) - prev=xrpath - continue - ;; - - -R*) - func_stripname '-R' '' "$arg" - dir=$func_stripname_result - # We need an absolute path. - case $dir in - [\\/]* | [A-Za-z]:[\\/]*) ;; - =*) - func_stripname '=' '' "$dir" - dir=$lt_sysroot$func_stripname_result - ;; - *) - func_fatal_error "only absolute run-paths are allowed" - ;; - esac - case "$xrpath " in - *" $dir "*) ;; - *) func_append xrpath " $dir" ;; - esac - continue - ;; - - -shared) - # The effects of -shared are defined in a previous loop. - continue - ;; - - -shrext) - prev=shrext - continue - ;; - - -static | -static-libtool-libs) - # The effects of -static are defined in a previous loop. - # We used to do the same as -all-static on platforms that - # didn't have a PIC flag, but the assumption that the effects - # would be equivalent was wrong. It would break on at least - # Digital Unix and AIX. - continue - ;; - - -thread-safe) - thread_safe=yes - continue - ;; - - -version-info) - prev=vinfo - continue - ;; - - -version-number) - prev=vinfo - vinfo_number=yes - continue - ;; - - -weak) - prev=weak - continue - ;; - - -Wc,*) - func_stripname '-Wc,' '' "$arg" - args=$func_stripname_result - arg= - save_ifs=$IFS; IFS=, - for flag in $args; do - IFS=$save_ifs - func_quote_for_eval "$flag" - func_append arg " $func_quote_for_eval_result" - func_append compiler_flags " $func_quote_for_eval_result" - done - IFS=$save_ifs - func_stripname ' ' '' "$arg" - arg=$func_stripname_result - ;; - - -Wl,*) - func_stripname '-Wl,' '' "$arg" - args=$func_stripname_result - arg= - save_ifs=$IFS; IFS=, - for flag in $args; do - IFS=$save_ifs - func_quote_for_eval "$flag" - func_append arg " $wl$func_quote_for_eval_result" - func_append compiler_flags " $wl$func_quote_for_eval_result" - func_append linker_flags " $func_quote_for_eval_result" - done - IFS=$save_ifs - func_stripname ' ' '' "$arg" - arg=$func_stripname_result - ;; - - -Xcompiler) - prev=xcompiler - continue - ;; - - -Xlinker) - prev=xlinker - continue - ;; - - -XCClinker) - prev=xcclinker - continue - ;; - - # -msg_* for osf cc - -msg_*) - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result - ;; - - # Flags to be passed through unchanged, with rationale: - # -64, -mips[0-9] enable 64-bit mode for the SGI compiler - # -r[0-9][0-9]* specify processor for the SGI compiler - # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler - # +DA*, +DD* enable 64-bit mode for the HP compiler - # -q* compiler args for the IBM compiler - # -m*, -t[45]*, -txscale* architecture-specific flags for GCC - # -F/path path to uninstalled frameworks, gcc on darwin - # -p, -pg, --coverage, -fprofile-* profiling flags for GCC - # -fstack-protector* stack protector flags for GCC - # @file GCC response files - # -tp=* Portland pgcc target processor selection - # --sysroot=* for sysroot support - # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization - # -specs=* GCC specs files - # -stdlib=* select c++ std lib with clang - -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ - -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ - -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ - -specs=*) - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result - func_append compile_command " $arg" - func_append finalize_command " $arg" - func_append compiler_flags " $arg" - continue - ;; - - -Z*) - if test os2 = "`expr $host : '.*\(os2\)'`"; then - # OS/2 uses -Zxxx to specify OS/2-specific options - compiler_flags="$compiler_flags $arg" - func_append compile_command " $arg" - func_append finalize_command " $arg" - case $arg in - -Zlinker | -Zstack) - prev=xcompiler - ;; - esac - continue - else - # Otherwise treat like 'Some other compiler flag' below - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result - fi - ;; - - # Some other compiler flag. - -* | +*) - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result - ;; - - *.$objext) - # A standard object. - func_append objs " $arg" - ;; - - *.lo) - # A libtool-controlled object. - - # Check to see that this really is a libtool object. - if func_lalib_unsafe_p "$arg"; then - pic_object= - non_pic_object= - - # Read the .lo file - func_source "$arg" - - if test -z "$pic_object" || - test -z "$non_pic_object" || - test none = "$pic_object" && - test none = "$non_pic_object"; then - func_fatal_error "cannot find name of object for '$arg'" - fi - - # Extract subdirectory from the argument. - func_dirname "$arg" "/" "" - xdir=$func_dirname_result - - test none = "$pic_object" || { - # Prepend the subdirectory the object is found in. - pic_object=$xdir$pic_object - - if test dlfiles = "$prev"; then - if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then - func_append dlfiles " $pic_object" - prev= - continue - else - # If libtool objects are unsupported, then we need to preload. - prev=dlprefiles - fi - fi - - # CHECK ME: I think I busted this. -Ossama - if test dlprefiles = "$prev"; then - # Preload the old-style object. - func_append dlprefiles " $pic_object" - prev= - fi - - # A PIC object. - func_append libobjs " $pic_object" - arg=$pic_object - } - - # Non-PIC object. - if test none != "$non_pic_object"; then - # Prepend the subdirectory the object is found in. - non_pic_object=$xdir$non_pic_object - - # A standard non-PIC object - func_append non_pic_objects " $non_pic_object" - if test -z "$pic_object" || test none = "$pic_object"; then - arg=$non_pic_object - fi - else - # If the PIC object exists, use it instead. - # $xdir was prepended to $pic_object above. - non_pic_object=$pic_object - func_append non_pic_objects " $non_pic_object" - fi - else - # Only an error if not doing a dry-run. - if $opt_dry_run; then - # Extract subdirectory from the argument. - func_dirname "$arg" "/" "" - xdir=$func_dirname_result - - func_lo2o "$arg" - pic_object=$xdir$objdir/$func_lo2o_result - non_pic_object=$xdir$func_lo2o_result - func_append libobjs " $pic_object" - func_append non_pic_objects " $non_pic_object" - else - func_fatal_error "'$arg' is not a valid libtool object" - fi - fi - ;; - - *.$libext) - # An archive. - func_append deplibs " $arg" - func_append old_deplibs " $arg" - continue - ;; - - *.la) - # A libtool-controlled library. - - func_resolve_sysroot "$arg" - if test dlfiles = "$prev"; then - # This library was specified with -dlopen. - func_append dlfiles " $func_resolve_sysroot_result" - prev= - elif test dlprefiles = "$prev"; then - # The library was specified with -dlpreopen. - func_append dlprefiles " $func_resolve_sysroot_result" - prev= - else - func_append deplibs " $func_resolve_sysroot_result" - fi - continue - ;; - - # Some other compiler argument. - *) - # Unknown arguments in both finalize_command and compile_command need - # to be aesthetically quoted because they are evaled later. - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result - ;; - esac # arg - - # Now actually substitute the argument into the commands. - if test -n "$arg"; then - func_append compile_command " $arg" - func_append finalize_command " $arg" - fi - done # argument parsing loop - - test -n "$prev" && \ - func_fatal_help "the '$prevarg' option requires an argument" - - if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then - eval arg=\"$export_dynamic_flag_spec\" - func_append compile_command " $arg" - func_append finalize_command " $arg" - fi - - oldlibs= - # calculate the name of the file, without its directory - func_basename "$output" - outputname=$func_basename_result - libobjs_save=$libobjs - - if test -n "$shlibpath_var"; then - # get the directories listed in $shlibpath_var - eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` - else - shlib_search_path= - fi - eval sys_lib_search_path=\"$sys_lib_search_path_spec\" - eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" - - # Definition is injected by LT_CONFIG during libtool generation. - func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" - - func_dirname "$output" "/" "" - output_objdir=$func_dirname_result$objdir - func_to_tool_file "$output_objdir/" - tool_output_objdir=$func_to_tool_file_result - # Create the object directory. - func_mkdir_p "$output_objdir" - - # Determine the type of output - case $output in - "") - func_fatal_help "you must specify an output file" - ;; - *.$libext) linkmode=oldlib ;; - *.lo | *.$objext) linkmode=obj ;; - *.la) linkmode=lib ;; - *) linkmode=prog ;; # Anything else should be a program. - esac - - specialdeplibs= - - libs= - # Find all interdependent deplibs by searching for libraries - # that are linked more than once (e.g. -la -lb -la) - for deplib in $deplibs; do - if $opt_preserve_dup_deps; then - case "$libs " in - *" $deplib "*) func_append specialdeplibs " $deplib" ;; - esac - fi - func_append libs " $deplib" - done - - if test lib = "$linkmode"; then - libs="$predeps $libs $compiler_lib_search_path $postdeps" - - # Compute libraries that are listed more than once in $predeps - # $postdeps and mark them as special (i.e., whose duplicates are - # not to be eliminated). - pre_post_deps= - if $opt_duplicate_compiler_generated_deps; then - for pre_post_dep in $predeps $postdeps; do - case "$pre_post_deps " in - *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; - esac - func_append pre_post_deps " $pre_post_dep" - done - fi - pre_post_deps= - fi - - deplibs= - newdependency_libs= - newlib_search_path= - need_relink=no # whether we're linking any uninstalled libtool libraries - notinst_deplibs= # not-installed libtool libraries - notinst_path= # paths that contain not-installed libtool libraries - - case $linkmode in - lib) - passes="conv dlpreopen link" - for file in $dlfiles $dlprefiles; do - case $file in - *.la) ;; - *) - func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" - ;; - esac - done - ;; - prog) - compile_deplibs= - finalize_deplibs= - alldeplibs=false - newdlfiles= - newdlprefiles= - passes="conv scan dlopen dlpreopen link" - ;; - *) passes="conv" - ;; - esac - - for pass in $passes; do - # The preopen pass in lib mode reverses $deplibs; put it back here - # so that -L comes before libs that need it for instance... - if test lib,link = "$linkmode,$pass"; then - ## FIXME: Find the place where the list is rebuilt in the wrong - ## order, and fix it there properly - tmp_deplibs= - for deplib in $deplibs; do - tmp_deplibs="$deplib $tmp_deplibs" - done - deplibs=$tmp_deplibs - fi - - if test lib,link = "$linkmode,$pass" || - test prog,scan = "$linkmode,$pass"; then - libs=$deplibs - deplibs= - fi - if test prog = "$linkmode"; then - case $pass in - dlopen) libs=$dlfiles ;; - dlpreopen) libs=$dlprefiles ;; - link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; - esac - fi - if test lib,dlpreopen = "$linkmode,$pass"; then - # Collect and forward deplibs of preopened libtool libs - for lib in $dlprefiles; do - # Ignore non-libtool-libs - dependency_libs= - func_resolve_sysroot "$lib" - case $lib in - *.la) func_source "$func_resolve_sysroot_result" ;; - esac - - # Collect preopened libtool deplibs, except any this library - # has declared as weak libs - for deplib in $dependency_libs; do - func_basename "$deplib" - deplib_base=$func_basename_result - case " $weak_libs " in - *" $deplib_base "*) ;; - *) func_append deplibs " $deplib" ;; - esac - done - done - libs=$dlprefiles - fi - if test dlopen = "$pass"; then - # Collect dlpreopened libraries - save_deplibs=$deplibs - deplibs= - fi - - for deplib in $libs; do - lib= - found=false - case $deplib in - -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ - |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) - if test prog,link = "$linkmode,$pass"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - func_append compiler_flags " $deplib" - if test lib = "$linkmode"; then - case "$new_inherited_linker_flags " in - *" $deplib "*) ;; - * ) func_append new_inherited_linker_flags " $deplib" ;; - esac - fi - fi - continue - ;; - -l*) - if test lib != "$linkmode" && test prog != "$linkmode"; then - func_warning "'-l' is ignored for archives/objects" - continue - fi - func_stripname '-l' '' "$deplib" - name=$func_stripname_result - if test lib = "$linkmode"; then - searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" - else - searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" - fi - for searchdir in $searchdirs; do - for search_ext in .la $std_shrext .so .a; do - # Search the libtool library - lib=$searchdir/lib$name$search_ext - if test -f "$lib"; then - if test .la = "$search_ext"; then - found=: - else - found=false - fi - break 2 - fi - done - done - if $found; then - # deplib is a libtool library - # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, - # We need to do some special things here, and not later. - if test yes = "$allow_libtool_libs_with_static_runtimes"; then - case " $predeps $postdeps " in - *" $deplib "*) - if func_lalib_p "$lib"; then - library_names= - old_library= - func_source "$lib" - for l in $old_library $library_names; do - ll=$l - done - if test "X$ll" = "X$old_library"; then # only static version available - found=false - func_dirname "$lib" "" "." - ladir=$func_dirname_result - lib=$ladir/$old_library - if test prog,link = "$linkmode,$pass"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - deplibs="$deplib $deplibs" - test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" - fi - continue - fi - fi - ;; - *) ;; - esac - fi - else - # deplib doesn't seem to be a libtool library - if test prog,link = "$linkmode,$pass"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - deplibs="$deplib $deplibs" - test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" - fi - continue - fi - ;; # -l - *.ltframework) - if test prog,link = "$linkmode,$pass"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - deplibs="$deplib $deplibs" - if test lib = "$linkmode"; then - case "$new_inherited_linker_flags " in - *" $deplib "*) ;; - * ) func_append new_inherited_linker_flags " $deplib" ;; - esac - fi - fi - continue - ;; - -L*) - case $linkmode in - lib) - deplibs="$deplib $deplibs" - test conv = "$pass" && continue - newdependency_libs="$deplib $newdependency_libs" - func_stripname '-L' '' "$deplib" - func_resolve_sysroot "$func_stripname_result" - func_append newlib_search_path " $func_resolve_sysroot_result" - ;; - prog) - if test conv = "$pass"; then - deplibs="$deplib $deplibs" - continue - fi - if test scan = "$pass"; then - deplibs="$deplib $deplibs" - else - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - fi - func_stripname '-L' '' "$deplib" - func_resolve_sysroot "$func_stripname_result" - func_append newlib_search_path " $func_resolve_sysroot_result" - ;; - *) - func_warning "'-L' is ignored for archives/objects" - ;; - esac # linkmode - continue - ;; # -L - -R*) - if test link = "$pass"; then - func_stripname '-R' '' "$deplib" - func_resolve_sysroot "$func_stripname_result" - dir=$func_resolve_sysroot_result - # Make sure the xrpath contains only unique directories. - case "$xrpath " in - *" $dir "*) ;; - *) func_append xrpath " $dir" ;; - esac - fi - deplibs="$deplib $deplibs" - continue - ;; - *.la) - func_resolve_sysroot "$deplib" - lib=$func_resolve_sysroot_result - ;; - *.$libext) - if test conv = "$pass"; then - deplibs="$deplib $deplibs" - continue - fi - case $linkmode in - lib) - # Linking convenience modules into shared libraries is allowed, - # but linking other static libraries is non-portable. - case " $dlpreconveniencelibs " in - *" $deplib "*) ;; - *) - valid_a_lib=false - case $deplibs_check_method in - match_pattern*) - set dummy $deplibs_check_method; shift - match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` - if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ - | $EGREP "$match_pattern_regex" > /dev/null; then - valid_a_lib=: - fi - ;; - pass_all) - valid_a_lib=: - ;; - esac - if $valid_a_lib; then - echo - $ECHO "*** Warning: Linking the shared library $output against the" - $ECHO "*** static library $deplib is not portable!" - deplibs="$deplib $deplibs" - else - echo - $ECHO "*** Warning: Trying to link with static lib archive $deplib." - echo "*** I have the capability to make that library automatically link in when" - echo "*** you link to this library. But I can only do this if you have a" - echo "*** shared version of the library, which you do not appear to have" - echo "*** because the file extensions .$libext of this argument makes me believe" - echo "*** that it is just a static archive that I should not use here." - fi - ;; - esac - continue - ;; - prog) - if test link != "$pass"; then - deplibs="$deplib $deplibs" - else - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - fi - continue - ;; - esac # linkmode - ;; # *.$libext - *.lo | *.$objext) - if test conv = "$pass"; then - deplibs="$deplib $deplibs" - elif test prog = "$linkmode"; then - if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then - # If there is no dlopen support or we're linking statically, - # we need to preload. - func_append newdlprefiles " $deplib" - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - func_append newdlfiles " $deplib" - fi - fi - continue - ;; - %DEPLIBS%) - alldeplibs=: - continue - ;; - esac # case $deplib - - $found || test -f "$lib" \ - || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" - - # Check to see that this really is a libtool archive. - func_lalib_unsafe_p "$lib" \ - || func_fatal_error "'$lib' is not a valid libtool archive" - - func_dirname "$lib" "" "." - ladir=$func_dirname_result - - dlname= - dlopen= - dlpreopen= - libdir= - library_names= - old_library= - inherited_linker_flags= - # If the library was installed with an old release of libtool, - # it will not redefine variables installed, or shouldnotlink - installed=yes - shouldnotlink=no - avoidtemprpath= - - - # Read the .la file - func_source "$lib" - - # Convert "-framework foo" to "foo.ltframework" - if test -n "$inherited_linker_flags"; then - tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` - for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do - case " $new_inherited_linker_flags " in - *" $tmp_inherited_linker_flag "*) ;; - *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; - esac - done - fi - dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - if test lib,link = "$linkmode,$pass" || - test prog,scan = "$linkmode,$pass" || - { test prog != "$linkmode" && test lib != "$linkmode"; }; then - test -n "$dlopen" && func_append dlfiles " $dlopen" - test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" - fi - - if test conv = "$pass"; then - # Only check for convenience libraries - deplibs="$lib $deplibs" - if test -z "$libdir"; then - if test -z "$old_library"; then - func_fatal_error "cannot find name of link library for '$lib'" - fi - # It is a libtool convenience library, so add in its objects. - func_append convenience " $ladir/$objdir/$old_library" - func_append old_convenience " $ladir/$objdir/$old_library" - elif test prog != "$linkmode" && test lib != "$linkmode"; then - func_fatal_error "'$lib' is not a convenience library" - fi - tmp_libs= - for deplib in $dependency_libs; do - deplibs="$deplib $deplibs" - if $opt_preserve_dup_deps; then - case "$tmp_libs " in - *" $deplib "*) func_append specialdeplibs " $deplib" ;; - esac - fi - func_append tmp_libs " $deplib" - done - continue - fi # $pass = conv - - - # Get the name of the library we link against. - linklib= - if test -n "$old_library" && - { test yes = "$prefer_static_libs" || - test built,no = "$prefer_static_libs,$installed"; }; then - linklib=$old_library - else - for l in $old_library $library_names; do - linklib=$l - done - fi - if test -z "$linklib"; then - func_fatal_error "cannot find name of link library for '$lib'" - fi - - # This library was specified with -dlopen. - if test dlopen = "$pass"; then - test -z "$libdir" \ - && func_fatal_error "cannot -dlopen a convenience library: '$lib'" - if test -z "$dlname" || - test yes != "$dlopen_support" || - test no = "$build_libtool_libs" - then - # If there is no dlname, no dlopen support or we're linking - # statically, we need to preload. We also need to preload any - # dependent libraries so libltdl's deplib preloader doesn't - # bomb out in the load deplibs phase. - func_append dlprefiles " $lib $dependency_libs" - else - func_append newdlfiles " $lib" - fi - continue - fi # $pass = dlopen - - # We need an absolute path. - case $ladir in - [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; - *) - abs_ladir=`cd "$ladir" && pwd` - if test -z "$abs_ladir"; then - func_warning "cannot determine absolute directory name of '$ladir'" - func_warning "passing it literally to the linker, although it might fail" - abs_ladir=$ladir - fi - ;; - esac - func_basename "$lib" - laname=$func_basename_result - - # Find the relevant object directory and library name. - if test yes = "$installed"; then - if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then - func_warning "library '$lib' was moved." - dir=$ladir - absdir=$abs_ladir - libdir=$abs_ladir - else - dir=$lt_sysroot$libdir - absdir=$lt_sysroot$libdir - fi - test yes = "$hardcode_automatic" && avoidtemprpath=yes - else - if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then - dir=$ladir - absdir=$abs_ladir - # Remove this search path later - func_append notinst_path " $abs_ladir" - else - dir=$ladir/$objdir - absdir=$abs_ladir/$objdir - # Remove this search path later - func_append notinst_path " $abs_ladir" - fi - fi # $installed = yes - func_stripname 'lib' '.la' "$laname" - name=$func_stripname_result - - # This library was specified with -dlpreopen. - if test dlpreopen = "$pass"; then - if test -z "$libdir" && test prog = "$linkmode"; then - func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" - fi - case $host in - # special handling for platforms with PE-DLLs. - *cygwin* | *mingw* | *cegcc* ) - # Linker will automatically link against shared library if both - # static and shared are present. Therefore, ensure we extract - # symbols from the import library if a shared library is present - # (otherwise, the dlopen module name will be incorrect). We do - # this by putting the import library name into $newdlprefiles. - # We recover the dlopen module name by 'saving' the la file - # name in a special purpose variable, and (later) extracting the - # dlname from the la file. - if test -n "$dlname"; then - func_tr_sh "$dir/$linklib" - eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" - func_append newdlprefiles " $dir/$linklib" - else - func_append newdlprefiles " $dir/$old_library" - # Keep a list of preopened convenience libraries to check - # that they are being used correctly in the link pass. - test -z "$libdir" && \ - func_append dlpreconveniencelibs " $dir/$old_library" - fi - ;; - * ) - # Prefer using a static library (so that no silly _DYNAMIC symbols - # are required to link). - if test -n "$old_library"; then - func_append newdlprefiles " $dir/$old_library" - # Keep a list of preopened convenience libraries to check - # that they are being used correctly in the link pass. - test -z "$libdir" && \ - func_append dlpreconveniencelibs " $dir/$old_library" - # Otherwise, use the dlname, so that lt_dlopen finds it. - elif test -n "$dlname"; then - func_append newdlprefiles " $dir/$dlname" - else - func_append newdlprefiles " $dir/$linklib" - fi - ;; - esac - fi # $pass = dlpreopen - - if test -z "$libdir"; then - # Link the convenience library - if test lib = "$linkmode"; then - deplibs="$dir/$old_library $deplibs" - elif test prog,link = "$linkmode,$pass"; then - compile_deplibs="$dir/$old_library $compile_deplibs" - finalize_deplibs="$dir/$old_library $finalize_deplibs" - else - deplibs="$lib $deplibs" # used for prog,scan pass - fi - continue - fi - - - if test prog = "$linkmode" && test link != "$pass"; then - func_append newlib_search_path " $ladir" - deplibs="$lib $deplibs" - - linkalldeplibs=false - if test no != "$link_all_deplibs" || test -z "$library_names" || - test no = "$build_libtool_libs"; then - linkalldeplibs=: - fi - - tmp_libs= - for deplib in $dependency_libs; do - case $deplib in - -L*) func_stripname '-L' '' "$deplib" - func_resolve_sysroot "$func_stripname_result" - func_append newlib_search_path " $func_resolve_sysroot_result" - ;; - esac - # Need to link against all dependency_libs? - if $linkalldeplibs; then - deplibs="$deplib $deplibs" - else - # Need to hardcode shared library paths - # or/and link against static libraries - newdependency_libs="$deplib $newdependency_libs" - fi - if $opt_preserve_dup_deps; then - case "$tmp_libs " in - *" $deplib "*) func_append specialdeplibs " $deplib" ;; - esac - fi - func_append tmp_libs " $deplib" - done # for deplib - continue - fi # $linkmode = prog... - - if test prog,link = "$linkmode,$pass"; then - if test -n "$library_names" && - { { test no = "$prefer_static_libs" || - test built,yes = "$prefer_static_libs,$installed"; } || - test -z "$old_library"; }; then - # We need to hardcode the library path - if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then - # Make sure the rpath contains only unique directories. - case $temp_rpath: in - *"$absdir:"*) ;; - *) func_append temp_rpath "$absdir:" ;; - esac - fi - - # Hardcode the library path. - # Skip directories that are in the system default run-time - # search path. - case " $sys_lib_dlsearch_path " in - *" $absdir "*) ;; - *) - case "$compile_rpath " in - *" $absdir "*) ;; - *) func_append compile_rpath " $absdir" ;; - esac - ;; - esac - case " $sys_lib_dlsearch_path " in - *" $libdir "*) ;; - *) - case "$finalize_rpath " in - *" $libdir "*) ;; - *) func_append finalize_rpath " $libdir" ;; - esac - ;; - esac - fi # $linkmode,$pass = prog,link... - - if $alldeplibs && - { test pass_all = "$deplibs_check_method" || - { test yes = "$build_libtool_libs" && - test -n "$library_names"; }; }; then - # We only need to search for static libraries - continue - fi - fi - - link_static=no # Whether the deplib will be linked statically - use_static_libs=$prefer_static_libs - if test built = "$use_static_libs" && test yes = "$installed"; then - use_static_libs=no - fi - if test -n "$library_names" && - { test no = "$use_static_libs" || test -z "$old_library"; }; then - case $host in - *cygwin* | *mingw* | *cegcc* | *os2*) - # No point in relinking DLLs because paths are not encoded - func_append notinst_deplibs " $lib" - need_relink=no - ;; - *) - if test no = "$installed"; then - func_append notinst_deplibs " $lib" - need_relink=yes - fi - ;; - esac - # This is a shared library - - # Warn about portability, can't link against -module's on some - # systems (darwin). Don't bleat about dlopened modules though! - dlopenmodule= - for dlpremoduletest in $dlprefiles; do - if test "X$dlpremoduletest" = "X$lib"; then - dlopenmodule=$dlpremoduletest - break - fi - done - if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then - echo - if test prog = "$linkmode"; then - $ECHO "*** Warning: Linking the executable $output against the loadable module" - else - $ECHO "*** Warning: Linking the shared library $output against the loadable module" - fi - $ECHO "*** $linklib is not portable!" - fi - if test lib = "$linkmode" && - test yes = "$hardcode_into_libs"; then - # Hardcode the library path. - # Skip directories that are in the system default run-time - # search path. - case " $sys_lib_dlsearch_path " in - *" $absdir "*) ;; - *) - case "$compile_rpath " in - *" $absdir "*) ;; - *) func_append compile_rpath " $absdir" ;; - esac - ;; - esac - case " $sys_lib_dlsearch_path " in - *" $libdir "*) ;; - *) - case "$finalize_rpath " in - *" $libdir "*) ;; - *) func_append finalize_rpath " $libdir" ;; - esac - ;; - esac - fi - - if test -n "$old_archive_from_expsyms_cmds"; then - # figure out the soname - set dummy $library_names - shift - realname=$1 - shift - libname=`eval "\\$ECHO \"$libname_spec\""` - # use dlname if we got it. it's perfectly good, no? - if test -n "$dlname"; then - soname=$dlname - elif test -n "$soname_spec"; then - # bleh windows - case $host in - *cygwin* | mingw* | *cegcc* | *os2*) - func_arith $current - $age - major=$func_arith_result - versuffix=-$major - ;; - esac - eval soname=\"$soname_spec\" - else - soname=$realname - fi - - # Make a new name for the extract_expsyms_cmds to use - soroot=$soname - func_basename "$soroot" - soname=$func_basename_result - func_stripname 'lib' '.dll' "$soname" - newlib=libimp-$func_stripname_result.a - - # If the library has no export list, then create one now - if test -f "$output_objdir/$soname-def"; then : - else - func_verbose "extracting exported symbol list from '$soname'" - func_execute_cmds "$extract_expsyms_cmds" 'exit $?' - fi - - # Create $newlib - if test -f "$output_objdir/$newlib"; then :; else - func_verbose "generating import library for '$soname'" - func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' - fi - # make sure the library variables are pointing to the new library - dir=$output_objdir - linklib=$newlib - fi # test -n "$old_archive_from_expsyms_cmds" - - if test prog = "$linkmode" || test relink != "$opt_mode"; then - add_shlibpath= - add_dir= - add= - lib_linked=yes - case $hardcode_action in - immediate | unsupported) - if test no = "$hardcode_direct"; then - add=$dir/$linklib - case $host in - *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; - *-*-sysv4*uw2*) add_dir=-L$dir ;; - *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ - *-*-unixware7*) add_dir=-L$dir ;; - *-*-darwin* ) - # if the lib is a (non-dlopened) module then we cannot - # link against it, someone is ignoring the earlier warnings - if /usr/bin/file -L $add 2> /dev/null | - $GREP ": [^:]* bundle" >/dev/null; then - if test "X$dlopenmodule" != "X$lib"; then - $ECHO "*** Warning: lib $linklib is a module, not a shared library" - if test -z "$old_library"; then - echo - echo "*** And there doesn't seem to be a static archive available" - echo "*** The link will probably fail, sorry" - else - add=$dir/$old_library - fi - elif test -n "$old_library"; then - add=$dir/$old_library - fi - fi - esac - elif test no = "$hardcode_minus_L"; then - case $host in - *-*-sunos*) add_shlibpath=$dir ;; - esac - add_dir=-L$dir - add=-l$name - elif test no = "$hardcode_shlibpath_var"; then - add_shlibpath=$dir - add=-l$name - else - lib_linked=no - fi - ;; - relink) - if test yes = "$hardcode_direct" && - test no = "$hardcode_direct_absolute"; then - add=$dir/$linklib - elif test yes = "$hardcode_minus_L"; then - add_dir=-L$absdir - # Try looking first in the location we're being installed to. - if test -n "$inst_prefix_dir"; then - case $libdir in - [\\/]*) - func_append add_dir " -L$inst_prefix_dir$libdir" - ;; - esac - fi - add=-l$name - elif test yes = "$hardcode_shlibpath_var"; then - add_shlibpath=$dir - add=-l$name - else - lib_linked=no - fi - ;; - *) lib_linked=no ;; - esac - - if test yes != "$lib_linked"; then - func_fatal_configuration "unsupported hardcode properties" - fi - - if test -n "$add_shlibpath"; then - case :$compile_shlibpath: in - *":$add_shlibpath:"*) ;; - *) func_append compile_shlibpath "$add_shlibpath:" ;; - esac - fi - if test prog = "$linkmode"; then - test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" - test -n "$add" && compile_deplibs="$add $compile_deplibs" - else - test -n "$add_dir" && deplibs="$add_dir $deplibs" - test -n "$add" && deplibs="$add $deplibs" - if test yes != "$hardcode_direct" && - test yes != "$hardcode_minus_L" && - test yes = "$hardcode_shlibpath_var"; then - case :$finalize_shlibpath: in - *":$libdir:"*) ;; - *) func_append finalize_shlibpath "$libdir:" ;; - esac - fi - fi - fi - - if test prog = "$linkmode" || test relink = "$opt_mode"; then - add_shlibpath= - add_dir= - add= - # Finalize command for both is simple: just hardcode it. - if test yes = "$hardcode_direct" && - test no = "$hardcode_direct_absolute"; then - add=$libdir/$linklib - elif test yes = "$hardcode_minus_L"; then - add_dir=-L$libdir - add=-l$name - elif test yes = "$hardcode_shlibpath_var"; then - case :$finalize_shlibpath: in - *":$libdir:"*) ;; - *) func_append finalize_shlibpath "$libdir:" ;; - esac - add=-l$name - elif test yes = "$hardcode_automatic"; then - if test -n "$inst_prefix_dir" && - test -f "$inst_prefix_dir$libdir/$linklib"; then - add=$inst_prefix_dir$libdir/$linklib - else - add=$libdir/$linklib - fi - else - # We cannot seem to hardcode it, guess we'll fake it. - add_dir=-L$libdir - # Try looking first in the location we're being installed to. - if test -n "$inst_prefix_dir"; then - case $libdir in - [\\/]*) - func_append add_dir " -L$inst_prefix_dir$libdir" - ;; - esac - fi - add=-l$name - fi - - if test prog = "$linkmode"; then - test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" - test -n "$add" && finalize_deplibs="$add $finalize_deplibs" - else - test -n "$add_dir" && deplibs="$add_dir $deplibs" - test -n "$add" && deplibs="$add $deplibs" - fi - fi - elif test prog = "$linkmode"; then - # Here we assume that one of hardcode_direct or hardcode_minus_L - # is not unsupported. This is valid on all known static and - # shared platforms. - if test unsupported != "$hardcode_direct"; then - test -n "$old_library" && linklib=$old_library - compile_deplibs="$dir/$linklib $compile_deplibs" - finalize_deplibs="$dir/$linklib $finalize_deplibs" - else - compile_deplibs="-l$name -L$dir $compile_deplibs" - finalize_deplibs="-l$name -L$dir $finalize_deplibs" - fi - elif test yes = "$build_libtool_libs"; then - # Not a shared library - if test pass_all != "$deplibs_check_method"; then - # We're trying link a shared library against a static one - # but the system doesn't support it. - - # Just print a warning and add the library to dependency_libs so - # that the program can be linked against the static library. - echo - $ECHO "*** Warning: This system cannot link to static lib archive $lib." - echo "*** I have the capability to make that library automatically link in when" - echo "*** you link to this library. But I can only do this if you have a" - echo "*** shared version of the library, which you do not appear to have." - if test yes = "$module"; then - echo "*** But as you try to build a module library, libtool will still create " - echo "*** a static module, that should work as long as the dlopening application" - echo "*** is linked with the -dlopen flag to resolve symbols at runtime." - if test -z "$global_symbol_pipe"; then - echo - echo "*** However, this would only work if libtool was able to extract symbol" - echo "*** lists from a program, using 'nm' or equivalent, but libtool could" - echo "*** not find such a program. So, this module is probably useless." - echo "*** 'nm' from GNU binutils and a full rebuild may help." - fi - if test no = "$build_old_libs"; then - build_libtool_libs=module - build_old_libs=yes - else - build_libtool_libs=no - fi - fi - else - deplibs="$dir/$old_library $deplibs" - link_static=yes - fi - fi # link shared/static library? - - if test lib = "$linkmode"; then - if test -n "$dependency_libs" && - { test yes != "$hardcode_into_libs" || - test yes = "$build_old_libs" || - test yes = "$link_static"; }; then - # Extract -R from dependency_libs - temp_deplibs= - for libdir in $dependency_libs; do - case $libdir in - -R*) func_stripname '-R' '' "$libdir" - temp_xrpath=$func_stripname_result - case " $xrpath " in - *" $temp_xrpath "*) ;; - *) func_append xrpath " $temp_xrpath";; - esac;; - *) func_append temp_deplibs " $libdir";; - esac - done - dependency_libs=$temp_deplibs - fi - - func_append newlib_search_path " $absdir" - # Link against this library - test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" - # ... and its dependency_libs - tmp_libs= - for deplib in $dependency_libs; do - newdependency_libs="$deplib $newdependency_libs" - case $deplib in - -L*) func_stripname '-L' '' "$deplib" - func_resolve_sysroot "$func_stripname_result";; - *) func_resolve_sysroot "$deplib" ;; - esac - if $opt_preserve_dup_deps; then - case "$tmp_libs " in - *" $func_resolve_sysroot_result "*) - func_append specialdeplibs " $func_resolve_sysroot_result" ;; - esac - fi - func_append tmp_libs " $func_resolve_sysroot_result" - done - - if test no != "$link_all_deplibs"; then - # Add the search paths of all dependency libraries - for deplib in $dependency_libs; do - path= - case $deplib in - -L*) path=$deplib ;; - *.la) - func_resolve_sysroot "$deplib" - deplib=$func_resolve_sysroot_result - func_dirname "$deplib" "" "." - dir=$func_dirname_result - # We need an absolute path. - case $dir in - [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; - *) - absdir=`cd "$dir" && pwd` - if test -z "$absdir"; then - func_warning "cannot determine absolute directory name of '$dir'" - absdir=$dir - fi - ;; - esac - if $GREP "^installed=no" $deplib > /dev/null; then - case $host in - *-*-darwin*) - depdepl= - eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` - if test -n "$deplibrary_names"; then - for tmp in $deplibrary_names; do - depdepl=$tmp - done - if test -f "$absdir/$objdir/$depdepl"; then - depdepl=$absdir/$objdir/$depdepl - darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` - if test -z "$darwin_install_name"; then - darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` - fi - func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" - func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" - path= - fi - fi - ;; - *) - path=-L$absdir/$objdir - ;; - esac - else - eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` - test -z "$libdir" && \ - func_fatal_error "'$deplib' is not a valid libtool archive" - test "$absdir" != "$libdir" && \ - func_warning "'$deplib' seems to be moved" - - path=-L$absdir - fi - ;; - esac - case " $deplibs " in - *" $path "*) ;; - *) deplibs="$path $deplibs" ;; - esac - done - fi # link_all_deplibs != no - fi # linkmode = lib - done # for deplib in $libs - if test link = "$pass"; then - if test prog = "$linkmode"; then - compile_deplibs="$new_inherited_linker_flags $compile_deplibs" - finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" - else - compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - fi - fi - dependency_libs=$newdependency_libs - if test dlpreopen = "$pass"; then - # Link the dlpreopened libraries before other libraries - for deplib in $save_deplibs; do - deplibs="$deplib $deplibs" - done - fi - if test dlopen != "$pass"; then - test conv = "$pass" || { - # Make sure lib_search_path contains only unique directories. - lib_search_path= - for dir in $newlib_search_path; do - case "$lib_search_path " in - *" $dir "*) ;; - *) func_append lib_search_path " $dir" ;; - esac - done - newlib_search_path= - } - - if test prog,link = "$linkmode,$pass"; then - vars="compile_deplibs finalize_deplibs" - else - vars=deplibs - fi - for var in $vars dependency_libs; do - # Add libraries to $var in reverse order - eval tmp_libs=\"\$$var\" - new_libs= - for deplib in $tmp_libs; do - # FIXME: Pedantically, this is the right thing to do, so - # that some nasty dependency loop isn't accidentally - # broken: - #new_libs="$deplib $new_libs" - # Pragmatically, this seems to cause very few problems in - # practice: - case $deplib in - -L*) new_libs="$deplib $new_libs" ;; - -R*) ;; - *) - # And here is the reason: when a library appears more - # than once as an explicit dependence of a library, or - # is implicitly linked in more than once by the - # compiler, it is considered special, and multiple - # occurrences thereof are not removed. Compare this - # with having the same library being listed as a - # dependency of multiple other libraries: in this case, - # we know (pedantically, we assume) the library does not - # need to be listed more than once, so we keep only the - # last copy. This is not always right, but it is rare - # enough that we require users that really mean to play - # such unportable linking tricks to link the library - # using -Wl,-lname, so that libtool does not consider it - # for duplicate removal. - case " $specialdeplibs " in - *" $deplib "*) new_libs="$deplib $new_libs" ;; - *) - case " $new_libs " in - *" $deplib "*) ;; - *) new_libs="$deplib $new_libs" ;; - esac - ;; - esac - ;; - esac - done - tmp_libs= - for deplib in $new_libs; do - case $deplib in - -L*) - case " $tmp_libs " in - *" $deplib "*) ;; - *) func_append tmp_libs " $deplib" ;; - esac - ;; - *) func_append tmp_libs " $deplib" ;; - esac - done - eval $var=\"$tmp_libs\" - done # for var - fi - - # Add Sun CC postdeps if required: - test CXX = "$tagname" && { - case $host_os in - linux*) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) # Sun C++ 5.9 - func_suncc_cstd_abi - - if test no != "$suncc_use_cstd_abi"; then - func_append postdeps ' -library=Cstd -library=Crun' - fi - ;; - esac - ;; - - solaris*) - func_cc_basename "$CC" - case $func_cc_basename_result in - CC* | sunCC*) - func_suncc_cstd_abi - - if test no != "$suncc_use_cstd_abi"; then - func_append postdeps ' -library=Cstd -library=Crun' - fi - ;; - esac - ;; - esac - } - - # Last step: remove runtime libs from dependency_libs - # (they stay in deplibs) - tmp_libs= - for i in $dependency_libs; do - case " $predeps $postdeps $compiler_lib_search_path " in - *" $i "*) - i= - ;; - esac - if test -n "$i"; then - func_append tmp_libs " $i" - fi - done - dependency_libs=$tmp_libs - done # for pass - if test prog = "$linkmode"; then - dlfiles=$newdlfiles - fi - if test prog = "$linkmode" || test lib = "$linkmode"; then - dlprefiles=$newdlprefiles - fi - - case $linkmode in - oldlib) - if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then - func_warning "'-dlopen' is ignored for archives" - fi - - case " $deplibs" in - *\ -l* | *\ -L*) - func_warning "'-l' and '-L' are ignored for archives" ;; - esac - - test -n "$rpath" && \ - func_warning "'-rpath' is ignored for archives" - - test -n "$xrpath" && \ - func_warning "'-R' is ignored for archives" - - test -n "$vinfo" && \ - func_warning "'-version-info/-version-number' is ignored for archives" - - test -n "$release" && \ - func_warning "'-release' is ignored for archives" - - test -n "$export_symbols$export_symbols_regex" && \ - func_warning "'-export-symbols' is ignored for archives" - - # Now set the variables for building old libraries. - build_libtool_libs=no - oldlibs=$output - func_append objs "$old_deplibs" - ;; - - lib) - # Make sure we only generate libraries of the form 'libNAME.la'. - case $outputname in - lib*) - func_stripname 'lib' '.la' "$outputname" - name=$func_stripname_result - eval shared_ext=\"$shrext_cmds\" - eval libname=\"$libname_spec\" - ;; - *) - test no = "$module" \ - && func_fatal_help "libtool library '$output' must begin with 'lib'" - - if test no != "$need_lib_prefix"; then - # Add the "lib" prefix for modules if required - func_stripname '' '.la' "$outputname" - name=$func_stripname_result - eval shared_ext=\"$shrext_cmds\" - eval libname=\"$libname_spec\" - else - func_stripname '' '.la' "$outputname" - libname=$func_stripname_result - fi - ;; - esac - - if test -n "$objs"; then - if test pass_all != "$deplibs_check_method"; then - func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" - else - echo - $ECHO "*** Warning: Linking the shared library $output against the non-libtool" - $ECHO "*** objects $objs is not portable!" - func_append libobjs " $objs" - fi - fi - - test no = "$dlself" \ - || func_warning "'-dlopen self' is ignored for libtool libraries" - - set dummy $rpath - shift - test 1 -lt "$#" \ - && func_warning "ignoring multiple '-rpath's for a libtool library" - - install_libdir=$1 - - oldlibs= - if test -z "$rpath"; then - if test yes = "$build_libtool_libs"; then - # Building a libtool convenience library. - # Some compilers have problems with a '.al' extension so - # convenience libraries should have the same extension an - # archive normally would. - oldlibs="$output_objdir/$libname.$libext $oldlibs" - build_libtool_libs=convenience - build_old_libs=yes - fi - - test -n "$vinfo" && \ - func_warning "'-version-info/-version-number' is ignored for convenience libraries" - - test -n "$release" && \ - func_warning "'-release' is ignored for convenience libraries" - else - - # Parse the version information argument. - save_ifs=$IFS; IFS=: - set dummy $vinfo 0 0 0 - shift - IFS=$save_ifs - - test -n "$7" && \ - func_fatal_help "too many parameters to '-version-info'" - - # convert absolute version numbers to libtool ages - # this retains compatibility with .la files and attempts - # to make the code below a bit more comprehensible - - case $vinfo_number in - yes) - number_major=$1 - number_minor=$2 - number_revision=$3 - # - # There are really only two kinds -- those that - # use the current revision as the major version - # and those that subtract age and use age as - # a minor version. But, then there is irix - # that has an extra 1 added just for fun - # - case $version_type in - # correct linux to gnu/linux during the next big refactor - darwin|freebsd-elf|linux|osf|windows|none) - func_arith $number_major + $number_minor - current=$func_arith_result - age=$number_minor - revision=$number_revision - ;; - freebsd-aout|qnx|sunos) - current=$number_major - revision=$number_minor - age=0 - ;; - irix|nonstopux) - func_arith $number_major + $number_minor - current=$func_arith_result - age=$number_minor - revision=$number_minor - lt_irix_increment=no - ;; - esac - ;; - no) - current=$1 - revision=$2 - age=$3 - ;; - esac - - # Check that each of the things are valid numbers. - case $current in - 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; - *) - func_error "CURRENT '$current' must be a nonnegative integer" - func_fatal_error "'$vinfo' is not valid version information" - ;; - esac - - case $revision in - 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; - *) - func_error "REVISION '$revision' must be a nonnegative integer" - func_fatal_error "'$vinfo' is not valid version information" - ;; - esac - - case $age in - 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; - *) - func_error "AGE '$age' must be a nonnegative integer" - func_fatal_error "'$vinfo' is not valid version information" - ;; - esac - - if test "$age" -gt "$current"; then - func_error "AGE '$age' is greater than the current interface number '$current'" - func_fatal_error "'$vinfo' is not valid version information" - fi - - # Calculate the version variables. - major= - versuffix= - verstring= - case $version_type in - none) ;; - - darwin) - # Like Linux, but with the current version available in - # verstring for coding it into the library header - func_arith $current - $age - major=.$func_arith_result - versuffix=$major.$age.$revision - # Darwin ld doesn't like 0 for these options... - func_arith $current + 1 - minor_current=$func_arith_result - xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" - verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" - # On Darwin other compilers - case $CC in - nagfor*) - verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" - ;; - *) - verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" - ;; - esac - ;; - - freebsd-aout) - major=.$current - versuffix=.$current.$revision - ;; - - freebsd-elf) - func_arith $current - $age - major=.$func_arith_result - versuffix=$major.$age.$revision - ;; - - irix | nonstopux) - if test no = "$lt_irix_increment"; then - func_arith $current - $age - else - func_arith $current - $age + 1 - fi - major=$func_arith_result - - case $version_type in - nonstopux) verstring_prefix=nonstopux ;; - *) verstring_prefix=sgi ;; - esac - verstring=$verstring_prefix$major.$revision - - # Add in all the interfaces that we are compatible with. - loop=$revision - while test 0 -ne "$loop"; do - func_arith $revision - $loop - iface=$func_arith_result - func_arith $loop - 1 - loop=$func_arith_result - verstring=$verstring_prefix$major.$iface:$verstring - done - - # Before this point, $major must not contain '.'. - major=.$major - versuffix=$major.$revision - ;; - - linux) # correct to gnu/linux during the next big refactor - func_arith $current - $age - major=.$func_arith_result - versuffix=$major.$age.$revision - ;; - - osf) - func_arith $current - $age - major=.$func_arith_result - versuffix=.$current.$age.$revision - verstring=$current.$age.$revision - - # Add in all the interfaces that we are compatible with. - loop=$age - while test 0 -ne "$loop"; do - func_arith $current - $loop - iface=$func_arith_result - func_arith $loop - 1 - loop=$func_arith_result - verstring=$verstring:$iface.0 - done - - # Make executables depend on our current version. - func_append verstring ":$current.0" - ;; - - qnx) - major=.$current - versuffix=.$current - ;; - - sco) - major=.$current - versuffix=.$current - ;; - - sunos) - major=.$current - versuffix=.$current.$revision - ;; - - windows) - # Use '-' rather than '.', since we only want one - # extension on DOS 8.3 file systems. - func_arith $current - $age - major=$func_arith_result - versuffix=-$major - ;; - - *) - func_fatal_configuration "unknown library version type '$version_type'" - ;; - esac - - # Clear the version info if we defaulted, and they specified a release. - if test -z "$vinfo" && test -n "$release"; then - major= - case $version_type in - darwin) - # we can't check for "0.0" in archive_cmds due to quoting - # problems, so we reset it completely - verstring= - ;; - *) - verstring=0.0 - ;; - esac - if test no = "$need_version"; then - versuffix= - else - versuffix=.0.0 - fi - fi - - # Remove version info from name if versioning should be avoided - if test yes,no = "$avoid_version,$need_version"; then - major= - versuffix= - verstring= - fi - - # Check to see if the archive will have undefined symbols. - if test yes = "$allow_undefined"; then - if test unsupported = "$allow_undefined_flag"; then - if test yes = "$build_old_libs"; then - func_warning "undefined symbols not allowed in $host shared libraries; building static only" - build_libtool_libs=no - else - func_fatal_error "can't build $host shared library unless -no-undefined is specified" - fi - fi - else - # Don't allow undefined symbols. - allow_undefined_flag=$no_undefined_flag - fi - - fi - - func_generate_dlsyms "$libname" "$libname" : - func_append libobjs " $symfileobj" - test " " = "$libobjs" && libobjs= - - if test relink != "$opt_mode"; then - # Remove our outputs, but don't remove object files since they - # may have been created when compiling PIC objects. - removelist= - tempremovelist=`$ECHO "$output_objdir/*"` - for p in $tempremovelist; do - case $p in - *.$objext | *.gcno) - ;; - $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) - if test -n "$precious_files_regex"; then - if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 - then - continue - fi - fi - func_append removelist " $p" - ;; - *) ;; - esac - done - test -n "$removelist" && \ - func_show_eval "${RM}r \$removelist" - fi - - # Now set the variables for building old libraries. - if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then - func_append oldlibs " $output_objdir/$libname.$libext" - - # Transform .lo files to .o files. - oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` - fi - - # Eliminate all temporary directories. - #for path in $notinst_path; do - # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` - # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` - # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` - #done - - if test -n "$xrpath"; then - # If the user specified any rpath flags, then add them. - temp_xrpath= - for libdir in $xrpath; do - func_replace_sysroot "$libdir" - func_append temp_xrpath " -R$func_replace_sysroot_result" - case "$finalize_rpath " in - *" $libdir "*) ;; - *) func_append finalize_rpath " $libdir" ;; - esac - done - if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then - dependency_libs="$temp_xrpath $dependency_libs" - fi - fi - - # Make sure dlfiles contains only unique files that won't be dlpreopened - old_dlfiles=$dlfiles - dlfiles= - for lib in $old_dlfiles; do - case " $dlprefiles $dlfiles " in - *" $lib "*) ;; - *) func_append dlfiles " $lib" ;; - esac - done - - # Make sure dlprefiles contains only unique files - old_dlprefiles=$dlprefiles - dlprefiles= - for lib in $old_dlprefiles; do - case "$dlprefiles " in - *" $lib "*) ;; - *) func_append dlprefiles " $lib" ;; - esac - done - - if test yes = "$build_libtool_libs"; then - if test -n "$rpath"; then - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) - # these systems don't actually have a c library (as such)! - ;; - *-*-rhapsody* | *-*-darwin1.[012]) - # Rhapsody C library is in the System framework - func_append deplibs " System.ltframework" - ;; - *-*-netbsd*) - # Don't link with libc until the a.out ld.so is fixed. - ;; - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) - # Do not include libc due to us having libc/libc_r. - ;; - *-*-sco3.2v5* | *-*-sco5v6*) - # Causes problems with __ctype - ;; - *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) - # Compiler inserts libc in the correct place for threads to work - ;; - *) - # Add libc to deplibs on all other systems if necessary. - if test yes = "$build_libtool_need_lc"; then - func_append deplibs " -lc" - fi - ;; - esac - fi - - # Transform deplibs into only deplibs that can be linked in shared. - name_save=$name - libname_save=$libname - release_save=$release - versuffix_save=$versuffix - major_save=$major - # I'm not sure if I'm treating the release correctly. I think - # release should show up in the -l (ie -lgmp5) so we don't want to - # add it in twice. Is that correct? - release= - versuffix= - major= - newdeplibs= - droppeddeps=no - case $deplibs_check_method in - pass_all) - # Don't check for shared/static. Everything works. - # This might be a little naive. We might want to check - # whether the library exists or not. But this is on - # osf3 & osf4 and I'm not really sure... Just - # implementing what was already the behavior. - newdeplibs=$deplibs - ;; - test_compile) - # This code stresses the "libraries are programs" paradigm to its - # limits. Maybe even breaks it. We compile a program, linking it - # against the deplibs as a proxy for the library. Then we can check - # whether they linked in statically or dynamically with ldd. - $opt_dry_run || $RM conftest.c - cat > conftest.c </dev/null` - $nocaseglob - else - potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` - fi - for potent_lib in $potential_libs; do - # Follow soft links. - if ls -lLd "$potent_lib" 2>/dev/null | - $GREP " -> " >/dev/null; then - continue - fi - # The statement above tries to avoid entering an - # endless loop below, in case of cyclic links. - # We might still enter an endless loop, since a link - # loop can be closed while we follow links, - # but so what? - potlib=$potent_lib - while test -h "$potlib" 2>/dev/null; do - potliblink=`ls -ld $potlib | $SED 's/.* -> //'` - case $potliblink in - [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; - *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; - esac - done - if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | - $SED -e 10q | - $EGREP "$file_magic_regex" > /dev/null; then - func_append newdeplibs " $a_deplib" - a_deplib= - break 2 - fi - done - done - fi - if test -n "$a_deplib"; then - droppeddeps=yes - echo - $ECHO "*** Warning: linker path does not have real file for library $a_deplib." - echo "*** I have the capability to make that library automatically link in when" - echo "*** you link to this library. But I can only do this if you have a" - echo "*** shared version of the library, which you do not appear to have" - echo "*** because I did check the linker path looking for a file starting" - if test -z "$potlib"; then - $ECHO "*** with $libname but no candidates were found. (...for file magic test)" - else - $ECHO "*** with $libname and none of the candidates passed a file format test" - $ECHO "*** using a file magic. Last file checked: $potlib" - fi - fi - ;; - *) - # Add a -L argument. - func_append newdeplibs " $a_deplib" - ;; - esac - done # Gone through all deplibs. - ;; - match_pattern*) - set dummy $deplibs_check_method; shift - match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` - for a_deplib in $deplibs; do - case $a_deplib in - -l*) - func_stripname -l '' "$a_deplib" - name=$func_stripname_result - if test yes = "$allow_libtool_libs_with_static_runtimes"; then - case " $predeps $postdeps " in - *" $a_deplib "*) - func_append newdeplibs " $a_deplib" - a_deplib= - ;; - esac - fi - if test -n "$a_deplib"; then - libname=`eval "\\$ECHO \"$libname_spec\""` - for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do - potential_libs=`ls $i/$libname[.-]* 2>/dev/null` - for potent_lib in $potential_libs; do - potlib=$potent_lib # see symlink-check above in file_magic test - if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ - $EGREP "$match_pattern_regex" > /dev/null; then - func_append newdeplibs " $a_deplib" - a_deplib= - break 2 - fi - done - done - fi - if test -n "$a_deplib"; then - droppeddeps=yes - echo - $ECHO "*** Warning: linker path does not have real file for library $a_deplib." - echo "*** I have the capability to make that library automatically link in when" - echo "*** you link to this library. But I can only do this if you have a" - echo "*** shared version of the library, which you do not appear to have" - echo "*** because I did check the linker path looking for a file starting" - if test -z "$potlib"; then - $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" - else - $ECHO "*** with $libname and none of the candidates passed a file format test" - $ECHO "*** using a regex pattern. Last file checked: $potlib" - fi - fi - ;; - *) - # Add a -L argument. - func_append newdeplibs " $a_deplib" - ;; - esac - done # Gone through all deplibs. - ;; - none | unknown | *) - newdeplibs= - tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` - if test yes = "$allow_libtool_libs_with_static_runtimes"; then - for i in $predeps $postdeps; do - # can't use Xsed below, because $i might contain '/' - tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` - done - fi - case $tmp_deplibs in - *[!\ \ ]*) - echo - if test none = "$deplibs_check_method"; then - echo "*** Warning: inter-library dependencies are not supported in this platform." - else - echo "*** Warning: inter-library dependencies are not known to be supported." - fi - echo "*** All declared inter-library dependencies are being dropped." - droppeddeps=yes - ;; - esac - ;; - esac - versuffix=$versuffix_save - major=$major_save - release=$release_save - libname=$libname_save - name=$name_save - - case $host in - *-*-rhapsody* | *-*-darwin1.[012]) - # On Rhapsody replace the C library with the System framework - newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` - ;; - esac - - if test yes = "$droppeddeps"; then - if test yes = "$module"; then - echo - echo "*** Warning: libtool could not satisfy all declared inter-library" - $ECHO "*** dependencies of module $libname. Therefore, libtool will create" - echo "*** a static module, that should work as long as the dlopening" - echo "*** application is linked with the -dlopen flag." - if test -z "$global_symbol_pipe"; then - echo - echo "*** However, this would only work if libtool was able to extract symbol" - echo "*** lists from a program, using 'nm' or equivalent, but libtool could" - echo "*** not find such a program. So, this module is probably useless." - echo "*** 'nm' from GNU binutils and a full rebuild may help." - fi - if test no = "$build_old_libs"; then - oldlibs=$output_objdir/$libname.$libext - build_libtool_libs=module - build_old_libs=yes - else - build_libtool_libs=no - fi - else - echo "*** The inter-library dependencies that have been dropped here will be" - echo "*** automatically added whenever a program is linked with this library" - echo "*** or is declared to -dlopen it." - - if test no = "$allow_undefined"; then - echo - echo "*** Since this library must not contain undefined symbols," - echo "*** because either the platform does not support them or" - echo "*** it was explicitly requested with -no-undefined," - echo "*** libtool will only create a static version of it." - if test no = "$build_old_libs"; then - oldlibs=$output_objdir/$libname.$libext - build_libtool_libs=module - build_old_libs=yes - else - build_libtool_libs=no - fi - fi - fi - fi - # Done checking deplibs! - deplibs=$newdeplibs - fi - # Time to change all our "foo.ltframework" stuff back to "-framework foo" - case $host in - *-*-darwin*) - newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - ;; - esac - - # move library search paths that coincide with paths to not yet - # installed libraries to the beginning of the library search list - new_libs= - for path in $notinst_path; do - case " $new_libs " in - *" -L$path/$objdir "*) ;; - *) - case " $deplibs " in - *" -L$path/$objdir "*) - func_append new_libs " -L$path/$objdir" ;; - esac - ;; - esac - done - for deplib in $deplibs; do - case $deplib in - -L*) - case " $new_libs " in - *" $deplib "*) ;; - *) func_append new_libs " $deplib" ;; - esac - ;; - *) func_append new_libs " $deplib" ;; - esac - done - deplibs=$new_libs - - # All the library-specific variables (install_libdir is set above). - library_names= - old_library= - dlname= - - # Test again, we may have decided not to build it any more - if test yes = "$build_libtool_libs"; then - # Remove $wl instances when linking with ld. - # FIXME: should test the right _cmds variable. - case $archive_cmds in - *\$LD\ *) wl= ;; - esac - if test yes = "$hardcode_into_libs"; then - # Hardcode the library paths - hardcode_libdirs= - dep_rpath= - rpath=$finalize_rpath - test relink = "$opt_mode" || rpath=$compile_rpath$rpath - for libdir in $rpath; do - if test -n "$hardcode_libdir_flag_spec"; then - if test -n "$hardcode_libdir_separator"; then - func_replace_sysroot "$libdir" - libdir=$func_replace_sysroot_result - if test -z "$hardcode_libdirs"; then - hardcode_libdirs=$libdir - else - # Just accumulate the unique libdirs. - case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in - *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) - ;; - *) - func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" - ;; - esac - fi - else - eval flag=\"$hardcode_libdir_flag_spec\" - func_append dep_rpath " $flag" - fi - elif test -n "$runpath_var"; then - case "$perm_rpath " in - *" $libdir "*) ;; - *) func_append perm_rpath " $libdir" ;; - esac - fi - done - # Substitute the hardcoded libdirs into the rpath. - if test -n "$hardcode_libdir_separator" && - test -n "$hardcode_libdirs"; then - libdir=$hardcode_libdirs - eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" - fi - if test -n "$runpath_var" && test -n "$perm_rpath"; then - # We should set the runpath_var. - rpath= - for dir in $perm_rpath; do - func_append rpath "$dir:" - done - eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" - fi - test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" - fi - - shlibpath=$finalize_shlibpath - test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath - if test -n "$shlibpath"; then - eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" - fi - - # Get the real and link names of the library. - eval shared_ext=\"$shrext_cmds\" - eval library_names=\"$library_names_spec\" - set dummy $library_names - shift - realname=$1 - shift - - if test -n "$soname_spec"; then - eval soname=\"$soname_spec\" - else - soname=$realname - fi - if test -z "$dlname"; then - dlname=$soname - fi - - lib=$output_objdir/$realname - linknames= - for link - do - func_append linknames " $link" - done - - # Use standard objects if they are pic - test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` - test "X$libobjs" = "X " && libobjs= - - delfiles= - if test -n "$export_symbols" && test -n "$include_expsyms"; then - $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" - export_symbols=$output_objdir/$libname.uexp - func_append delfiles " $export_symbols" - fi - - orig_export_symbols= - case $host_os in - cygwin* | mingw* | cegcc*) - if test -n "$export_symbols" && test -z "$export_symbols_regex"; then - # exporting using user supplied symfile - func_dll_def_p "$export_symbols" || { - # and it's NOT already a .def file. Must figure out - # which of the given symbols are data symbols and tag - # them as such. So, trigger use of export_symbols_cmds. - # export_symbols gets reassigned inside the "prepare - # the list of exported symbols" if statement, so the - # include_expsyms logic still works. - orig_export_symbols=$export_symbols - export_symbols= - always_export_symbols=yes - } - fi - ;; - esac - - # Prepare the list of exported symbols - if test -z "$export_symbols"; then - if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then - func_verbose "generating symbol list for '$libname.la'" - export_symbols=$output_objdir/$libname.exp - $opt_dry_run || $RM $export_symbols - cmds=$export_symbols_cmds - save_ifs=$IFS; IFS='~' - for cmd1 in $cmds; do - IFS=$save_ifs - # Take the normal branch if the nm_file_list_spec branch - # doesn't work or if tool conversion is not needed. - case $nm_file_list_spec~$to_tool_file_cmd in - *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) - try_normal_branch=yes - eval cmd=\"$cmd1\" - func_len " $cmd" - len=$func_len_result - ;; - *) - try_normal_branch=no - ;; - esac - if test yes = "$try_normal_branch" \ - && { test "$len" -lt "$max_cmd_len" \ - || test "$max_cmd_len" -le -1; } - then - func_show_eval "$cmd" 'exit $?' - skipped_export=false - elif test -n "$nm_file_list_spec"; then - func_basename "$output" - output_la=$func_basename_result - save_libobjs=$libobjs - save_output=$output - output=$output_objdir/$output_la.nm - func_to_tool_file "$output" - libobjs=$nm_file_list_spec$func_to_tool_file_result - func_append delfiles " $output" - func_verbose "creating $NM input file list: $output" - for obj in $save_libobjs; do - func_to_tool_file "$obj" - $ECHO "$func_to_tool_file_result" - done > "$output" - eval cmd=\"$cmd1\" - func_show_eval "$cmd" 'exit $?' - output=$save_output - libobjs=$save_libobjs - skipped_export=false - else - # The command line is too long to execute in one step. - func_verbose "using reloadable object file for export list..." - skipped_export=: - # Break out early, otherwise skipped_export may be - # set to false by a later but shorter cmd. - break - fi - done - IFS=$save_ifs - if test -n "$export_symbols_regex" && test : != "$skipped_export"; then - func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' - func_show_eval '$MV "${export_symbols}T" "$export_symbols"' - fi - fi - fi - - if test -n "$export_symbols" && test -n "$include_expsyms"; then - tmp_export_symbols=$export_symbols - test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols - $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' - fi - - if test : != "$skipped_export" && test -n "$orig_export_symbols"; then - # The given exports_symbols file has to be filtered, so filter it. - func_verbose "filter symbol list for '$libname.la' to tag DATA exports" - # FIXME: $output_objdir/$libname.filter potentially contains lots of - # 's' commands, which not all seds can handle. GNU sed should be fine - # though. Also, the filter scales superlinearly with the number of - # global variables. join(1) would be nice here, but unfortunately - # isn't a blessed tool. - $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter - func_append delfiles " $export_symbols $output_objdir/$libname.filter" - export_symbols=$output_objdir/$libname.def - $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols - fi - - tmp_deplibs= - for test_deplib in $deplibs; do - case " $convenience " in - *" $test_deplib "*) ;; - *) - func_append tmp_deplibs " $test_deplib" - ;; - esac - done - deplibs=$tmp_deplibs - - if test -n "$convenience"; then - if test -n "$whole_archive_flag_spec" && - test yes = "$compiler_needs_object" && - test -z "$libobjs"; then - # extract the archives, so we have objects to list. - # TODO: could optimize this to just extract one archive. - whole_archive_flag_spec= - fi - if test -n "$whole_archive_flag_spec"; then - save_libobjs=$libobjs - eval libobjs=\"\$libobjs $whole_archive_flag_spec\" - test "X$libobjs" = "X " && libobjs= - else - gentop=$output_objdir/${outputname}x - func_append generated " $gentop" - - func_extract_archives $gentop $convenience - func_append libobjs " $func_extract_archives_result" - test "X$libobjs" = "X " && libobjs= - fi - fi - - if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then - eval flag=\"$thread_safe_flag_spec\" - func_append linker_flags " $flag" - fi - - # Make a backup of the uninstalled library when relinking - if test relink = "$opt_mode"; then - $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? - fi - - # Do each of the archive commands. - if test yes = "$module" && test -n "$module_cmds"; then - if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then - eval test_cmds=\"$module_expsym_cmds\" - cmds=$module_expsym_cmds - else - eval test_cmds=\"$module_cmds\" - cmds=$module_cmds - fi - else - if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then - eval test_cmds=\"$archive_expsym_cmds\" - cmds=$archive_expsym_cmds - else - eval test_cmds=\"$archive_cmds\" - cmds=$archive_cmds - fi - fi - - if test : != "$skipped_export" && - func_len " $test_cmds" && - len=$func_len_result && - test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then - : - else - # The command line is too long to link in one step, link piecewise - # or, if using GNU ld and skipped_export is not :, use a linker - # script. - - # Save the value of $output and $libobjs because we want to - # use them later. If we have whole_archive_flag_spec, we - # want to use save_libobjs as it was before - # whole_archive_flag_spec was expanded, because we can't - # assume the linker understands whole_archive_flag_spec. - # This may have to be revisited, in case too many - # convenience libraries get linked in and end up exceeding - # the spec. - if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then - save_libobjs=$libobjs - fi - save_output=$output - func_basename "$output" - output_la=$func_basename_result - - # Clear the reloadable object creation command queue and - # initialize k to one. - test_cmds= - concat_cmds= - objlist= - last_robj= - k=1 - - if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then - output=$output_objdir/$output_la.lnkscript - func_verbose "creating GNU ld script: $output" - echo 'INPUT (' > $output - for obj in $save_libobjs - do - func_to_tool_file "$obj" - $ECHO "$func_to_tool_file_result" >> $output - done - echo ')' >> $output - func_append delfiles " $output" - func_to_tool_file "$output" - output=$func_to_tool_file_result - elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then - output=$output_objdir/$output_la.lnk - func_verbose "creating linker input file list: $output" - : > $output - set x $save_libobjs - shift - firstobj= - if test yes = "$compiler_needs_object"; then - firstobj="$1 " - shift - fi - for obj - do - func_to_tool_file "$obj" - $ECHO "$func_to_tool_file_result" >> $output - done - func_append delfiles " $output" - func_to_tool_file "$output" - output=$firstobj\"$file_list_spec$func_to_tool_file_result\" - else - if test -n "$save_libobjs"; then - func_verbose "creating reloadable object files..." - output=$output_objdir/$output_la-$k.$objext - eval test_cmds=\"$reload_cmds\" - func_len " $test_cmds" - len0=$func_len_result - len=$len0 - - # Loop over the list of objects to be linked. - for obj in $save_libobjs - do - func_len " $obj" - func_arith $len + $func_len_result - len=$func_arith_result - if test -z "$objlist" || - test "$len" -lt "$max_cmd_len"; then - func_append objlist " $obj" - else - # The command $test_cmds is almost too long, add a - # command to the queue. - if test 1 -eq "$k"; then - # The first file doesn't have a previous command to add. - reload_objs=$objlist - eval concat_cmds=\"$reload_cmds\" - else - # All subsequent reloadable object files will link in - # the last one created. - reload_objs="$objlist $last_robj" - eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" - fi - last_robj=$output_objdir/$output_la-$k.$objext - func_arith $k + 1 - k=$func_arith_result - output=$output_objdir/$output_la-$k.$objext - objlist=" $obj" - func_len " $last_robj" - func_arith $len0 + $func_len_result - len=$func_arith_result - fi - done - # Handle the remaining objects by creating one last - # reloadable object file. All subsequent reloadable object - # files will link in the last one created. - test -z "$concat_cmds" || concat_cmds=$concat_cmds~ - reload_objs="$objlist $last_robj" - eval concat_cmds=\"\$concat_cmds$reload_cmds\" - if test -n "$last_robj"; then - eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" - fi - func_append delfiles " $output" - - else - output= - fi - - ${skipped_export-false} && { - func_verbose "generating symbol list for '$libname.la'" - export_symbols=$output_objdir/$libname.exp - $opt_dry_run || $RM $export_symbols - libobjs=$output - # Append the command to create the export file. - test -z "$concat_cmds" || concat_cmds=$concat_cmds~ - eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" - if test -n "$last_robj"; then - eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" - fi - } - - test -n "$save_libobjs" && - func_verbose "creating a temporary reloadable object file: $output" - - # Loop through the commands generated above and execute them. - save_ifs=$IFS; IFS='~' - for cmd in $concat_cmds; do - IFS=$save_ifs - $opt_quiet || { - func_quote_for_expand "$cmd" - eval "func_echo $func_quote_for_expand_result" - } - $opt_dry_run || eval "$cmd" || { - lt_exit=$? - - # Restore the uninstalled library and exit - if test relink = "$opt_mode"; then - ( cd "$output_objdir" && \ - $RM "${realname}T" && \ - $MV "${realname}U" "$realname" ) - fi - - exit $lt_exit - } - done - IFS=$save_ifs - - if test -n "$export_symbols_regex" && ${skipped_export-false}; then - func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' - func_show_eval '$MV "${export_symbols}T" "$export_symbols"' - fi - fi - - ${skipped_export-false} && { - if test -n "$export_symbols" && test -n "$include_expsyms"; then - tmp_export_symbols=$export_symbols - test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols - $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' - fi - - if test -n "$orig_export_symbols"; then - # The given exports_symbols file has to be filtered, so filter it. - func_verbose "filter symbol list for '$libname.la' to tag DATA exports" - # FIXME: $output_objdir/$libname.filter potentially contains lots of - # 's' commands, which not all seds can handle. GNU sed should be fine - # though. Also, the filter scales superlinearly with the number of - # global variables. join(1) would be nice here, but unfortunately - # isn't a blessed tool. - $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter - func_append delfiles " $export_symbols $output_objdir/$libname.filter" - export_symbols=$output_objdir/$libname.def - $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols - fi - } - - libobjs=$output - # Restore the value of output. - output=$save_output - - if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then - eval libobjs=\"\$libobjs $whole_archive_flag_spec\" - test "X$libobjs" = "X " && libobjs= - fi - # Expand the library linking commands again to reset the - # value of $libobjs for piecewise linking. - - # Do each of the archive commands. - if test yes = "$module" && test -n "$module_cmds"; then - if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then - cmds=$module_expsym_cmds - else - cmds=$module_cmds - fi - else - if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then - cmds=$archive_expsym_cmds - else - cmds=$archive_cmds - fi - fi - fi - - if test -n "$delfiles"; then - # Append the command to remove temporary files to $cmds. - eval cmds=\"\$cmds~\$RM $delfiles\" - fi - - # Add any objects from preloaded convenience libraries - if test -n "$dlprefiles"; then - gentop=$output_objdir/${outputname}x - func_append generated " $gentop" - - func_extract_archives $gentop $dlprefiles - func_append libobjs " $func_extract_archives_result" - test "X$libobjs" = "X " && libobjs= - fi - - save_ifs=$IFS; IFS='~' - for cmd in $cmds; do - IFS=$sp$nl - eval cmd=\"$cmd\" - IFS=$save_ifs - $opt_quiet || { - func_quote_for_expand "$cmd" - eval "func_echo $func_quote_for_expand_result" - } - $opt_dry_run || eval "$cmd" || { - lt_exit=$? - - # Restore the uninstalled library and exit - if test relink = "$opt_mode"; then - ( cd "$output_objdir" && \ - $RM "${realname}T" && \ - $MV "${realname}U" "$realname" ) - fi - - exit $lt_exit - } - done - IFS=$save_ifs - - # Restore the uninstalled library and exit - if test relink = "$opt_mode"; then - $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? - - if test -n "$convenience"; then - if test -z "$whole_archive_flag_spec"; then - func_show_eval '${RM}r "$gentop"' - fi - fi - - exit $EXIT_SUCCESS - fi - - # Create links to the real library. - for linkname in $linknames; do - if test "$realname" != "$linkname"; then - func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' - fi - done - - # If -module or -export-dynamic was specified, set the dlname. - if test yes = "$module" || test yes = "$export_dynamic"; then - # On all known operating systems, these are identical. - dlname=$soname - fi - fi - ;; - - obj) - if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then - func_warning "'-dlopen' is ignored for objects" - fi - - case " $deplibs" in - *\ -l* | *\ -L*) - func_warning "'-l' and '-L' are ignored for objects" ;; - esac - - test -n "$rpath" && \ - func_warning "'-rpath' is ignored for objects" - - test -n "$xrpath" && \ - func_warning "'-R' is ignored for objects" - - test -n "$vinfo" && \ - func_warning "'-version-info' is ignored for objects" - - test -n "$release" && \ - func_warning "'-release' is ignored for objects" - - case $output in - *.lo) - test -n "$objs$old_deplibs" && \ - func_fatal_error "cannot build library object '$output' from non-libtool objects" - - libobj=$output - func_lo2o "$libobj" - obj=$func_lo2o_result - ;; - *) - libobj= - obj=$output - ;; - esac - - # Delete the old objects. - $opt_dry_run || $RM $obj $libobj - - # Objects from convenience libraries. This assumes - # single-version convenience libraries. Whenever we create - # different ones for PIC/non-PIC, this we'll have to duplicate - # the extraction. - reload_conv_objs= - gentop= - # if reload_cmds runs $LD directly, get rid of -Wl from - # whole_archive_flag_spec and hope we can get by with turning comma - # into space. - case $reload_cmds in - *\$LD[\ \$]*) wl= ;; - esac - if test -n "$convenience"; then - if test -n "$whole_archive_flag_spec"; then - eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" - test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` - reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags - else - gentop=$output_objdir/${obj}x - func_append generated " $gentop" - - func_extract_archives $gentop $convenience - reload_conv_objs="$reload_objs $func_extract_archives_result" - fi - fi - - # If we're not building shared, we need to use non_pic_objs - test yes = "$build_libtool_libs" || libobjs=$non_pic_objects - - # Create the old-style object. - reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs - - output=$obj - func_execute_cmds "$reload_cmds" 'exit $?' - - # Exit if we aren't doing a library object file. - if test -z "$libobj"; then - if test -n "$gentop"; then - func_show_eval '${RM}r "$gentop"' - fi - - exit $EXIT_SUCCESS - fi - - test yes = "$build_libtool_libs" || { - if test -n "$gentop"; then - func_show_eval '${RM}r "$gentop"' - fi - - # Create an invalid libtool object if no PIC, so that we don't - # accidentally link it into a program. - # $show "echo timestamp > $libobj" - # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? - exit $EXIT_SUCCESS - } - - if test -n "$pic_flag" || test default != "$pic_mode"; then - # Only do commands if we really have different PIC objects. - reload_objs="$libobjs $reload_conv_objs" - output=$libobj - func_execute_cmds "$reload_cmds" 'exit $?' - fi - - if test -n "$gentop"; then - func_show_eval '${RM}r "$gentop"' - fi - - exit $EXIT_SUCCESS - ;; - - prog) - case $host in - *cygwin*) func_stripname '' '.exe' "$output" - output=$func_stripname_result.exe;; - esac - test -n "$vinfo" && \ - func_warning "'-version-info' is ignored for programs" - - test -n "$release" && \ - func_warning "'-release' is ignored for programs" - - $preload \ - && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ - && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." - - case $host in - *-*-rhapsody* | *-*-darwin1.[012]) - # On Rhapsody replace the C library is the System framework - compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` - finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` - ;; - esac - - case $host in - *-*-darwin*) - # Don't allow lazy linking, it breaks C++ global constructors - # But is supposedly fixed on 10.4 or later (yay!). - if test CXX = "$tagname"; then - case ${MACOSX_DEPLOYMENT_TARGET-10.0} in - 10.[0123]) - func_append compile_command " $wl-bind_at_load" - func_append finalize_command " $wl-bind_at_load" - ;; - esac - fi - # Time to change all our "foo.ltframework" stuff back to "-framework foo" - compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - ;; - esac - - - # move library search paths that coincide with paths to not yet - # installed libraries to the beginning of the library search list - new_libs= - for path in $notinst_path; do - case " $new_libs " in - *" -L$path/$objdir "*) ;; - *) - case " $compile_deplibs " in - *" -L$path/$objdir "*) - func_append new_libs " -L$path/$objdir" ;; - esac - ;; - esac - done - for deplib in $compile_deplibs; do - case $deplib in - -L*) - case " $new_libs " in - *" $deplib "*) ;; - *) func_append new_libs " $deplib" ;; - esac - ;; - *) func_append new_libs " $deplib" ;; - esac - done - compile_deplibs=$new_libs - - - func_append compile_command " $compile_deplibs" - func_append finalize_command " $finalize_deplibs" - - if test -n "$rpath$xrpath"; then - # If the user specified any rpath flags, then add them. - for libdir in $rpath $xrpath; do - # This is the magic to use -rpath. - case "$finalize_rpath " in - *" $libdir "*) ;; - *) func_append finalize_rpath " $libdir" ;; - esac - done - fi - - # Now hardcode the library paths - rpath= - hardcode_libdirs= - for libdir in $compile_rpath $finalize_rpath; do - if test -n "$hardcode_libdir_flag_spec"; then - if test -n "$hardcode_libdir_separator"; then - if test -z "$hardcode_libdirs"; then - hardcode_libdirs=$libdir - else - # Just accumulate the unique libdirs. - case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in - *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) - ;; - *) - func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" - ;; - esac - fi - else - eval flag=\"$hardcode_libdir_flag_spec\" - func_append rpath " $flag" - fi - elif test -n "$runpath_var"; then - case "$perm_rpath " in - *" $libdir "*) ;; - *) func_append perm_rpath " $libdir" ;; - esac - fi - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) - testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` - case :$dllsearchpath: in - *":$libdir:"*) ;; - ::) dllsearchpath=$libdir;; - *) func_append dllsearchpath ":$libdir";; - esac - case :$dllsearchpath: in - *":$testbindir:"*) ;; - ::) dllsearchpath=$testbindir;; - *) func_append dllsearchpath ":$testbindir";; - esac - ;; - esac - done - # Substitute the hardcoded libdirs into the rpath. - if test -n "$hardcode_libdir_separator" && - test -n "$hardcode_libdirs"; then - libdir=$hardcode_libdirs - eval rpath=\" $hardcode_libdir_flag_spec\" - fi - compile_rpath=$rpath - - rpath= - hardcode_libdirs= - for libdir in $finalize_rpath; do - if test -n "$hardcode_libdir_flag_spec"; then - if test -n "$hardcode_libdir_separator"; then - if test -z "$hardcode_libdirs"; then - hardcode_libdirs=$libdir - else - # Just accumulate the unique libdirs. - case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in - *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) - ;; - *) - func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" - ;; - esac - fi - else - eval flag=\"$hardcode_libdir_flag_spec\" - func_append rpath " $flag" - fi - elif test -n "$runpath_var"; then - case "$finalize_perm_rpath " in - *" $libdir "*) ;; - *) func_append finalize_perm_rpath " $libdir" ;; - esac - fi - done - # Substitute the hardcoded libdirs into the rpath. - if test -n "$hardcode_libdir_separator" && - test -n "$hardcode_libdirs"; then - libdir=$hardcode_libdirs - eval rpath=\" $hardcode_libdir_flag_spec\" - fi - finalize_rpath=$rpath - - if test -n "$libobjs" && test yes = "$build_old_libs"; then - # Transform all the library objects into standard objects. - compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` - finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` - fi - - func_generate_dlsyms "$outputname" "@PROGRAM@" false - - # template prelinking step - if test -n "$prelink_cmds"; then - func_execute_cmds "$prelink_cmds" 'exit $?' - fi - - wrappers_required=: - case $host in - *cegcc* | *mingw32ce*) - # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. - wrappers_required=false - ;; - *cygwin* | *mingw* ) - test yes = "$build_libtool_libs" || wrappers_required=false - ;; - *) - if test no = "$need_relink" || test yes != "$build_libtool_libs"; then - wrappers_required=false - fi - ;; - esac - $wrappers_required || { - # Replace the output file specification. - compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` - link_command=$compile_command$compile_rpath - - # We have no uninstalled library dependencies, so finalize right now. - exit_status=0 - func_show_eval "$link_command" 'exit_status=$?' - - if test -n "$postlink_cmds"; then - func_to_tool_file "$output" - postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` - func_execute_cmds "$postlink_cmds" 'exit $?' - fi - - # Delete the generated files. - if test -f "$output_objdir/${outputname}S.$objext"; then - func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' - fi - - exit $exit_status - } - - if test -n "$compile_shlibpath$finalize_shlibpath"; then - compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" - fi - if test -n "$finalize_shlibpath"; then - finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" - fi - - compile_var= - finalize_var= - if test -n "$runpath_var"; then - if test -n "$perm_rpath"; then - # We should set the runpath_var. - rpath= - for dir in $perm_rpath; do - func_append rpath "$dir:" - done - compile_var="$runpath_var=\"$rpath\$$runpath_var\" " - fi - if test -n "$finalize_perm_rpath"; then - # We should set the runpath_var. - rpath= - for dir in $finalize_perm_rpath; do - func_append rpath "$dir:" - done - finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " - fi - fi - - if test yes = "$no_install"; then - # We don't need to create a wrapper script. - link_command=$compile_var$compile_command$compile_rpath - # Replace the output file specification. - link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` - # Delete the old output file. - $opt_dry_run || $RM $output - # Link the executable and exit - func_show_eval "$link_command" 'exit $?' - - if test -n "$postlink_cmds"; then - func_to_tool_file "$output" - postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` - func_execute_cmds "$postlink_cmds" 'exit $?' - fi - - exit $EXIT_SUCCESS - fi - - case $hardcode_action,$fast_install in - relink,*) - # Fast installation is not supported - link_command=$compile_var$compile_command$compile_rpath - relink_command=$finalize_var$finalize_command$finalize_rpath - - func_warning "this platform does not like uninstalled shared libraries" - func_warning "'$output' will be relinked during installation" - ;; - *,yes) - link_command=$finalize_var$compile_command$finalize_rpath - relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` - ;; - *,no) - link_command=$compile_var$compile_command$compile_rpath - relink_command=$finalize_var$finalize_command$finalize_rpath - ;; - *,needless) - link_command=$finalize_var$compile_command$finalize_rpath - relink_command= - ;; - esac - - # Replace the output file specification. - link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` - - # Delete the old output files. - $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname - - func_show_eval "$link_command" 'exit $?' - - if test -n "$postlink_cmds"; then - func_to_tool_file "$output_objdir/$outputname" - postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` - func_execute_cmds "$postlink_cmds" 'exit $?' - fi - - # Now create the wrapper script. - func_verbose "creating $output" - - # Quote the relink command for shipping. - if test -n "$relink_command"; then - # Preserve any variables that may affect compiler behavior - for var in $variables_saved_for_relink; do - if eval test -z \"\${$var+set}\"; then - relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" - elif eval var_value=\$$var; test -z "$var_value"; then - relink_command="$var=; export $var; $relink_command" - else - func_quote_for_eval "$var_value" - relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" - fi - done - relink_command="(cd `pwd`; $relink_command)" - relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` - fi - - # Only actually do things if not in dry run mode. - $opt_dry_run || { - # win32 will think the script is a binary if it has - # a .exe suffix, so we strip it off here. - case $output in - *.exe) func_stripname '' '.exe' "$output" - output=$func_stripname_result ;; - esac - # test for cygwin because mv fails w/o .exe extensions - case $host in - *cygwin*) - exeext=.exe - func_stripname '' '.exe' "$outputname" - outputname=$func_stripname_result ;; - *) exeext= ;; - esac - case $host in - *cygwin* | *mingw* ) - func_dirname_and_basename "$output" "" "." - output_name=$func_basename_result - output_path=$func_dirname_result - cwrappersource=$output_path/$objdir/lt-$output_name.c - cwrapper=$output_path/$output_name.exe - $RM $cwrappersource $cwrapper - trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 - - func_emit_cwrapperexe_src > $cwrappersource - - # The wrapper executable is built using the $host compiler, - # because it contains $host paths and files. If cross- - # compiling, it, like the target executable, must be - # executed on the $host or under an emulation environment. - $opt_dry_run || { - $LTCC $LTCFLAGS -o $cwrapper $cwrappersource - $STRIP $cwrapper - } - - # Now, create the wrapper script for func_source use: - func_ltwrapper_scriptname $cwrapper - $RM $func_ltwrapper_scriptname_result - trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 - $opt_dry_run || { - # note: this script will not be executed, so do not chmod. - if test "x$build" = "x$host"; then - $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result - else - func_emit_wrapper no > $func_ltwrapper_scriptname_result - fi - } - ;; - * ) - $RM $output - trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 - - func_emit_wrapper no > $output - chmod +x $output - ;; - esac - } - exit $EXIT_SUCCESS - ;; - esac - - # See if we need to build an old-fashioned archive. - for oldlib in $oldlibs; do - - case $build_libtool_libs in - convenience) - oldobjs="$libobjs_save $symfileobj" - addlibs=$convenience - build_libtool_libs=no - ;; - module) - oldobjs=$libobjs_save - addlibs=$old_convenience - build_libtool_libs=no - ;; - *) - oldobjs="$old_deplibs $non_pic_objects" - $preload && test -f "$symfileobj" \ - && func_append oldobjs " $symfileobj" - addlibs=$old_convenience - ;; - esac - - if test -n "$addlibs"; then - gentop=$output_objdir/${outputname}x - func_append generated " $gentop" - - func_extract_archives $gentop $addlibs - func_append oldobjs " $func_extract_archives_result" - fi - - # Do each command in the archive commands. - if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then - cmds=$old_archive_from_new_cmds - else - - # Add any objects from preloaded convenience libraries - if test -n "$dlprefiles"; then - gentop=$output_objdir/${outputname}x - func_append generated " $gentop" - - func_extract_archives $gentop $dlprefiles - func_append oldobjs " $func_extract_archives_result" - fi - - # POSIX demands no paths to be encoded in archives. We have - # to avoid creating archives with duplicate basenames if we - # might have to extract them afterwards, e.g., when creating a - # static archive out of a convenience library, or when linking - # the entirety of a libtool archive into another (currently - # not supported by libtool). - if (for obj in $oldobjs - do - func_basename "$obj" - $ECHO "$func_basename_result" - done | sort | sort -uc >/dev/null 2>&1); then - : - else - echo "copying selected object files to avoid basename conflicts..." - gentop=$output_objdir/${outputname}x - func_append generated " $gentop" - func_mkdir_p "$gentop" - save_oldobjs=$oldobjs - oldobjs= - counter=1 - for obj in $save_oldobjs - do - func_basename "$obj" - objbase=$func_basename_result - case " $oldobjs " in - " ") oldobjs=$obj ;; - *[\ /]"$objbase "*) - while :; do - # Make sure we don't pick an alternate name that also - # overlaps. - newobj=lt$counter-$objbase - func_arith $counter + 1 - counter=$func_arith_result - case " $oldobjs " in - *[\ /]"$newobj "*) ;; - *) if test ! -f "$gentop/$newobj"; then break; fi ;; - esac - done - func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" - func_append oldobjs " $gentop/$newobj" - ;; - *) func_append oldobjs " $obj" ;; - esac - done - fi - func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 - tool_oldlib=$func_to_tool_file_result - eval cmds=\"$old_archive_cmds\" - - func_len " $cmds" - len=$func_len_result - if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then - cmds=$old_archive_cmds - elif test -n "$archiver_list_spec"; then - func_verbose "using command file archive linking..." - for obj in $oldobjs - do - func_to_tool_file "$obj" - $ECHO "$func_to_tool_file_result" - done > $output_objdir/$libname.libcmd - func_to_tool_file "$output_objdir/$libname.libcmd" - oldobjs=" $archiver_list_spec$func_to_tool_file_result" - cmds=$old_archive_cmds - else - # the command line is too long to link in one step, link in parts - func_verbose "using piecewise archive linking..." - save_RANLIB=$RANLIB - RANLIB=: - objlist= - concat_cmds= - save_oldobjs=$oldobjs - oldobjs= - # Is there a better way of finding the last object in the list? - for obj in $save_oldobjs - do - last_oldobj=$obj - done - eval test_cmds=\"$old_archive_cmds\" - func_len " $test_cmds" - len0=$func_len_result - len=$len0 - for obj in $save_oldobjs - do - func_len " $obj" - func_arith $len + $func_len_result - len=$func_arith_result - func_append objlist " $obj" - if test "$len" -lt "$max_cmd_len"; then - : - else - # the above command should be used before it gets too long - oldobjs=$objlist - if test "$obj" = "$last_oldobj"; then - RANLIB=$save_RANLIB - fi - test -z "$concat_cmds" || concat_cmds=$concat_cmds~ - eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" - objlist= - len=$len0 - fi - done - RANLIB=$save_RANLIB - oldobjs=$objlist - if test -z "$oldobjs"; then - eval cmds=\"\$concat_cmds\" - else - eval cmds=\"\$concat_cmds~\$old_archive_cmds\" - fi - fi - fi - func_execute_cmds "$cmds" 'exit $?' - done - - test -n "$generated" && \ - func_show_eval "${RM}r$generated" - - # Now create the libtool archive. - case $output in - *.la) - old_library= - test yes = "$build_old_libs" && old_library=$libname.$libext - func_verbose "creating $output" - - # Preserve any variables that may affect compiler behavior - for var in $variables_saved_for_relink; do - if eval test -z \"\${$var+set}\"; then - relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" - elif eval var_value=\$$var; test -z "$var_value"; then - relink_command="$var=; export $var; $relink_command" - else - func_quote_for_eval "$var_value" - relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" - fi - done - # Quote the link command for shipping. - relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" - relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` - if test yes = "$hardcode_automatic"; then - relink_command= - fi - - # Only create the output if not a dry run. - $opt_dry_run || { - for installed in no yes; do - if test yes = "$installed"; then - if test -z "$install_libdir"; then - break - fi - output=$output_objdir/${outputname}i - # Replace all uninstalled libtool libraries with the installed ones - newdependency_libs= - for deplib in $dependency_libs; do - case $deplib in - *.la) - func_basename "$deplib" - name=$func_basename_result - func_resolve_sysroot "$deplib" - eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` - test -z "$libdir" && \ - func_fatal_error "'$deplib' is not a valid libtool archive" - func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" - ;; - -L*) - func_stripname -L '' "$deplib" - func_replace_sysroot "$func_stripname_result" - func_append newdependency_libs " -L$func_replace_sysroot_result" - ;; - -R*) - func_stripname -R '' "$deplib" - func_replace_sysroot "$func_stripname_result" - func_append newdependency_libs " -R$func_replace_sysroot_result" - ;; - *) func_append newdependency_libs " $deplib" ;; - esac - done - dependency_libs=$newdependency_libs - newdlfiles= - - for lib in $dlfiles; do - case $lib in - *.la) - func_basename "$lib" - name=$func_basename_result - eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` - test -z "$libdir" && \ - func_fatal_error "'$lib' is not a valid libtool archive" - func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" - ;; - *) func_append newdlfiles " $lib" ;; - esac - done - dlfiles=$newdlfiles - newdlprefiles= - for lib in $dlprefiles; do - case $lib in - *.la) - # Only pass preopened files to the pseudo-archive (for - # eventual linking with the app. that links it) if we - # didn't already link the preopened objects directly into - # the library: - func_basename "$lib" - name=$func_basename_result - eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` - test -z "$libdir" && \ - func_fatal_error "'$lib' is not a valid libtool archive" - func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" - ;; - esac - done - dlprefiles=$newdlprefiles - else - newdlfiles= - for lib in $dlfiles; do - case $lib in - [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; - *) abs=`pwd`"/$lib" ;; - esac - func_append newdlfiles " $abs" - done - dlfiles=$newdlfiles - newdlprefiles= - for lib in $dlprefiles; do - case $lib in - [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; - *) abs=`pwd`"/$lib" ;; - esac - func_append newdlprefiles " $abs" - done - dlprefiles=$newdlprefiles - fi - $RM $output - # place dlname in correct position for cygwin - # In fact, it would be nice if we could use this code for all target - # systems that can't hard-code library paths into their executables - # and that have no shared library path variable independent of PATH, - # but it turns out we can't easily determine that from inspecting - # libtool variables, so we have to hard-code the OSs to which it - # applies here; at the moment, that means platforms that use the PE - # object format with DLL files. See the long comment at the top of - # tests/bindir.at for full details. - tdlname=$dlname - case $host,$output,$installed,$module,$dlname in - *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) - # If a -bindir argument was supplied, place the dll there. - if test -n "$bindir"; then - func_relative_path "$install_libdir" "$bindir" - tdlname=$func_relative_path_result/$dlname - else - # Otherwise fall back on heuristic. - tdlname=../bin/$dlname - fi - ;; - esac - $ECHO > $output "\ -# $outputname - a libtool library file -# Generated by $PROGRAM (GNU $PACKAGE) $VERSION -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# The name that we can dlopen(3). -dlname='$tdlname' - -# Names of this library. -library_names='$library_names' - -# The name of the static archive. -old_library='$old_library' - -# Linker flags that cannot go in dependency_libs. -inherited_linker_flags='$new_inherited_linker_flags' - -# Libraries that this one depends upon. -dependency_libs='$dependency_libs' - -# Names of additional weak libraries provided by this library -weak_library_names='$weak_libs' - -# Version information for $libname. -current=$current -age=$age -revision=$revision - -# Is this an already installed library? -installed=$installed - -# Should we warn about portability when linking against -modules? -shouldnotlink=$module - -# Files to dlopen/dlpreopen -dlopen='$dlfiles' -dlpreopen='$dlprefiles' - -# Directory that this library needs to be installed in: -libdir='$install_libdir'" - if test no,yes = "$installed,$need_relink"; then - $ECHO >> $output "\ -relink_command=\"$relink_command\"" - fi - done - } - - # Do a symbolic link so that the libtool archive can be found in - # LD_LIBRARY_PATH before the program is installed. - func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' - ;; - esac - exit $EXIT_SUCCESS -} - -if test link = "$opt_mode" || test relink = "$opt_mode"; then - func_mode_link ${1+"$@"} -fi - - -# func_mode_uninstall arg... -func_mode_uninstall () -{ - $debug_cmd - - RM=$nonopt - files= - rmforce=false - exit_status=0 - - # This variable tells wrapper scripts just to set variables rather - # than running their programs. - libtool_install_magic=$magic - - for arg - do - case $arg in - -f) func_append RM " $arg"; rmforce=: ;; - -*) func_append RM " $arg" ;; - *) func_append files " $arg" ;; - esac - done - - test -z "$RM" && \ - func_fatal_help "you must specify an RM program" - - rmdirs= - - for file in $files; do - func_dirname "$file" "" "." - dir=$func_dirname_result - if test . = "$dir"; then - odir=$objdir - else - odir=$dir/$objdir - fi - func_basename "$file" - name=$func_basename_result - test uninstall = "$opt_mode" && odir=$dir - - # Remember odir for removal later, being careful to avoid duplicates - if test clean = "$opt_mode"; then - case " $rmdirs " in - *" $odir "*) ;; - *) func_append rmdirs " $odir" ;; - esac - fi - - # Don't error if the file doesn't exist and rm -f was used. - if { test -L "$file"; } >/dev/null 2>&1 || - { test -h "$file"; } >/dev/null 2>&1 || - test -f "$file"; then - : - elif test -d "$file"; then - exit_status=1 - continue - elif $rmforce; then - continue - fi - - rmfiles=$file - - case $name in - *.la) - # Possibly a libtool archive, so verify it. - if func_lalib_p "$file"; then - func_source $dir/$name - - # Delete the libtool libraries and symlinks. - for n in $library_names; do - func_append rmfiles " $odir/$n" - done - test -n "$old_library" && func_append rmfiles " $odir/$old_library" - - case $opt_mode in - clean) - case " $library_names " in - *" $dlname "*) ;; - *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; - esac - test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" - ;; - uninstall) - if test -n "$library_names"; then - # Do each command in the postuninstall commands. - func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' - fi - - if test -n "$old_library"; then - # Do each command in the old_postuninstall commands. - func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' - fi - # FIXME: should reinstall the best remaining shared library. - ;; - esac - fi - ;; - - *.lo) - # Possibly a libtool object, so verify it. - if func_lalib_p "$file"; then - - # Read the .lo file - func_source $dir/$name - - # Add PIC object to the list of files to remove. - if test -n "$pic_object" && test none != "$pic_object"; then - func_append rmfiles " $dir/$pic_object" - fi - - # Add non-PIC object to the list of files to remove. - if test -n "$non_pic_object" && test none != "$non_pic_object"; then - func_append rmfiles " $dir/$non_pic_object" - fi - fi - ;; - - *) - if test clean = "$opt_mode"; then - noexename=$name - case $file in - *.exe) - func_stripname '' '.exe' "$file" - file=$func_stripname_result - func_stripname '' '.exe' "$name" - noexename=$func_stripname_result - # $file with .exe has already been added to rmfiles, - # add $file without .exe - func_append rmfiles " $file" - ;; - esac - # Do a test to see if this is a libtool program. - if func_ltwrapper_p "$file"; then - if func_ltwrapper_executable_p "$file"; then - func_ltwrapper_scriptname "$file" - relink_command= - func_source $func_ltwrapper_scriptname_result - func_append rmfiles " $func_ltwrapper_scriptname_result" - else - relink_command= - func_source $dir/$noexename - fi - - # note $name still contains .exe if it was in $file originally - # as does the version of $file that was added into $rmfiles - func_append rmfiles " $odir/$name $odir/${name}S.$objext" - if test yes = "$fast_install" && test -n "$relink_command"; then - func_append rmfiles " $odir/lt-$name" - fi - if test "X$noexename" != "X$name"; then - func_append rmfiles " $odir/lt-$noexename.c" - fi - fi - fi - ;; - esac - func_show_eval "$RM $rmfiles" 'exit_status=1' - done - - # Try to remove the $objdir's in the directories where we deleted files - for dir in $rmdirs; do - if test -d "$dir"; then - func_show_eval "rmdir $dir >/dev/null 2>&1" - fi - done - - exit $exit_status -} - -if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then - func_mode_uninstall ${1+"$@"} -fi - -test -z "$opt_mode" && { - help=$generic_help - func_fatal_help "you must specify a MODE" -} - -test -z "$exec_cmd" && \ - func_fatal_help "invalid operation mode '$opt_mode'" - -if test -n "$exec_cmd"; then - eval exec "$exec_cmd" - exit $EXIT_FAILURE -fi - -exit $exit_status - - -# The TAGs below are defined such that we never get into a situation -# where we disable both kinds of libraries. Given conflicting -# choices, we go for a static library, that is the most portable, -# since we can't tell whether shared libraries were disabled because -# the user asked for that or because the platform doesn't support -# them. This is particularly important on AIX, because we don't -# support having both static and shared libraries enabled at the same -# time on that platform, so we default to a shared-only configuration. -# If a disable-shared tag is given, we'll fallback to a static-only -# configuration. But we'll never go from static-only to shared-only. - -# ### BEGIN LIBTOOL TAG CONFIG: disable-shared -build_libtool_libs=no -build_old_libs=yes -# ### END LIBTOOL TAG CONFIG: disable-shared - -# ### BEGIN LIBTOOL TAG CONFIG: disable-static -build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` -# ### END LIBTOOL TAG CONFIG: disable-static - -# Local Variables: -# mode:shell-script -# sh-indentation:2 -# End: diff -Nru mate-utils-1.26.0/m4/gettext.m4 mate-utils-1.26.1/m4/gettext.m4 --- mate-utils-1.26.0/m4/gettext.m4 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/m4/gettext.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,386 +0,0 @@ -# gettext.m4 serial 71 (gettext-0.20.2) -dnl Copyright (C) 1995-2014, 2016, 2018-2020 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. -dnl -dnl This file can be used in projects which are not available under -dnl the GNU General Public License or the GNU Lesser General Public -dnl License but which still want to provide support for the GNU gettext -dnl functionality. -dnl Please note that the actual code of the GNU gettext library is covered -dnl by the GNU Lesser General Public License, and the rest of the GNU -dnl gettext package is covered by the GNU General Public License. -dnl They are *not* in the public domain. - -dnl Authors: -dnl Ulrich Drepper , 1995-2000. -dnl Bruno Haible , 2000-2006, 2008-2010. - -dnl Macro to add for using GNU gettext. - -dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]). -dnl INTLSYMBOL must be one of 'external', 'use-libtool'. -dnl INTLSYMBOL should be 'external' for packages other than GNU gettext, and -dnl 'use-libtool' for the packages 'gettext-runtime' and 'gettext-tools'. -dnl If INTLSYMBOL is 'use-libtool', then a libtool library -dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, -dnl depending on --{enable,disable}-{shared,static} and on the presence of -dnl AM-DISABLE-SHARED). -dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext -dnl implementations (in libc or libintl) without the ngettext() function -dnl will be ignored. If NEEDSYMBOL is specified and is -dnl 'need-formatstring-macros', then GNU gettext implementations that don't -dnl support the ISO C 99 formatstring macros will be ignored. -dnl INTLDIR is used to find the intl libraries. If empty, -dnl the value '$(top_builddir)/intl/' is used. -dnl -dnl The result of the configuration is one of three cases: -dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled -dnl and used. -dnl Catalog format: GNU --> install in $(datadir) -dnl Catalog extension: .mo after installation, .gmo in source tree -dnl 2) GNU gettext has been found in the system's C library. -dnl Catalog format: GNU --> install in $(datadir) -dnl Catalog extension: .mo after installation, .gmo in source tree -dnl 3) No internationalization, always use English msgid. -dnl Catalog format: none -dnl Catalog extension: none -dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur. -dnl The use of .gmo is historical (it was needed to avoid overwriting the -dnl GNU format catalogs when building on a platform with an X/Open gettext), -dnl but we keep it in order not to force irrelevant filename changes on the -dnl maintainers. -dnl -AC_DEFUN([AM_GNU_GETTEXT], -[ - dnl Argument checking. - ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [use-libtool], , - [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT -])])])]) - ifelse(ifelse([$1], [], [old])[]ifelse([$1], [no-libtool], [old]), [old], - [errprint([ERROR: Use of AM_GNU_GETTEXT without [external] argument is no longer supported. -])]) - ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , - [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT -])])])]) - define([gt_included_intl], - ifelse([$1], [external], [no], [yes])) - gt_NEEDS_INIT - AM_GNU_GETTEXT_NEED([$2]) - - AC_REQUIRE([AM_PO_SUBDIRS])dnl - ifelse(gt_included_intl, yes, [ - AC_REQUIRE([AM_INTL_SUBDIR])dnl - ]) - - dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. - AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) - AC_REQUIRE([AC_LIB_RPATH]) - - dnl Sometimes libintl requires libiconv, so first search for libiconv. - dnl Ideally we would do this search only after the - dnl if test "$USE_NLS" = "yes"; then - dnl if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then - dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT - dnl the configure script would need to contain the same shell code - dnl again, outside any 'if'. There are two solutions: - dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'. - dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE. - dnl Since AC_PROVIDE_IFELSE is not documented, we avoid it. - ifelse(gt_included_intl, yes, , [ - AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) - ]) - - dnl Sometimes, on Mac OS X, libintl requires linking with CoreFoundation. - gt_INTL_MACOSX - - dnl Set USE_NLS. - AC_REQUIRE([AM_NLS]) - - ifelse(gt_included_intl, yes, [ - BUILD_INCLUDED_LIBINTL=no - USE_INCLUDED_LIBINTL=no - ]) - LIBINTL= - LTLIBINTL= - POSUB= - - dnl Add a version number to the cache macros. - case " $gt_needs " in - *" need-formatstring-macros "*) gt_api_version=3 ;; - *" need-ngettext "*) gt_api_version=2 ;; - *) gt_api_version=1 ;; - esac - gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" - gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" - - dnl If we use NLS figure out what method - if test "$USE_NLS" = "yes"; then - gt_use_preinstalled_gnugettext=no - ifelse(gt_included_intl, yes, [ - AC_MSG_CHECKING([whether included gettext is requested]) - AC_ARG_WITH([included-gettext], - [ --with-included-gettext use the GNU gettext library included here], - nls_cv_force_use_gnu_gettext=$withval, - nls_cv_force_use_gnu_gettext=no) - AC_MSG_RESULT([$nls_cv_force_use_gnu_gettext]) - - nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" - if test "$nls_cv_force_use_gnu_gettext" != "yes"; then - ]) - dnl User does not insist on using GNU NLS library. Figure out what - dnl to use. If GNU gettext is available we use this. Else we have - dnl to fall back to GNU NLS library. - - if test $gt_api_version -ge 3; then - gt_revision_test_code=' -#ifndef __GNU_GETTEXT_SUPPORTED_REVISION -#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) -#endif -changequote(,)dnl -typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; -changequote([,])dnl -' - else - gt_revision_test_code= - fi - if test $gt_api_version -ge 2; then - gt_expression_test_code=' + * ngettext ("", "", 0)' - else - gt_expression_test_code= - fi - - AC_CACHE_CHECK([for GNU gettext in libc], [$gt_func_gnugettext_libc], - [AC_LINK_IFELSE( - [AC_LANG_PROGRAM( - [[ -#include -#ifndef __GNU_GETTEXT_SUPPORTED_REVISION -extern int _nl_msg_cat_cntr; -extern int *_nl_domain_bindings; -#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_domain_bindings) -#else -#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0 -#endif -$gt_revision_test_code - ]], - [[ -bindtextdomain ("", ""); -return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION - ]])], - [eval "$gt_func_gnugettext_libc=yes"], - [eval "$gt_func_gnugettext_libc=no"])]) - - if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then - dnl Sometimes libintl requires libiconv, so first search for libiconv. - ifelse(gt_included_intl, yes, , [ - AM_ICONV_LINK - ]) - dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL - dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) - dnl because that would add "-liconv" to LIBINTL and LTLIBINTL - dnl even if libiconv doesn't exist. - AC_LIB_LINKFLAGS_BODY([intl]) - AC_CACHE_CHECK([for GNU gettext in libintl], - [$gt_func_gnugettext_libintl], - [gt_save_CPPFLAGS="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $INCINTL" - gt_save_LIBS="$LIBS" - LIBS="$LIBS $LIBINTL" - dnl Now see whether libintl exists and does not depend on libiconv. - AC_LINK_IFELSE( - [AC_LANG_PROGRAM( - [[ -#include -#ifndef __GNU_GETTEXT_SUPPORTED_REVISION -extern int _nl_msg_cat_cntr; -extern -#ifdef __cplusplus -"C" -#endif -const char *_nl_expand_alias (const char *); -#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_expand_alias ("")) -#else -#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0 -#endif -$gt_revision_test_code - ]], - [[ -bindtextdomain ("", ""); -return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION - ]])], - [eval "$gt_func_gnugettext_libintl=yes"], - [eval "$gt_func_gnugettext_libintl=no"]) - dnl Now see whether libintl exists and depends on libiconv. - if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then - LIBS="$LIBS $LIBICONV" - AC_LINK_IFELSE( - [AC_LANG_PROGRAM( - [[ -#include -#ifndef __GNU_GETTEXT_SUPPORTED_REVISION -extern int _nl_msg_cat_cntr; -extern -#ifdef __cplusplus -"C" -#endif -const char *_nl_expand_alias (const char *); -#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_expand_alias ("")) -#else -#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0 -#endif -$gt_revision_test_code - ]], - [[ -bindtextdomain ("", ""); -return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION - ]])], - [LIBINTL="$LIBINTL $LIBICONV" - LTLIBINTL="$LTLIBINTL $LTLIBICONV" - eval "$gt_func_gnugettext_libintl=yes" - ]) - fi - CPPFLAGS="$gt_save_CPPFLAGS" - LIBS="$gt_save_LIBS"]) - fi - - dnl If an already present or preinstalled GNU gettext() is found, - dnl use it. But if this macro is used in GNU gettext, and GNU - dnl gettext is already preinstalled in libintl, we update this - dnl libintl. (Cf. the install rule in intl/Makefile.in.) - if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ - || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ - && test "$PACKAGE" != gettext-runtime \ - && test "$PACKAGE" != gettext-tools; }; then - gt_use_preinstalled_gnugettext=yes - else - dnl Reset the values set by searching for libintl. - LIBINTL= - LTLIBINTL= - INCINTL= - fi - - ifelse(gt_included_intl, yes, [ - if test "$gt_use_preinstalled_gnugettext" != "yes"; then - dnl GNU gettext is not found in the C library. - dnl Fall back on included GNU gettext library. - nls_cv_use_gnu_gettext=yes - fi - fi - - if test "$nls_cv_use_gnu_gettext" = "yes"; then - dnl Mark actions used to generate GNU NLS library. - BUILD_INCLUDED_LIBINTL=yes - USE_INCLUDED_LIBINTL=yes - LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.la $LIBICONV $LIBTHREAD" - LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.la $LTLIBICONV $LTLIBTHREAD" - LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` - fi - - CATOBJEXT= - if test "$gt_use_preinstalled_gnugettext" = "yes" \ - || test "$nls_cv_use_gnu_gettext" = "yes"; then - dnl Mark actions to use GNU gettext tools. - CATOBJEXT=.gmo - fi - ]) - - if test -n "$INTL_MACOSX_LIBS"; then - if test "$gt_use_preinstalled_gnugettext" = "yes" \ - || test "$nls_cv_use_gnu_gettext" = "yes"; then - dnl Some extra flags are needed during linking. - LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" - LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" - fi - fi - - if test "$gt_use_preinstalled_gnugettext" = "yes" \ - || test "$nls_cv_use_gnu_gettext" = "yes"; then - AC_DEFINE([ENABLE_NLS], [1], - [Define to 1 if translation of program messages to the user's native language - is requested.]) - else - USE_NLS=no - fi - fi - - AC_MSG_CHECKING([whether to use NLS]) - AC_MSG_RESULT([$USE_NLS]) - if test "$USE_NLS" = "yes"; then - AC_MSG_CHECKING([where the gettext function comes from]) - if test "$gt_use_preinstalled_gnugettext" = "yes"; then - if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then - gt_source="external libintl" - else - gt_source="libc" - fi - else - gt_source="included intl directory" - fi - AC_MSG_RESULT([$gt_source]) - fi - - if test "$USE_NLS" = "yes"; then - - if test "$gt_use_preinstalled_gnugettext" = "yes"; then - if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then - AC_MSG_CHECKING([how to link with libintl]) - AC_MSG_RESULT([$LIBINTL]) - AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL]) - fi - - dnl For backward compatibility. Some packages may be using this. - AC_DEFINE([HAVE_GETTEXT], [1], - [Define if the GNU gettext() function is already present or preinstalled.]) - AC_DEFINE([HAVE_DCGETTEXT], [1], - [Define if the GNU dcgettext() function is already present or preinstalled.]) - fi - - dnl We need to process the po/ directory. - POSUB=po - fi - - ifelse(gt_included_intl, yes, [ - dnl In GNU gettext we have to set BUILD_INCLUDED_LIBINTL to 'yes' - dnl because some of the testsuite requires it. - BUILD_INCLUDED_LIBINTL=yes - - dnl Make all variables we use known to autoconf. - AC_SUBST([BUILD_INCLUDED_LIBINTL]) - AC_SUBST([USE_INCLUDED_LIBINTL]) - AC_SUBST([CATOBJEXT]) - ]) - - dnl For backward compatibility. Some Makefiles may be using this. - INTLLIBS="$LIBINTL" - AC_SUBST([INTLLIBS]) - - dnl Make all documented variables known to autoconf. - AC_SUBST([LIBINTL]) - AC_SUBST([LTLIBINTL]) - AC_SUBST([POSUB]) -]) - - -dnl gt_NEEDS_INIT ensures that the gt_needs variable is initialized. -m4_define([gt_NEEDS_INIT], -[ - m4_divert_text([DEFAULTS], [gt_needs=]) - m4_define([gt_NEEDS_INIT], []) -]) - - -dnl Usage: AM_GNU_GETTEXT_NEED([NEEDSYMBOL]) -AC_DEFUN([AM_GNU_GETTEXT_NEED], -[ - m4_divert_text([INIT_PREPARE], [gt_needs="$gt_needs $1"]) -]) - - -dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version]) -AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) - - -dnl Usage: AM_GNU_GETTEXT_REQUIRE_VERSION([gettext-version]) -AC_DEFUN([AM_GNU_GETTEXT_REQUIRE_VERSION], []) diff -Nru mate-utils-1.26.0/m4/gtk-doc.m4 mate-utils-1.26.1/m4/gtk-doc.m4 --- mate-utils-1.26.0/m4/gtk-doc.m4 2021-08-05 19:45:14.000000000 +0000 +++ mate-utils-1.26.1/m4/gtk-doc.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,113 +0,0 @@ -# -*- mode: autoconf -*- -# -# gtk-doc.m4 - configure macro to check for gtk-doc -# Copyright (C) 2003 James Henstridge -# 2007-2017 Stefan Sauer -# -# 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 . -# -# As a special exception, the above copyright owner gives unlimited -# permission to copy, distribute and modify the configure scripts that -# are the output of Autoconf when processing the Macro. You need not -# follow the terms of the GNU General Public License when using or -# distributing such scripts, even though portions of the text of the -# Macro appear in them. The GNU General Public License (GPL) does govern -# all other use of the material that constitutes the Autoconf Macro. - -# serial 2 - -dnl Usage: -dnl GTK_DOC_CHECK([minimum-gtk-doc-version]) -AC_DEFUN([GTK_DOC_CHECK], -[ - AC_REQUIRE([PKG_PROG_PKG_CONFIG]) - AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first - AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first - - ifelse([$1],[],[gtk_doc_requires="gtk-doc"],[gtk_doc_requires="gtk-doc >= $1"]) - AC_MSG_CHECKING([for gtk-doc]) - PKG_CHECK_EXISTS([$gtk_doc_requires],[have_gtk_doc=yes],[have_gtk_doc=no]) - AC_MSG_RESULT($have_gtk_doc) - - if test "$have_gtk_doc" = "no"; then - AC_MSG_WARN([ - You will not be able to create source packages with 'make dist' - because $gtk_doc_requires is not found.]) - fi - - dnl check for tools we added during development - dnl Use AC_CHECK_PROG to avoid the check target using an absolute path that - dnl may not be writable by the user. Currently, automake requires that the - dnl test name must end in '.test'. - dnl https://bugzilla.gnome.org/show_bug.cgi?id=701638 - AC_CHECK_PROG([GTKDOC_CHECK],[gtkdoc-check],[gtkdoc-check.test]) - AC_PATH_PROG([GTKDOC_CHECK_PATH],[gtkdoc-check]) - AC_PATH_PROGS([GTKDOC_REBASE],[gtkdoc-rebase],[true]) - AC_PATH_PROG([GTKDOC_MKPDF],[gtkdoc-mkpdf]) - - dnl for overriding the documentation installation directory - AC_ARG_WITH([html-dir], - AS_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),, - [with_html_dir='${datadir}/gtk-doc/html']) - HTML_DIR="$with_html_dir" - AC_SUBST([HTML_DIR]) - - dnl enable/disable documentation building - AC_ARG_ENABLE([gtk-doc], - AS_HELP_STRING([--enable-gtk-doc], - [use gtk-doc to build documentation [[default=no]]]),, - [enable_gtk_doc=no]) - - AC_MSG_CHECKING([whether to build gtk-doc documentation]) - AC_MSG_RESULT($enable_gtk_doc) - - if test "x$enable_gtk_doc" = "xyes" && test "$have_gtk_doc" = "no"; then - AC_MSG_ERROR([ - You must have $gtk_doc_requires installed to build documentation for - $PACKAGE_NAME. Please install gtk-doc or disable building the - documentation by adding '--disable-gtk-doc' to '[$]0'.]) - fi - - dnl don't check for glib if we build glib - if test "x$PACKAGE_NAME" != "xglib"; then - dnl don't fail if someone does not have glib - PKG_CHECK_MODULES(GTKDOC_DEPS, glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0,,[:]) - fi - - dnl enable/disable output formats - AC_ARG_ENABLE([gtk-doc-html], - AS_HELP_STRING([--enable-gtk-doc-html], - [build documentation in html format [[default=yes]]]),, - [enable_gtk_doc_html=yes]) - AC_ARG_ENABLE([gtk-doc-pdf], - AS_HELP_STRING([--enable-gtk-doc-pdf], - [build documentation in pdf format [[default=no]]]),, - [enable_gtk_doc_pdf=no]) - - if test -z "$GTKDOC_MKPDF"; then - enable_gtk_doc_pdf=no - fi - - if test -z "$AM_DEFAULT_VERBOSITY"; then - AM_DEFAULT_VERBOSITY=1 - fi - AC_SUBST([AM_DEFAULT_VERBOSITY]) - - AM_CONDITIONAL([HAVE_GTK_DOC], [test x$have_gtk_doc = xyes]) - AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes]) - AM_CONDITIONAL([GTK_DOC_BUILD_HTML], [test x$enable_gtk_doc_html = xyes]) - AM_CONDITIONAL([GTK_DOC_BUILD_PDF], [test x$enable_gtk_doc_pdf = xyes]) - AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"]) - AM_CONDITIONAL([GTK_DOC_USE_REBASE], [test -n "$GTKDOC_REBASE"]) -]) diff -Nru mate-utils-1.26.0/m4/host-cpu-c-abi.m4 mate-utils-1.26.1/m4/host-cpu-c-abi.m4 --- mate-utils-1.26.0/m4/host-cpu-c-abi.m4 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/m4/host-cpu-c-abi.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,675 +0,0 @@ -# host-cpu-c-abi.m4 serial 13 -dnl Copyright (C) 2002-2020 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl From Bruno Haible and Sam Steingold. - -dnl Sets the HOST_CPU variable to the canonical name of the CPU. -dnl Sets the HOST_CPU_C_ABI variable to the canonical name of the CPU with its -dnl C language ABI (application binary interface). -dnl Also defines __${HOST_CPU}__ and __${HOST_CPU_C_ABI}__ as C macros in -dnl config.h. -dnl -dnl This canonical name can be used to select a particular assembly language -dnl source file that will interoperate with C code on the given host. -dnl -dnl For example: -dnl * 'i386' and 'sparc' are different canonical names, because code for i386 -dnl will not run on SPARC CPUs and vice versa. They have different -dnl instruction sets. -dnl * 'sparc' and 'sparc64' are different canonical names, because code for -dnl 'sparc' and code for 'sparc64' cannot be linked together: 'sparc' code -dnl contains 32-bit instructions, whereas 'sparc64' code contains 64-bit -dnl instructions. A process on a SPARC CPU can be in 32-bit mode or in 64-bit -dnl mode, but not both. -dnl * 'mips' and 'mipsn32' are different canonical names, because they use -dnl different argument passing and return conventions for C functions, and -dnl although the instruction set of 'mips' is a large subset of the -dnl instruction set of 'mipsn32'. -dnl * 'mipsn32' and 'mips64' are different canonical names, because they use -dnl different sizes for the C types like 'int' and 'void *', and although -dnl the instruction sets of 'mipsn32' and 'mips64' are the same. -dnl * The same canonical name is used for different endiannesses. You can -dnl determine the endianness through preprocessor symbols: -dnl - 'arm': test __ARMEL__. -dnl - 'mips', 'mipsn32', 'mips64': test _MIPSEB vs. _MIPSEL. -dnl - 'powerpc64': test _BIG_ENDIAN vs. _LITTLE_ENDIAN. -dnl * The same name 'i386' is used for CPUs of type i386, i486, i586 -dnl (Pentium), AMD K7, Pentium II, Pentium IV, etc., because -dnl - Instructions that do not exist on all of these CPUs (cmpxchg, -dnl MMX, SSE, SSE2, 3DNow! etc.) are not frequently used. If your -dnl assembly language source files use such instructions, you will -dnl need to make the distinction. -dnl - Speed of execution of the common instruction set is reasonable across -dnl the entire family of CPUs. If you have assembly language source files -dnl that are optimized for particular CPU types (like GNU gmp has), you -dnl will need to make the distinction. -dnl See . -AC_DEFUN([gl_HOST_CPU_C_ABI], -[ - AC_REQUIRE([AC_CANONICAL_HOST]) - AC_REQUIRE([gl_C_ASM]) - AC_CACHE_CHECK([host CPU and C ABI], [gl_cv_host_cpu_c_abi], - [case "$host_cpu" in - -changequote(,)dnl - i[34567]86 ) -changequote([,])dnl - gl_cv_host_cpu_c_abi=i386 - ;; - - x86_64 ) - # On x86_64 systems, the C compiler may be generating code in one of - # these ABIs: - # - 64-bit instruction set, 64-bit pointers, 64-bit 'long': x86_64. - # - 64-bit instruction set, 64-bit pointers, 32-bit 'long': x86_64 - # with native Windows (mingw, MSVC). - # - 64-bit instruction set, 32-bit pointers, 32-bit 'long': x86_64-x32. - # - 32-bit instruction set, 32-bit pointers, 32-bit 'long': i386. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if (defined __x86_64__ || defined __amd64__ \ - || defined _M_X64 || defined _M_AMD64) - int ok; - #else - error fail - #endif - ]])], - [AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined __ILP32__ || defined _ILP32 - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=x86_64-x32], - [gl_cv_host_cpu_c_abi=x86_64])], - [gl_cv_host_cpu_c_abi=i386]) - ;; - -changequote(,)dnl - alphaev[4-8] | alphaev56 | alphapca5[67] | alphaev6[78] ) -changequote([,])dnl - gl_cv_host_cpu_c_abi=alpha - ;; - - arm* | aarch64 ) - # Assume arm with EABI. - # On arm64 systems, the C compiler may be generating code in one of - # these ABIs: - # - aarch64 instruction set, 64-bit pointers, 64-bit 'long': arm64. - # - aarch64 instruction set, 32-bit pointers, 32-bit 'long': arm64-ilp32. - # - 32-bit instruction set, 32-bit pointers, 32-bit 'long': arm or armhf. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#ifdef __aarch64__ - int ok; - #else - error fail - #endif - ]])], - [AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined __ILP32__ || defined _ILP32 - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=arm64-ilp32], - [gl_cv_host_cpu_c_abi=arm64])], - [# Don't distinguish little-endian and big-endian arm, since they - # don't require different machine code for simple operations and - # since the user can distinguish them through the preprocessor - # defines __ARMEL__ vs. __ARMEB__. - # But distinguish arm which passes floating-point arguments and - # return values in integer registers (r0, r1, ...) - this is - # gcc -mfloat-abi=soft or gcc -mfloat-abi=softfp - from arm which - # passes them in float registers (s0, s1, ...) and double registers - # (d0, d1, ...) - this is gcc -mfloat-abi=hard. GCC 4.6 or newer - # sets the preprocessor defines __ARM_PCS (for the first case) and - # __ARM_PCS_VFP (for the second case), but older GCC does not. - echo 'double ddd; void func (double dd) { ddd = dd; }' > conftest.c - # Look for a reference to the register d0 in the .s file. - AC_TRY_COMMAND(${CC-cc} $CFLAGS $CPPFLAGS $gl_c_asm_opt conftest.c) >/dev/null 2>&1 - if LC_ALL=C grep 'd0,' conftest.$gl_asmext >/dev/null; then - gl_cv_host_cpu_c_abi=armhf - else - gl_cv_host_cpu_c_abi=arm - fi - rm -f conftest* - ]) - ;; - - hppa1.0 | hppa1.1 | hppa2.0* | hppa64 ) - # On hppa, the C compiler may be generating 32-bit code or 64-bit - # code. In the latter case, it defines _LP64 and __LP64__. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#ifdef __LP64__ - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=hppa64], - [gl_cv_host_cpu_c_abi=hppa]) - ;; - - ia64* ) - # On ia64 on HP-UX, the C compiler may be generating 64-bit code or - # 32-bit code. In the latter case, it defines _ILP32. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#ifdef _ILP32 - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=ia64-ilp32], - [gl_cv_host_cpu_c_abi=ia64]) - ;; - - mips* ) - # We should also check for (_MIPS_SZPTR == 64), but gcc keeps this - # at 32. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined _MIPS_SZLONG && (_MIPS_SZLONG == 64) - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=mips64], - [# In the n32 ABI, _ABIN32 is defined, _ABIO32 is not defined (but - # may later get defined by ), and _MIPS_SIM == _ABIN32. - # In the 32 ABI, _ABIO32 is defined, _ABIN32 is not defined (but - # may later get defined by ), and _MIPS_SIM == _ABIO32. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if (_MIPS_SIM == _ABIN32) - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=mipsn32], - [gl_cv_host_cpu_c_abi=mips])]) - ;; - - powerpc* ) - # Different ABIs are in use on AIX vs. Mac OS X vs. Linux,*BSD. - # No need to distinguish them here; the caller may distinguish - # them based on the OS. - # On powerpc64 systems, the C compiler may still be generating - # 32-bit code. And on powerpc-ibm-aix systems, the C compiler may - # be generating 64-bit code. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined __powerpc64__ || defined _ARCH_PPC64 - int ok; - #else - error fail - #endif - ]])], - [# On powerpc64, there are two ABIs on Linux: The AIX compatible - # one and the ELFv2 one. The latter defines _CALL_ELF=2. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined _CALL_ELF && _CALL_ELF == 2 - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=powerpc64-elfv2], - [gl_cv_host_cpu_c_abi=powerpc64]) - ], - [gl_cv_host_cpu_c_abi=powerpc]) - ;; - - rs6000 ) - gl_cv_host_cpu_c_abi=powerpc - ;; - - riscv32 | riscv64 ) - # There are 2 architectures (with variants): rv32* and rv64*. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if __riscv_xlen == 64 - int ok; - #else - error fail - #endif - ]])], - [cpu=riscv64], - [cpu=riscv32]) - # There are 6 ABIs: ilp32, ilp32f, ilp32d, lp64, lp64f, lp64d. - # Size of 'long' and 'void *': - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined __LP64__ - int ok; - #else - error fail - #endif - ]])], - [main_abi=lp64], - [main_abi=ilp32]) - # Float ABIs: - # __riscv_float_abi_double: - # 'float' and 'double' are passed in floating-point registers. - # __riscv_float_abi_single: - # 'float' are passed in floating-point registers. - # __riscv_float_abi_soft: - # No values are passed in floating-point registers. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined __riscv_float_abi_double - int ok; - #else - error fail - #endif - ]])], - [float_abi=d], - [AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined __riscv_float_abi_single - int ok; - #else - error fail - #endif - ]])], - [float_abi=f], - [float_abi='']) - ]) - gl_cv_host_cpu_c_abi="${cpu}-${main_abi}${float_abi}" - ;; - - s390* ) - # On s390x, the C compiler may be generating 64-bit (= s390x) code - # or 31-bit (= s390) code. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined __LP64__ || defined __s390x__ - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=s390x], - [gl_cv_host_cpu_c_abi=s390]) - ;; - - sparc | sparc64 ) - # UltraSPARCs running Linux have `uname -m` = "sparc64", but the - # C compiler still generates 32-bit code. - AC_COMPILE_IFELSE( - [AC_LANG_SOURCE( - [[#if defined __sparcv9 || defined __arch64__ - int ok; - #else - error fail - #endif - ]])], - [gl_cv_host_cpu_c_abi=sparc64], - [gl_cv_host_cpu_c_abi=sparc]) - ;; - - *) - gl_cv_host_cpu_c_abi="$host_cpu" - ;; - esac - ]) - - dnl In most cases, $HOST_CPU and $HOST_CPU_C_ABI are the same. - HOST_CPU=`echo "$gl_cv_host_cpu_c_abi" | sed -e 's/-.*//'` - HOST_CPU_C_ABI="$gl_cv_host_cpu_c_abi" - AC_SUBST([HOST_CPU]) - AC_SUBST([HOST_CPU_C_ABI]) - - # This was - # AC_DEFINE_UNQUOTED([__${HOST_CPU}__]) - # AC_DEFINE_UNQUOTED([__${HOST_CPU_C_ABI}__]) - # earlier, but KAI C++ 3.2d doesn't like this. - sed -e 's/-/_/g' >> confdefs.h < -#include - ]], - [[iconv_t cd = iconv_open("",""); - iconv(cd,NULL,NULL,NULL,NULL); - iconv_close(cd);]])], - [am_cv_func_iconv=yes]) - if test "$am_cv_func_iconv" != yes; then - am_save_LIBS="$LIBS" - LIBS="$LIBS $LIBICONV" - AC_LINK_IFELSE( - [AC_LANG_PROGRAM( - [[ -#include -#include - ]], - [[iconv_t cd = iconv_open("",""); - iconv(cd,NULL,NULL,NULL,NULL); - iconv_close(cd);]])], - [am_cv_lib_iconv=yes] - [am_cv_func_iconv=yes]) - LIBS="$am_save_LIBS" - fi - ]) - if test "$am_cv_func_iconv" = yes; then - AC_CACHE_CHECK([for working iconv], [am_cv_func_iconv_works], [ - dnl This tests against bugs in AIX 5.1, AIX 6.1..7.1, HP-UX 11.11, - dnl Solaris 10. - am_save_LIBS="$LIBS" - if test $am_cv_lib_iconv = yes; then - LIBS="$LIBS $LIBICONV" - fi - am_cv_func_iconv_works=no - for ac_iconv_const in '' 'const'; do - AC_RUN_IFELSE( - [AC_LANG_PROGRAM( - [[ -#include -#include - -#ifndef ICONV_CONST -# define ICONV_CONST $ac_iconv_const -#endif - ]], - [[int result = 0; - /* Test against AIX 5.1 bug: Failures are not distinguishable from successful - returns. */ - { - iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); - if (cd_utf8_to_88591 != (iconv_t)(-1)) - { - static ICONV_CONST char input[] = "\342\202\254"; /* EURO SIGN */ - char buf[10]; - ICONV_CONST char *inptr = input; - size_t inbytesleft = strlen (input); - char *outptr = buf; - size_t outbytesleft = sizeof (buf); - size_t res = iconv (cd_utf8_to_88591, - &inptr, &inbytesleft, - &outptr, &outbytesleft); - if (res == 0) - result |= 1; - iconv_close (cd_utf8_to_88591); - } - } - /* Test against Solaris 10 bug: Failures are not distinguishable from - successful returns. */ - { - iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); - if (cd_ascii_to_88591 != (iconv_t)(-1)) - { - static ICONV_CONST char input[] = "\263"; - char buf[10]; - ICONV_CONST char *inptr = input; - size_t inbytesleft = strlen (input); - char *outptr = buf; - size_t outbytesleft = sizeof (buf); - size_t res = iconv (cd_ascii_to_88591, - &inptr, &inbytesleft, - &outptr, &outbytesleft); - if (res == 0) - result |= 2; - iconv_close (cd_ascii_to_88591); - } - } - /* Test against AIX 6.1..7.1 bug: Buffer overrun. */ - { - iconv_t cd_88591_to_utf8 = iconv_open ("UTF-8", "ISO-8859-1"); - if (cd_88591_to_utf8 != (iconv_t)(-1)) - { - static ICONV_CONST char input[] = "\304"; - static char buf[2] = { (char)0xDE, (char)0xAD }; - ICONV_CONST char *inptr = input; - size_t inbytesleft = 1; - char *outptr = buf; - size_t outbytesleft = 1; - size_t res = iconv (cd_88591_to_utf8, - &inptr, &inbytesleft, - &outptr, &outbytesleft); - if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD) - result |= 4; - iconv_close (cd_88591_to_utf8); - } - } -#if 0 /* This bug could be worked around by the caller. */ - /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ - { - iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); - if (cd_88591_to_utf8 != (iconv_t)(-1)) - { - static ICONV_CONST char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; - char buf[50]; - ICONV_CONST char *inptr = input; - size_t inbytesleft = strlen (input); - char *outptr = buf; - size_t outbytesleft = sizeof (buf); - size_t res = iconv (cd_88591_to_utf8, - &inptr, &inbytesleft, - &outptr, &outbytesleft); - if ((int)res > 0) - result |= 8; - iconv_close (cd_88591_to_utf8); - } - } -#endif - /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is - provided. */ - { - /* Try standardized names. */ - iconv_t cd1 = iconv_open ("UTF-8", "EUC-JP"); - /* Try IRIX, OSF/1 names. */ - iconv_t cd2 = iconv_open ("UTF-8", "eucJP"); - /* Try AIX names. */ - iconv_t cd3 = iconv_open ("UTF-8", "IBM-eucJP"); - /* Try HP-UX names. */ - iconv_t cd4 = iconv_open ("utf8", "eucJP"); - if (cd1 == (iconv_t)(-1) && cd2 == (iconv_t)(-1) - && cd3 == (iconv_t)(-1) && cd4 == (iconv_t)(-1)) - result |= 16; - if (cd1 != (iconv_t)(-1)) - iconv_close (cd1); - if (cd2 != (iconv_t)(-1)) - iconv_close (cd2); - if (cd3 != (iconv_t)(-1)) - iconv_close (cd3); - if (cd4 != (iconv_t)(-1)) - iconv_close (cd4); - } - return result; -]])], - [am_cv_func_iconv_works=yes], , - [case "$host_os" in - aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; - *) am_cv_func_iconv_works="guessing yes" ;; - esac]) - test "$am_cv_func_iconv_works" = no || break - done - LIBS="$am_save_LIBS" - ]) - case "$am_cv_func_iconv_works" in - *no) am_func_iconv=no am_cv_lib_iconv=no ;; - *) am_func_iconv=yes ;; - esac - else - am_func_iconv=no am_cv_lib_iconv=no - fi - if test "$am_func_iconv" = yes; then - AC_DEFINE([HAVE_ICONV], [1], - [Define if you have the iconv() function and it works.]) - fi - if test "$am_cv_lib_iconv" = yes; then - AC_MSG_CHECKING([how to link with libiconv]) - AC_MSG_RESULT([$LIBICONV]) - else - dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV - dnl either. - CPPFLAGS="$am_save_CPPFLAGS" - LIBICONV= - LTLIBICONV= - fi - AC_SUBST([LIBICONV]) - AC_SUBST([LTLIBICONV]) -]) - -dnl Define AM_ICONV using AC_DEFUN_ONCE for Autoconf >= 2.64, in order to -dnl avoid warnings like -dnl "warning: AC_REQUIRE: `AM_ICONV' was expanded before it was required". -dnl This is tricky because of the way 'aclocal' is implemented: -dnl - It requires defining an auxiliary macro whose name ends in AC_DEFUN. -dnl Otherwise aclocal's initial scan pass would miss the macro definition. -dnl - It requires a line break inside the AC_DEFUN_ONCE and AC_DEFUN expansions. -dnl Otherwise aclocal would emit many "Use of uninitialized value $1" -dnl warnings. -m4_define([gl_iconv_AC_DEFUN], - m4_version_prereq([2.64], - [[AC_DEFUN_ONCE( - [$1], [$2])]], - [m4_ifdef([gl_00GNULIB], - [[AC_DEFUN_ONCE( - [$1], [$2])]], - [[AC_DEFUN( - [$1], [$2])]])])) -gl_iconv_AC_DEFUN([AM_ICONV], -[ - AM_ICONV_LINK - if test "$am_cv_func_iconv" = yes; then - AC_MSG_CHECKING([for iconv declaration]) - AC_CACHE_VAL([am_cv_proto_iconv], [ - AC_COMPILE_IFELSE( - [AC_LANG_PROGRAM( - [[ -#include -#include -extern -#ifdef __cplusplus -"C" -#endif -#if defined(__STDC__) || defined(_MSC_VER) || defined(__cplusplus) -size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); -#else -size_t iconv(); -#endif - ]], - [[]])], - [am_cv_proto_iconv_arg1=""], - [am_cv_proto_iconv_arg1="const"]) - am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) - am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` - AC_MSG_RESULT([ - $am_cv_proto_iconv]) - else - dnl When compiling GNU libiconv on a system that does not have iconv yet, - dnl pick the POSIX compliant declaration without 'const'. - am_cv_proto_iconv_arg1="" - fi - AC_DEFINE_UNQUOTED([ICONV_CONST], [$am_cv_proto_iconv_arg1], - [Define as const if the declaration of iconv() needs const.]) - dnl Also substitute ICONV_CONST in the gnulib generated . - m4_ifdef([gl_ICONV_H_DEFAULTS], - [AC_REQUIRE([gl_ICONV_H_DEFAULTS]) - if test -n "$am_cv_proto_iconv_arg1"; then - ICONV_CONST="const" - fi - ]) -]) diff -Nru mate-utils-1.26.0/m4/intlmacosx.m4 mate-utils-1.26.1/m4/intlmacosx.m4 --- mate-utils-1.26.0/m4/intlmacosx.m4 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/m4/intlmacosx.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,65 +0,0 @@ -# intlmacosx.m4 serial 8 (gettext-0.20.2) -dnl Copyright (C) 2004-2014, 2016, 2019-2020 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. -dnl -dnl This file can be used in projects which are not available under -dnl the GNU General Public License or the GNU Lesser General Public -dnl License but which still want to provide support for the GNU gettext -dnl functionality. -dnl Please note that the actual code of the GNU gettext library is covered -dnl by the GNU Lesser General Public License, and the rest of the GNU -dnl gettext package is covered by the GNU General Public License. -dnl They are *not* in the public domain. - -dnl Checks for special options needed on Mac OS X. -dnl Defines INTL_MACOSX_LIBS. -AC_DEFUN([gt_INTL_MACOSX], -[ - dnl Check for API introduced in Mac OS X 10.4. - AC_CACHE_CHECK([for CFPreferencesCopyAppValue], - [gt_cv_func_CFPreferencesCopyAppValue], - [gt_save_LIBS="$LIBS" - LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" - AC_LINK_IFELSE( - [AC_LANG_PROGRAM( - [[#include ]], - [[CFPreferencesCopyAppValue(NULL, NULL)]])], - [gt_cv_func_CFPreferencesCopyAppValue=yes], - [gt_cv_func_CFPreferencesCopyAppValue=no]) - LIBS="$gt_save_LIBS"]) - if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then - AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], [1], - [Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in the CoreFoundation framework.]) - fi - dnl Don't check for the API introduced in Mac OS X 10.5, CFLocaleCopyCurrent, - dnl because in macOS 10.13.4 it has the following behaviour: - dnl When two or more languages are specified in the - dnl "System Preferences > Language & Region > Preferred Languages" panel, - dnl it returns en_CC where CC is the territory (even when English is not among - dnl the preferred languages!). What we want instead is what - dnl CFLocaleCopyCurrent returned in earlier macOS releases and what - dnl CFPreferencesCopyAppValue still returns, namely ll_CC where ll is the - dnl first among the preferred languages and CC is the territory. - AC_CACHE_CHECK([for CFLocaleCopyPreferredLanguages], [gt_cv_func_CFLocaleCopyPreferredLanguages], - [gt_save_LIBS="$LIBS" - LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" - AC_LINK_IFELSE( - [AC_LANG_PROGRAM( - [[#include ]], - [[CFLocaleCopyPreferredLanguages();]])], - [gt_cv_func_CFLocaleCopyPreferredLanguages=yes], - [gt_cv_func_CFLocaleCopyPreferredLanguages=no]) - LIBS="$gt_save_LIBS"]) - if test $gt_cv_func_CFLocaleCopyPreferredLanguages = yes; then - AC_DEFINE([HAVE_CFLOCALECOPYPREFERREDLANGUAGES], [1], - [Define to 1 if you have the Mac OS X function CFLocaleCopyPreferredLanguages in the CoreFoundation framework.]) - fi - INTL_MACOSX_LIBS= - if test $gt_cv_func_CFPreferencesCopyAppValue = yes \ - || test $gt_cv_func_CFLocaleCopyPreferredLanguages = yes; then - INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" - fi - AC_SUBST([INTL_MACOSX_LIBS]) -]) diff -Nru mate-utils-1.26.0/m4/lib-ld.m4 mate-utils-1.26.1/m4/lib-ld.m4 --- mate-utils-1.26.0/m4/lib-ld.m4 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/m4/lib-ld.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,168 +0,0 @@ -# lib-ld.m4 serial 9 -dnl Copyright (C) 1996-2003, 2009-2020 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl Subroutines of libtool.m4, -dnl with replacements s/_*LT_PATH/AC_LIB_PROG/ and s/lt_/acl_/ to avoid -dnl collision with libtool.m4. - -dnl From libtool-2.4. Sets the variable with_gnu_ld to yes or no. -AC_DEFUN([AC_LIB_PROG_LD_GNU], -[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], [acl_cv_prog_gnu_ld], -[# I'd rather use --version here, but apparently some GNU lds only accept -v. -case `$LD -v 2>&1 /dev/null 2>&1 \ - && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ - || PATH_SEPARATOR=';' - } -fi - -if test -n "$LD"; then - AC_MSG_CHECKING([for ld]) -elif test "$GCC" = yes; then - AC_MSG_CHECKING([for ld used by $CC]) -elif test "$with_gnu_ld" = yes; then - AC_MSG_CHECKING([for GNU ld]) -else - AC_MSG_CHECKING([for non-GNU ld]) -fi -if test -n "$LD"; then - # Let the user override the test with a path. - : -else - AC_CACHE_VAL([acl_cv_path_LD], - [ - acl_cv_path_LD= # Final result of this test - ac_prog=ld # Program to search in $PATH - if test "$GCC" = yes; then - # Check if gcc -print-prog-name=ld gives a path. - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw - acl_output=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - acl_output=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $acl_output in - # Accept absolute paths. - [[\\/]]* | ?:[[\\/]]*) - re_direlt='/[[^/]][[^/]]*/\.\./' - # Canonicalize the pathname of ld - acl_output=`echo "$acl_output" | sed 's%\\\\%/%g'` - while echo "$acl_output" | grep "$re_direlt" > /dev/null 2>&1; do - acl_output=`echo $acl_output | sed "s%$re_direlt%/%"` - done - # Got the pathname. No search in PATH is needed. - acl_cv_path_LD="$acl_output" - ac_prog= - ;; - "") - # If it fails, then pretend we aren't using GCC. - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac - fi - if test -n "$ac_prog"; then - # Search for $ac_prog in $PATH. - acl_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$acl_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - acl_cv_path_LD="$ac_dir/$ac_prog" - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some variants of GNU ld only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$acl_cv_path_LD" -v 2>&1 conftest.sh - . ./conftest.sh - rm -f ./conftest.sh - acl_cv_rpath=done - ]) - wl="$acl_cv_wl" - acl_libext="$acl_cv_libext" - acl_shlibext="$acl_cv_shlibext" - acl_libname_spec="$acl_cv_libname_spec" - acl_library_names_spec="$acl_cv_library_names_spec" - acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" - acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" - acl_hardcode_direct="$acl_cv_hardcode_direct" - acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" - dnl Determine whether the user wants rpath handling at all. - AC_ARG_ENABLE([rpath], - [ --disable-rpath do not hardcode runtime library paths], - :, enable_rpath=yes) -]) - -dnl AC_LIB_FROMPACKAGE(name, package) -dnl declares that libname comes from the given package. The configure file -dnl will then not have a --with-libname-prefix option but a -dnl --with-package-prefix option. Several libraries can come from the same -dnl package. This declaration must occur before an AC_LIB_LINKFLAGS or similar -dnl macro call that searches for libname. -AC_DEFUN([AC_LIB_FROMPACKAGE], -[ - pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], - [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) - define([acl_frompackage_]NAME, [$2]) - popdef([NAME]) - pushdef([PACK],[$2]) - pushdef([PACKUP],[m4_translit(PACK,[abcdefghijklmnopqrstuvwxyz./+-], - [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) - define([acl_libsinpackage_]PACKUP, - m4_ifdef([acl_libsinpackage_]PACKUP, [m4_defn([acl_libsinpackage_]PACKUP)[, ]],)[lib$1]) - popdef([PACKUP]) - popdef([PACK]) -]) - -dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and -dnl the libraries corresponding to explicit and implicit dependencies. -dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables. -dnl Also, sets the LIB${NAME}_PREFIX variable to nonempty if libname was found -dnl in ${LIB${NAME}_PREFIX}/$acl_libdirstem. -AC_DEFUN([AC_LIB_LINKFLAGS_BODY], -[ - AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) - pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], - [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) - pushdef([PACK],[m4_ifdef([acl_frompackage_]NAME, [acl_frompackage_]NAME, lib[$1])]) - pushdef([PACKUP],[m4_translit(PACK,[abcdefghijklmnopqrstuvwxyz./+-], - [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) - pushdef([PACKLIBS],[m4_ifdef([acl_frompackage_]NAME, [acl_libsinpackage_]PACKUP, lib[$1])]) - dnl By default, look in $includedir and $libdir. - use_additional=yes - AC_LIB_WITH_FINAL_PREFIX([ - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - eval additional_libdir2=\"$exec_prefix/$acl_libdirstem2\" - eval additional_libdir3=\"$exec_prefix/$acl_libdirstem3\" - ]) - AC_ARG_WITH(PACK[-prefix], -[[ --with-]]PACK[[-prefix[=DIR] search for ]PACKLIBS[ in DIR/include and DIR/lib - --without-]]PACK[[-prefix don't search for ]PACKLIBS[ in includedir and libdir]], -[ - if test "X$withval" = "Xno"; then - use_additional=no - else - if test "X$withval" = "X"; then - AC_LIB_WITH_FINAL_PREFIX([ - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - eval additional_libdir2=\"$exec_prefix/$acl_libdirstem2\" - eval additional_libdir3=\"$exec_prefix/$acl_libdirstem3\" - ]) - else - additional_includedir="$withval/include" - additional_libdir="$withval/$acl_libdirstem" - additional_libdir2="$withval/$acl_libdirstem2" - additional_libdir3="$withval/$acl_libdirstem3" - fi - fi -]) - if test "X$additional_libdir2" = "X$additional_libdir"; then - additional_libdir2= - fi - if test "X$additional_libdir3" = "X$additional_libdir"; then - additional_libdir3= - fi - dnl Search the library and its dependencies in $additional_libdir and - dnl $LDFLAGS. Using breadth-first-seach. - LIB[]NAME= - LTLIB[]NAME= - INC[]NAME= - LIB[]NAME[]_PREFIX= - dnl HAVE_LIB${NAME} is an indicator that LIB${NAME}, LTLIB${NAME} have been - dnl computed. So it has to be reset here. - HAVE_LIB[]NAME= - rpathdirs= - ltrpathdirs= - names_already_handled= - names_next_round='$1 $2' - while test -n "$names_next_round"; do - names_this_round="$names_next_round" - names_next_round= - for name in $names_this_round; do - already_handled= - for n in $names_already_handled; do - if test "$n" = "$name"; then - already_handled=yes - break - fi - done - if test -z "$already_handled"; then - names_already_handled="$names_already_handled $name" - dnl See if it was already located by an earlier AC_LIB_LINKFLAGS - dnl or AC_LIB_HAVE_LINKFLAGS call. - uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` - eval value=\"\$HAVE_LIB$uppername\" - if test -n "$value"; then - if test "$value" = yes; then - eval value=\"\$LIB$uppername\" - test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value" - eval value=\"\$LTLIB$uppername\" - test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value" - else - dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined - dnl that this library doesn't exist. So just drop it. - : - fi - else - dnl Search the library lib$name in $additional_libdir and $LDFLAGS - dnl and the already constructed $LIBNAME/$LTLIBNAME. - found_dir= - found_la= - found_so= - found_a= - eval libname=\"$acl_libname_spec\" # typically: libname=lib$name - if test -n "$acl_shlibext"; then - shrext=".$acl_shlibext" # typically: shrext=.so - else - shrext= - fi - if test $use_additional = yes; then - for additional_libdir_variable in additional_libdir additional_libdir2 additional_libdir3; do - if test "X$found_dir" = "X"; then - eval dir=\$$additional_libdir_variable - if test -n "$dir"; then - dnl The same code as in the loop below: - dnl First look for a shared library. - if test -n "$acl_shlibext"; then - if test -f "$dir/$libname$shrext" && acl_is_expected_elfclass < "$dir/$libname$shrext"; then - found_dir="$dir" - found_so="$dir/$libname$shrext" - else - if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then - ver=`(cd "$dir" && \ - for f in "$libname$shrext".*; do echo "$f"; done \ - | sed -e "s,^$libname$shrext\\\\.,," \ - | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ - | sed 1q ) 2>/dev/null` - if test -n "$ver" && test -f "$dir/$libname$shrext.$ver" && acl_is_expected_elfclass < "$dir/$libname$shrext.$ver"; then - found_dir="$dir" - found_so="$dir/$libname$shrext.$ver" - fi - else - eval library_names=\"$acl_library_names_spec\" - for f in $library_names; do - if test -f "$dir/$f" && acl_is_expected_elfclass < "$dir/$f"; then - found_dir="$dir" - found_so="$dir/$f" - break - fi - done - fi - fi - fi - dnl Then look for a static library. - if test "X$found_dir" = "X"; then - if test -f "$dir/$libname.$acl_libext" && ${AR-ar} -p "$dir/$libname.$acl_libext" | acl_is_expected_elfclass; then - found_dir="$dir" - found_a="$dir/$libname.$acl_libext" - fi - fi - if test "X$found_dir" != "X"; then - if test -f "$dir/$libname.la"; then - found_la="$dir/$libname.la" - fi - fi - fi - fi - done - fi - if test "X$found_dir" = "X"; then - for x in $LDFLAGS $LTLIB[]NAME; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - case "$x" in - -L*) - dir=`echo "X$x" | sed -e 's/^X-L//'` - dnl First look for a shared library. - if test -n "$acl_shlibext"; then - if test -f "$dir/$libname$shrext" && acl_is_expected_elfclass < "$dir/$libname$shrext"; then - found_dir="$dir" - found_so="$dir/$libname$shrext" - else - if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then - ver=`(cd "$dir" && \ - for f in "$libname$shrext".*; do echo "$f"; done \ - | sed -e "s,^$libname$shrext\\\\.,," \ - | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ - | sed 1q ) 2>/dev/null` - if test -n "$ver" && test -f "$dir/$libname$shrext.$ver" && acl_is_expected_elfclass < "$dir/$libname$shrext.$ver"; then - found_dir="$dir" - found_so="$dir/$libname$shrext.$ver" - fi - else - eval library_names=\"$acl_library_names_spec\" - for f in $library_names; do - if test -f "$dir/$f" && acl_is_expected_elfclass < "$dir/$f"; then - found_dir="$dir" - found_so="$dir/$f" - break - fi - done - fi - fi - fi - dnl Then look for a static library. - if test "X$found_dir" = "X"; then - if test -f "$dir/$libname.$acl_libext" && ${AR-ar} -p "$dir/$libname.$acl_libext" | acl_is_expected_elfclass; then - found_dir="$dir" - found_a="$dir/$libname.$acl_libext" - fi - fi - if test "X$found_dir" != "X"; then - if test -f "$dir/$libname.la"; then - found_la="$dir/$libname.la" - fi - fi - ;; - esac - if test "X$found_dir" != "X"; then - break - fi - done - fi - if test "X$found_dir" != "X"; then - dnl Found the library. - LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" - if test "X$found_so" != "X"; then - dnl Linking with a shared library. We attempt to hardcode its - dnl directory into the executable's runpath, unless it's the - dnl standard /usr/lib. - if test "$enable_rpath" = no \ - || test "X$found_dir" = "X/usr/$acl_libdirstem" \ - || test "X$found_dir" = "X/usr/$acl_libdirstem2" \ - || test "X$found_dir" = "X/usr/$acl_libdirstem3"; then - dnl No hardcoding is needed. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" - else - dnl Use an explicit option to hardcode DIR into the resulting - dnl binary. - dnl Potentially add DIR to ltrpathdirs. - dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. - haveit= - for x in $ltrpathdirs; do - if test "X$x" = "X$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - ltrpathdirs="$ltrpathdirs $found_dir" - fi - dnl The hardcoding into $LIBNAME is system dependent. - if test "$acl_hardcode_direct" = yes; then - dnl Using DIR/libNAME.so during linking hardcodes DIR into the - dnl resulting binary. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" - else - if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then - dnl Use an explicit option to hardcode DIR into the resulting - dnl binary. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" - dnl Potentially add DIR to rpathdirs. - dnl The rpathdirs will be appended to $LIBNAME at the end. - haveit= - for x in $rpathdirs; do - if test "X$x" = "X$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - rpathdirs="$rpathdirs $found_dir" - fi - else - dnl Rely on "-L$found_dir". - dnl But don't add it if it's already contained in the LDFLAGS - dnl or the already constructed $LIBNAME - haveit= - for x in $LDFLAGS $LIB[]NAME; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-L$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" - fi - if test "$acl_hardcode_minus_L" != no; then - dnl FIXME: Not sure whether we should use - dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" - dnl here. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" - else - dnl We cannot use $acl_hardcode_runpath_var and LD_RUN_PATH - dnl here, because this doesn't fit in flags passed to the - dnl compiler. So give up. No hardcoding. This affects only - dnl very old systems. - dnl FIXME: Not sure whether we should use - dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" - dnl here. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" - fi - fi - fi - fi - else - if test "X$found_a" != "X"; then - dnl Linking with a static library. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a" - else - dnl We shouldn't come here, but anyway it's good to have a - dnl fallback. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" - fi - fi - dnl Assume the include files are nearby. - additional_includedir= - case "$found_dir" in - */$acl_libdirstem | */$acl_libdirstem/) - basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` - if test "$name" = '$1'; then - LIB[]NAME[]_PREFIX="$basedir" - fi - additional_includedir="$basedir/include" - ;; - */$acl_libdirstem2 | */$acl_libdirstem2/) - basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` - if test "$name" = '$1'; then - LIB[]NAME[]_PREFIX="$basedir" - fi - additional_includedir="$basedir/include" - ;; - */$acl_libdirstem3 | */$acl_libdirstem3/) - basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem3/"'*$,,'` - if test "$name" = '$1'; then - LIB[]NAME[]_PREFIX="$basedir" - fi - additional_includedir="$basedir/include" - ;; - esac - if test "X$additional_includedir" != "X"; then - dnl Potentially add $additional_includedir to $INCNAME. - dnl But don't add it - dnl 1. if it's the standard /usr/include, - dnl 2. if it's /usr/local/include and we are using GCC on Linux, - dnl 3. if it's already present in $CPPFLAGS or the already - dnl constructed $INCNAME, - dnl 4. if it doesn't exist as a directory. - if test "X$additional_includedir" != "X/usr/include"; then - haveit= - if test "X$additional_includedir" = "X/usr/local/include"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - for x in $CPPFLAGS $INC[]NAME; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-I$additional_includedir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$additional_includedir"; then - dnl Really add $additional_includedir to $INCNAME. - INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir" - fi - fi - fi - fi - fi - dnl Look for dependencies. - if test -n "$found_la"; then - dnl Read the .la file. It defines the variables - dnl dlname, library_names, old_library, dependency_libs, current, - dnl age, revision, installed, dlopen, dlpreopen, libdir. - save_libdir="$libdir" - case "$found_la" in - */* | *\\*) . "$found_la" ;; - *) . "./$found_la" ;; - esac - libdir="$save_libdir" - dnl We use only dependency_libs. - for dep in $dependency_libs; do - case "$dep" in - -L*) - dependency_libdir=`echo "X$dep" | sed -e 's/^X-L//'` - dnl Potentially add $dependency_libdir to $LIBNAME and $LTLIBNAME. - dnl But don't add it - dnl 1. if it's the standard /usr/lib, - dnl 2. if it's /usr/local/lib and we are using GCC on Linux, - dnl 3. if it's already present in $LDFLAGS or the already - dnl constructed $LIBNAME, - dnl 4. if it doesn't exist as a directory. - if test "X$dependency_libdir" != "X/usr/$acl_libdirstem" \ - && test "X$dependency_libdir" != "X/usr/$acl_libdirstem2" \ - && test "X$dependency_libdir" != "X/usr/$acl_libdirstem3"; then - haveit= - if test "X$dependency_libdir" = "X/usr/local/$acl_libdirstem" \ - || test "X$dependency_libdir" = "X/usr/local/$acl_libdirstem2" \ - || test "X$dependency_libdir" = "X/usr/local/$acl_libdirstem3"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - haveit= - for x in $LDFLAGS $LIB[]NAME; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-L$dependency_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$dependency_libdir"; then - dnl Really add $dependency_libdir to $LIBNAME. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$dependency_libdir" - fi - fi - haveit= - for x in $LDFLAGS $LTLIB[]NAME; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-L$dependency_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$dependency_libdir"; then - dnl Really add $dependency_libdir to $LTLIBNAME. - LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$dependency_libdir" - fi - fi - fi - fi - ;; - -R*) - dir=`echo "X$dep" | sed -e 's/^X-R//'` - if test "$enable_rpath" != no; then - dnl Potentially add DIR to rpathdirs. - dnl The rpathdirs will be appended to $LIBNAME at the end. - haveit= - for x in $rpathdirs; do - if test "X$x" = "X$dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - rpathdirs="$rpathdirs $dir" - fi - dnl Potentially add DIR to ltrpathdirs. - dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. - haveit= - for x in $ltrpathdirs; do - if test "X$x" = "X$dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - ltrpathdirs="$ltrpathdirs $dir" - fi - fi - ;; - -l*) - dnl Handle this in the next round. - names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` - ;; - *.la) - dnl Handle this in the next round. Throw away the .la's - dnl directory; it is already contained in a preceding -L - dnl option. - names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` - ;; - *) - dnl Most likely an immediate library name. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep" - LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep" - ;; - esac - done - fi - else - dnl Didn't find the library; assume it is in the system directories - dnl known to the linker and runtime loader. (All the system - dnl directories known to the linker should also be known to the - dnl runtime loader, otherwise the system is severely misconfigured.) - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" - LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name" - fi - fi - fi - done - done - if test "X$rpathdirs" != "X"; then - if test -n "$acl_hardcode_libdir_separator"; then - dnl Weird platform: only the last -rpath option counts, the user must - dnl pass all path elements in one option. We can arrange that for a - dnl single library, but not when more than one $LIBNAMEs are used. - alldirs= - for found_dir in $rpathdirs; do - alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" - done - dnl Note: acl_hardcode_libdir_flag_spec uses $libdir and $wl. - acl_save_libdir="$libdir" - libdir="$alldirs" - eval flag=\"$acl_hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" - else - dnl The -rpath options are cumulative. - for found_dir in $rpathdirs; do - acl_save_libdir="$libdir" - libdir="$found_dir" - eval flag=\"$acl_hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" - done - fi - fi - if test "X$ltrpathdirs" != "X"; then - dnl When using libtool, the option that works for both libraries and - dnl executables is -R. The -R options are cumulative. - for found_dir in $ltrpathdirs; do - LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir" - done - fi - popdef([PACKLIBS]) - popdef([PACKUP]) - popdef([PACK]) - popdef([NAME]) -]) - -dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR, -dnl unless already present in VAR. -dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes -dnl contains two or three consecutive elements that belong together. -AC_DEFUN([AC_LIB_APPENDTOVAR], -[ - for element in [$2]; do - haveit= - for x in $[$1]; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X$element"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - [$1]="${[$1]}${[$1]:+ }$element" - fi - done -]) - -dnl For those cases where a variable contains several -L and -l options -dnl referring to unknown libraries and directories, this macro determines the -dnl necessary additional linker options for the runtime path. -dnl AC_LIB_LINKFLAGS_FROM_LIBS([LDADDVAR], [LIBSVALUE], [USE-LIBTOOL]) -dnl sets LDADDVAR to linker options needed together with LIBSVALUE. -dnl If USE-LIBTOOL evaluates to non-empty, linking with libtool is assumed, -dnl otherwise linking without libtool is assumed. -AC_DEFUN([AC_LIB_LINKFLAGS_FROM_LIBS], -[ - AC_REQUIRE([AC_LIB_RPATH]) - AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) - $1= - if test "$enable_rpath" != no; then - if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then - dnl Use an explicit option to hardcode directories into the resulting - dnl binary. - rpathdirs= - next= - for opt in $2; do - if test -n "$next"; then - dir="$next" - dnl No need to hardcode the standard /usr/lib. - if test "X$dir" != "X/usr/$acl_libdirstem" \ - && test "X$dir" != "X/usr/$acl_libdirstem2" \ - && test "X$dir" != "X/usr/$acl_libdirstem3"; then - rpathdirs="$rpathdirs $dir" - fi - next= - else - case $opt in - -L) next=yes ;; - -L*) dir=`echo "X$opt" | sed -e 's,^X-L,,'` - dnl No need to hardcode the standard /usr/lib. - if test "X$dir" != "X/usr/$acl_libdirstem" \ - && test "X$dir" != "X/usr/$acl_libdirstem2" \ - && test "X$dir" != "X/usr/$acl_libdirstem3"; then - rpathdirs="$rpathdirs $dir" - fi - next= ;; - *) next= ;; - esac - fi - done - if test "X$rpathdirs" != "X"; then - if test -n ""$3""; then - dnl libtool is used for linking. Use -R options. - for dir in $rpathdirs; do - $1="${$1}${$1:+ }-R$dir" - done - else - dnl The linker is used for linking directly. - if test -n "$acl_hardcode_libdir_separator"; then - dnl Weird platform: only the last -rpath option counts, the user - dnl must pass all path elements in one option. - alldirs= - for dir in $rpathdirs; do - alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$dir" - done - acl_save_libdir="$libdir" - libdir="$alldirs" - eval flag=\"$acl_hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - $1="$flag" - else - dnl The -rpath options are cumulative. - for dir in $rpathdirs; do - acl_save_libdir="$libdir" - libdir="$dir" - eval flag=\"$acl_hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - $1="${$1}${$1:+ }$flag" - done - fi - fi - fi - fi - fi - AC_SUBST([$1]) -]) diff -Nru mate-utils-1.26.0/m4/lib-prefix.m4 mate-utils-1.26.1/m4/lib-prefix.m4 --- mate-utils-1.26.0/m4/lib-prefix.m4 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/m4/lib-prefix.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,320 +0,0 @@ -# lib-prefix.m4 serial 17 -dnl Copyright (C) 2001-2005, 2008-2020 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl From Bruno Haible. - -dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed -dnl to access previously installed libraries. The basic assumption is that -dnl a user will want packages to use other packages he previously installed -dnl with the same --prefix option. -dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate -dnl libraries, but is otherwise very convenient. -AC_DEFUN([AC_LIB_PREFIX], -[ - AC_BEFORE([$0], [AC_LIB_LINKFLAGS]) - AC_REQUIRE([AC_PROG_CC]) - AC_REQUIRE([AC_CANONICAL_HOST]) - AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) - AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) - dnl By default, look in $includedir and $libdir. - use_additional=yes - AC_LIB_WITH_FINAL_PREFIX([ - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - ]) - AC_ARG_WITH([lib-prefix], -[[ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib - --without-lib-prefix don't search for libraries in includedir and libdir]], -[ - if test "X$withval" = "Xno"; then - use_additional=no - else - if test "X$withval" = "X"; then - AC_LIB_WITH_FINAL_PREFIX([ - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - ]) - else - additional_includedir="$withval/include" - additional_libdir="$withval/$acl_libdirstem" - fi - fi -]) - if test $use_additional = yes; then - dnl Potentially add $additional_includedir to $CPPFLAGS. - dnl But don't add it - dnl 1. if it's the standard /usr/include, - dnl 2. if it's already present in $CPPFLAGS, - dnl 3. if it's /usr/local/include and we are using GCC on Linux, - dnl 4. if it doesn't exist as a directory. - if test "X$additional_includedir" != "X/usr/include"; then - haveit= - for x in $CPPFLAGS; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-I$additional_includedir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test "X$additional_includedir" = "X/usr/local/include"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - if test -d "$additional_includedir"; then - dnl Really add $additional_includedir to $CPPFLAGS. - CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir" - fi - fi - fi - fi - dnl Potentially add $additional_libdir to $LDFLAGS. - dnl But don't add it - dnl 1. if it's the standard /usr/lib, - dnl 2. if it's already present in $LDFLAGS, - dnl 3. if it's /usr/local/lib and we are using GCC on Linux, - dnl 4. if it doesn't exist as a directory. - if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then - haveit= - for x in $LDFLAGS; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-L$additional_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then - if test -n "$GCC"; then - case $host_os in - linux*) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - if test -d "$additional_libdir"; then - dnl Really add $additional_libdir to $LDFLAGS. - LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir" - fi - fi - fi - fi - fi -]) - -dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix, -dnl acl_final_exec_prefix, containing the values to which $prefix and -dnl $exec_prefix will expand at the end of the configure script. -AC_DEFUN([AC_LIB_PREPARE_PREFIX], -[ - dnl Unfortunately, prefix and exec_prefix get only finally determined - dnl at the end of configure. - if test "X$prefix" = "XNONE"; then - acl_final_prefix="$ac_default_prefix" - else - acl_final_prefix="$prefix" - fi - if test "X$exec_prefix" = "XNONE"; then - acl_final_exec_prefix='${prefix}' - else - acl_final_exec_prefix="$exec_prefix" - fi - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" - prefix="$acl_save_prefix" -]) - -dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the -dnl variables prefix and exec_prefix bound to the values they will have -dnl at the end of the configure script. -AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], -[ - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - $1 - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" -]) - -dnl AC_LIB_PREPARE_MULTILIB creates -dnl - a function acl_is_expected_elfclass, that tests whether standard input -dn; has a 32-bit or 64-bit ELF header, depending on the host CPU ABI, -dnl - 3 variables acl_libdirstem, acl_libdirstem2, acl_libdirstem3, containing -dnl the basename of the libdir to try in turn, either "lib" or "lib64" or -dnl "lib/64" or "lib32" or "lib/sparcv9" or "lib/amd64" or similar. -AC_DEFUN([AC_LIB_PREPARE_MULTILIB], -[ - dnl There is no formal standard regarding lib, lib32, and lib64. - dnl On most glibc systems, the current practice is that on a system supporting - dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under - dnl $prefix/lib64 and 32-bit libraries go under $prefix/lib. However, on - dnl Arch Linux based distributions, it's the opposite: 32-bit libraries go - dnl under $prefix/lib32 and 64-bit libraries go under $prefix/lib. - dnl We determine the compiler's default mode by looking at the compiler's - dnl library search path. If at least one of its elements ends in /lib64 or - dnl points to a directory whose absolute pathname ends in /lib64, we use that - dnl for 64-bit ABIs. Similarly for 32-bit ABIs. Otherwise we use the default, - dnl namely "lib". - dnl On Solaris systems, the current practice is that on a system supporting - dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under - dnl $prefix/lib/64 (which is a symlink to either $prefix/lib/sparcv9 or - dnl $prefix/lib/amd64) and 32-bit libraries go under $prefix/lib. - AC_REQUIRE([AC_CANONICAL_HOST]) - AC_REQUIRE([gl_HOST_CPU_C_ABI_32BIT]) - - AC_CACHE_CHECK([for ELF binary format], [gl_cv_elf], - [AC_EGREP_CPP([Extensible Linking Format], - [#ifdef __ELF__ - Extensible Linking Format - #endif - ], - [gl_cv_elf=yes], - [gl_cv_elf=no]) - ]) - if test $gl_cv_elf; then - # Extract the ELF class of a file (5th byte) in decimal. - # Cf. https://en.wikipedia.org/wiki/Executable_and_Linkable_Format#File_header - if od -A x < /dev/null >/dev/null 2>/dev/null; then - # Use POSIX od. - func_elfclass () - { - od -A n -t d1 -j 4 -N 1 - } - else - # Use BSD hexdump. - func_elfclass () - { - dd bs=1 count=1 skip=4 2>/dev/null | hexdump -e '1/1 "%3d "' - echo - } - fi -changequote(,)dnl - case $HOST_CPU_C_ABI_32BIT in - yes) - # 32-bit ABI. - acl_is_expected_elfclass () - { - test "`func_elfclass | sed -e 's/[ ]//g'`" = 1 - } - ;; - no) - # 64-bit ABI. - acl_is_expected_elfclass () - { - test "`func_elfclass | sed -e 's/[ ]//g'`" = 2 - } - ;; - *) - # Unknown. - acl_is_expected_elfclass () - { - : - } - ;; - esac -changequote([,])dnl - else - acl_is_expected_elfclass () - { - : - } - fi - - dnl Allow the user to override the result by setting acl_cv_libdirstems. - AC_CACHE_CHECK([for the common suffixes of directories in the library search path], - [acl_cv_libdirstems], - [dnl Try 'lib' first, because that's the default for libdir in GNU, see - dnl . - acl_libdirstem=lib - acl_libdirstem2= - acl_libdirstem3= - case "$host_os" in - solaris*) - dnl See Solaris 10 Software Developer Collection > Solaris 64-bit Developer's Guide > The Development Environment - dnl . - dnl "Portable Makefiles should refer to any library directories using the 64 symbolic link." - dnl But we want to recognize the sparcv9 or amd64 subdirectory also if the - dnl symlink is missing, so we set acl_libdirstem2 too. - if test $HOST_CPU_C_ABI_32BIT = no; then - acl_libdirstem2=lib/64 - case "$host_cpu" in - sparc*) acl_libdirstem3=lib/sparcv9 ;; - i*86 | x86_64) acl_libdirstem3=lib/amd64 ;; - esac - fi - ;; - *) - dnl If $CC generates code for a 32-bit ABI, the libraries are - dnl surely under $prefix/lib or $prefix/lib32, not $prefix/lib64. - dnl Similarly, if $CC generates code for a 64-bit ABI, the libraries - dnl are surely under $prefix/lib or $prefix/lib64, not $prefix/lib32. - dnl Find the compiler's search path. However, non-system compilers - dnl sometimes have odd library search paths. But we can't simply invoke - dnl '/usr/bin/gcc -print-search-dirs' because that would not take into - dnl account the -m32/-m31 or -m64 options from the $CC or $CFLAGS. - searchpath=`(LC_ALL=C $CC $CPPFLAGS $CFLAGS -print-search-dirs) 2>/dev/null \ - | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` - if test $HOST_CPU_C_ABI_32BIT != no; then - # 32-bit or unknown ABI. - if test -d /usr/lib32; then - acl_libdirstem2=lib32 - fi - fi - if test $HOST_CPU_C_ABI_32BIT != yes; then - # 64-bit or unknown ABI. - if test -d /usr/lib64; then - acl_libdirstem3=lib64 - fi - fi - if test -n "$searchpath"; then - acl_save_IFS="${IFS= }"; IFS=":" - for searchdir in $searchpath; do - if test -d "$searchdir"; then - case "$searchdir" in - */lib32/ | */lib32 ) acl_libdirstem2=lib32 ;; - */lib64/ | */lib64 ) acl_libdirstem3=lib64 ;; - */../ | */.. ) - # Better ignore directories of this form. They are misleading. - ;; - *) searchdir=`cd "$searchdir" && pwd` - case "$searchdir" in - */lib32 ) acl_libdirstem2=lib32 ;; - */lib64 ) acl_libdirstem3=lib64 ;; - esac ;; - esac - fi - done - IFS="$acl_save_IFS" - if test $HOST_CPU_C_ABI_32BIT = yes; then - # 32-bit ABI. - acl_libdirstem3= - fi - if test $HOST_CPU_C_ABI_32BIT = no; then - # 64-bit ABI. - acl_libdirstem2= - fi - fi - ;; - esac - test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" - test -n "$acl_libdirstem3" || acl_libdirstem3="$acl_libdirstem" - acl_cv_libdirstems="$acl_libdirstem,$acl_libdirstem2,$acl_libdirstem3" - ]) - dnl Decompose acl_cv_libdirstems into acl_libdirstem, acl_libdirstem2, and - dnl acl_libdirstem3. -changequote(,)dnl - acl_libdirstem=`echo "$acl_cv_libdirstems" | sed -e 's/,.*//'` - acl_libdirstem2=`echo "$acl_cv_libdirstems" | sed -e 's/^[^,]*,//' -e 's/,.*//'` - acl_libdirstem3=`echo "$acl_cv_libdirstems" | sed -e 's/^[^,]*,[^,]*,//' -e 's/,.*//'` -changequote([,])dnl -]) diff -Nru mate-utils-1.26.0/m4/libtool.m4 mate-utils-1.26.1/m4/libtool.m4 --- mate-utils-1.26.0/m4/libtool.m4 2021-08-05 19:45:21.000000000 +0000 +++ mate-utils-1.26.1/m4/libtool.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,8372 +0,0 @@ -# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- -# -# Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc. -# Written by Gordon Matzigkeit, 1996 -# -# 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. - -m4_define([_LT_COPYING], [dnl -# Copyright (C) 2014 Free Software Foundation, Inc. -# This is free software; see the source for copying conditions. There is NO -# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -# GNU Libtool 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 of the License, or -# (at your option) any later version. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program or library that is built -# using GNU Libtool, you may include this file under the same -# distribution terms that you use for the rest of that program. -# -# GNU Libtool 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 . -]) - -# serial 58 LT_INIT - - -# LT_PREREQ(VERSION) -# ------------------ -# Complain and exit if this libtool version is less that VERSION. -m4_defun([LT_PREREQ], -[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, - [m4_default([$3], - [m4_fatal([Libtool version $1 or higher is required], - 63)])], - [$2])]) - - -# _LT_CHECK_BUILDDIR -# ------------------ -# Complain if the absolute build directory name contains unusual characters -m4_defun([_LT_CHECK_BUILDDIR], -[case `pwd` in - *\ * | *\ *) - AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; -esac -]) - - -# LT_INIT([OPTIONS]) -# ------------------ -AC_DEFUN([LT_INIT], -[AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK -AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl -AC_BEFORE([$0], [LT_LANG])dnl -AC_BEFORE([$0], [LT_OUTPUT])dnl -AC_BEFORE([$0], [LTDL_INIT])dnl -m4_require([_LT_CHECK_BUILDDIR])dnl - -dnl Autoconf doesn't catch unexpanded LT_ macros by default: -m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl -m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl -dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 -dnl unless we require an AC_DEFUNed macro: -AC_REQUIRE([LTOPTIONS_VERSION])dnl -AC_REQUIRE([LTSUGAR_VERSION])dnl -AC_REQUIRE([LTVERSION_VERSION])dnl -AC_REQUIRE([LTOBSOLETE_VERSION])dnl -m4_require([_LT_PROG_LTMAIN])dnl - -_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) - -dnl Parse OPTIONS -_LT_SET_OPTIONS([$0], [$1]) - -# This can be used to rebuild libtool when needed -LIBTOOL_DEPS=$ltmain - -# Always use our own libtool. -LIBTOOL='$(SHELL) $(top_builddir)/libtool' -AC_SUBST(LIBTOOL)dnl - -_LT_SETUP - -# Only expand once: -m4_define([LT_INIT]) -])# LT_INIT - -# Old names: -AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) -AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_PROG_LIBTOOL], []) -dnl AC_DEFUN([AM_PROG_LIBTOOL], []) - - -# _LT_PREPARE_CC_BASENAME -# ----------------------- -m4_defun([_LT_PREPARE_CC_BASENAME], [ -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. -func_cc_basename () -{ - for cc_temp in @S|@*""; do - case $cc_temp in - compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; - distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; - \-*) ;; - *) break;; - esac - done - func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` -} -])# _LT_PREPARE_CC_BASENAME - - -# _LT_CC_BASENAME(CC) -# ------------------- -# It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME, -# but that macro is also expanded into generated libtool script, which -# arranges for $SED and $ECHO to be set by different means. -m4_defun([_LT_CC_BASENAME], -[m4_require([_LT_PREPARE_CC_BASENAME])dnl -AC_REQUIRE([_LT_DECL_SED])dnl -AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl -func_cc_basename $1 -cc_basename=$func_cc_basename_result -]) - - -# _LT_FILEUTILS_DEFAULTS -# ---------------------- -# It is okay to use these file commands and assume they have been set -# sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'. -m4_defun([_LT_FILEUTILS_DEFAULTS], -[: ${CP="cp -f"} -: ${MV="mv -f"} -: ${RM="rm -f"} -])# _LT_FILEUTILS_DEFAULTS - - -# _LT_SETUP -# --------- -m4_defun([_LT_SETUP], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_CANONICAL_BUILD])dnl -AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl -AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl - -_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl -dnl -_LT_DECL([], [host_alias], [0], [The host system])dnl -_LT_DECL([], [host], [0])dnl -_LT_DECL([], [host_os], [0])dnl -dnl -_LT_DECL([], [build_alias], [0], [The build system])dnl -_LT_DECL([], [build], [0])dnl -_LT_DECL([], [build_os], [0])dnl -dnl -AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([LT_PATH_LD])dnl -AC_REQUIRE([LT_PATH_NM])dnl -dnl -AC_REQUIRE([AC_PROG_LN_S])dnl -test -z "$LN_S" && LN_S="ln -s" -_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl -dnl -AC_REQUIRE([LT_CMD_MAX_LEN])dnl -_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl -_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl -dnl -m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_CHECK_SHELL_FEATURES])dnl -m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl -m4_require([_LT_CMD_RELOAD])dnl -m4_require([_LT_CHECK_MAGIC_METHOD])dnl -m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl -m4_require([_LT_CMD_OLD_ARCHIVE])dnl -m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl -m4_require([_LT_WITH_SYSROOT])dnl -m4_require([_LT_CMD_TRUNCATE])dnl - -_LT_CONFIG_LIBTOOL_INIT([ -# See if we are running on zsh, and set the options that allow our -# commands through without removal of \ escapes INIT. -if test -n "\${ZSH_VERSION+set}"; then - setopt NO_GLOB_SUBST -fi -]) -if test -n "${ZSH_VERSION+set}"; then - setopt NO_GLOB_SUBST -fi - -_LT_CHECK_OBJDIR - -m4_require([_LT_TAG_COMPILER])dnl - -case $host_os in -aix3*) - # AIX sometimes has problems with the GCC collect2 program. For some - # reason, if we set the COLLECT_NAMES environment variable, the problems - # vanish in a puff of smoke. - if test set != "${COLLECT_NAMES+set}"; then - COLLECT_NAMES= - export COLLECT_NAMES - fi - ;; -esac - -# Global variables: -ofile=libtool -can_build_shared=yes - -# All known linkers require a '.a' archive for static linking (except MSVC, -# which needs '.lib'). -libext=a - -with_gnu_ld=$lt_cv_prog_gnu_ld - -old_CC=$CC -old_CFLAGS=$CFLAGS - -# Set sane defaults for various variables -test -z "$CC" && CC=cc -test -z "$LTCC" && LTCC=$CC -test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS -test -z "$LD" && LD=ld -test -z "$ac_objext" && ac_objext=o - -_LT_CC_BASENAME([$compiler]) - -# Only perform the check for file, if the check method requires it -test -z "$MAGIC_CMD" && MAGIC_CMD=file -case $deplibs_check_method in -file_magic*) - if test "$file_magic_cmd" = '$MAGIC_CMD'; then - _LT_PATH_MAGIC - fi - ;; -esac - -# Use C for the default configuration in the libtool script -LT_SUPPORTED_TAG([CC]) -_LT_LANG_C_CONFIG -_LT_LANG_DEFAULT_CONFIG -_LT_CONFIG_COMMANDS -])# _LT_SETUP - - -# _LT_PREPARE_SED_QUOTE_VARS -# -------------------------- -# Define a few sed substitution that help us do robust quoting. -m4_defun([_LT_PREPARE_SED_QUOTE_VARS], -[# Backslashify metacharacters that are still active within -# double-quoted strings. -sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' - -# Same as above, but do not quote variable references. -double_quote_subst='s/\([["`\\]]\)/\\\1/g' - -# Sed substitution to delay expansion of an escaped shell variable in a -# double_quote_subst'ed string. -delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' - -# Sed substitution to delay expansion of an escaped single quote. -delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' - -# Sed substitution to avoid accidental globbing in evaled expressions -no_glob_subst='s/\*/\\\*/g' -]) - -# _LT_PROG_LTMAIN -# --------------- -# Note that this code is called both from 'configure', and 'config.status' -# now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, -# 'config.status' has no value for ac_aux_dir unless we are using Automake, -# so we pass a copy along to make sure it has a sensible value anyway. -m4_defun([_LT_PROG_LTMAIN], -[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl -_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) -ltmain=$ac_aux_dir/ltmain.sh -])# _LT_PROG_LTMAIN - - -## ------------------------------------- ## -## Accumulate code for creating libtool. ## -## ------------------------------------- ## - -# So that we can recreate a full libtool script including additional -# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS -# in macros and then make a single call at the end using the 'libtool' -# label. - - -# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) -# ---------------------------------------- -# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. -m4_define([_LT_CONFIG_LIBTOOL_INIT], -[m4_ifval([$1], - [m4_append([_LT_OUTPUT_LIBTOOL_INIT], - [$1 -])])]) - -# Initialize. -m4_define([_LT_OUTPUT_LIBTOOL_INIT]) - - -# _LT_CONFIG_LIBTOOL([COMMANDS]) -# ------------------------------ -# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. -m4_define([_LT_CONFIG_LIBTOOL], -[m4_ifval([$1], - [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], - [$1 -])])]) - -# Initialize. -m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) - - -# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) -# ----------------------------------------------------- -m4_defun([_LT_CONFIG_SAVE_COMMANDS], -[_LT_CONFIG_LIBTOOL([$1]) -_LT_CONFIG_LIBTOOL_INIT([$2]) -]) - - -# _LT_FORMAT_COMMENT([COMMENT]) -# ----------------------------- -# Add leading comment marks to the start of each line, and a trailing -# full-stop to the whole comment if one is not present already. -m4_define([_LT_FORMAT_COMMENT], -[m4_ifval([$1], [ -m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], - [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) -)]) - - - -## ------------------------ ## -## FIXME: Eliminate VARNAME ## -## ------------------------ ## - - -# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) -# ------------------------------------------------------------------- -# CONFIGNAME is the name given to the value in the libtool script. -# VARNAME is the (base) name used in the configure script. -# VALUE may be 0, 1 or 2 for a computed quote escaped value based on -# VARNAME. Any other value will be used directly. -m4_define([_LT_DECL], -[lt_if_append_uniq([lt_decl_varnames], [$2], [, ], - [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], - [m4_ifval([$1], [$1], [$2])]) - lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) - m4_ifval([$4], - [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) - lt_dict_add_subkey([lt_decl_dict], [$2], - [tagged?], [m4_ifval([$5], [yes], [no])])]) -]) - - -# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) -# -------------------------------------------------------- -m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) - - -# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) -# ------------------------------------------------ -m4_define([lt_decl_tag_varnames], -[_lt_decl_filter([tagged?], [yes], $@)]) - - -# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) -# --------------------------------------------------------- -m4_define([_lt_decl_filter], -[m4_case([$#], - [0], [m4_fatal([$0: too few arguments: $#])], - [1], [m4_fatal([$0: too few arguments: $#: $1])], - [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], - [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], - [lt_dict_filter([lt_decl_dict], $@)])[]dnl -]) - - -# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) -# -------------------------------------------------- -m4_define([lt_decl_quote_varnames], -[_lt_decl_filter([value], [1], $@)]) - - -# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) -# --------------------------------------------------- -m4_define([lt_decl_dquote_varnames], -[_lt_decl_filter([value], [2], $@)]) - - -# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) -# --------------------------------------------------- -m4_define([lt_decl_varnames_tagged], -[m4_assert([$# <= 2])dnl -_$0(m4_quote(m4_default([$1], [[, ]])), - m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), - m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) -m4_define([_lt_decl_varnames_tagged], -[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) - - -# lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) -# ------------------------------------------------ -m4_define([lt_decl_all_varnames], -[_$0(m4_quote(m4_default([$1], [[, ]])), - m4_if([$2], [], - m4_quote(lt_decl_varnames), - m4_quote(m4_shift($@))))[]dnl -]) -m4_define([_lt_decl_all_varnames], -[lt_join($@, lt_decl_varnames_tagged([$1], - lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl -]) - - -# _LT_CONFIG_STATUS_DECLARE([VARNAME]) -# ------------------------------------ -# Quote a variable value, and forward it to 'config.status' so that its -# declaration there will have the same value as in 'configure'. VARNAME -# must have a single quote delimited value for this to work. -m4_define([_LT_CONFIG_STATUS_DECLARE], -[$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) - - -# _LT_CONFIG_STATUS_DECLARATIONS -# ------------------------------ -# We delimit libtool config variables with single quotes, so when -# we write them to config.status, we have to be sure to quote all -# embedded single quotes properly. In configure, this macro expands -# each variable declared with _LT_DECL (and _LT_TAGDECL) into: -# -# ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' -m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], -[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), - [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) - - -# _LT_LIBTOOL_TAGS -# ---------------- -# Output comment and list of tags supported by the script -m4_defun([_LT_LIBTOOL_TAGS], -[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl -available_tags='_LT_TAGS'dnl -]) - - -# _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) -# ----------------------------------- -# Extract the dictionary values for VARNAME (optionally with TAG) and -# expand to a commented shell variable setting: -# -# # Some comment about what VAR is for. -# visible_name=$lt_internal_name -m4_define([_LT_LIBTOOL_DECLARE], -[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], - [description])))[]dnl -m4_pushdef([_libtool_name], - m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl -m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), - [0], [_libtool_name=[$]$1], - [1], [_libtool_name=$lt_[]$1], - [2], [_libtool_name=$lt_[]$1], - [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl -m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl -]) - - -# _LT_LIBTOOL_CONFIG_VARS -# ----------------------- -# Produce commented declarations of non-tagged libtool config variables -# suitable for insertion in the LIBTOOL CONFIG section of the 'libtool' -# script. Tagged libtool config variables (even for the LIBTOOL CONFIG -# section) are produced by _LT_LIBTOOL_TAG_VARS. -m4_defun([_LT_LIBTOOL_CONFIG_VARS], -[m4_foreach([_lt_var], - m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), - [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) - - -# _LT_LIBTOOL_TAG_VARS(TAG) -# ------------------------- -m4_define([_LT_LIBTOOL_TAG_VARS], -[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), - [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) - - -# _LT_TAGVAR(VARNAME, [TAGNAME]) -# ------------------------------ -m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) - - -# _LT_CONFIG_COMMANDS -# ------------------- -# Send accumulated output to $CONFIG_STATUS. Thanks to the lists of -# variables for single and double quote escaping we saved from calls -# to _LT_DECL, we can put quote escaped variables declarations -# into 'config.status', and then the shell code to quote escape them in -# for loops in 'config.status'. Finally, any additional code accumulated -# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. -m4_defun([_LT_CONFIG_COMMANDS], -[AC_PROVIDE_IFELSE([LT_OUTPUT], - dnl If the libtool generation code has been placed in $CONFIG_LT, - dnl instead of duplicating it all over again into config.status, - dnl then we will have config.status run $CONFIG_LT later, so it - dnl needs to know what name is stored there: - [AC_CONFIG_COMMANDS([libtool], - [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], - dnl If the libtool generation code is destined for config.status, - dnl expand the accumulated commands and init code now: - [AC_CONFIG_COMMANDS([libtool], - [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) -])#_LT_CONFIG_COMMANDS - - -# Initialize. -m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], -[ - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -sed_quote_subst='$sed_quote_subst' -double_quote_subst='$double_quote_subst' -delay_variable_subst='$delay_variable_subst' -_LT_CONFIG_STATUS_DECLARATIONS -LTCC='$LTCC' -LTCFLAGS='$LTCFLAGS' -compiler='$compiler_DEFAULT' - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -\$[]1 -_LTECHO_EOF' -} - -# Quote evaled strings. -for var in lt_decl_all_varnames([[ \ -]], lt_decl_quote_varnames); do - case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in - *[[\\\\\\\`\\"\\\$]]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes - ;; - *) - eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" - ;; - esac -done - -# Double-quote double-evaled strings. -for var in lt_decl_all_varnames([[ \ -]], lt_decl_dquote_varnames); do - case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in - *[[\\\\\\\`\\"\\\$]]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes - ;; - *) - eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" - ;; - esac -done - -_LT_OUTPUT_LIBTOOL_INIT -]) - -# _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) -# ------------------------------------ -# Generate a child script FILE with all initialization necessary to -# reuse the environment learned by the parent script, and make the -# file executable. If COMMENT is supplied, it is inserted after the -# '#!' sequence but before initialization text begins. After this -# macro, additional text can be appended to FILE to form the body of -# the child script. The macro ends with non-zero status if the -# file could not be fully written (such as if the disk is full). -m4_ifdef([AS_INIT_GENERATED], -[m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], -[m4_defun([_LT_GENERATED_FILE_INIT], -[m4_require([AS_PREPARE])]dnl -[m4_pushdef([AS_MESSAGE_LOG_FD])]dnl -[lt_write_fail=0 -cat >$1 <<_ASEOF || lt_write_fail=1 -#! $SHELL -# Generated by $as_me. -$2 -SHELL=\${CONFIG_SHELL-$SHELL} -export SHELL -_ASEOF -cat >>$1 <<\_ASEOF || lt_write_fail=1 -AS_SHELL_SANITIZE -_AS_PREPARE -exec AS_MESSAGE_FD>&1 -_ASEOF -test 0 = "$lt_write_fail" && chmod +x $1[]dnl -m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT - -# LT_OUTPUT -# --------- -# This macro allows early generation of the libtool script (before -# AC_OUTPUT is called), incase it is used in configure for compilation -# tests. -AC_DEFUN([LT_OUTPUT], -[: ${CONFIG_LT=./config.lt} -AC_MSG_NOTICE([creating $CONFIG_LT]) -_LT_GENERATED_FILE_INIT(["$CONFIG_LT"], -[# Run this file to recreate a libtool stub with the current configuration.]) - -cat >>"$CONFIG_LT" <<\_LTEOF -lt_cl_silent=false -exec AS_MESSAGE_LOG_FD>>config.log -{ - echo - AS_BOX([Running $as_me.]) -} >&AS_MESSAGE_LOG_FD - -lt_cl_help="\ -'$as_me' creates a local libtool stub from the current configuration, -for use in further configure time tests before the real libtool is -generated. - -Usage: $[0] [[OPTIONS]] - - -h, --help print this help, then exit - -V, --version print version number, then exit - -q, --quiet do not print progress messages - -d, --debug don't remove temporary files - -Report bugs to ." - -lt_cl_version="\ -m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl -m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) -configured by $[0], generated by m4_PACKAGE_STRING. - -Copyright (C) 2011 Free Software Foundation, Inc. -This config.lt script is free software; the Free Software Foundation -gives unlimited permision to copy, distribute and modify it." - -while test 0 != $[#] -do - case $[1] in - --version | --v* | -V ) - echo "$lt_cl_version"; exit 0 ;; - --help | --h* | -h ) - echo "$lt_cl_help"; exit 0 ;; - --debug | --d* | -d ) - debug=: ;; - --quiet | --q* | --silent | --s* | -q ) - lt_cl_silent=: ;; - - -*) AC_MSG_ERROR([unrecognized option: $[1] -Try '$[0] --help' for more information.]) ;; - - *) AC_MSG_ERROR([unrecognized argument: $[1] -Try '$[0] --help' for more information.]) ;; - esac - shift -done - -if $lt_cl_silent; then - exec AS_MESSAGE_FD>/dev/null -fi -_LTEOF - -cat >>"$CONFIG_LT" <<_LTEOF -_LT_OUTPUT_LIBTOOL_COMMANDS_INIT -_LTEOF - -cat >>"$CONFIG_LT" <<\_LTEOF -AC_MSG_NOTICE([creating $ofile]) -_LT_OUTPUT_LIBTOOL_COMMANDS -AS_EXIT(0) -_LTEOF -chmod +x "$CONFIG_LT" - -# configure is writing to config.log, but config.lt does its own redirection, -# appending to config.log, which fails on DOS, as config.log is still kept -# open by configure. Here we exec the FD to /dev/null, effectively closing -# config.log, so it can be properly (re)opened and appended to by config.lt. -lt_cl_success=: -test yes = "$silent" && - lt_config_lt_args="$lt_config_lt_args --quiet" -exec AS_MESSAGE_LOG_FD>/dev/null -$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false -exec AS_MESSAGE_LOG_FD>>config.log -$lt_cl_success || AS_EXIT(1) -])# LT_OUTPUT - - -# _LT_CONFIG(TAG) -# --------------- -# If TAG is the built-in tag, create an initial libtool script with a -# default configuration from the untagged config vars. Otherwise add code -# to config.status for appending the configuration named by TAG from the -# matching tagged config vars. -m4_defun([_LT_CONFIG], -[m4_require([_LT_FILEUTILS_DEFAULTS])dnl -_LT_CONFIG_SAVE_COMMANDS([ - m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl - m4_if(_LT_TAG, [C], [ - # See if we are running on zsh, and set the options that allow our - # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}"; then - setopt NO_GLOB_SUBST - fi - - cfgfile=${ofile}T - trap "$RM \"$cfgfile\"; exit 1" 1 2 15 - $RM "$cfgfile" - - cat <<_LT_EOF >> "$cfgfile" -#! $SHELL -# Generated automatically by $as_me ($PACKAGE) $VERSION -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: -# NOTE: Changes made to this file will be lost: look at ltmain.sh. - -# Provide generalized library-building support services. -# Written by Gordon Matzigkeit, 1996 - -_LT_COPYING -_LT_LIBTOOL_TAGS - -# Configured defaults for sys_lib_dlsearch_path munging. -: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} - -# ### BEGIN LIBTOOL CONFIG -_LT_LIBTOOL_CONFIG_VARS -_LT_LIBTOOL_TAG_VARS -# ### END LIBTOOL CONFIG - -_LT_EOF - - cat <<'_LT_EOF' >> "$cfgfile" - -# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE - -_LT_PREPARE_MUNGE_PATH_LIST -_LT_PREPARE_CC_BASENAME - -# ### END FUNCTIONS SHARED WITH CONFIGURE - -_LT_EOF - - case $host_os in - aix3*) - cat <<\_LT_EOF >> "$cfgfile" -# AIX sometimes has problems with the GCC collect2 program. For some -# reason, if we set the COLLECT_NAMES environment variable, the problems -# vanish in a puff of smoke. -if test set != "${COLLECT_NAMES+set}"; then - COLLECT_NAMES= - export COLLECT_NAMES -fi -_LT_EOF - ;; - esac - - _LT_PROG_LTMAIN - - # We use sed instead of cat because bash on DJGPP gets confused if - # if finds mixed CR/LF and LF-only lines. Since sed operates in - # text mode, it properly converts lines to CR/LF. This bash problem - # is reportedly fixed, but why not run on old versions too? - sed '$q' "$ltmain" >> "$cfgfile" \ - || (rm -f "$cfgfile"; exit 1) - - mv -f "$cfgfile" "$ofile" || - (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") - chmod +x "$ofile" -], -[cat <<_LT_EOF >> "$ofile" - -dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded -dnl in a comment (ie after a #). -# ### BEGIN LIBTOOL TAG CONFIG: $1 -_LT_LIBTOOL_TAG_VARS(_LT_TAG) -# ### END LIBTOOL TAG CONFIG: $1 -_LT_EOF -])dnl /m4_if -], -[m4_if([$1], [], [ - PACKAGE='$PACKAGE' - VERSION='$VERSION' - RM='$RM' - ofile='$ofile'], []) -])dnl /_LT_CONFIG_SAVE_COMMANDS -])# _LT_CONFIG - - -# LT_SUPPORTED_TAG(TAG) -# --------------------- -# Trace this macro to discover what tags are supported by the libtool -# --tag option, using: -# autoconf --trace 'LT_SUPPORTED_TAG:$1' -AC_DEFUN([LT_SUPPORTED_TAG], []) - - -# C support is built-in for now -m4_define([_LT_LANG_C_enabled], []) -m4_define([_LT_TAGS], []) - - -# LT_LANG(LANG) -# ------------- -# Enable libtool support for the given language if not already enabled. -AC_DEFUN([LT_LANG], -[AC_BEFORE([$0], [LT_OUTPUT])dnl -m4_case([$1], - [C], [_LT_LANG(C)], - [C++], [_LT_LANG(CXX)], - [Go], [_LT_LANG(GO)], - [Java], [_LT_LANG(GCJ)], - [Fortran 77], [_LT_LANG(F77)], - [Fortran], [_LT_LANG(FC)], - [Windows Resource], [_LT_LANG(RC)], - [m4_ifdef([_LT_LANG_]$1[_CONFIG], - [_LT_LANG($1)], - [m4_fatal([$0: unsupported language: "$1"])])])dnl -])# LT_LANG - - -# _LT_LANG(LANGNAME) -# ------------------ -m4_defun([_LT_LANG], -[m4_ifdef([_LT_LANG_]$1[_enabled], [], - [LT_SUPPORTED_TAG([$1])dnl - m4_append([_LT_TAGS], [$1 ])dnl - m4_define([_LT_LANG_]$1[_enabled], [])dnl - _LT_LANG_$1_CONFIG($1)])dnl -])# _LT_LANG - - -m4_ifndef([AC_PROG_GO], [ -############################################################ -# NOTE: This macro has been submitted for inclusion into # -# GNU Autoconf as AC_PROG_GO. When it is available in # -# a released version of Autoconf we should remove this # -# macro and use it instead. # -############################################################ -m4_defun([AC_PROG_GO], -[AC_LANG_PUSH(Go)dnl -AC_ARG_VAR([GOC], [Go compiler command])dnl -AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl -_AC_ARG_VAR_LDFLAGS()dnl -AC_CHECK_TOOL(GOC, gccgo) -if test -z "$GOC"; then - if test -n "$ac_tool_prefix"; then - AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) - fi -fi -if test -z "$GOC"; then - AC_CHECK_PROG(GOC, gccgo, gccgo, false) -fi -])#m4_defun -])#m4_ifndef - - -# _LT_LANG_DEFAULT_CONFIG -# ----------------------- -m4_defun([_LT_LANG_DEFAULT_CONFIG], -[AC_PROVIDE_IFELSE([AC_PROG_CXX], - [LT_LANG(CXX)], - [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) - -AC_PROVIDE_IFELSE([AC_PROG_F77], - [LT_LANG(F77)], - [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) - -AC_PROVIDE_IFELSE([AC_PROG_FC], - [LT_LANG(FC)], - [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) - -dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal -dnl pulling things in needlessly. -AC_PROVIDE_IFELSE([AC_PROG_GCJ], - [LT_LANG(GCJ)], - [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], - [LT_LANG(GCJ)], - [AC_PROVIDE_IFELSE([LT_PROG_GCJ], - [LT_LANG(GCJ)], - [m4_ifdef([AC_PROG_GCJ], - [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) - m4_ifdef([A][M_PROG_GCJ], - [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) - m4_ifdef([LT_PROG_GCJ], - [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) - -AC_PROVIDE_IFELSE([AC_PROG_GO], - [LT_LANG(GO)], - [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) - -AC_PROVIDE_IFELSE([LT_PROG_RC], - [LT_LANG(RC)], - [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) -])# _LT_LANG_DEFAULT_CONFIG - -# Obsolete macros: -AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) -AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) -AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) -AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) -AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_CXX], []) -dnl AC_DEFUN([AC_LIBTOOL_F77], []) -dnl AC_DEFUN([AC_LIBTOOL_FC], []) -dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) -dnl AC_DEFUN([AC_LIBTOOL_RC], []) - - -# _LT_TAG_COMPILER -# ---------------- -m4_defun([_LT_TAG_COMPILER], -[AC_REQUIRE([AC_PROG_CC])dnl - -_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl -_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl -_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl -_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC -])# _LT_TAG_COMPILER - - -# _LT_COMPILER_BOILERPLATE -# ------------------------ -# Check for compiler boilerplate output or warnings with -# the simple compiler test code. -m4_defun([_LT_COMPILER_BOILERPLATE], -[m4_require([_LT_DECL_SED])dnl -ac_outfile=conftest.$ac_objext -echo "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$RM conftest* -])# _LT_COMPILER_BOILERPLATE - - -# _LT_LINKER_BOILERPLATE -# ---------------------- -# Check for linker boilerplate output or warnings with -# the simple link test code. -m4_defun([_LT_LINKER_BOILERPLATE], -[m4_require([_LT_DECL_SED])dnl -ac_outfile=conftest.$ac_objext -echo "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$RM -r conftest* -])# _LT_LINKER_BOILERPLATE - -# _LT_REQUIRED_DARWIN_CHECKS -# ------------------------- -m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ - case $host_os in - rhapsody* | darwin*) - AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) - AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) - AC_CHECK_TOOL([LIPO], [lipo], [:]) - AC_CHECK_TOOL([OTOOL], [otool], [:]) - AC_CHECK_TOOL([OTOOL64], [otool64], [:]) - _LT_DECL([], [DSYMUTIL], [1], - [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) - _LT_DECL([], [NMEDIT], [1], - [Tool to change global to local symbols on Mac OS X]) - _LT_DECL([], [LIPO], [1], - [Tool to manipulate fat objects and archives on Mac OS X]) - _LT_DECL([], [OTOOL], [1], - [ldd/readelf like tool for Mach-O binaries on Mac OS X]) - _LT_DECL([], [OTOOL64], [1], - [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) - - AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], - [lt_cv_apple_cc_single_mod=no - if test -z "$LT_MULTI_MODULE"; then - # By default we will add the -single_module flag. You can override - # by either setting the environment variable LT_MULTI_MODULE - # non-empty at configure time, or by adding -multi_module to the - # link flags. - rm -rf libconftest.dylib* - echo "int foo(void){return 1;}" > conftest.c - echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ --dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD - $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ - -dynamiclib -Wl,-single_module conftest.c 2>conftest.err - _lt_result=$? - # If there is a non-empty error log, and "single_module" - # appears in it, assume the flag caused a linker warning - if test -s conftest.err && $GREP single_module conftest.err; then - cat conftest.err >&AS_MESSAGE_LOG_FD - # Otherwise, if the output was created with a 0 exit code from - # the compiler, it worked. - elif test -f libconftest.dylib && test 0 = "$_lt_result"; then - lt_cv_apple_cc_single_mod=yes - else - cat conftest.err >&AS_MESSAGE_LOG_FD - fi - rm -rf libconftest.dylib* - rm -f conftest.* - fi]) - - AC_CACHE_CHECK([for -exported_symbols_list linker flag], - [lt_cv_ld_exported_symbols_list], - [lt_cv_ld_exported_symbols_list=no - save_LDFLAGS=$LDFLAGS - echo "_main" > conftest.sym - LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" - AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], - [lt_cv_ld_exported_symbols_list=yes], - [lt_cv_ld_exported_symbols_list=no]) - LDFLAGS=$save_LDFLAGS - ]) - - AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], - [lt_cv_ld_force_load=no - cat > conftest.c << _LT_EOF -int forced_loaded() { return 2;} -_LT_EOF - echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD - $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD - echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD - $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD - echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD - $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD - cat > conftest.c << _LT_EOF -int main() { return 0;} -_LT_EOF - echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD - $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err - _lt_result=$? - if test -s conftest.err && $GREP force_load conftest.err; then - cat conftest.err >&AS_MESSAGE_LOG_FD - elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then - lt_cv_ld_force_load=yes - else - cat conftest.err >&AS_MESSAGE_LOG_FD - fi - rm -f conftest.err libconftest.a conftest conftest.c - rm -rf conftest.dSYM - ]) - case $host_os in - rhapsody* | darwin1.[[012]]) - _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; - darwin1.*) - _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; - darwin*) # darwin 5.x on - # if running on 10.5 or later, the deployment target defaults - # to the OS version, if on x86, and 10.4, the deployment - # target defaults to 10.4. Don't you love it? - case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in - 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) - _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; - 10.[[012]][[,.]]*) - _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; - 10.*) - _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; - esac - ;; - esac - if test yes = "$lt_cv_apple_cc_single_mod"; then - _lt_dar_single_mod='$single_module' - fi - if test yes = "$lt_cv_ld_exported_symbols_list"; then - _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' - else - _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' - fi - if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then - _lt_dsymutil='~$DSYMUTIL $lib || :' - else - _lt_dsymutil= - fi - ;; - esac -]) - - -# _LT_DARWIN_LINKER_FEATURES([TAG]) -# --------------------------------- -# Checks for linker and compiler features on darwin -m4_defun([_LT_DARWIN_LINKER_FEATURES], -[ - m4_require([_LT_REQUIRED_DARWIN_CHECKS]) - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_automatic, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - if test yes = "$lt_cv_ld_force_load"; then - _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' - m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], - [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) - else - _LT_TAGVAR(whole_archive_flag_spec, $1)='' - fi - _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined - case $cc_basename in - ifort*|nagfor*) _lt_dar_can_shared=yes ;; - *) _lt_dar_can_shared=$GCC ;; - esac - if test yes = "$_lt_dar_can_shared"; then - output_verbose_link_cmd=func_echo_all - _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" - _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" - _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" - _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" - m4_if([$1], [CXX], -[ if test yes != "$lt_cv_apple_cc_single_mod"; then - _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" - _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" - fi -],[]) - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi -]) - -# _LT_SYS_MODULE_PATH_AIX([TAGNAME]) -# ---------------------------------- -# Links a minimal program and checks the executable -# for the system default hardcoded library path. In most cases, -# this is /usr/lib:/lib, but when the MPI compilers are used -# the location of the communication and MPI libs are included too. -# If we don't find anything, use the default library path according -# to the aix ld manual. -# Store the results from the different compilers for each TAGNAME. -# Allow to override them for all tags through lt_cv_aix_libpath. -m4_defun([_LT_SYS_MODULE_PATH_AIX], -[m4_require([_LT_DECL_SED])dnl -if test set = "${lt_cv_aix_libpath+set}"; then - aix_libpath=$lt_cv_aix_libpath -else - AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], - [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ - lt_aix_libpath_sed='[ - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\([^ ]*\) *$/\1/ - p - } - }]' - _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` - # Check for a 64-bit object if we didn't find anything. - if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then - _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` - fi],[]) - if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then - _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib - fi - ]) - aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) -fi -])# _LT_SYS_MODULE_PATH_AIX - - -# _LT_SHELL_INIT(ARG) -# ------------------- -m4_define([_LT_SHELL_INIT], -[m4_divert_text([M4SH-INIT], [$1 -])])# _LT_SHELL_INIT - - - -# _LT_PROG_ECHO_BACKSLASH -# ----------------------- -# Find how we can fake an echo command that does not interpret backslash. -# In particular, with Autoconf 2.60 or later we add some code to the start -# of the generated configure script that will find a shell with a builtin -# printf (that we can use as an echo command). -m4_defun([_LT_PROG_ECHO_BACKSLASH], -[ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO -ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO - -AC_MSG_CHECKING([how to print strings]) -# Test print first, because it will be a builtin if present. -if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ - test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then - ECHO='print -r --' -elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then - ECHO='printf %s\n' -else - # Use this function as a fallback that always works. - func_fallback_echo () - { - eval 'cat <<_LTECHO_EOF -$[]1 -_LTECHO_EOF' - } - ECHO='func_fallback_echo' -fi - -# func_echo_all arg... -# Invoke $ECHO with all args, space-separated. -func_echo_all () -{ - $ECHO "$*" -} - -case $ECHO in - printf*) AC_MSG_RESULT([printf]) ;; - print*) AC_MSG_RESULT([print -r]) ;; - *) AC_MSG_RESULT([cat]) ;; -esac - -m4_ifdef([_AS_DETECT_SUGGESTED], -[_AS_DETECT_SUGGESTED([ - test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( - ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' - ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO - ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO - PATH=/empty FPATH=/empty; export PATH FPATH - test "X`printf %s $ECHO`" = "X$ECHO" \ - || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) - -_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) -_LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) -])# _LT_PROG_ECHO_BACKSLASH - - -# _LT_WITH_SYSROOT -# ---------------- -AC_DEFUN([_LT_WITH_SYSROOT], -[AC_MSG_CHECKING([for sysroot]) -AC_ARG_WITH([sysroot], -[AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], - [Search for dependent libraries within DIR (or the compiler's sysroot - if not specified).])], -[], [with_sysroot=no]) - -dnl lt_sysroot will always be passed unquoted. We quote it here -dnl in case the user passed a directory name. -lt_sysroot= -case $with_sysroot in #( - yes) - if test yes = "$GCC"; then - lt_sysroot=`$CC --print-sysroot 2>/dev/null` - fi - ;; #( - /*) - lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` - ;; #( - no|'') - ;; #( - *) - AC_MSG_RESULT([$with_sysroot]) - AC_MSG_ERROR([The sysroot must be an absolute path.]) - ;; -esac - - AC_MSG_RESULT([${lt_sysroot:-no}]) -_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl -[dependent libraries, and where our libraries should be installed.])]) - -# _LT_ENABLE_LOCK -# --------------- -m4_defun([_LT_ENABLE_LOCK], -[AC_ARG_ENABLE([libtool-lock], - [AS_HELP_STRING([--disable-libtool-lock], - [avoid locking (might break parallel builds)])]) -test no = "$enable_libtool_lock" || enable_libtool_lock=yes - -# Some flags need to be propagated to the compiler or linker for good -# libtool support. -case $host in -ia64-*-hpux*) - # Find out what ABI is being produced by ac_compile, and set mode - # options accordingly. - echo 'int i;' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.$ac_objext` in - *ELF-32*) - HPUX_IA64_MODE=32 - ;; - *ELF-64*) - HPUX_IA64_MODE=64 - ;; - esac - fi - rm -rf conftest* - ;; -*-*-irix6*) - # Find out what ABI is being produced by ac_compile, and set linker - # options accordingly. - echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - if test yes = "$lt_cv_prog_gnu_ld"; then - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -melf32bsmip" - ;; - *N32*) - LD="${LD-ld} -melf32bmipn32" - ;; - *64-bit*) - LD="${LD-ld} -melf64bmip" - ;; - esac - else - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -32" - ;; - *N32*) - LD="${LD-ld} -n32" - ;; - *64-bit*) - LD="${LD-ld} -64" - ;; - esac - fi - fi - rm -rf conftest* - ;; - -mips64*-*linux*) - # Find out what ABI is being produced by ac_compile, and set linker - # options accordingly. - echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - emul=elf - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - emul="${emul}32" - ;; - *64-bit*) - emul="${emul}64" - ;; - esac - case `/usr/bin/file conftest.$ac_objext` in - *MSB*) - emul="${emul}btsmip" - ;; - *LSB*) - emul="${emul}ltsmip" - ;; - esac - case `/usr/bin/file conftest.$ac_objext` in - *N32*) - emul="${emul}n32" - ;; - esac - LD="${LD-ld} -m $emul" - fi - rm -rf conftest* - ;; - -x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ -s390*-*linux*|s390*-*tpf*|sparc*-*linux*) - # Find out what ABI is being produced by ac_compile, and set linker - # options accordingly. Note that the listed cases only cover the - # situations where additional linker options are needed (such as when - # doing 32-bit compilation for a host where ld defaults to 64-bit, or - # vice versa); the common cases where no linker options are needed do - # not appear in the list. - echo 'int i;' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.o` in - *32-bit*) - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_i386_fbsd" - ;; - x86_64-*linux*) - case `/usr/bin/file conftest.o` in - *x86-64*) - LD="${LD-ld} -m elf32_x86_64" - ;; - *) - LD="${LD-ld} -m elf_i386" - ;; - esac - ;; - powerpc64le-*linux*) - LD="${LD-ld} -m elf32lppclinux" - ;; - powerpc64-*linux*) - LD="${LD-ld} -m elf32ppclinux" - ;; - s390x-*linux*) - LD="${LD-ld} -m elf_s390" - ;; - sparc64-*linux*) - LD="${LD-ld} -m elf32_sparc" - ;; - esac - ;; - *64-bit*) - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_x86_64_fbsd" - ;; - x86_64-*linux*) - LD="${LD-ld} -m elf_x86_64" - ;; - powerpcle-*linux*) - LD="${LD-ld} -m elf64lppc" - ;; - powerpc-*linux*) - LD="${LD-ld} -m elf64ppc" - ;; - s390*-*linux*|s390*-*tpf*) - LD="${LD-ld} -m elf64_s390" - ;; - sparc*-*linux*) - LD="${LD-ld} -m elf64_sparc" - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; - -*-*-sco3.2v5*) - # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS=$CFLAGS - CFLAGS="$CFLAGS -belf" - AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, - [AC_LANG_PUSH(C) - AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) - AC_LANG_POP]) - if test yes != "$lt_cv_cc_needs_belf"; then - # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS=$SAVE_CFLAGS - fi - ;; -*-*solaris*) - # Find out what ABI is being produced by ac_compile, and set linker - # options accordingly. - echo 'int i;' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.o` in - *64-bit*) - case $lt_cv_prog_gnu_ld in - yes*) - case $host in - i?86-*-solaris*|x86_64-*-solaris*) - LD="${LD-ld} -m elf_x86_64" - ;; - sparc*-*-solaris*) - LD="${LD-ld} -m elf64_sparc" - ;; - esac - # GNU ld 2.21 introduced _sol2 emulations. Use them if available. - if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then - LD=${LD-ld}_sol2 - fi - ;; - *) - if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then - LD="${LD-ld} -64" - fi - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; -esac - -need_locks=$enable_libtool_lock -])# _LT_ENABLE_LOCK - - -# _LT_PROG_AR -# ----------- -m4_defun([_LT_PROG_AR], -[AC_CHECK_TOOLS(AR, [ar], false) -: ${AR=ar} -: ${AR_FLAGS=cru} -_LT_DECL([], [AR], [1], [The archiver]) -_LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) - -AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], - [lt_cv_ar_at_file=no - AC_COMPILE_IFELSE([AC_LANG_PROGRAM], - [echo conftest.$ac_objext > conftest.lst - lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' - AC_TRY_EVAL([lt_ar_try]) - if test 0 -eq "$ac_status"; then - # Ensure the archiver fails upon bogus file names. - rm -f conftest.$ac_objext libconftest.a - AC_TRY_EVAL([lt_ar_try]) - if test 0 -ne "$ac_status"; then - lt_cv_ar_at_file=@ - fi - fi - rm -f conftest.* libconftest.a - ]) - ]) - -if test no = "$lt_cv_ar_at_file"; then - archiver_list_spec= -else - archiver_list_spec=$lt_cv_ar_at_file -fi -_LT_DECL([], [archiver_list_spec], [1], - [How to feed a file listing to the archiver]) -])# _LT_PROG_AR - - -# _LT_CMD_OLD_ARCHIVE -# ------------------- -m4_defun([_LT_CMD_OLD_ARCHIVE], -[_LT_PROG_AR - -AC_CHECK_TOOL(STRIP, strip, :) -test -z "$STRIP" && STRIP=: -_LT_DECL([], [STRIP], [1], [A symbol stripping program]) - -AC_CHECK_TOOL(RANLIB, ranlib, :) -test -z "$RANLIB" && RANLIB=: -_LT_DECL([], [RANLIB], [1], - [Commands used to install an old-style archive]) - -# Determine commands to create old-style static archives. -old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' -old_postinstall_cmds='chmod 644 $oldlib' -old_postuninstall_cmds= - -if test -n "$RANLIB"; then - case $host_os in - bitrig* | openbsd*) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" - ;; - *) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" - ;; - esac - old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" -fi - -case $host_os in - darwin*) - lock_old_archive_extraction=yes ;; - *) - lock_old_archive_extraction=no ;; -esac -_LT_DECL([], [old_postinstall_cmds], [2]) -_LT_DECL([], [old_postuninstall_cmds], [2]) -_LT_TAGDECL([], [old_archive_cmds], [2], - [Commands used to build an old-style archive]) -_LT_DECL([], [lock_old_archive_extraction], [0], - [Whether to use a lock for old archive extraction]) -])# _LT_CMD_OLD_ARCHIVE - - -# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, -# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) -# ---------------------------------------------------------------- -# Check whether the given compiler option works -AC_DEFUN([_LT_COMPILER_OPTION], -[m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_DECL_SED])dnl -AC_CACHE_CHECK([$1], [$2], - [$2=no - m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&AS_MESSAGE_LOG_FD - echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - $2=yes - fi - fi - $RM conftest* -]) - -if test yes = "[$]$2"; then - m4_if([$5], , :, [$5]) -else - m4_if([$6], , :, [$6]) -fi -])# _LT_COMPILER_OPTION - -# Old name: -AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) - - -# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, -# [ACTION-SUCCESS], [ACTION-FAILURE]) -# ---------------------------------------------------- -# Check whether the given linker option works -AC_DEFUN([_LT_LINKER_OPTION], -[m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_DECL_SED])dnl -AC_CACHE_CHECK([$1], [$2], - [$2=no - save_LDFLAGS=$LDFLAGS - LDFLAGS="$LDFLAGS $3" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&AS_MESSAGE_LOG_FD - $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - $2=yes - fi - else - $2=yes - fi - fi - $RM -r conftest* - LDFLAGS=$save_LDFLAGS -]) - -if test yes = "[$]$2"; then - m4_if([$4], , :, [$4]) -else - m4_if([$5], , :, [$5]) -fi -])# _LT_LINKER_OPTION - -# Old name: -AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) - - -# LT_CMD_MAX_LEN -#--------------- -AC_DEFUN([LT_CMD_MAX_LEN], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -# find the maximum length of command line arguments -AC_MSG_CHECKING([the maximum length of command line arguments]) -AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl - i=0 - teststring=ABCD - - case $build_os in - msdosdjgpp*) - # On DJGPP, this test can blow up pretty badly due to problems in libc - # (any single argument exceeding 2000 bytes causes a buffer overrun - # during glob expansion). Even if it were fixed, the result of this - # check would be larger than it should be. - lt_cv_sys_max_cmd_len=12288; # 12K is about right - ;; - - gnu*) - # Under GNU Hurd, this test is not required because there is - # no limit to the length of command line arguments. - # Libtool will interpret -1 as no limit whatsoever - lt_cv_sys_max_cmd_len=-1; - ;; - - cygwin* | mingw* | cegcc*) - # On Win9x/ME, this test blows up -- it succeeds, but takes - # about 5 minutes as the teststring grows exponentially. - # Worse, since 9x/ME are not pre-emptively multitasking, - # you end up with a "frozen" computer, even though with patience - # the test eventually succeeds (with a max line length of 256k). - # Instead, let's just punt: use the minimum linelength reported by - # all of the supported platforms: 8192 (on NT/2K/XP). - lt_cv_sys_max_cmd_len=8192; - ;; - - mint*) - # On MiNT this can take a long time and run out of memory. - lt_cv_sys_max_cmd_len=8192; - ;; - - amigaos*) - # On AmigaOS with pdksh, this test takes hours, literally. - # So we just punt and use a minimum line length of 8192. - lt_cv_sys_max_cmd_len=8192; - ;; - - bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) - # This has been around since 386BSD, at least. Likely further. - if test -x /sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` - elif test -x /usr/sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` - else - lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs - fi - # And add a safety zone - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - ;; - - interix*) - # We know the value 262144 and hardcode it with a safety zone (like BSD) - lt_cv_sys_max_cmd_len=196608 - ;; - - os2*) - # The test takes a long time on OS/2. - lt_cv_sys_max_cmd_len=8192 - ;; - - osf*) - # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure - # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not - # nice to cause kernel panics so lets avoid the loop below. - # First set a reasonable default. - lt_cv_sys_max_cmd_len=16384 - # - if test -x /sbin/sysconfig; then - case `/sbin/sysconfig -q proc exec_disable_arg_limit` in - *1*) lt_cv_sys_max_cmd_len=-1 ;; - esac - fi - ;; - sco3.2v5*) - lt_cv_sys_max_cmd_len=102400 - ;; - sysv5* | sco5v6* | sysv4.2uw2*) - kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` - if test -n "$kargmax"; then - lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` - else - lt_cv_sys_max_cmd_len=32768 - fi - ;; - *) - lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` - if test -n "$lt_cv_sys_max_cmd_len" && \ - test undefined != "$lt_cv_sys_max_cmd_len"; then - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - else - # Make teststring a little bigger before we do anything with it. - # a 1K string should be a reasonable start. - for i in 1 2 3 4 5 6 7 8; do - teststring=$teststring$teststring - done - SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} - # If test is not a shell built-in, we'll probably end up computing a - # maximum length that is only half of the actual maximum length, but - # we can't tell. - while { test X`env echo "$teststring$teststring" 2>/dev/null` \ - = "X$teststring$teststring"; } >/dev/null 2>&1 && - test 17 != "$i" # 1/2 MB should be enough - do - i=`expr $i + 1` - teststring=$teststring$teststring - done - # Only check the string length outside the loop. - lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` - teststring= - # Add a significant safety factor because C++ compilers can tack on - # massive amounts of additional arguments before passing them to the - # linker. It appears as though 1/2 is a usable value. - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` - fi - ;; - esac -]) -if test -n "$lt_cv_sys_max_cmd_len"; then - AC_MSG_RESULT($lt_cv_sys_max_cmd_len) -else - AC_MSG_RESULT(none) -fi -max_cmd_len=$lt_cv_sys_max_cmd_len -_LT_DECL([], [max_cmd_len], [0], - [What is the maximum length of a command?]) -])# LT_CMD_MAX_LEN - -# Old name: -AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) - - -# _LT_HEADER_DLFCN -# ---------------- -m4_defun([_LT_HEADER_DLFCN], -[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl -])# _LT_HEADER_DLFCN - - -# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, -# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) -# ---------------------------------------------------------------- -m4_defun([_LT_TRY_DLOPEN_SELF], -[m4_require([_LT_HEADER_DLFCN])dnl -if test yes = "$cross_compiling"; then : - [$4] -else - lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 - lt_status=$lt_dlunknown - cat > conftest.$ac_ext <<_LT_EOF -[#line $LINENO "configure" -#include "confdefs.h" - -#if HAVE_DLFCN_H -#include -#endif - -#include - -#ifdef RTLD_GLOBAL -# define LT_DLGLOBAL RTLD_GLOBAL -#else -# ifdef DL_GLOBAL -# define LT_DLGLOBAL DL_GLOBAL -# else -# define LT_DLGLOBAL 0 -# endif -#endif - -/* We may have to define LT_DLLAZY_OR_NOW in the command line if we - find out it does not work in some platform. */ -#ifndef LT_DLLAZY_OR_NOW -# ifdef RTLD_LAZY -# define LT_DLLAZY_OR_NOW RTLD_LAZY -# else -# ifdef DL_LAZY -# define LT_DLLAZY_OR_NOW DL_LAZY -# else -# ifdef RTLD_NOW -# define LT_DLLAZY_OR_NOW RTLD_NOW -# else -# ifdef DL_NOW -# define LT_DLLAZY_OR_NOW DL_NOW -# else -# define LT_DLLAZY_OR_NOW 0 -# endif -# endif -# endif -# endif -#endif - -/* When -fvisibility=hidden is used, assume the code has been annotated - correspondingly for the symbols needed. */ -#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) -int fnord () __attribute__((visibility("default"))); -#endif - -int fnord () { return 42; } -int main () -{ - void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); - int status = $lt_dlunknown; - - if (self) - { - if (dlsym (self,"fnord")) status = $lt_dlno_uscore; - else - { - if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; - else puts (dlerror ()); - } - /* dlclose (self); */ - } - else - puts (dlerror ()); - - return status; -}] -_LT_EOF - if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then - (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null - lt_status=$? - case x$lt_status in - x$lt_dlno_uscore) $1 ;; - x$lt_dlneed_uscore) $2 ;; - x$lt_dlunknown|x*) $3 ;; - esac - else : - # compilation failed - $3 - fi -fi -rm -fr conftest* -])# _LT_TRY_DLOPEN_SELF - - -# LT_SYS_DLOPEN_SELF -# ------------------ -AC_DEFUN([LT_SYS_DLOPEN_SELF], -[m4_require([_LT_HEADER_DLFCN])dnl -if test yes != "$enable_dlopen"; then - enable_dlopen=unknown - enable_dlopen_self=unknown - enable_dlopen_self_static=unknown -else - lt_cv_dlopen=no - lt_cv_dlopen_libs= - - case $host_os in - beos*) - lt_cv_dlopen=load_add_on - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - ;; - - mingw* | pw32* | cegcc*) - lt_cv_dlopen=LoadLibrary - lt_cv_dlopen_libs= - ;; - - cygwin*) - lt_cv_dlopen=dlopen - lt_cv_dlopen_libs= - ;; - - darwin*) - # if libdl is installed we need to link against it - AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[ - lt_cv_dlopen=dyld - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - ]) - ;; - - tpf*) - # Don't try to run any link tests for TPF. We know it's impossible - # because TPF is a cross-compiler, and we know how we open DSOs. - lt_cv_dlopen=dlopen - lt_cv_dlopen_libs= - lt_cv_dlopen_self=no - ;; - - *) - AC_CHECK_FUNC([shl_load], - [lt_cv_dlopen=shl_load], - [AC_CHECK_LIB([dld], [shl_load], - [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld], - [AC_CHECK_FUNC([dlopen], - [lt_cv_dlopen=dlopen], - [AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl], - [AC_CHECK_LIB([svld], [dlopen], - [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld], - [AC_CHECK_LIB([dld], [dld_link], - [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld]) - ]) - ]) - ]) - ]) - ]) - ;; - esac - - if test no = "$lt_cv_dlopen"; then - enable_dlopen=no - else - enable_dlopen=yes - fi - - case $lt_cv_dlopen in - dlopen) - save_CPPFLAGS=$CPPFLAGS - test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - - save_LDFLAGS=$LDFLAGS - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - - save_LIBS=$LIBS - LIBS="$lt_cv_dlopen_libs $LIBS" - - AC_CACHE_CHECK([whether a program can dlopen itself], - lt_cv_dlopen_self, [dnl - _LT_TRY_DLOPEN_SELF( - lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, - lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) - ]) - - if test yes = "$lt_cv_dlopen_self"; then - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" - AC_CACHE_CHECK([whether a statically linked program can dlopen itself], - lt_cv_dlopen_self_static, [dnl - _LT_TRY_DLOPEN_SELF( - lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, - lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) - ]) - fi - - CPPFLAGS=$save_CPPFLAGS - LDFLAGS=$save_LDFLAGS - LIBS=$save_LIBS - ;; - esac - - case $lt_cv_dlopen_self in - yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; - *) enable_dlopen_self=unknown ;; - esac - - case $lt_cv_dlopen_self_static in - yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; - *) enable_dlopen_self_static=unknown ;; - esac -fi -_LT_DECL([dlopen_support], [enable_dlopen], [0], - [Whether dlopen is supported]) -_LT_DECL([dlopen_self], [enable_dlopen_self], [0], - [Whether dlopen of programs is supported]) -_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], - [Whether dlopen of statically linked programs is supported]) -])# LT_SYS_DLOPEN_SELF - -# Old name: -AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) - - -# _LT_COMPILER_C_O([TAGNAME]) -# --------------------------- -# Check to see if options -c and -o are simultaneously supported by compiler. -# This macro does not hard code the compiler like AC_PROG_CC_C_O. -m4_defun([_LT_COMPILER_C_O], -[m4_require([_LT_DECL_SED])dnl -m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_TAG_COMPILER])dnl -AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], - [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], - [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&AS_MESSAGE_LOG_FD - echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes - fi - fi - chmod u+w . 2>&AS_MESSAGE_LOG_FD - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* -]) -_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], - [Does compiler simultaneously support -c and -o options?]) -])# _LT_COMPILER_C_O - - -# _LT_COMPILER_FILE_LOCKS([TAGNAME]) -# ---------------------------------- -# Check to see if we can do hard links to lock some files if needed -m4_defun([_LT_COMPILER_FILE_LOCKS], -[m4_require([_LT_ENABLE_LOCK])dnl -m4_require([_LT_FILEUTILS_DEFAULTS])dnl -_LT_COMPILER_C_O([$1]) - -hard_links=nottested -if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; then - # do not overwrite the value of need_locks provided by the user - AC_MSG_CHECKING([if we can lock with hard links]) - hard_links=yes - $RM conftest* - ln conftest.a conftest.b 2>/dev/null && hard_links=no - touch conftest.a - ln conftest.a conftest.b 2>&5 || hard_links=no - ln conftest.a conftest.b 2>/dev/null && hard_links=no - AC_MSG_RESULT([$hard_links]) - if test no = "$hard_links"; then - AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe]) - need_locks=warn - fi -else - need_locks=no -fi -_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) -])# _LT_COMPILER_FILE_LOCKS - - -# _LT_CHECK_OBJDIR -# ---------------- -m4_defun([_LT_CHECK_OBJDIR], -[AC_CACHE_CHECK([for objdir], [lt_cv_objdir], -[rm -f .libs 2>/dev/null -mkdir .libs 2>/dev/null -if test -d .libs; then - lt_cv_objdir=.libs -else - # MS-DOS does not allow filenames that begin with a dot. - lt_cv_objdir=_libs -fi -rmdir .libs 2>/dev/null]) -objdir=$lt_cv_objdir -_LT_DECL([], [objdir], [0], - [The name of the directory that contains temporary libtool files])dnl -m4_pattern_allow([LT_OBJDIR])dnl -AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/", - [Define to the sub-directory where libtool stores uninstalled libraries.]) -])# _LT_CHECK_OBJDIR - - -# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) -# -------------------------------------- -# Check hardcoding attributes. -m4_defun([_LT_LINKER_HARDCODE_LIBPATH], -[AC_MSG_CHECKING([how to hardcode library paths into programs]) -_LT_TAGVAR(hardcode_action, $1)= -if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || - test -n "$_LT_TAGVAR(runpath_var, $1)" || - test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then - - # We can hardcode non-existent directories. - if test no != "$_LT_TAGVAR(hardcode_direct, $1)" && - # If the only mechanism to avoid hardcoding is shlibpath_var, we - # have to relink, otherwise we might link with an installed library - # when we should be linking with a yet-to-be-installed one - ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" && - test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then - # Linking always hardcodes the temporary library directory. - _LT_TAGVAR(hardcode_action, $1)=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - _LT_TAGVAR(hardcode_action, $1)=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - _LT_TAGVAR(hardcode_action, $1)=unsupported -fi -AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) - -if test relink = "$_LT_TAGVAR(hardcode_action, $1)" || - test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then - # Fast installation is not supported - enable_fast_install=no -elif test yes = "$shlibpath_overrides_runpath" || - test no = "$enable_shared"; then - # Fast installation is not necessary - enable_fast_install=needless -fi -_LT_TAGDECL([], [hardcode_action], [0], - [How to hardcode a shared library path into an executable]) -])# _LT_LINKER_HARDCODE_LIBPATH - - -# _LT_CMD_STRIPLIB -# ---------------- -m4_defun([_LT_CMD_STRIPLIB], -[m4_require([_LT_DECL_EGREP]) -striplib= -old_striplib= -AC_MSG_CHECKING([whether stripping libraries is possible]) -if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then - test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" - test -z "$striplib" && striplib="$STRIP --strip-unneeded" - AC_MSG_RESULT([yes]) -else -# FIXME - insert some real tests, host_os isn't really good enough - case $host_os in - darwin*) - if test -n "$STRIP"; then - striplib="$STRIP -x" - old_striplib="$STRIP -S" - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - fi - ;; - *) - AC_MSG_RESULT([no]) - ;; - esac -fi -_LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) -_LT_DECL([], [striplib], [1]) -])# _LT_CMD_STRIPLIB - - -# _LT_PREPARE_MUNGE_PATH_LIST -# --------------------------- -# Make sure func_munge_path_list() is defined correctly. -m4_defun([_LT_PREPARE_MUNGE_PATH_LIST], -[[# func_munge_path_list VARIABLE PATH -# ----------------------------------- -# VARIABLE is name of variable containing _space_ separated list of -# directories to be munged by the contents of PATH, which is string -# having a format: -# "DIR[:DIR]:" -# string "DIR[ DIR]" will be prepended to VARIABLE -# ":DIR[:DIR]" -# string "DIR[ DIR]" will be appended to VARIABLE -# "DIRP[:DIRP]::[DIRA:]DIRA" -# string "DIRP[ DIRP]" will be prepended to VARIABLE and string -# "DIRA[ DIRA]" will be appended to VARIABLE -# "DIR[:DIR]" -# VARIABLE will be replaced by "DIR[ DIR]" -func_munge_path_list () -{ - case x@S|@2 in - x) - ;; - *:) - eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\" - ;; - x:*) - eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\" - ;; - *::*) - eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" - eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\" - ;; - *) - eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\" - ;; - esac -} -]])# _LT_PREPARE_PATH_LIST - - -# _LT_SYS_DYNAMIC_LINKER([TAG]) -# ----------------------------- -# PORTME Fill in your ld.so characteristics -m4_defun([_LT_SYS_DYNAMIC_LINKER], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -m4_require([_LT_DECL_EGREP])dnl -m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_DECL_OBJDUMP])dnl -m4_require([_LT_DECL_SED])dnl -m4_require([_LT_CHECK_SHELL_FEATURES])dnl -m4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl -AC_MSG_CHECKING([dynamic linker characteristics]) -m4_if([$1], - [], [ -if test yes = "$GCC"; then - case $host_os in - darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; - *) lt_awk_arg='/^libraries:/' ;; - esac - case $host_os in - mingw* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;; - *) lt_sed_strip_eq='s|=/|/|g' ;; - esac - lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` - case $lt_search_path_spec in - *\;*) - # if the path contains ";" then we assume it to be the separator - # otherwise default to the standard path separator (i.e. ":") - it is - # assumed that no part of a normal pathname contains ";" but that should - # okay in the real world where ";" in dirpaths is itself problematic. - lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` - ;; - *) - lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` - ;; - esac - # Ok, now we have the path, separated by spaces, we can step through it - # and add multilib dir if necessary... - lt_tmp_lt_search_path_spec= - lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` - # ...but if some path component already ends with the multilib dir we assume - # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). - case "$lt_multi_os_dir; $lt_search_path_spec " in - "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) - lt_multi_os_dir= - ;; - esac - for lt_sys_path in $lt_search_path_spec; do - if test -d "$lt_sys_path$lt_multi_os_dir"; then - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" - elif test -n "$lt_multi_os_dir"; then - test -d "$lt_sys_path" && \ - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" - fi - done - lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' -BEGIN {RS = " "; FS = "/|\n";} { - lt_foo = ""; - lt_count = 0; - for (lt_i = NF; lt_i > 0; lt_i--) { - if ($lt_i != "" && $lt_i != ".") { - if ($lt_i == "..") { - lt_count++; - } else { - if (lt_count == 0) { - lt_foo = "/" $lt_i lt_foo; - } else { - lt_count--; - } - } - } - } - if (lt_foo != "") { lt_freq[[lt_foo]]++; } - if (lt_freq[[lt_foo]] == 1) { print lt_foo; } -}'` - # AWK program above erroneously prepends '/' to C:/dos/paths - # for these hosts. - case $host_os in - mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ - $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;; - esac - sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` -else - sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" -fi]) -library_names_spec= -libname_spec='lib$name' -soname_spec= -shrext_cmds=.so -postinstall_cmds= -postuninstall_cmds= -finish_cmds= -finish_eval= -shlibpath_var= -shlibpath_overrides_runpath=unknown -version_type=none -dynamic_linker="$host_os ld.so" -sys_lib_dlsearch_path_spec="/lib /usr/lib" -need_lib_prefix=unknown -hardcode_into_libs=no - -# when you set need_version to no, make sure it does not cause -set_version -# flags to be left without arguments -need_version=unknown - -AC_ARG_VAR([LT_SYS_LIBRARY_PATH], -[User-defined run-time library search path.]) - -case $host_os in -aix3*) - version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$release$shared_ext$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='$libname$release$shared_ext$major' - ;; - -aix[[4-9]]*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - hardcode_into_libs=yes - if test ia64 = "$host_cpu"; then - # AIX 5 supports IA64 - library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' - shlibpath_var=LD_LIBRARY_PATH - else - # With GCC up to 2.95.x, collect2 would create an import file - # for dependence libraries. The import file would start with - # the line '#! .'. This would cause the generated library to - # depend on '.', always an invalid library. This was fixed in - # development snapshots of GCC prior to 3.0. - case $host_os in - aix4 | aix4.[[01]] | aix4.[[01]].*) - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' - echo ' yes ' - echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then - : - else - can_build_shared=no - fi - ;; - esac - # Using Import Files as archive members, it is possible to support - # filename-based versioning of shared library archives on AIX. While - # this would work for both with and without runtime linking, it will - # prevent static linking of such archives. So we do filename-based - # shared library versioning with .so extension only, which is used - # when both runtime linking and shared linking is enabled. - # Unfortunately, runtime linking may impact performance, so we do - # not want this to be the default eventually. Also, we use the - # versioned .so libs for executables only if there is the -brtl - # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. - # To allow for filename-based versioning support, we need to create - # libNAME.so.V as an archive file, containing: - # *) an Import File, referring to the versioned filename of the - # archive as well as the shared archive member, telling the - # bitwidth (32 or 64) of that shared object, and providing the - # list of exported symbols of that shared object, eventually - # decorated with the 'weak' keyword - # *) the shared object with the F_LOADONLY flag set, to really avoid - # it being seen by the linker. - # At run time we better use the real file rather than another symlink, - # but for link time we create the symlink libNAME.so -> libNAME.so.V - - case $with_aix_soname,$aix_use_runtimelinking in - # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct - # soname into executable. Probably we can add versioning support to - # collect2, so additional links can be useful in future. - aix,yes) # traditional libtool - dynamic_linker='AIX unversionable lib.so' - # If using run time linking (on AIX 4.2 or later) use lib.so - # instead of lib.a to let people know that these are not - # typical AIX shared libraries. - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - ;; - aix,no) # traditional AIX only - dynamic_linker='AIX lib.a[(]lib.so.V[)]' - # We preserve .a as extension for shared libraries through AIX4.2 - # and later when we are not doing run time linking. - library_names_spec='$libname$release.a $libname.a' - soname_spec='$libname$release$shared_ext$major' - ;; - svr4,*) # full svr4 only - dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]" - library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' - # We do not specify a path in Import Files, so LIBPATH fires. - shlibpath_overrides_runpath=yes - ;; - *,yes) # both, prefer svr4 - dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]" - library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' - # unpreferred sharedlib libNAME.a needs extra handling - postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' - postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' - # We do not specify a path in Import Files, so LIBPATH fires. - shlibpath_overrides_runpath=yes - ;; - *,no) # both, prefer aix - dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]" - library_names_spec='$libname$release.a $libname.a' - soname_spec='$libname$release$shared_ext$major' - # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling - postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' - postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' - ;; - esac - shlibpath_var=LIBPATH - fi - ;; - -amigaos*) - case $host_cpu in - powerpc) - # Since July 2007 AmigaOS4 officially supports .so libraries. - # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - ;; - m68k) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; - esac - ;; - -beos*) - library_names_spec='$libname$shared_ext' - dynamic_linker="$host_os ld.so" - shlibpath_var=LIBRARY_PATH - ;; - -bsdi[[45]]*) - version_type=linux # correct to gnu/linux during the next big refactor - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; - -cygwin* | mingw* | pw32* | cegcc*) - version_type=windows - shrext_cmds=.dll - need_version=no - need_lib_prefix=no - - case $GCC,$cc_basename in - yes,*) - # gcc - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \$file`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname~ - if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then - eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; - fi' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - shlibpath_overrides_runpath=yes - - case $host_os in - cygwin*) - # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' -m4_if([$1], [],[ - sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) - ;; - mingw* | cegcc*) - # MinGW DLLs use traditional 'lib' prefix - soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' - ;; - pw32*) - # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' - ;; - esac - dynamic_linker='Win32 ld.exe' - ;; - - *,cl*) - # Native MSVC - libname_spec='$name' - soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' - library_names_spec='$libname.dll.lib' - - case $build_os in - mingw*) - sys_lib_search_path_spec= - lt_save_ifs=$IFS - IFS=';' - for lt_path in $LIB - do - IFS=$lt_save_ifs - # Let DOS variable expansion print the short 8.3 style file name. - lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` - sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" - done - IFS=$lt_save_ifs - # Convert to MSYS style. - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` - ;; - cygwin*) - # Convert to unix form, then to dos form, then back to unix form - # but this time dos style (no spaces!) so that the unix form looks - # like /cygdrive/c/PROGRA~1:/cygdr... - sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` - sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` - sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - ;; - *) - sys_lib_search_path_spec=$LIB - if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then - # It is most probably a Windows format PATH. - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - # FIXME: find the short name or the path components, as spaces are - # common. (e.g. "Program Files" -> "PROGRA~1") - ;; - esac - - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \$file`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - shlibpath_overrides_runpath=yes - dynamic_linker='Win32 link.exe' - ;; - - *) - # Assume MSVC wrapper - library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib' - dynamic_linker='Win32 ld.exe' - ;; - esac - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; - -darwin* | rhapsody*) - dynamic_linker="$host_os dyld" - version_type=darwin - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' - soname_spec='$libname$release$major$shared_ext' - shlibpath_overrides_runpath=yes - shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' -m4_if([$1], [],[ - sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' - ;; - -dgux*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -freebsd* | dragonfly*) - # DragonFly does not have aout. When/if they implement a new - # versioning mechanism, adjust this. - if test -x /usr/bin/objformat; then - objformat=`/usr/bin/objformat` - else - case $host_os in - freebsd[[23]].*) objformat=aout ;; - *) objformat=elf ;; - esac - fi - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - need_version=no - need_lib_prefix=no - ;; - freebsd-*) - library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' - need_version=yes - ;; - esac - shlibpath_var=LD_LIBRARY_PATH - case $host_os in - freebsd2.*) - shlibpath_overrides_runpath=yes - ;; - freebsd3.[[01]]* | freebsdelf3.[[01]]*) - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ - freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - *) # from 4.6 on, and DragonFly - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - esac - ;; - -haiku*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - dynamic_linker="$host_os runtime_loader" - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LIBRARY_PATH - shlibpath_overrides_runpath=no - sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' - hardcode_into_libs=yes - ;; - -hpux9* | hpux10* | hpux11*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - version_type=sunos - need_lib_prefix=no - need_version=no - case $host_cpu in - ia64*) - shrext_cmds='.so' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.so" - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - if test 32 = "$HPUX_IA64_MODE"; then - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - sys_lib_dlsearch_path_spec=/usr/lib/hpux32 - else - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - sys_lib_dlsearch_path_spec=/usr/lib/hpux64 - fi - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - ;; - esac - # HP-UX runs *really* slowly unless shared libraries are mode 555, ... - postinstall_cmds='chmod 555 $lib' - # or fails outright, so override atomically: - install_override_mode=555 - ;; - -interix[[3-9]]*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -irix5* | irix6* | nonstopux*) - case $host_os in - nonstopux*) version_type=nonstopux ;; - *) - if test yes = "$lt_cv_prog_gnu_ld"; then - version_type=linux # correct to gnu/linux during the next big refactor - else - version_type=irix - fi ;; - esac - need_lib_prefix=no - need_version=no - soname_spec='$libname$release$shared_ext$major' - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' - case $host_os in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in # libtool.m4 will add one of these switches to LD - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") - libsuff= shlibsuff= libmagic=32-bit;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") - libsuff=32 shlibsuff=N32 libmagic=N32;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") - libsuff=64 shlibsuff=64 libmagic=64-bit;; - *) libsuff= shlibsuff= libmagic=never-match;; - esac - ;; - esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" - sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" - hardcode_into_libs=yes - ;; - -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no - ;; - -linux*android*) - version_type=none # Android doesn't support versioned libraries. - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext' - soname_spec='$libname$release$shared_ext' - finish_cmds= - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - dynamic_linker='Android linker' - # Don't embed -rpath directories since the linker doesn't support them. - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - ;; - -# This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - - # Some binutils ld are patched to set DT_RUNPATH - AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], - [lt_cv_shlibpath_overrides_runpath=no - save_LDFLAGS=$LDFLAGS - save_libdir=$libdir - eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ - LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" - AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], - [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], - [lt_cv_shlibpath_overrides_runpath=yes])]) - LDFLAGS=$save_LDFLAGS - libdir=$save_libdir - ]) - shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath - - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - # Add ABI-specific directories to the system library path. - sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" - - # Ideally, we could use ldconfig to report *all* directores which are - # searched for libraries, however this is still not possible. Aside from not - # being certain /sbin/ldconfig is available, command - # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, - # even though it is searched at run-time. Try to do the best guess by - # appending ld.so.conf contents (and includes) to the search path. - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" - fi - - # We used to test for /lib/ld.so.1 and disable shared libraries on - # powerpc, because MkLinux only supported shared libraries with the - # GNU dynamic linker. Since this was broken with cross compilers, - # most powerpc-linux boxes support dynamic linking these days and - # people can always --disable-shared, the test was removed, and we - # assume the GNU/Linux dynamic linker is in use. - dynamic_linker='GNU/Linux ld.so' - ;; - -netbsd*) - version_type=sunos - need_lib_prefix=no - need_version=no - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - dynamic_linker='NetBSD (a.out) ld.so' - else - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - dynamic_linker='NetBSD ld.elf_so' - fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - -newsos6) - version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -*nto* | *qnx*) - version_type=qnx - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='ldqnx.so' - ;; - -openbsd* | bitrig*) - version_type=sunos - sys_lib_dlsearch_path_spec=/usr/lib - need_lib_prefix=no - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then - need_version=no - else - need_version=yes - fi - library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -os2*) - libname_spec='$name' - version_type=windows - shrext_cmds=.dll - need_version=no - need_lib_prefix=no - # OS/2 can only load a DLL with a base name of 8 characters or less. - soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; - v=$($ECHO $release$versuffix | tr -d .-); - n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); - $ECHO $n$v`$shared_ext' - library_names_spec='${libname}_dll.$libext' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=BEGINLIBPATH - sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - postinstall_cmds='base_file=`basename \$file`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname~ - if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then - eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; - fi' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - ;; - -osf3* | osf4* | osf5*) - version_type=osf - need_lib_prefix=no - need_version=no - soname_spec='$libname$release$shared_ext$major' - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - -rdos*) - dynamic_linker=no - ;; - -solaris*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - # ldd complains unless libraries are executable - postinstall_cmds='chmod +x $lib' - ;; - -sunos4*) - version_type=sunos - library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - if test yes = "$with_gnu_ld"; then - need_lib_prefix=no - fi - need_version=yes - ;; - -sysv4 | sysv4.3*) - version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - case $host_vendor in - sni) - shlibpath_overrides_runpath=no - need_lib_prefix=no - runpath_var=LD_RUN_PATH - ;; - siemens) - need_lib_prefix=no - ;; - motorola) - need_lib_prefix=no - need_version=no - shlibpath_overrides_runpath=no - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' - ;; - esac - ;; - -sysv4*MP*) - if test -d /usr/nec; then - version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' - soname_spec='$libname$shared_ext.$major' - shlibpath_var=LD_LIBRARY_PATH - fi - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=sco - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - if test yes = "$with_gnu_ld"; then - sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - case $host_os in - sco3.2v5*) - sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" - ;; - esac - fi - sys_lib_dlsearch_path_spec='/usr/lib' - ;; - -tpf*) - # TPF is a cross-target only. Preferred cross-host = GNU/Linux. - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -uts4*) - version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -*) - dynamic_linker=no - ;; -esac -AC_MSG_RESULT([$dynamic_linker]) -test no = "$dynamic_linker" && can_build_shared=no - -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test yes = "$GCC"; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -fi - -if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then - sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec -fi - -if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then - sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec -fi - -# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... -configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec - -# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code -func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" - -# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool -configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH - -_LT_DECL([], [variables_saved_for_relink], [1], - [Variables whose values should be saved in libtool wrapper scripts and - restored at link time]) -_LT_DECL([], [need_lib_prefix], [0], - [Do we need the "lib" prefix for modules?]) -_LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) -_LT_DECL([], [version_type], [0], [Library versioning type]) -_LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) -_LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) -_LT_DECL([], [shlibpath_overrides_runpath], [0], - [Is shlibpath searched before the hard-coded library search path?]) -_LT_DECL([], [libname_spec], [1], [Format of library name prefix]) -_LT_DECL([], [library_names_spec], [1], - [[List of archive names. First name is the real one, the rest are links. - The last name is the one that the linker finds with -lNAME]]) -_LT_DECL([], [soname_spec], [1], - [[The coded name of the library, if different from the real name]]) -_LT_DECL([], [install_override_mode], [1], - [Permission mode override for installation of shared libraries]) -_LT_DECL([], [postinstall_cmds], [2], - [Command to use after installation of a shared archive]) -_LT_DECL([], [postuninstall_cmds], [2], - [Command to use after uninstallation of a shared archive]) -_LT_DECL([], [finish_cmds], [2], - [Commands used to finish a libtool library installation in a directory]) -_LT_DECL([], [finish_eval], [1], - [[As "finish_cmds", except a single script fragment to be evaled but - not shown]]) -_LT_DECL([], [hardcode_into_libs], [0], - [Whether we should hardcode library paths into libraries]) -_LT_DECL([], [sys_lib_search_path_spec], [2], - [Compile-time system search path for libraries]) -_LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2], - [Detected run-time system search path for libraries]) -_LT_DECL([], [configure_time_lt_sys_library_path], [2], - [Explicit LT_SYS_LIBRARY_PATH set during ./configure time]) -])# _LT_SYS_DYNAMIC_LINKER - - -# _LT_PATH_TOOL_PREFIX(TOOL) -# -------------------------- -# find a file program that can recognize shared library -AC_DEFUN([_LT_PATH_TOOL_PREFIX], -[m4_require([_LT_DECL_EGREP])dnl -AC_MSG_CHECKING([for $1]) -AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, -[case $MAGIC_CMD in -[[\\/*] | ?:[\\/]*]) - lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. - ;; -*) - lt_save_MAGIC_CMD=$MAGIC_CMD - lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR -dnl $ac_dummy forces splitting on constant user-supplied paths. -dnl POSIX.2 word splitting is done only on the output of word expansions, -dnl not every word. This closes a longstanding sh security hole. - ac_dummy="m4_if([$2], , $PATH, [$2])" - for ac_dir in $ac_dummy; do - IFS=$lt_save_ifs - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$1"; then - lt_cv_path_MAGIC_CMD=$ac_dir/"$1" - if test -n "$file_magic_test_file"; then - case $deplibs_check_method in - "file_magic "*) - file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD=$lt_cv_path_MAGIC_CMD - if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | - $EGREP "$file_magic_regex" > /dev/null; then - : - else - cat <<_LT_EOF 1>&2 - -*** Warning: the command libtool uses to detect shared libraries, -*** $file_magic_cmd, produces output that libtool cannot recognize. -*** The result is that libtool may fail to recognize shared libraries -*** as such. This will affect the creation of libtool libraries that -*** depend on shared libraries, but programs linked with such libtool -*** libraries will work regardless of this problem. Nevertheless, you -*** may want to report the problem to your system manager and/or to -*** bug-libtool@gnu.org - -_LT_EOF - fi ;; - esac - fi - break - fi - done - IFS=$lt_save_ifs - MAGIC_CMD=$lt_save_MAGIC_CMD - ;; -esac]) -MAGIC_CMD=$lt_cv_path_MAGIC_CMD -if test -n "$MAGIC_CMD"; then - AC_MSG_RESULT($MAGIC_CMD) -else - AC_MSG_RESULT(no) -fi -_LT_DECL([], [MAGIC_CMD], [0], - [Used to examine libraries when file_magic_cmd begins with "file"])dnl -])# _LT_PATH_TOOL_PREFIX - -# Old name: -AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) - - -# _LT_PATH_MAGIC -# -------------- -# find a file program that can recognize a shared library -m4_defun([_LT_PATH_MAGIC], -[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) -if test -z "$lt_cv_path_MAGIC_CMD"; then - if test -n "$ac_tool_prefix"; then - _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) - else - MAGIC_CMD=: - fi -fi -])# _LT_PATH_MAGIC - - -# LT_PATH_LD -# ---------- -# find the pathname to the GNU or non-GNU linker -AC_DEFUN([LT_PATH_LD], -[AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_CANONICAL_BUILD])dnl -m4_require([_LT_DECL_SED])dnl -m4_require([_LT_DECL_EGREP])dnl -m4_require([_LT_PROG_ECHO_BACKSLASH])dnl - -AC_ARG_WITH([gnu-ld], - [AS_HELP_STRING([--with-gnu-ld], - [assume the C compiler uses GNU ld @<:@default=no@:>@])], - [test no = "$withval" || with_gnu_ld=yes], - [with_gnu_ld=no])dnl - -ac_prog=ld -if test yes = "$GCC"; then - # Check if gcc -print-prog-name=ld gives a path. - AC_MSG_CHECKING([for ld used by $CC]) - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return, which upsets mingw - ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $ac_prog in - # Accept absolute paths. - [[\\/]]* | ?:[[\\/]]*) - re_direlt='/[[^/]][[^/]]*/\.\./' - # Canonicalize the pathname of ld - ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` - while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do - ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` - done - test -z "$LD" && LD=$ac_prog - ;; - "") - # If it fails, then pretend we aren't using GCC. - ac_prog=ld - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac -elif test yes = "$with_gnu_ld"; then - AC_MSG_CHECKING([for GNU ld]) -else - AC_MSG_CHECKING([for non-GNU ld]) -fi -AC_CACHE_VAL(lt_cv_path_LD, -[if test -z "$LD"; then - lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS=$lt_save_ifs - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD=$ac_dir/$ac_prog - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some variants of GNU ld only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$lt_cv_path_LD" -v 2>&1 &1 conftest.i -cat conftest.i conftest.i >conftest2.i -: ${lt_DD:=$DD} -AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd], -[if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then - cmp -s conftest.i conftest.out \ - && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: -fi]) -rm -f conftest.i conftest2.i conftest.out]) -])# _LT_PATH_DD - - -# _LT_CMD_TRUNCATE -# ---------------- -# find command to truncate a binary pipe -m4_defun([_LT_CMD_TRUNCATE], -[m4_require([_LT_PATH_DD]) -AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin], -[printf 0123456789abcdef0123456789abcdef >conftest.i -cat conftest.i conftest.i >conftest2.i -lt_cv_truncate_bin= -if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then - cmp -s conftest.i conftest.out \ - && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" -fi -rm -f conftest.i conftest2.i conftest.out -test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"]) -_LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1], - [Command to truncate a binary pipe]) -])# _LT_CMD_TRUNCATE - - -# _LT_CHECK_MAGIC_METHOD -# ---------------------- -# how to check for library dependencies -# -- PORTME fill in with the dynamic library characteristics -m4_defun([_LT_CHECK_MAGIC_METHOD], -[m4_require([_LT_DECL_EGREP]) -m4_require([_LT_DECL_OBJDUMP]) -AC_CACHE_CHECK([how to recognize dependent libraries], -lt_cv_deplibs_check_method, -[lt_cv_file_magic_cmd='$MAGIC_CMD' -lt_cv_file_magic_test_file= -lt_cv_deplibs_check_method='unknown' -# Need to set the preceding variable on all platforms that support -# interlibrary dependencies. -# 'none' -- dependencies not supported. -# 'unknown' -- same as none, but documents that we really don't know. -# 'pass_all' -- all dependencies passed with no checks. -# 'test_compile' -- check by making test program. -# 'file_magic [[regex]]' -- check by looking for files in library path -# that responds to the $file_magic_cmd with a given extended regex. -# If you have 'file' or equivalent on your system and you're not sure -# whether 'pass_all' will *always* work, you probably want this one. - -case $host_os in -aix[[4-9]]*) - lt_cv_deplibs_check_method=pass_all - ;; - -beos*) - lt_cv_deplibs_check_method=pass_all - ;; - -bsdi[[45]]*) - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)' - lt_cv_file_magic_cmd='/usr/bin/file -L' - lt_cv_file_magic_test_file=/shlib/libc.so - ;; - -cygwin*) - # func_win32_libid is a shell function defined in ltmain.sh - lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' - lt_cv_file_magic_cmd='func_win32_libid' - ;; - -mingw* | pw32*) - # Base MSYS/MinGW do not provide the 'file' command needed by - # func_win32_libid shell function, so use a weaker test based on 'objdump', - # unless we find 'file', for example because we are cross-compiling. - if ( file / ) >/dev/null 2>&1; then - lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' - lt_cv_file_magic_cmd='func_win32_libid' - else - # Keep this pattern in sync with the one in func_win32_libid. - lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' - lt_cv_file_magic_cmd='$OBJDUMP -f' - fi - ;; - -cegcc*) - # use the weaker test based on 'objdump'. See mingw*. - lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' - lt_cv_file_magic_cmd='$OBJDUMP -f' - ;; - -darwin* | rhapsody*) - lt_cv_deplibs_check_method=pass_all - ;; - -freebsd* | dragonfly*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then - case $host_cpu in - i*86 ) - # Not sure whether the presence of OpenBSD here was a mistake. - # Let's accept both of them until this is cleared up. - lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` - ;; - esac - else - lt_cv_deplibs_check_method=pass_all - fi - ;; - -haiku*) - lt_cv_deplibs_check_method=pass_all - ;; - -hpux10.20* | hpux11*) - lt_cv_file_magic_cmd=/usr/bin/file - case $host_cpu in - ia64*) - lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' - lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so - ;; - hppa*64*) - [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] - lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl - ;; - *) - lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' - lt_cv_file_magic_test_file=/usr/lib/libc.sl - ;; - esac - ;; - -interix[[3-9]]*) - # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' - ;; - -irix5* | irix6* | nonstopux*) - case $LD in - *-32|*"-32 ") libmagic=32-bit;; - *-n32|*"-n32 ") libmagic=N32;; - *-64|*"-64 ") libmagic=64-bit;; - *) libmagic=never-match;; - esac - lt_cv_deplibs_check_method=pass_all - ;; - -# This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - -netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' - fi - ;; - -newos6*) - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=/usr/lib/libnls.so - ;; - -*nto* | *qnx*) - lt_cv_deplibs_check_method=pass_all - ;; - -openbsd* | bitrig*) - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' - fi - ;; - -osf3* | osf4* | osf5*) - lt_cv_deplibs_check_method=pass_all - ;; - -rdos*) - lt_cv_deplibs_check_method=pass_all - ;; - -solaris*) - lt_cv_deplibs_check_method=pass_all - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - lt_cv_deplibs_check_method=pass_all - ;; - -sysv4 | sysv4.3*) - case $host_vendor in - motorola) - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` - ;; - ncr) - lt_cv_deplibs_check_method=pass_all - ;; - sequent) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' - ;; - sni) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" - lt_cv_file_magic_test_file=/lib/libc.so - ;; - siemens) - lt_cv_deplibs_check_method=pass_all - ;; - pc) - lt_cv_deplibs_check_method=pass_all - ;; - esac - ;; - -tpf*) - lt_cv_deplibs_check_method=pass_all - ;; -os2*) - lt_cv_deplibs_check_method=pass_all - ;; -esac -]) - -file_magic_glob= -want_nocaseglob=no -if test "$build" = "$host"; then - case $host_os in - mingw* | pw32*) - if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then - want_nocaseglob=yes - else - file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` - fi - ;; - esac -fi - -file_magic_cmd=$lt_cv_file_magic_cmd -deplibs_check_method=$lt_cv_deplibs_check_method -test -z "$deplibs_check_method" && deplibs_check_method=unknown - -_LT_DECL([], [deplibs_check_method], [1], - [Method to check whether dependent libraries are shared objects]) -_LT_DECL([], [file_magic_cmd], [1], - [Command to use when deplibs_check_method = "file_magic"]) -_LT_DECL([], [file_magic_glob], [1], - [How to find potential files when deplibs_check_method = "file_magic"]) -_LT_DECL([], [want_nocaseglob], [1], - [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) -])# _LT_CHECK_MAGIC_METHOD - - -# LT_PATH_NM -# ---------- -# find the pathname to a BSD- or MS-compatible name lister -AC_DEFUN([LT_PATH_NM], -[AC_REQUIRE([AC_PROG_CC])dnl -AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, -[if test -n "$NM"; then - # Let the user override the test. - lt_cv_path_NM=$NM -else - lt_nm_to_check=${ac_tool_prefix}nm - if test -n "$ac_tool_prefix" && test "$build" = "$host"; then - lt_nm_to_check="$lt_nm_to_check nm" - fi - for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR - for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS=$lt_save_ifs - test -z "$ac_dir" && ac_dir=. - tmp_nm=$ac_dir/$lt_tmp_nm - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then - # Check to see if the nm accepts a BSD-compat flag. - # Adding the 'sed 1q' prevents false positives on HP-UX, which says: - # nm: unknown option "B" ignored - # Tru64's nm complains that /dev/null is an invalid object file - # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty - case $build_os in - mingw*) lt_bad_file=conftest.nm/nofile ;; - *) lt_bad_file=/dev/null ;; - esac - case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in - *$lt_bad_file* | *'Invalid file or object type'*) - lt_cv_path_NM="$tmp_nm -B" - break 2 - ;; - *) - case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in - */dev/null*) - lt_cv_path_NM="$tmp_nm -p" - break 2 - ;; - *) - lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but - continue # so that we can try to find one that supports BSD flags - ;; - esac - ;; - esac - fi - done - IFS=$lt_save_ifs - done - : ${lt_cv_path_NM=no} -fi]) -if test no != "$lt_cv_path_NM"; then - NM=$lt_cv_path_NM -else - # Didn't find any BSD compatible name lister, look for dumpbin. - if test -n "$DUMPBIN"; then : - # Let the user override the test. - else - AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) - case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in - *COFF*) - DUMPBIN="$DUMPBIN -symbols -headers" - ;; - *) - DUMPBIN=: - ;; - esac - fi - AC_SUBST([DUMPBIN]) - if test : != "$DUMPBIN"; then - NM=$DUMPBIN - fi -fi -test -z "$NM" && NM=nm -AC_SUBST([NM]) -_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl - -AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], - [lt_cv_nm_interface="BSD nm" - echo "int some_variable = 0;" > conftest.$ac_ext - (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) - (eval "$ac_compile" 2>conftest.err) - cat conftest.err >&AS_MESSAGE_LOG_FD - (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) - (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) - cat conftest.err >&AS_MESSAGE_LOG_FD - (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) - cat conftest.out >&AS_MESSAGE_LOG_FD - if $GREP 'External.*some_variable' conftest.out > /dev/null; then - lt_cv_nm_interface="MS dumpbin" - fi - rm -f conftest*]) -])# LT_PATH_NM - -# Old names: -AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) -AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AM_PROG_NM], []) -dnl AC_DEFUN([AC_PROG_NM], []) - -# _LT_CHECK_SHAREDLIB_FROM_LINKLIB -# -------------------------------- -# how to determine the name of the shared library -# associated with a specific link library. -# -- PORTME fill in with the dynamic library characteristics -m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], -[m4_require([_LT_DECL_EGREP]) -m4_require([_LT_DECL_OBJDUMP]) -m4_require([_LT_DECL_DLLTOOL]) -AC_CACHE_CHECK([how to associate runtime and link libraries], -lt_cv_sharedlib_from_linklib_cmd, -[lt_cv_sharedlib_from_linklib_cmd='unknown' - -case $host_os in -cygwin* | mingw* | pw32* | cegcc*) - # two different shell functions defined in ltmain.sh; - # decide which one to use based on capabilities of $DLLTOOL - case `$DLLTOOL --help 2>&1` in - *--identify-strict*) - lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib - ;; - *) - lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback - ;; - esac - ;; -*) - # fallback: assume linklib IS sharedlib - lt_cv_sharedlib_from_linklib_cmd=$ECHO - ;; -esac -]) -sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd -test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO - -_LT_DECL([], [sharedlib_from_linklib_cmd], [1], - [Command to associate shared and link libraries]) -])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB - - -# _LT_PATH_MANIFEST_TOOL -# ---------------------- -# locate the manifest tool -m4_defun([_LT_PATH_MANIFEST_TOOL], -[AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) -test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt -AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], - [lt_cv_path_mainfest_tool=no - echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD - $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out - cat conftest.err >&AS_MESSAGE_LOG_FD - if $GREP 'Manifest Tool' conftest.out > /dev/null; then - lt_cv_path_mainfest_tool=yes - fi - rm -f conftest*]) -if test yes != "$lt_cv_path_mainfest_tool"; then - MANIFEST_TOOL=: -fi -_LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl -])# _LT_PATH_MANIFEST_TOOL - - -# _LT_DLL_DEF_P([FILE]) -# --------------------- -# True iff FILE is a Windows DLL '.def' file. -# Keep in sync with func_dll_def_p in the libtool script -AC_DEFUN([_LT_DLL_DEF_P], -[dnl - test DEF = "`$SED -n dnl - -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace - -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments - -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl - -e q dnl Only consider the first "real" line - $1`" dnl -])# _LT_DLL_DEF_P - - -# LT_LIB_M -# -------- -# check for math library -AC_DEFUN([LT_LIB_M], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -LIBM= -case $host in -*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) - # These system don't have libm, or don't need it - ;; -*-ncr-sysv4.3*) - AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw) - AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") - ;; -*) - AC_CHECK_LIB(m, cos, LIBM=-lm) - ;; -esac -AC_SUBST([LIBM]) -])# LT_LIB_M - -# Old name: -AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_CHECK_LIBM], []) - - -# _LT_COMPILER_NO_RTTI([TAGNAME]) -# ------------------------------- -m4_defun([_LT_COMPILER_NO_RTTI], -[m4_require([_LT_TAG_COMPILER])dnl - -_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= - -if test yes = "$GCC"; then - case $cc_basename in - nvcc*) - _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; - *) - _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; - esac - - _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], - lt_cv_prog_compiler_rtti_exceptions, - [-fno-rtti -fno-exceptions], [], - [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) -fi -_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], - [Compiler flag to turn off builtin functions]) -])# _LT_COMPILER_NO_RTTI - - -# _LT_CMD_GLOBAL_SYMBOLS -# ---------------------- -m4_defun([_LT_CMD_GLOBAL_SYMBOLS], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([AC_PROG_AWK])dnl -AC_REQUIRE([LT_PATH_NM])dnl -AC_REQUIRE([LT_PATH_LD])dnl -m4_require([_LT_DECL_SED])dnl -m4_require([_LT_DECL_EGREP])dnl -m4_require([_LT_TAG_COMPILER])dnl - -# Check for command to grab the raw symbol name followed by C symbol from nm. -AC_MSG_CHECKING([command to parse $NM output from $compiler object]) -AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], -[ -# These are sane defaults that work on at least a few old systems. -# [They come from Ultrix. What could be older than Ultrix?!! ;)] - -# Character class describing NM global symbol codes. -symcode='[[BCDEGRST]]' - -# Regexp to match symbols that can be accessed directly from C. -sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' - -# Define system-specific variables. -case $host_os in -aix*) - symcode='[[BCDT]]' - ;; -cygwin* | mingw* | pw32* | cegcc*) - symcode='[[ABCDGISTW]]' - ;; -hpux*) - if test ia64 = "$host_cpu"; then - symcode='[[ABCDEGRST]]' - fi - ;; -irix* | nonstopux*) - symcode='[[BCDEGRST]]' - ;; -osf*) - symcode='[[BCDEGQRST]]' - ;; -solaris*) - symcode='[[BDRT]]' - ;; -sco3.2v5*) - symcode='[[DT]]' - ;; -sysv4.2uw2*) - symcode='[[DT]]' - ;; -sysv5* | sco5v6* | unixware* | OpenUNIX*) - symcode='[[ABDT]]' - ;; -sysv4) - symcode='[[DFNSTU]]' - ;; -esac - -# If we're using GNU nm, then use its standard symbol codes. -case `$NM -V 2>&1` in -*GNU* | *'with BFD'*) - symcode='[[ABCDGIRSTW]]' ;; -esac - -if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Gets list of data symbols to import. - lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" - # Adjust the below global symbol transforms to fixup imported variables. - lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" - lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" - lt_c_name_lib_hook="\ - -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ - -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" -else - # Disable hooks by default. - lt_cv_sys_global_symbol_to_import= - lt_cdecl_hook= - lt_c_name_hook= - lt_c_name_lib_hook= -fi - -# Transform an extracted symbol line into a proper C declaration. -# Some systems (esp. on ia64) link data and code symbols differently, -# so use this general approach. -lt_cv_sys_global_symbol_to_cdecl="sed -n"\ -$lt_cdecl_hook\ -" -e 's/^T .* \(.*\)$/extern int \1();/p'"\ -" -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" - -# Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ -$lt_c_name_hook\ -" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ -" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" - -# Transform an extracted symbol line into symbol name with lib prefix and -# symbol address. -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ -$lt_c_name_lib_hook\ -" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ -" -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ -" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" - -# Handle CRLF in mingw tool chain -opt_cr= -case $build_os in -mingw*) - opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp - ;; -esac - -# Try without a prefix underscore, then with it. -for ac_symprfx in "" "_"; do - - # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. - symxfrm="\\1 $ac_symprfx\\2 \\2" - - # Write the raw and C identifiers. - if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Fake it for dumpbin and say T for any non-static function, - # D for any global variable and I for any imported variable. - # Also find C++ and __fastcall symbols from MSVC++, - # which start with @ or ?. - lt_cv_sys_global_symbol_pipe="$AWK ['"\ -" {last_section=section; section=\$ 3};"\ -" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ -" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ -" /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ -" /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ -" /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ -" \$ 0!~/External *\|/{next};"\ -" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ -" {if(hide[section]) next};"\ -" {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ -" {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ -" s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ -" s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ -" ' prfx=^$ac_symprfx]" - else - lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" - fi - lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" - - # Check to see that the pipe works correctly. - pipe_works=no - - rm -f conftest* - cat > conftest.$ac_ext <<_LT_EOF -#ifdef __cplusplus -extern "C" { -#endif -char nm_test_var; -void nm_test_func(void); -void nm_test_func(void){} -#ifdef __cplusplus -} -#endif -int main(){nm_test_var='a';nm_test_func();return(0);} -_LT_EOF - - if AC_TRY_EVAL(ac_compile); then - # Now try to grab the symbols. - nlist=conftest.nm - if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then - # Try sorting and uniquifying the output. - if sort "$nlist" | uniq > "$nlist"T; then - mv -f "$nlist"T "$nlist" - else - rm -f "$nlist"T - fi - - # Make sure that we snagged all the symbols we need. - if $GREP ' nm_test_var$' "$nlist" >/dev/null; then - if $GREP ' nm_test_func$' "$nlist" >/dev/null; then - cat <<_LT_EOF > conftest.$ac_ext -/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE -/* DATA imports from DLLs on WIN32 can't be const, because runtime - relocations are performed -- see ld's documentation on pseudo-relocs. */ -# define LT@&t@_DLSYM_CONST -#elif defined __osf__ -/* This system does not cope well with relocations in const data. */ -# define LT@&t@_DLSYM_CONST -#else -# define LT@&t@_DLSYM_CONST const -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -_LT_EOF - # Now generate the symbol file. - eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' - - cat <<_LT_EOF >> conftest.$ac_ext - -/* The mapping between symbol names and symbols. */ -LT@&t@_DLSYM_CONST struct { - const char *name; - void *address; -} -lt__PROGRAM__LTX_preloaded_symbols[[]] = -{ - { "@PROGRAM@", (void *) 0 }, -_LT_EOF - $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext - cat <<\_LT_EOF >> conftest.$ac_ext - {0, (void *) 0} -}; - -/* This works around a problem in FreeBSD linker */ -#ifdef FREEBSD_WORKAROUND -static const void *lt_preloaded_setup() { - return lt__PROGRAM__LTX_preloaded_symbols; -} -#endif - -#ifdef __cplusplus -} -#endif -_LT_EOF - # Now try linking the two files. - mv conftest.$ac_objext conftstm.$ac_objext - lt_globsym_save_LIBS=$LIBS - lt_globsym_save_CFLAGS=$CFLAGS - LIBS=conftstm.$ac_objext - CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" - if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then - pipe_works=yes - fi - LIBS=$lt_globsym_save_LIBS - CFLAGS=$lt_globsym_save_CFLAGS - else - echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD - fi - else - echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD - fi - else - echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD - fi - else - echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD - cat conftest.$ac_ext >&5 - fi - rm -rf conftest* conftst* - - # Do not use the global_symbol_pipe unless it works. - if test yes = "$pipe_works"; then - break - else - lt_cv_sys_global_symbol_pipe= - fi -done -]) -if test -z "$lt_cv_sys_global_symbol_pipe"; then - lt_cv_sys_global_symbol_to_cdecl= -fi -if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then - AC_MSG_RESULT(failed) -else - AC_MSG_RESULT(ok) -fi - -# Response file support. -if test "$lt_cv_nm_interface" = "MS dumpbin"; then - nm_file_list_spec='@' -elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then - nm_file_list_spec='@' -fi - -_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], - [Take the output of nm and produce a listing of raw symbols and C names]) -_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], - [Transform the output of nm in a proper C declaration]) -_LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1], - [Transform the output of nm into a list of symbols to manually relocate]) -_LT_DECL([global_symbol_to_c_name_address], - [lt_cv_sys_global_symbol_to_c_name_address], [1], - [Transform the output of nm in a C name address pair]) -_LT_DECL([global_symbol_to_c_name_address_lib_prefix], - [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], - [Transform the output of nm in a C name address pair when lib prefix is needed]) -_LT_DECL([nm_interface], [lt_cv_nm_interface], [1], - [The name lister interface]) -_LT_DECL([], [nm_file_list_spec], [1], - [Specify filename containing input files for $NM]) -]) # _LT_CMD_GLOBAL_SYMBOLS - - -# _LT_COMPILER_PIC([TAGNAME]) -# --------------------------- -m4_defun([_LT_COMPILER_PIC], -[m4_require([_LT_TAG_COMPILER])dnl -_LT_TAGVAR(lt_prog_compiler_wl, $1)= -_LT_TAGVAR(lt_prog_compiler_pic, $1)= -_LT_TAGVAR(lt_prog_compiler_static, $1)= - -m4_if([$1], [CXX], [ - # C++ specific cases for pic, static, wl, etc. - if test yes = "$GXX"; then - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test ia64 = "$host_cpu"; then - # AIX 5 now supports IA64 processor - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - m68k) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the '-m68020' flag to GCC prevents building anything better, - # like '-m68040'. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' - ;; - esac - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - mingw* | cygwin* | os2* | pw32* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - m4_if([$1], [GCJ], [], - [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - case $host_os in - os2*) - _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' - ;; - esac - ;; - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' - ;; - *djgpp*) - # DJGPP does not support shared libraries at all - _LT_TAGVAR(lt_prog_compiler_pic, $1)= - ;; - haiku*) - # PIC is the default for Haiku. - # The "-static" flag exists, but is broken. - _LT_TAGVAR(lt_prog_compiler_static, $1)= - ;; - interix[[3-9]]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - sysv4*MP*) - if test -d /usr/nec; then - _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic - fi - ;; - hpux*) - # PIC is the default for 64-bit PA HP-UX, but not for 32-bit - # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag - # sets the default TLS model and affects inlining. - case $host_cpu in - hppa*64*) - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - ;; - *qnx* | *nto*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - else - case $host_os in - aix[[4-9]]*) - # All AIX code is PIC. - if test ia64 = "$host_cpu"; then - # AIX 5 now supports IA64 processor - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - else - _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' - fi - ;; - chorus*) - case $cc_basename in - cxch68*) - # Green Hills C++ Compiler - # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" - ;; - esac - ;; - mingw* | cygwin* | os2* | pw32* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - m4_if([$1], [GCJ], [], - [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - ;; - dgux*) - case $cc_basename in - ec++*) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - ;; - ghcx*) - # Green Hills C++ Compiler - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - *) - ;; - esac - ;; - freebsd* | dragonfly*) - # FreeBSD uses GNU C++ - ;; - hpux9* | hpux10* | hpux11*) - case $cc_basename in - CC*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' - if test ia64 != "$host_cpu"; then - _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - fi - ;; - aCC*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - ;; - esac - ;; - *) - ;; - esac - ;; - interix*) - # This is c89, which is MS Visual C++ (no shared libs) - # Anyone wants to do a port? - ;; - irix5* | irix6* | nonstopux*) - case $cc_basename in - CC*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - # CC pic flag -KPIC is the default. - ;; - *) - ;; - esac - ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) - case $cc_basename in - KCC*) - # KAI C++ Compiler - _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - ecpc* ) - # old Intel C++ for x86_64, which still supported -KPIC. - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - icpc* ) - # Intel C++, used to be incompatible with GCC. - # ICC 10 doesn't accept -KPIC any more. - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - pgCC* | pgcpp*) - # Portland Group C++ compiler - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - cxx*) - # Compaq C++ - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - _LT_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) - # IBM XL 8.0, 9.0 on PPC and BlueGene - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - ;; - esac - ;; - esac - ;; - lynxos*) - ;; - m88k*) - ;; - mvs*) - case $cc_basename in - cxx*) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' - ;; - *) - ;; - esac - ;; - netbsd*) - ;; - *qnx* | *nto*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' - ;; - osf3* | osf4* | osf5*) - case $cc_basename in - KCC*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' - ;; - RCC*) - # Rational C++ 2.4.1 - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - cxx*) - # Digital/Compaq C++ - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - _LT_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - *) - ;; - esac - ;; - psos*) - ;; - solaris*) - case $cc_basename in - CC* | sunCC*) - # Sun C++ 4.2, 5.x and Centerline C++ - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - ;; - gcx*) - # Green Hills C++ Compiler - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - ;; - *) - ;; - esac - ;; - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - lcc*) - # Lucid - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - *) - ;; - esac - ;; - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - case $cc_basename in - CC*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - esac - ;; - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - ;; - *) - ;; - esac - ;; - vxworks*) - ;; - *) - _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - esac - fi -], -[ - if test yes = "$GCC"; then - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test ia64 = "$host_cpu"; then - # AIX 5 now supports IA64 processor - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - m68k) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the '-m68020' flag to GCC prevents building anything better, - # like '-m68040'. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' - ;; - esac - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - - mingw* | cygwin* | pw32* | os2* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - m4_if([$1], [GCJ], [], - [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - case $host_os in - os2*) - _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' - ;; - esac - ;; - - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' - ;; - - haiku*) - # PIC is the default for Haiku. - # The "-static" flag exists, but is broken. - _LT_TAGVAR(lt_prog_compiler_static, $1)= - ;; - - hpux*) - # PIC is the default for 64-bit PA HP-UX, but not for 32-bit - # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag - # sets the default TLS model and affects inlining. - case $host_cpu in - hppa*64*) - # +Z the default - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - ;; - - interix[[3-9]]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - - msdosdjgpp*) - # Just because we use GCC doesn't mean we suddenly get shared libraries - # on systems that don't support them. - _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - enable_shared=no - ;; - - *nto* | *qnx*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic - fi - ;; - - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - - case $cc_basename in - nvcc*) # Cuda Compiler Driver 2.2 - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' - if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then - _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" - fi - ;; - esac - else - # PORTME Check for flag to pass linker flags through the system compiler. - case $host_os in - aix*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - if test ia64 = "$host_cpu"; then - # AIX 5 now supports IA64 processor - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - else - _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' - fi - ;; - - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' - case $cc_basename in - nagfor*) - # NAG Fortran compiler - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - esac - ;; - - mingw* | cygwin* | pw32* | os2* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - m4_if([$1], [GCJ], [], - [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - case $host_os in - os2*) - _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' - ;; - esac - ;; - - hpux9* | hpux10* | hpux11*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - ;; - esac - # Is there a better lt_prog_compiler_static that works with the bundled CC? - _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' - ;; - - irix5* | irix6* | nonstopux*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # PIC (with -KPIC) is the default. - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) - case $cc_basename in - # old Intel for x86_64, which still supported -KPIC. - ecc*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - # icc used to be incompatible with GCC. - # ICC 10 doesn't accept -KPIC any more. - icc* | ifort*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - # Lahey Fortran 8.1. - lf95*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' - _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' - ;; - nagfor*) - # NAG Fortran compiler - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - tcc*) - # Fabrice Bellard et al's Tiny C Compiler - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) - # Portland Group compilers (*not* the Pentium gcc compiler, - # which looks to be a dead project) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - ccc*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # All Alpha code is PIC. - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - xl* | bgxl* | bgf* | mpixl*) - # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) - # Sun Fortran 8.3 passes all unrecognized flags to the linker - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_TAGVAR(lt_prog_compiler_wl, $1)='' - ;; - *Sun\ F* | *Sun*Fortran*) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - ;; - *Sun\ C*) - # Sun C 5.9 - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - ;; - *Intel*\ [[CF]]*Compiler*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - *Portland\ Group*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - esac - ;; - esac - ;; - - newsos6) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - *nto* | *qnx*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' - ;; - - osf3* | osf4* | osf5*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # All OSF/1 code is PIC. - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - rdos*) - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - solaris*) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - case $cc_basename in - f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; - *) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; - esac - ;; - - sunos4*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - sysv4 | sysv4.2uw2* | sysv4.3*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - ;; - - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - unicos*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - - uts4*) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - *) - _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - esac - fi -]) -case $host_os in - # For platforms that do not support PIC, -DPIC is meaningless: - *djgpp*) - _LT_TAGVAR(lt_prog_compiler_pic, $1)= - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" - ;; -esac - -AC_CACHE_CHECK([for $compiler option to produce PIC], - [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], - [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) -_LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then - _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], - [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], - [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], - [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in - "" | " "*) ;; - *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; - esac], - [_LT_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) -fi -_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], - [Additional compiler flags for building library objects]) - -_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], - [How to pass a linker flag through the compiler]) -# -# Check to make sure the static flag actually works. -# -wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" -_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], - _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), - $lt_tmp_static_flag, - [], - [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) -_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], - [Compiler flag to prevent dynamic linking]) -])# _LT_COMPILER_PIC - - -# _LT_LINKER_SHLIBS([TAGNAME]) -# ---------------------------- -# See if the linker supports building shared libraries. -m4_defun([_LT_LINKER_SHLIBS], -[AC_REQUIRE([LT_PATH_LD])dnl -AC_REQUIRE([LT_PATH_NM])dnl -m4_require([_LT_PATH_MANIFEST_TOOL])dnl -m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_DECL_EGREP])dnl -m4_require([_LT_DECL_SED])dnl -m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl -m4_require([_LT_TAG_COMPILER])dnl -AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) -m4_if([$1], [CXX], [ - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] - case $host_os in - aix[[4-9]]*) - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to GNU nm, but means don't demangle to AIX nm. - # Without the "-l" option, or with the "-B" option, AIX nm treats - # weak defined symbols like other global defined symbols, whereas - # GNU nm marks them as "W". - # While the 'weak' keyword is ignored in the Export File, we need - # it in the Import File for the 'aix-soname' feature, so we have - # to replace the "-B" option with "-P" for AIX nm. - if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' - else - _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' - fi - ;; - pw32*) - _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds - ;; - cygwin* | mingw* | cegcc*) - case $cc_basename in - cl*) - _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' - ;; - *) - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' - _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] - ;; - esac - ;; - *) - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - ;; - esac -], [ - runpath_var= - _LT_TAGVAR(allow_undefined_flag, $1)= - _LT_TAGVAR(always_export_symbols, $1)=no - _LT_TAGVAR(archive_cmds, $1)= - _LT_TAGVAR(archive_expsym_cmds, $1)= - _LT_TAGVAR(compiler_needs_object, $1)=no - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no - _LT_TAGVAR(export_dynamic_flag_spec, $1)= - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - _LT_TAGVAR(hardcode_automatic, $1)=no - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_direct_absolute, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_TAGVAR(hardcode_libdir_separator, $1)= - _LT_TAGVAR(hardcode_minus_L, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_TAGVAR(inherit_rpath, $1)=no - _LT_TAGVAR(link_all_deplibs, $1)=unknown - _LT_TAGVAR(module_cmds, $1)= - _LT_TAGVAR(module_expsym_cmds, $1)= - _LT_TAGVAR(old_archive_from_new_cmds, $1)= - _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= - _LT_TAGVAR(thread_safe_flag_spec, $1)= - _LT_TAGVAR(whole_archive_flag_spec, $1)= - # include_expsyms should be a list of space-separated symbols to be *always* - # included in the symbol list - _LT_TAGVAR(include_expsyms, $1)= - # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ' (' and ')$', so one must not match beginning or - # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', - # as well as any symbol that contains 'd'. - _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] - # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out - # platforms (ab)use it in PIC code, but their linkers get confused if - # the symbol is explicitly referenced. Since portable code cannot - # rely on this symbol name, it's probably fine to never include it in - # preloaded symbol tables. - # Exclude shared library initialization/finalization symbols. -dnl Note also adjust exclude_expsyms for C++ above. - extract_expsyms_cmds= - - case $host_os in - cygwin* | mingw* | pw32* | cegcc*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test yes != "$GCC"; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd* | bitrig*) - with_gnu_ld=no - ;; - esac - - _LT_TAGVAR(ld_shlibs, $1)=yes - - # On some targets, GNU ld is compatible enough with the native linker - # that we're better off using the native interface for both. - lt_use_gnu_ld_interface=no - if test yes = "$with_gnu_ld"; then - case $host_os in - aix*) - # The AIX port of GNU ld has always aspired to compatibility - # with the native linker. However, as the warning in the GNU ld - # block says, versions before 2.19.5* couldn't really create working - # shared libraries, regardless of the interface used. - case `$LD -v 2>&1` in - *\ \(GNU\ Binutils\)\ 2.19.5*) ;; - *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; - *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; - *) - lt_use_gnu_ld_interface=yes - ;; - esac - ;; - *) - lt_use_gnu_ld_interface=yes - ;; - esac - fi - - if test yes = "$lt_use_gnu_ld_interface"; then - # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='$wl' - - # Set some defaults for GNU ld with shared library support. These - # are reset later if shared libraries are not supported. Putting them - # here allows them to be overridden if necessary. - runpath_var=LD_RUN_PATH - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then - _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' - else - _LT_TAGVAR(whole_archive_flag_spec, $1)= - fi - supports_anon_versioning=no - case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in - *GNU\ gold*) supports_anon_versioning=yes ;; - *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - - # See if GNU ld supports shared libraries. - case $host_os in - aix[[3-9]]*) - # On AIX/PPC, the GNU linker is very broken - if test ia64 != "$host_cpu"; then - _LT_TAGVAR(ld_shlibs, $1)=no - cat <<_LT_EOF 1>&2 - -*** Warning: the GNU linker, at least up to release 2.19, is reported -*** to be unable to reliably create shared libraries on AIX. -*** Therefore, libtool is disabling shared libraries support. If you -*** really care for shared libraries, you may want to install binutils -*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. -*** You will then need to restart the configuration process. - -_LT_EOF - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='' - ;; - m68k) - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_minus_L, $1)=yes - ;; - esac - ;; - - beos*) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, - # as there is no search path for DLLs. - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(always_export_symbols, $1)=no - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' - _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] - - if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file, use it as - # is; otherwise, prepend EXPORTS... - _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - haiku*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(link_all_deplibs, $1)=yes - ;; - - os2*) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - shrext_cmds=.dll - _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - prefix_cmds="$SED"~ - if test EXPORTS = "`$SED 1q $export_symbols`"; then - prefix_cmds="$prefix_cmds -e 1d"; - fi~ - prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ - cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - ;; - - interix[[3-9]]*) - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - - gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) - tmp_diet=no - if test linux-dietlibc = "$host_os"; then - case $cc_basename in - diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) - esac - fi - if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ - && test no = "$tmp_diet" - then - tmp_addflag=' $pic_flag' - tmp_sharedflag='-shared' - case $cc_basename,$host_cpu in - pgcc*) # Portland Group C compiler - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' - tmp_addflag=' $pic_flag' - ;; - pgf77* | pgf90* | pgf95* | pgfortran*) - # Portland Group f77 and f90 compilers - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' - tmp_addflag=' $pic_flag -Mnomain' ;; - ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 - tmp_addflag=' -i_dynamic' ;; - efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 - tmp_addflag=' -i_dynamic -nofor_main' ;; - ifc* | ifort*) # Intel Fortran compiler - tmp_addflag=' -nofor_main' ;; - lf95*) # Lahey Fortran 8.1 - _LT_TAGVAR(whole_archive_flag_spec, $1)= - tmp_sharedflag='--shared' ;; - nagfor*) # NAGFOR 5.3 - tmp_sharedflag='-Wl,-shared' ;; - xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) - tmp_sharedflag='-qmkshrobj' - tmp_addflag= ;; - nvcc*) # Cuda Compiler Driver 2.2 - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' - _LT_TAGVAR(compiler_needs_object, $1)=yes - ;; - esac - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) # Sun C 5.9 - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' - _LT_TAGVAR(compiler_needs_object, $1)=yes - tmp_sharedflag='-G' ;; - *Sun\ F*) # Sun Fortran 8.3 - tmp_sharedflag='-G' ;; - esac - _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - - if test yes = "$supports_anon_versioning"; then - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' - fi - - case $cc_basename in - tcc*) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic' - ;; - xlf* | bgf* | bgxlf* | mpixlf*) - # IBM XL Fortran 10.1 on PPC cannot create shared libs itself - _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' - _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' - if test yes = "$supports_anon_versioning"; then - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' - fi - ;; - esac - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' - wlarc= - else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - fi - ;; - - solaris*) - if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then - _LT_TAGVAR(ld_shlibs, $1)=no - cat <<_LT_EOF 1>&2 - -*** Warning: The releases 2.8.* of the GNU linker cannot reliably -*** create shared libraries on Solaris systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.9.1 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) - _LT_TAGVAR(ld_shlibs, $1)=no - cat <<_LT_EOF 1>&2 - -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot -*** reliably create shared libraries on SCO systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.16.91.0.3 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - ;; - *) - # For security reasons, it is highly recommended that you always - # use absolute paths for naming shared libraries, and exclude the - # DT_RUNPATH tag from executables and libraries. But doing so - # requires that you compile everything twice, which is a pain. - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - - sunos4*) - _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' - wlarc= - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - *) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - - if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then - runpath_var= - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_TAGVAR(export_dynamic_flag_spec, $1)= - _LT_TAGVAR(whole_archive_flag_spec, $1)= - fi - else - # PORTME fill in a description of your system's linker (not GNU ld) - case $host_os in - aix3*) - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(always_export_symbols, $1)=yes - _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' - # Note: this linker hardcodes the directories in LIBPATH if there - # are no directories specified by -L. - _LT_TAGVAR(hardcode_minus_L, $1)=yes - if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then - # Neither direct hardcoding nor static linking is supported with a - # broken collect2. - _LT_TAGVAR(hardcode_direct, $1)=unsupported - fi - ;; - - aix[[4-9]]*) - if test ia64 = "$host_cpu"; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag= - else - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to GNU nm, but means don't demangle to AIX nm. - # Without the "-l" option, or with the "-B" option, AIX nm treats - # weak defined symbols like other global defined symbols, whereas - # GNU nm marks them as "W". - # While the 'weak' keyword is ignored in the Export File, we need - # it in the Import File for the 'aix-soname' feature, so we have - # to replace the "-B" option with "-P" for AIX nm. - if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' - else - _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' - fi - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # have runtime linking enabled, and use it for executables. - # For shared libraries, we enable/disable runtime linking - # depending on the kind of the shared library created - - # when "with_aix_soname,aix_use_runtimelinking" is: - # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables - # "aix,yes" lib.so shared, rtl:yes, for executables - # lib.a static archive - # "both,no" lib.so.V(shr.o) shared, rtl:yes - # lib.a(lib.so.V) shared, rtl:no, for executables - # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables - # lib.a(lib.so.V) shared, rtl:no - # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables - # lib.a static archive - case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) - for ld_flag in $LDFLAGS; do - if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then - aix_use_runtimelinking=yes - break - fi - done - if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then - # With aix-soname=svr4, we create the lib.so.V shared archives only, - # so we don't have lib.a shared libs to link our executables. - # We have to force runtime linking in this case. - aix_use_runtimelinking=yes - LDFLAGS="$LDFLAGS -Wl,-brtl" - fi - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - _LT_TAGVAR(archive_cmds, $1)='' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='$wl-f,' - case $with_aix_soname,$aix_use_runtimelinking in - aix,*) ;; # traditional, no import file - svr4,* | *,yes) # use import file - # The Import File defines what to hardcode. - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_direct_absolute, $1)=no - ;; - esac - - if test yes = "$GCC"; then - case $host_os in aix4.[[012]]|aix4.[[012]].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`$CC -print-prog-name=collect2` - if test -f "$collect2name" && - strings "$collect2name" | $GREP resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - _LT_TAGVAR(hardcode_direct, $1)=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)= - fi - ;; - esac - shared_flag='-shared' - if test yes = "$aix_use_runtimelinking"; then - shared_flag="$shared_flag "'$wl-G' - fi - # Need to ensure runtime linking is disabled for the traditional - # shared library, or the linker may eventually find shared libraries - # /with/ Import File - we do not want to mix them. - shared_flag_aix='-shared' - shared_flag_svr4='-shared $wl-G' - else - # not using gcc - if test ia64 = "$host_cpu"; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test yes = "$aix_use_runtimelinking"; then - shared_flag='$wl-G' - else - shared_flag='$wl-bM:SRE' - fi - shared_flag_aix='$wl-bM:SRE' - shared_flag_svr4='$wl-G' - fi - fi - - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - _LT_TAGVAR(always_export_symbols, $1)=yes - if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(allow_undefined_flag, $1)='-berok' - # Determine the default libpath from the value encoded in an - # empty executable. - _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag - else - if test ia64 = "$host_cpu"; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' - _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an - # empty executable. - _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' - _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' - if test yes = "$with_gnu_ld"; then - # We only use this code for GNU lds that support --whole-archive. - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' - else - # Exported symbols can be pulled into shared objects from archives - _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' - fi - _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' - # -brtl affects multiple linker settings, -berok does not and is overridden later - compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' - if test svr4 != "$with_aix_soname"; then - # This is similar to how AIX traditionally builds its shared libraries. - _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' - fi - if test aix != "$with_aix_soname"; then - _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' - else - # used by -dlpreopen to get the symbols - _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' - fi - _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' - fi - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='' - ;; - m68k) - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_minus_L, $1)=yes - ;; - esac - ;; - - bsdi[[45]]*) - _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - case $cc_basename in - cl*) - # Native MSVC - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(always_export_symbols, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='@' - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=.dll - # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' - _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then - cp "$export_symbols" "$output_objdir/$soname.def"; - echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; - else - $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' - # The linker will not automatically build a static lib if we build a DLL. - # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' - # Don't use ranlib - _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' - _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile=$lt_outputfile.exe - lt_tool_outputfile=$lt_tool_outputfile.exe - ;; - esac~ - if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' - ;; - *) - # Assume MSVC wrapper - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=.dll - # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' - # The linker will automatically build a .lib file if we build a DLL. - _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' - # FIXME: Should let the user specify the lib program. - _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - ;; - esac - ;; - - darwin* | rhapsody*) - _LT_DARWIN_LINKER_FEATURES($1) - ;; - - dgux*) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor - # support. Future versions do this automatically, but an explicit c++rt0.o - # does not break anything, and helps significantly (at the cost of a little - # extra space). - freebsd2.2*) - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2.*) - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | dragonfly*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - hpux9*) - if test yes = "$GCC"; then - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' - else - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' - fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(hardcode_direct, $1)=yes - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' - ;; - - hpux10*) - if test yes,no = "$GCC,$with_gnu_ld"; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' - fi - if test no = "$with_gnu_ld"; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - _LT_TAGVAR(hardcode_minus_L, $1)=yes - fi - ;; - - hpux11*) - if test yes,no = "$GCC,$with_gnu_ld"; then - case $host_cpu in - hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - else - case $host_cpu in - hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - m4_if($1, [], [ - # Older versions of the 11.00 compiler do not understand -b yet - # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) - _LT_LINKER_OPTION([if $CC understands -b], - _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], - [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], - [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], - [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) - ;; - esac - fi - if test no = "$with_gnu_ld"; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - case $host_cpu in - hppa*64*|ia64*) - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - *) - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - _LT_TAGVAR(hardcode_minus_L, $1)=yes - ;; - esac - fi - ;; - - irix5* | irix6* | nonstopux*) - if test yes = "$GCC"; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' - # Try to use the -exported_symbol ld option, if it does not - # work, assume that -exports_file does not work either and - # implicitly export all symbols. - # This should be the same for all languages, so no per-tag cache variable. - AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], - [lt_cv_irix_exported_symbol], - [save_LDFLAGS=$LDFLAGS - LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" - AC_LINK_IFELSE( - [AC_LANG_SOURCE( - [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], - [C++], [[int foo (void) { return 0; }]], - [Fortran 77], [[ - subroutine foo - end]], - [Fortran], [[ - subroutine foo - end]])])], - [lt_cv_irix_exported_symbol=yes], - [lt_cv_irix_exported_symbol=no]) - LDFLAGS=$save_LDFLAGS]) - if test yes = "$lt_cv_irix_exported_symbol"; then - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' - fi - else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' - fi - _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(inherit_rpath, $1)=yes - _LT_TAGVAR(link_all_deplibs, $1)=yes - ;; - - linux*) - case $cc_basename in - tcc*) - # Fabrice Bellard et al's Tiny C Compiler - _LT_TAGVAR(ld_shlibs, $1)=yes - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out - else - _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF - fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - newsos6) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - *nto* | *qnx*) - ;; - - openbsd* | bitrig*) - if test -f /usr/libexec/ld.so; then - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' - else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' - fi - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - os2*) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - shrext_cmds=.dll - _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - prefix_cmds="$SED"~ - if test EXPORTS = "`$SED 1q $export_symbols`"; then - prefix_cmds="$prefix_cmds -e 1d"; - fi~ - prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ - cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - ;; - - osf3*) - if test yes = "$GCC"; then - _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' - else - _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' - fi - _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - ;; - - osf4* | osf5*) # as osf3* with the addition of -msym flag - if test yes = "$GCC"; then - _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' - else - _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' - - # Both c and cxx compiler support -rpath directly - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - fi - _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - ;; - - solaris*) - _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' - if test yes = "$GCC"; then - wlarc='$wl' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' - else - case `$CC -V 2>&1` in - *"Compilers 5.0"*) - wlarc='' - _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' - ;; - *) - wlarc='$wl' - _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' - ;; - esac - fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - case $host_os in - solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands '-z linker_flag'. GCC discards it without '$wl', - # but is careful enough not to reorder. - # Supported since Solaris 2.6 (maybe 2.5.1?) - if test yes = "$GCC"; then - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' - else - _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' - fi - ;; - esac - _LT_TAGVAR(link_all_deplibs, $1)=yes - ;; - - sunos4*) - if test sequent = "$host_vendor"; then - # Use $CC to link under sequent, because it throws in some extra .o - # files that make .init and .fini sections work. - _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' - fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - sysv4) - case $host_vendor in - sni) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? - ;; - siemens) - ## LD is ld it makes a PLAMLIB - ## CC just makes a GrossModule. - _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' - _LT_TAGVAR(hardcode_direct, $1)=no - ;; - motorola) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie - ;; - esac - runpath_var='LD_RUN_PATH' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - sysv4.3*) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var=LD_RUN_PATH - hardcode_runpath_var=yes - _LT_TAGVAR(ld_shlibs, $1)=yes - fi - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var='LD_RUN_PATH' - - if test yes = "$GCC"; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We CANNOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' - _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' - runpath_var='LD_RUN_PATH' - - if test yes = "$GCC"; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - uts4*) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - *) - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - - if test sni = "$host_vendor"; then - case $host in - sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym' - ;; - esac - fi - fi -]) -AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) -test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no - -_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld - -_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl -_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl -_LT_DECL([], [extract_expsyms_cmds], [2], - [The commands to extract the exported symbol list from a shared archive]) - -# -# Do we need to explicitly link libc? -# -case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in -x|xyes) - # Assume -lc should be added - _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - - if test yes,yes = "$GCC,$enable_shared"; then - case $_LT_TAGVAR(archive_cmds, $1) in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - AC_CACHE_CHECK([whether -lc should be explicitly linked in], - [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), - [$RM conftest* - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - if AC_TRY_EVAL(ac_compile) 2>conftest.err; then - soname=conftest - lib=conftest - libobjs=conftest.$ac_objext - deplibs= - wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) - pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) - _LT_TAGVAR(allow_undefined_flag, $1)= - if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) - then - lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no - else - lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes - fi - _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $RM conftest* - ]) - _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) - ;; - esac - fi - ;; -esac - -_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], - [Whether or not to add -lc for building shared libraries]) -_LT_TAGDECL([allow_libtool_libs_with_static_runtimes], - [enable_shared_with_static_runtimes], [0], - [Whether or not to disallow shared libs when runtime libs are static]) -_LT_TAGDECL([], [export_dynamic_flag_spec], [1], - [Compiler flag to allow reflexive dlopens]) -_LT_TAGDECL([], [whole_archive_flag_spec], [1], - [Compiler flag to generate shared objects directly from archives]) -_LT_TAGDECL([], [compiler_needs_object], [1], - [Whether the compiler copes with passing no objects directly]) -_LT_TAGDECL([], [old_archive_from_new_cmds], [2], - [Create an old-style archive from a shared archive]) -_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], - [Create a temporary old-style archive to link instead of a shared archive]) -_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) -_LT_TAGDECL([], [archive_expsym_cmds], [2]) -_LT_TAGDECL([], [module_cmds], [2], - [Commands used to build a loadable module if different from building - a shared archive.]) -_LT_TAGDECL([], [module_expsym_cmds], [2]) -_LT_TAGDECL([], [with_gnu_ld], [1], - [Whether we are building with GNU ld or not]) -_LT_TAGDECL([], [allow_undefined_flag], [1], - [Flag that allows shared libraries with undefined symbols to be built]) -_LT_TAGDECL([], [no_undefined_flag], [1], - [Flag that enforces no undefined symbols]) -_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], - [Flag to hardcode $libdir into a binary during linking. - This must work even if $libdir does not exist]) -_LT_TAGDECL([], [hardcode_libdir_separator], [1], - [Whether we need a single "-rpath" flag with a separated argument]) -_LT_TAGDECL([], [hardcode_direct], [0], - [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes - DIR into the resulting binary]) -_LT_TAGDECL([], [hardcode_direct_absolute], [0], - [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes - DIR into the resulting binary and the resulting library dependency is - "absolute", i.e impossible to change by setting $shlibpath_var if the - library is relocated]) -_LT_TAGDECL([], [hardcode_minus_L], [0], - [Set to "yes" if using the -LDIR flag during linking hardcodes DIR - into the resulting binary]) -_LT_TAGDECL([], [hardcode_shlibpath_var], [0], - [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR - into the resulting binary]) -_LT_TAGDECL([], [hardcode_automatic], [0], - [Set to "yes" if building a shared library automatically hardcodes DIR - into the library and all subsequent libraries and executables linked - against it]) -_LT_TAGDECL([], [inherit_rpath], [0], - [Set to yes if linker adds runtime paths of dependent libraries - to runtime path list]) -_LT_TAGDECL([], [link_all_deplibs], [0], - [Whether libtool must link a program against all its dependency libraries]) -_LT_TAGDECL([], [always_export_symbols], [0], - [Set to "yes" if exported symbols are required]) -_LT_TAGDECL([], [export_symbols_cmds], [2], - [The commands to list exported symbols]) -_LT_TAGDECL([], [exclude_expsyms], [1], - [Symbols that should not be listed in the preloaded symbols]) -_LT_TAGDECL([], [include_expsyms], [1], - [Symbols that must always be exported]) -_LT_TAGDECL([], [prelink_cmds], [2], - [Commands necessary for linking programs (against libraries) with templates]) -_LT_TAGDECL([], [postlink_cmds], [2], - [Commands necessary for finishing linking programs]) -_LT_TAGDECL([], [file_list_spec], [1], - [Specify filename containing input files]) -dnl FIXME: Not yet implemented -dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], -dnl [Compiler flag to generate thread safe objects]) -])# _LT_LINKER_SHLIBS - - -# _LT_LANG_C_CONFIG([TAG]) -# ------------------------ -# Ensure that the configuration variables for a C compiler are suitably -# defined. These variables are subsequently used by _LT_CONFIG to write -# the compiler configuration to 'libtool'. -m4_defun([_LT_LANG_C_CONFIG], -[m4_require([_LT_DECL_EGREP])dnl -lt_save_CC=$CC -AC_LANG_PUSH(C) - -# Source file extension for C test sources. -ac_ext=c - -# Object file extension for compiled C test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="int some_variable = 0;" - -# Code to be used in simple link tests -lt_simple_link_test_code='int main(){return(0);}' - -_LT_TAG_COMPILER -# Save the default compiler, since it gets overwritten when the other -# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. -compiler_DEFAULT=$CC - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -## CAVEAT EMPTOR: -## There is no encapsulation within the following macros, do not change -## the running order or otherwise move them around unless you know exactly -## what you are doing... -if test -n "$compiler"; then - _LT_COMPILER_NO_RTTI($1) - _LT_COMPILER_PIC($1) - _LT_COMPILER_C_O($1) - _LT_COMPILER_FILE_LOCKS($1) - _LT_LINKER_SHLIBS($1) - _LT_SYS_DYNAMIC_LINKER($1) - _LT_LINKER_HARDCODE_LIBPATH($1) - LT_SYS_DLOPEN_SELF - _LT_CMD_STRIPLIB - - # Report what library types will actually be built - AC_MSG_CHECKING([if libtool supports shared libraries]) - AC_MSG_RESULT([$can_build_shared]) - - AC_MSG_CHECKING([whether to build shared libraries]) - test no = "$can_build_shared" && enable_shared=no - - # On AIX, shared libraries and static libraries use the same namespace, and - # are all built from PIC. - case $host_os in - aix3*) - test yes = "$enable_shared" && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - - aix[[4-9]]*) - if test ia64 != "$host_cpu"; then - case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in - yes,aix,yes) ;; # shared object as lib.so file only - yes,svr4,*) ;; # shared object as lib.so archive member only - yes,*) enable_static=no ;; # shared object in lib.a archive as well - esac - fi - ;; - esac - AC_MSG_RESULT([$enable_shared]) - - AC_MSG_CHECKING([whether to build static libraries]) - # Make sure either enable_shared or enable_static is yes. - test yes = "$enable_shared" || enable_static=yes - AC_MSG_RESULT([$enable_static]) - - _LT_CONFIG($1) -fi -AC_LANG_POP -CC=$lt_save_CC -])# _LT_LANG_C_CONFIG - - -# _LT_LANG_CXX_CONFIG([TAG]) -# -------------------------- -# Ensure that the configuration variables for a C++ compiler are suitably -# defined. These variables are subsequently used by _LT_CONFIG to write -# the compiler configuration to 'libtool'. -m4_defun([_LT_LANG_CXX_CONFIG], -[m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_DECL_EGREP])dnl -m4_require([_LT_PATH_MANIFEST_TOOL])dnl -if test -n "$CXX" && ( test no != "$CXX" && - ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || - (test g++ != "$CXX"))); then - AC_PROG_CXXCPP -else - _lt_caught_CXX_error=yes -fi - -AC_LANG_PUSH(C++) -_LT_TAGVAR(archive_cmds_need_lc, $1)=no -_LT_TAGVAR(allow_undefined_flag, $1)= -_LT_TAGVAR(always_export_symbols, $1)=no -_LT_TAGVAR(archive_expsym_cmds, $1)= -_LT_TAGVAR(compiler_needs_object, $1)=no -_LT_TAGVAR(export_dynamic_flag_spec, $1)= -_LT_TAGVAR(hardcode_direct, $1)=no -_LT_TAGVAR(hardcode_direct_absolute, $1)=no -_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_TAGVAR(hardcode_libdir_separator, $1)= -_LT_TAGVAR(hardcode_minus_L, $1)=no -_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported -_LT_TAGVAR(hardcode_automatic, $1)=no -_LT_TAGVAR(inherit_rpath, $1)=no -_LT_TAGVAR(module_cmds, $1)= -_LT_TAGVAR(module_expsym_cmds, $1)= -_LT_TAGVAR(link_all_deplibs, $1)=unknown -_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_TAGVAR(reload_flag, $1)=$reload_flag -_LT_TAGVAR(reload_cmds, $1)=$reload_cmds -_LT_TAGVAR(no_undefined_flag, $1)= -_LT_TAGVAR(whole_archive_flag_spec, $1)= -_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no - -# Source file extension for C++ test sources. -ac_ext=cpp - -# Object file extension for compiled C++ test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# No sense in running all these tests if we already determined that -# the CXX compiler isn't working. Some variables (like enable_shared) -# are currently assumed to apply to all compilers on this platform, -# and will be corrupted by setting them based on a non-working compiler. -if test yes != "$_lt_caught_CXX_error"; then - # Code to be used in simple compile tests - lt_simple_compile_test_code="int some_variable = 0;" - - # Code to be used in simple link tests - lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' - - # ltmain only uses $CC for tagged configurations so make sure $CC is set. - _LT_TAG_COMPILER - - # save warnings/boilerplate of simple test code - _LT_COMPILER_BOILERPLATE - _LT_LINKER_BOILERPLATE - - # Allow CC to be a program name with arguments. - lt_save_CC=$CC - lt_save_CFLAGS=$CFLAGS - lt_save_LD=$LD - lt_save_GCC=$GCC - GCC=$GXX - lt_save_with_gnu_ld=$with_gnu_ld - lt_save_path_LD=$lt_cv_path_LD - if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then - lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx - else - $as_unset lt_cv_prog_gnu_ld - fi - if test -n "${lt_cv_path_LDCXX+set}"; then - lt_cv_path_LD=$lt_cv_path_LDCXX - else - $as_unset lt_cv_path_LD - fi - test -z "${LDCXX+set}" || LD=$LDCXX - CC=${CXX-"c++"} - CFLAGS=$CXXFLAGS - compiler=$CC - _LT_TAGVAR(compiler, $1)=$CC - _LT_CC_BASENAME([$compiler]) - - if test -n "$compiler"; then - # We don't want -fno-exception when compiling C++ code, so set the - # no_builtin_flag separately - if test yes = "$GXX"; then - _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' - else - _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= - fi - - if test yes = "$GXX"; then - # Set up default GNU C++ configuration - - LT_PATH_LD - - # Check if GNU C++ uses GNU ld as the underlying linker, since the - # archiving commands below assume that GNU ld is being used. - if test yes = "$with_gnu_ld"; then - _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' - - # If archive_cmds runs LD, not CC, wlarc should be empty - # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to - # investigate it a little bit more. (MM) - wlarc='$wl' - - # ancient GNU ld didn't support --whole-archive et. al. - if eval "`$CC -print-prog-name=ld` --help 2>&1" | - $GREP 'no-whole-archive' > /dev/null; then - _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' - else - _LT_TAGVAR(whole_archive_flag_spec, $1)= - fi - else - with_gnu_ld=no - wlarc= - - # A generic and very simple default shared library creation - # command for GNU C++ for the case where it uses the native - # linker, instead of GNU ld. If possible, this setting should - # overridden to take advantage of the native linker features on - # the platform it is being used on. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - fi - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' - - else - GXX=no - with_gnu_ld=no - wlarc= - fi - - # PORTME: fill in a description of your system's C++ link characteristics - AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) - _LT_TAGVAR(ld_shlibs, $1)=yes - case $host_os in - aix3*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - aix[[4-9]]*) - if test ia64 = "$host_cpu"; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag= - else - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # have runtime linking enabled, and use it for executables. - # For shared libraries, we enable/disable runtime linking - # depending on the kind of the shared library created - - # when "with_aix_soname,aix_use_runtimelinking" is: - # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables - # "aix,yes" lib.so shared, rtl:yes, for executables - # lib.a static archive - # "both,no" lib.so.V(shr.o) shared, rtl:yes - # lib.a(lib.so.V) shared, rtl:no, for executables - # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables - # lib.a(lib.so.V) shared, rtl:no - # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables - # lib.a static archive - case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) - for ld_flag in $LDFLAGS; do - case $ld_flag in - *-brtl*) - aix_use_runtimelinking=yes - break - ;; - esac - done - if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then - # With aix-soname=svr4, we create the lib.so.V shared archives only, - # so we don't have lib.a shared libs to link our executables. - # We have to force runtime linking in this case. - aix_use_runtimelinking=yes - LDFLAGS="$LDFLAGS -Wl,-brtl" - fi - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - _LT_TAGVAR(archive_cmds, $1)='' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='$wl-f,' - case $with_aix_soname,$aix_use_runtimelinking in - aix,*) ;; # no import file - svr4,* | *,yes) # use import file - # The Import File defines what to hardcode. - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_direct_absolute, $1)=no - ;; - esac - - if test yes = "$GXX"; then - case $host_os in aix4.[[012]]|aix4.[[012]].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`$CC -print-prog-name=collect2` - if test -f "$collect2name" && - strings "$collect2name" | $GREP resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - _LT_TAGVAR(hardcode_direct, $1)=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)= - fi - esac - shared_flag='-shared' - if test yes = "$aix_use_runtimelinking"; then - shared_flag=$shared_flag' $wl-G' - fi - # Need to ensure runtime linking is disabled for the traditional - # shared library, or the linker may eventually find shared libraries - # /with/ Import File - we do not want to mix them. - shared_flag_aix='-shared' - shared_flag_svr4='-shared $wl-G' - else - # not using gcc - if test ia64 = "$host_cpu"; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test yes = "$aix_use_runtimelinking"; then - shared_flag='$wl-G' - else - shared_flag='$wl-bM:SRE' - fi - shared_flag_aix='$wl-bM:SRE' - shared_flag_svr4='$wl-G' - fi - fi - - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to - # export. - _LT_TAGVAR(always_export_symbols, $1)=yes - if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - # The "-G" linker flag allows undefined symbols. - _LT_TAGVAR(no_undefined_flag, $1)='-bernotok' - # Determine the default libpath from the value encoded in an empty - # executable. - _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" - - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag - else - if test ia64 = "$host_cpu"; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' - _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an - # empty executable. - _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' - _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' - if test yes = "$with_gnu_ld"; then - # We only use this code for GNU lds that support --whole-archive. - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' - else - # Exported symbols can be pulled into shared objects from archives - _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' - fi - _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' - # -brtl affects multiple linker settings, -berok does not and is overridden later - compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' - if test svr4 != "$with_aix_soname"; then - # This is similar to how AIX traditionally builds its shared - # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. - _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' - fi - if test aix != "$with_aix_soname"; then - _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' - else - # used by -dlpreopen to get the symbols - _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' - fi - _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' - fi - fi - ;; - - beos*) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - chorus*) - case $cc_basename in - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - cygwin* | mingw* | pw32* | cegcc*) - case $GXX,$cc_basename in - ,cl* | no,cl*) - # Native MSVC - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(always_export_symbols, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='@' - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=.dll - # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' - _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then - cp "$export_symbols" "$output_objdir/$soname.def"; - echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; - else - $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' - # The linker will not automatically build a static lib if we build a DLL. - # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - # Don't use ranlib - _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' - _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile=$lt_outputfile.exe - lt_tool_outputfile=$lt_tool_outputfile.exe - ;; - esac~ - func_to_tool_file "$lt_outputfile"~ - if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' - ;; - *) - # g++ - # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, - # as there is no search path for DLLs. - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(always_export_symbols, $1)=no - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - - if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file, use it as - # is; otherwise, prepend EXPORTS... - _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - darwin* | rhapsody*) - _LT_DARWIN_LINKER_FEATURES($1) - ;; - - os2*) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - shrext_cmds=.dll - _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - prefix_cmds="$SED"~ - if test EXPORTS = "`$SED 1q $export_symbols`"; then - prefix_cmds="$prefix_cmds -e 1d"; - fi~ - prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ - cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - ;; - - dgux*) - case $cc_basename in - ec++*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - ghcx*) - # Green Hills C++ Compiler - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - freebsd2.*) - # C++ shared libraries reported to be fairly broken before - # switch to ELF - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - freebsd-elf*) - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - ;; - - freebsd* | dragonfly*) - # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF - # conventions - _LT_TAGVAR(ld_shlibs, $1)=yes - ;; - - haiku*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(link_all_deplibs, $1)=yes - ;; - - hpux9*) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, - # but as the default - # location of the library. - - case $cc_basename in - CC*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - aCC*) - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - ;; - *) - if test yes = "$GXX"; then - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' - else - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - - hpux10*|hpux11*) - if test no = "$with_gnu_ld"; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - case $host_cpu in - hppa*64*|ia64*) - ;; - *) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' - ;; - esac - fi - case $host_cpu in - hppa*64*|ia64*) - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - *) - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, - # but as the default - # location of the library. - ;; - esac - - case $cc_basename in - CC*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - aCC*) - case $host_cpu in - hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - esac - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - ;; - *) - if test yes = "$GXX"; then - if test no = "$with_gnu_ld"; then - case $host_cpu in - hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - esac - fi - else - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - - interix[[3-9]]*) - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - irix5* | irix6*) - case $cc_basename in - CC*) - # SGI C++ - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' - - # Archives containing C++ object files must be created using - # "CC -ar", where "CC" is the IRIX C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' - ;; - *) - if test yes = "$GXX"; then - if test no = "$with_gnu_ld"; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' - else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' - fi - fi - _LT_TAGVAR(link_all_deplibs, $1)=yes - ;; - esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(inherit_rpath, $1)=yes - ;; - - linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' - - # Archives containing C++ object files must be created using - # "CC -Bstatic", where "CC" is the KAI C++ compiler. - _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' - ;; - icpc* | ecpc* ) - # Intel C++ - with_gnu_ld=yes - # version 8.0 and above of icpc choke on multiply defined symbols - # if we add $predep_objects and $postdep_objects, however 7.1 and - # earlier do not add the objects themselves. - case `$CC -V 2>&1` in - *"Version 7."*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - ;; - *) # Version 8.0 or newer - tmp_idyn= - case $host_cpu in - ia64*) tmp_idyn=' -i_dynamic';; - esac - _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - ;; - esac - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' - ;; - pgCC* | pgcpp*) - # Portland Group C++ compiler - case `$CC -V` in - *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) - _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ - compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' - _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ - $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ - $RANLIB $oldlib' - _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - ;; - *) # Version 6 and above use weak symbols - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - ;; - esac - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' - ;; - cxx*) - # Compaq C++ - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' - - runpath_var=LD_RUN_PATH - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' - ;; - xl* | mpixl* | bgxl*) - # IBM XL 8.0 on PPC, with GNU ld - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' - _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - if test yes = "$supports_anon_versioning"; then - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' - fi - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' - _LT_TAGVAR(compiler_needs_object, $1)=yes - - # Not sure whether something based on - # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 - # would be better. - output_verbose_link_cmd='func_echo_all' - - # Archives containing C++ object files must be created using - # "CC -xar", where "CC" is the Sun C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' - ;; - esac - ;; - esac - ;; - - lynxos*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - m88k*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - mvs*) - case $cc_basename in - cxx*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' - wlarc= - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - fi - # Workaround some broken pre-1.5 toolchains - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' - ;; - - *nto* | *qnx*) - _LT_TAGVAR(ld_shlibs, $1)=yes - ;; - - openbsd* | bitrig*) - if test -f /usr/libexec/ld.so; then - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' - _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' - fi - output_verbose_link_cmd=func_echo_all - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - osf3* | osf4* | osf5*) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - # Archives containing C++ object files must be created using - # the KAI C++ compiler. - case $host in - osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; - *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; - esac - ;; - RCC*) - # Rational C++ 2.4.1 - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - cxx*) - case $host in - osf3*) - _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' - ;; - *) - _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ - echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ - $RM $lib.exp' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - ;; - esac - - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - ;; - *) - if test yes,no = "$GXX,$with_gnu_ld"; then - _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' - case $host in - osf3*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' - ;; - esac - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' - - else - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - - psos*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - lcc*) - # Lucid - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - solaris*) - case $cc_basename in - CC* | sunCC*) - # Sun C++ 4.2, 5.x and Centerline C++ - _LT_TAGVAR(archive_cmds_need_lc,$1)=yes - _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - case $host_os in - solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands '-z linker_flag'. - # Supported since Solaris 2.6 (maybe 2.5.1?) - _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' - ;; - esac - _LT_TAGVAR(link_all_deplibs, $1)=yes - - output_verbose_link_cmd='func_echo_all' - - # Archives containing C++ object files must be created using - # "CC -xar", where "CC" is the Sun C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' - ;; - gcx*) - # Green Hills C++ Compiler - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' - - # The C++ compiler must be used to create the archive. - _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' - ;; - *) - # GNU C++ compiler with Solaris linker - if test yes,no = "$GXX,$with_gnu_ld"; then - _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs' - if $CC --version | $GREP -v '^2\.7' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' - else - # g++ 2.7 appears to require '-G' NOT '-shared' on this - # platform. - _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' - fi - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir' - case $host_os in - solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; - *) - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' - ;; - esac - fi - ;; - esac - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We CANNOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' - _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ - '"$_LT_TAGVAR(old_archive_cmds, $1)" - _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ - '"$_LT_TAGVAR(reload_cmds, $1)" - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - vxworks*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - - AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) - test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no - - _LT_TAGVAR(GCC, $1)=$GXX - _LT_TAGVAR(LD, $1)=$LD - - ## CAVEAT EMPTOR: - ## There is no encapsulation within the following macros, do not change - ## the running order or otherwise move them around unless you know exactly - ## what you are doing... - _LT_SYS_HIDDEN_LIBDEPS($1) - _LT_COMPILER_PIC($1) - _LT_COMPILER_C_O($1) - _LT_COMPILER_FILE_LOCKS($1) - _LT_LINKER_SHLIBS($1) - _LT_SYS_DYNAMIC_LINKER($1) - _LT_LINKER_HARDCODE_LIBPATH($1) - - _LT_CONFIG($1) - fi # test -n "$compiler" - - CC=$lt_save_CC - CFLAGS=$lt_save_CFLAGS - LDCXX=$LD - LD=$lt_save_LD - GCC=$lt_save_GCC - with_gnu_ld=$lt_save_with_gnu_ld - lt_cv_path_LDCXX=$lt_cv_path_LD - lt_cv_path_LD=$lt_save_path_LD - lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld - lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -fi # test yes != "$_lt_caught_CXX_error" - -AC_LANG_POP -])# _LT_LANG_CXX_CONFIG - - -# _LT_FUNC_STRIPNAME_CNF -# ---------------------- -# func_stripname_cnf prefix suffix name -# strip PREFIX and SUFFIX off of NAME. -# PREFIX and SUFFIX must not contain globbing or regex special -# characters, hashes, percent signs, but SUFFIX may contain a leading -# dot (in which case that matches only a dot). -# -# This function is identical to the (non-XSI) version of func_stripname, -# except this one can be used by m4 code that may be executed by configure, -# rather than the libtool script. -m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl -AC_REQUIRE([_LT_DECL_SED]) -AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) -func_stripname_cnf () -{ - case @S|@2 in - .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;; - *) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;; - esac -} # func_stripname_cnf -])# _LT_FUNC_STRIPNAME_CNF - - -# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) -# --------------------------------- -# Figure out "hidden" library dependencies from verbose -# compiler output when linking a shared library. -# Parse the compiler output and extract the necessary -# objects, libraries and library flags. -m4_defun([_LT_SYS_HIDDEN_LIBDEPS], -[m4_require([_LT_FILEUTILS_DEFAULTS])dnl -AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl -# Dependencies to place before and after the object being linked: -_LT_TAGVAR(predep_objects, $1)= -_LT_TAGVAR(postdep_objects, $1)= -_LT_TAGVAR(predeps, $1)= -_LT_TAGVAR(postdeps, $1)= -_LT_TAGVAR(compiler_lib_search_path, $1)= - -dnl we can't use the lt_simple_compile_test_code here, -dnl because it contains code intended for an executable, -dnl not a library. It's possible we should let each -dnl tag define a new lt_????_link_test_code variable, -dnl but it's only used here... -m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF -int a; -void foo (void) { a = 0; } -_LT_EOF -], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF -class Foo -{ -public: - Foo (void) { a = 0; } -private: - int a; -}; -_LT_EOF -], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF - subroutine foo - implicit none - integer*4 a - a=0 - return - end -_LT_EOF -], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF - subroutine foo - implicit none - integer a - a=0 - return - end -_LT_EOF -], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF -public class foo { - private int a; - public void bar (void) { - a = 0; - } -}; -_LT_EOF -], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF -package foo -func foo() { -} -_LT_EOF -]) - -_lt_libdeps_save_CFLAGS=$CFLAGS -case "$CC $CFLAGS " in #( -*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; -*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; -*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; -esac - -dnl Parse the compiler output and extract the necessary -dnl objects, libraries and library flags. -if AC_TRY_EVAL(ac_compile); then - # Parse the compiler output and extract the necessary - # objects, libraries and library flags. - - # Sentinel used to keep track of whether or not we are before - # the conftest object file. - pre_test_object_deps_done=no - - for p in `eval "$output_verbose_link_cmd"`; do - case $prev$p in - - -L* | -R* | -l*) - # Some compilers place space between "-{L,R}" and the path. - # Remove the space. - if test x-L = "$p" || - test x-R = "$p"; then - prev=$p - continue - fi - - # Expand the sysroot to ease extracting the directories later. - if test -z "$prev"; then - case $p in - -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; - -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; - -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; - esac - fi - case $p in - =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; - esac - if test no = "$pre_test_object_deps_done"; then - case $prev in - -L | -R) - # Internal compiler library paths should come after those - # provided the user. The postdeps already come after the - # user supplied libs so there is no need to process them. - if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then - _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p - else - _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p" - fi - ;; - # The "-l" case would never come before the object being - # linked, so don't bother handling this case. - esac - else - if test -z "$_LT_TAGVAR(postdeps, $1)"; then - _LT_TAGVAR(postdeps, $1)=$prev$p - else - _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p" - fi - fi - prev= - ;; - - *.lto.$objext) ;; # Ignore GCC LTO objects - *.$objext) - # This assumes that the test object file only shows up - # once in the compiler output. - if test "$p" = "conftest.$objext"; then - pre_test_object_deps_done=yes - continue - fi - - if test no = "$pre_test_object_deps_done"; then - if test -z "$_LT_TAGVAR(predep_objects, $1)"; then - _LT_TAGVAR(predep_objects, $1)=$p - else - _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" - fi - else - if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then - _LT_TAGVAR(postdep_objects, $1)=$p - else - _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" - fi - fi - ;; - - *) ;; # Ignore the rest. - - esac - done - - # Clean up. - rm -f a.out a.exe -else - echo "libtool.m4: error: problem compiling $1 test program" -fi - -$RM -f confest.$objext -CFLAGS=$_lt_libdeps_save_CFLAGS - -# PORTME: override above test on systems where it is broken -m4_if([$1], [CXX], -[case $host_os in -interix[[3-9]]*) - # Interix 3.5 installs completely hosed .la files for C++, so rather than - # hack all around it, let's just trust "g++" to DTRT. - _LT_TAGVAR(predep_objects,$1)= - _LT_TAGVAR(postdep_objects,$1)= - _LT_TAGVAR(postdeps,$1)= - ;; -esac -]) - -case " $_LT_TAGVAR(postdeps, $1) " in -*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; -esac - _LT_TAGVAR(compiler_lib_search_dirs, $1)= -if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then - _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'` -fi -_LT_TAGDECL([], [compiler_lib_search_dirs], [1], - [The directories searched by this compiler when creating a shared library]) -_LT_TAGDECL([], [predep_objects], [1], - [Dependencies to place before and after the objects being linked to - create a shared library]) -_LT_TAGDECL([], [postdep_objects], [1]) -_LT_TAGDECL([], [predeps], [1]) -_LT_TAGDECL([], [postdeps], [1]) -_LT_TAGDECL([], [compiler_lib_search_path], [1], - [The library search path used internally by the compiler when linking - a shared library]) -])# _LT_SYS_HIDDEN_LIBDEPS - - -# _LT_LANG_F77_CONFIG([TAG]) -# -------------------------- -# Ensure that the configuration variables for a Fortran 77 compiler are -# suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to 'libtool'. -m4_defun([_LT_LANG_F77_CONFIG], -[AC_LANG_PUSH(Fortran 77) -if test -z "$F77" || test no = "$F77"; then - _lt_disable_F77=yes -fi - -_LT_TAGVAR(archive_cmds_need_lc, $1)=no -_LT_TAGVAR(allow_undefined_flag, $1)= -_LT_TAGVAR(always_export_symbols, $1)=no -_LT_TAGVAR(archive_expsym_cmds, $1)= -_LT_TAGVAR(export_dynamic_flag_spec, $1)= -_LT_TAGVAR(hardcode_direct, $1)=no -_LT_TAGVAR(hardcode_direct_absolute, $1)=no -_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_TAGVAR(hardcode_libdir_separator, $1)= -_LT_TAGVAR(hardcode_minus_L, $1)=no -_LT_TAGVAR(hardcode_automatic, $1)=no -_LT_TAGVAR(inherit_rpath, $1)=no -_LT_TAGVAR(module_cmds, $1)= -_LT_TAGVAR(module_expsym_cmds, $1)= -_LT_TAGVAR(link_all_deplibs, $1)=unknown -_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_TAGVAR(reload_flag, $1)=$reload_flag -_LT_TAGVAR(reload_cmds, $1)=$reload_cmds -_LT_TAGVAR(no_undefined_flag, $1)= -_LT_TAGVAR(whole_archive_flag_spec, $1)= -_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no - -# Source file extension for f77 test sources. -ac_ext=f - -# Object file extension for compiled f77 test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# No sense in running all these tests if we already determined that -# the F77 compiler isn't working. Some variables (like enable_shared) -# are currently assumed to apply to all compilers on this platform, -# and will be corrupted by setting them based on a non-working compiler. -if test yes != "$_lt_disable_F77"; then - # Code to be used in simple compile tests - lt_simple_compile_test_code="\ - subroutine t - return - end -" - - # Code to be used in simple link tests - lt_simple_link_test_code="\ - program t - end -" - - # ltmain only uses $CC for tagged configurations so make sure $CC is set. - _LT_TAG_COMPILER - - # save warnings/boilerplate of simple test code - _LT_COMPILER_BOILERPLATE - _LT_LINKER_BOILERPLATE - - # Allow CC to be a program name with arguments. - lt_save_CC=$CC - lt_save_GCC=$GCC - lt_save_CFLAGS=$CFLAGS - CC=${F77-"f77"} - CFLAGS=$FFLAGS - compiler=$CC - _LT_TAGVAR(compiler, $1)=$CC - _LT_CC_BASENAME([$compiler]) - GCC=$G77 - if test -n "$compiler"; then - AC_MSG_CHECKING([if libtool supports shared libraries]) - AC_MSG_RESULT([$can_build_shared]) - - AC_MSG_CHECKING([whether to build shared libraries]) - test no = "$can_build_shared" && enable_shared=no - - # On AIX, shared libraries and static libraries use the same namespace, and - # are all built from PIC. - case $host_os in - aix3*) - test yes = "$enable_shared" && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - aix[[4-9]]*) - if test ia64 != "$host_cpu"; then - case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in - yes,aix,yes) ;; # shared object as lib.so file only - yes,svr4,*) ;; # shared object as lib.so archive member only - yes,*) enable_static=no ;; # shared object in lib.a archive as well - esac - fi - ;; - esac - AC_MSG_RESULT([$enable_shared]) - - AC_MSG_CHECKING([whether to build static libraries]) - # Make sure either enable_shared or enable_static is yes. - test yes = "$enable_shared" || enable_static=yes - AC_MSG_RESULT([$enable_static]) - - _LT_TAGVAR(GCC, $1)=$G77 - _LT_TAGVAR(LD, $1)=$LD - - ## CAVEAT EMPTOR: - ## There is no encapsulation within the following macros, do not change - ## the running order or otherwise move them around unless you know exactly - ## what you are doing... - _LT_COMPILER_PIC($1) - _LT_COMPILER_C_O($1) - _LT_COMPILER_FILE_LOCKS($1) - _LT_LINKER_SHLIBS($1) - _LT_SYS_DYNAMIC_LINKER($1) - _LT_LINKER_HARDCODE_LIBPATH($1) - - _LT_CONFIG($1) - fi # test -n "$compiler" - - GCC=$lt_save_GCC - CC=$lt_save_CC - CFLAGS=$lt_save_CFLAGS -fi # test yes != "$_lt_disable_F77" - -AC_LANG_POP -])# _LT_LANG_F77_CONFIG - - -# _LT_LANG_FC_CONFIG([TAG]) -# ------------------------- -# Ensure that the configuration variables for a Fortran compiler are -# suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to 'libtool'. -m4_defun([_LT_LANG_FC_CONFIG], -[AC_LANG_PUSH(Fortran) - -if test -z "$FC" || test no = "$FC"; then - _lt_disable_FC=yes -fi - -_LT_TAGVAR(archive_cmds_need_lc, $1)=no -_LT_TAGVAR(allow_undefined_flag, $1)= -_LT_TAGVAR(always_export_symbols, $1)=no -_LT_TAGVAR(archive_expsym_cmds, $1)= -_LT_TAGVAR(export_dynamic_flag_spec, $1)= -_LT_TAGVAR(hardcode_direct, $1)=no -_LT_TAGVAR(hardcode_direct_absolute, $1)=no -_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_TAGVAR(hardcode_libdir_separator, $1)= -_LT_TAGVAR(hardcode_minus_L, $1)=no -_LT_TAGVAR(hardcode_automatic, $1)=no -_LT_TAGVAR(inherit_rpath, $1)=no -_LT_TAGVAR(module_cmds, $1)= -_LT_TAGVAR(module_expsym_cmds, $1)= -_LT_TAGVAR(link_all_deplibs, $1)=unknown -_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_TAGVAR(reload_flag, $1)=$reload_flag -_LT_TAGVAR(reload_cmds, $1)=$reload_cmds -_LT_TAGVAR(no_undefined_flag, $1)= -_LT_TAGVAR(whole_archive_flag_spec, $1)= -_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no - -# Source file extension for fc test sources. -ac_ext=${ac_fc_srcext-f} - -# Object file extension for compiled fc test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# No sense in running all these tests if we already determined that -# the FC compiler isn't working. Some variables (like enable_shared) -# are currently assumed to apply to all compilers on this platform, -# and will be corrupted by setting them based on a non-working compiler. -if test yes != "$_lt_disable_FC"; then - # Code to be used in simple compile tests - lt_simple_compile_test_code="\ - subroutine t - return - end -" - - # Code to be used in simple link tests - lt_simple_link_test_code="\ - program t - end -" - - # ltmain only uses $CC for tagged configurations so make sure $CC is set. - _LT_TAG_COMPILER - - # save warnings/boilerplate of simple test code - _LT_COMPILER_BOILERPLATE - _LT_LINKER_BOILERPLATE - - # Allow CC to be a program name with arguments. - lt_save_CC=$CC - lt_save_GCC=$GCC - lt_save_CFLAGS=$CFLAGS - CC=${FC-"f95"} - CFLAGS=$FCFLAGS - compiler=$CC - GCC=$ac_cv_fc_compiler_gnu - - _LT_TAGVAR(compiler, $1)=$CC - _LT_CC_BASENAME([$compiler]) - - if test -n "$compiler"; then - AC_MSG_CHECKING([if libtool supports shared libraries]) - AC_MSG_RESULT([$can_build_shared]) - - AC_MSG_CHECKING([whether to build shared libraries]) - test no = "$can_build_shared" && enable_shared=no - - # On AIX, shared libraries and static libraries use the same namespace, and - # are all built from PIC. - case $host_os in - aix3*) - test yes = "$enable_shared" && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - aix[[4-9]]*) - if test ia64 != "$host_cpu"; then - case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in - yes,aix,yes) ;; # shared object as lib.so file only - yes,svr4,*) ;; # shared object as lib.so archive member only - yes,*) enable_static=no ;; # shared object in lib.a archive as well - esac - fi - ;; - esac - AC_MSG_RESULT([$enable_shared]) - - AC_MSG_CHECKING([whether to build static libraries]) - # Make sure either enable_shared or enable_static is yes. - test yes = "$enable_shared" || enable_static=yes - AC_MSG_RESULT([$enable_static]) - - _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu - _LT_TAGVAR(LD, $1)=$LD - - ## CAVEAT EMPTOR: - ## There is no encapsulation within the following macros, do not change - ## the running order or otherwise move them around unless you know exactly - ## what you are doing... - _LT_SYS_HIDDEN_LIBDEPS($1) - _LT_COMPILER_PIC($1) - _LT_COMPILER_C_O($1) - _LT_COMPILER_FILE_LOCKS($1) - _LT_LINKER_SHLIBS($1) - _LT_SYS_DYNAMIC_LINKER($1) - _LT_LINKER_HARDCODE_LIBPATH($1) - - _LT_CONFIG($1) - fi # test -n "$compiler" - - GCC=$lt_save_GCC - CC=$lt_save_CC - CFLAGS=$lt_save_CFLAGS -fi # test yes != "$_lt_disable_FC" - -AC_LANG_POP -])# _LT_LANG_FC_CONFIG - - -# _LT_LANG_GCJ_CONFIG([TAG]) -# -------------------------- -# Ensure that the configuration variables for the GNU Java Compiler compiler -# are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to 'libtool'. -m4_defun([_LT_LANG_GCJ_CONFIG], -[AC_REQUIRE([LT_PROG_GCJ])dnl -AC_LANG_SAVE - -# Source file extension for Java test sources. -ac_ext=java - -# Object file extension for compiled Java test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="class foo {}" - -# Code to be used in simple link tests -lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. -_LT_TAG_COMPILER - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -# Allow CC to be a program name with arguments. -lt_save_CC=$CC -lt_save_CFLAGS=$CFLAGS -lt_save_GCC=$GCC -GCC=yes -CC=${GCJ-"gcj"} -CFLAGS=$GCJFLAGS -compiler=$CC -_LT_TAGVAR(compiler, $1)=$CC -_LT_TAGVAR(LD, $1)=$LD -_LT_CC_BASENAME([$compiler]) - -# GCJ did not exist at the time GCC didn't implicitly link libc in. -_LT_TAGVAR(archive_cmds_need_lc, $1)=no - -_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_TAGVAR(reload_flag, $1)=$reload_flag -_LT_TAGVAR(reload_cmds, $1)=$reload_cmds - -## CAVEAT EMPTOR: -## There is no encapsulation within the following macros, do not change -## the running order or otherwise move them around unless you know exactly -## what you are doing... -if test -n "$compiler"; then - _LT_COMPILER_NO_RTTI($1) - _LT_COMPILER_PIC($1) - _LT_COMPILER_C_O($1) - _LT_COMPILER_FILE_LOCKS($1) - _LT_LINKER_SHLIBS($1) - _LT_LINKER_HARDCODE_LIBPATH($1) - - _LT_CONFIG($1) -fi - -AC_LANG_RESTORE - -GCC=$lt_save_GCC -CC=$lt_save_CC -CFLAGS=$lt_save_CFLAGS -])# _LT_LANG_GCJ_CONFIG - - -# _LT_LANG_GO_CONFIG([TAG]) -# -------------------------- -# Ensure that the configuration variables for the GNU Go compiler -# are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to 'libtool'. -m4_defun([_LT_LANG_GO_CONFIG], -[AC_REQUIRE([LT_PROG_GO])dnl -AC_LANG_SAVE - -# Source file extension for Go test sources. -ac_ext=go - -# Object file extension for compiled Go test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="package main; func main() { }" - -# Code to be used in simple link tests -lt_simple_link_test_code='package main; func main() { }' - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. -_LT_TAG_COMPILER - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -# Allow CC to be a program name with arguments. -lt_save_CC=$CC -lt_save_CFLAGS=$CFLAGS -lt_save_GCC=$GCC -GCC=yes -CC=${GOC-"gccgo"} -CFLAGS=$GOFLAGS -compiler=$CC -_LT_TAGVAR(compiler, $1)=$CC -_LT_TAGVAR(LD, $1)=$LD -_LT_CC_BASENAME([$compiler]) - -# Go did not exist at the time GCC didn't implicitly link libc in. -_LT_TAGVAR(archive_cmds_need_lc, $1)=no - -_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_TAGVAR(reload_flag, $1)=$reload_flag -_LT_TAGVAR(reload_cmds, $1)=$reload_cmds - -## CAVEAT EMPTOR: -## There is no encapsulation within the following macros, do not change -## the running order or otherwise move them around unless you know exactly -## what you are doing... -if test -n "$compiler"; then - _LT_COMPILER_NO_RTTI($1) - _LT_COMPILER_PIC($1) - _LT_COMPILER_C_O($1) - _LT_COMPILER_FILE_LOCKS($1) - _LT_LINKER_SHLIBS($1) - _LT_LINKER_HARDCODE_LIBPATH($1) - - _LT_CONFIG($1) -fi - -AC_LANG_RESTORE - -GCC=$lt_save_GCC -CC=$lt_save_CC -CFLAGS=$lt_save_CFLAGS -])# _LT_LANG_GO_CONFIG - - -# _LT_LANG_RC_CONFIG([TAG]) -# ------------------------- -# Ensure that the configuration variables for the Windows resource compiler -# are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to 'libtool'. -m4_defun([_LT_LANG_RC_CONFIG], -[AC_REQUIRE([LT_PROG_RC])dnl -AC_LANG_SAVE - -# Source file extension for RC test sources. -ac_ext=rc - -# Object file extension for compiled RC test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' - -# Code to be used in simple link tests -lt_simple_link_test_code=$lt_simple_compile_test_code - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. -_LT_TAG_COMPILER - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -# Allow CC to be a program name with arguments. -lt_save_CC=$CC -lt_save_CFLAGS=$CFLAGS -lt_save_GCC=$GCC -GCC= -CC=${RC-"windres"} -CFLAGS= -compiler=$CC -_LT_TAGVAR(compiler, $1)=$CC -_LT_CC_BASENAME([$compiler]) -_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes - -if test -n "$compiler"; then - : - _LT_CONFIG($1) -fi - -GCC=$lt_save_GCC -AC_LANG_RESTORE -CC=$lt_save_CC -CFLAGS=$lt_save_CFLAGS -])# _LT_LANG_RC_CONFIG - - -# LT_PROG_GCJ -# ----------- -AC_DEFUN([LT_PROG_GCJ], -[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], - [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], - [AC_CHECK_TOOL(GCJ, gcj,) - test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2" - AC_SUBST(GCJFLAGS)])])[]dnl -]) - -# Old name: -AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([LT_AC_PROG_GCJ], []) - - -# LT_PROG_GO -# ---------- -AC_DEFUN([LT_PROG_GO], -[AC_CHECK_TOOL(GOC, gccgo,) -]) - - -# LT_PROG_RC -# ---------- -AC_DEFUN([LT_PROG_RC], -[AC_CHECK_TOOL(RC, windres,) -]) - -# Old name: -AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([LT_AC_PROG_RC], []) - - -# _LT_DECL_EGREP -# -------------- -# If we don't have a new enough Autoconf to choose the best grep -# available, choose the one first in the user's PATH. -m4_defun([_LT_DECL_EGREP], -[AC_REQUIRE([AC_PROG_EGREP])dnl -AC_REQUIRE([AC_PROG_FGREP])dnl -test -z "$GREP" && GREP=grep -_LT_DECL([], [GREP], [1], [A grep program that handles long lines]) -_LT_DECL([], [EGREP], [1], [An ERE matcher]) -_LT_DECL([], [FGREP], [1], [A literal string matcher]) -dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too -AC_SUBST([GREP]) -]) - - -# _LT_DECL_OBJDUMP -# -------------- -# If we don't have a new enough Autoconf to choose the best objdump -# available, choose the one first in the user's PATH. -m4_defun([_LT_DECL_OBJDUMP], -[AC_CHECK_TOOL(OBJDUMP, objdump, false) -test -z "$OBJDUMP" && OBJDUMP=objdump -_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) -AC_SUBST([OBJDUMP]) -]) - -# _LT_DECL_DLLTOOL -# ---------------- -# Ensure DLLTOOL variable is set. -m4_defun([_LT_DECL_DLLTOOL], -[AC_CHECK_TOOL(DLLTOOL, dlltool, false) -test -z "$DLLTOOL" && DLLTOOL=dlltool -_LT_DECL([], [DLLTOOL], [1], [DLL creation program]) -AC_SUBST([DLLTOOL]) -]) - -# _LT_DECL_SED -# ------------ -# Check for a fully-functional sed program, that truncates -# as few characters as possible. Prefer GNU sed if found. -m4_defun([_LT_DECL_SED], -[AC_PROG_SED -test -z "$SED" && SED=sed -Xsed="$SED -e 1s/^X//" -_LT_DECL([], [SED], [1], [A sed program that does not truncate output]) -_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], - [Sed that helps us avoid accidentally triggering echo(1) options like -n]) -])# _LT_DECL_SED - -m4_ifndef([AC_PROG_SED], [ -############################################################ -# NOTE: This macro has been submitted for inclusion into # -# GNU Autoconf as AC_PROG_SED. When it is available in # -# a released version of Autoconf we should remove this # -# macro and use it instead. # -############################################################ - -m4_defun([AC_PROG_SED], -[AC_MSG_CHECKING([for a sed that does not truncate output]) -AC_CACHE_VAL(lt_cv_path_SED, -[# Loop through the user's path and test for sed and gsed. -# Then use that list of sed's as ones to test for truncation. -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for lt_ac_prog in sed gsed; do - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then - lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" - fi - done - done -done -IFS=$as_save_IFS -lt_ac_max=0 -lt_ac_count=0 -# Add /usr/xpg4/bin/sed as it is typically found on Solaris -# along with /bin/sed that truncates output. -for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do - test ! -f "$lt_ac_sed" && continue - cat /dev/null > conftest.in - lt_ac_count=0 - echo $ECHO_N "0123456789$ECHO_C" >conftest.in - # Check for GNU sed and select it if it is found. - if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then - lt_cv_path_SED=$lt_ac_sed - break - fi - while true; do - cat conftest.in conftest.in >conftest.tmp - mv conftest.tmp conftest.in - cp conftest.in conftest.nl - echo >>conftest.nl - $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break - cmp -s conftest.out conftest.nl || break - # 10000 chars as input seems more than enough - test 10 -lt "$lt_ac_count" && break - lt_ac_count=`expr $lt_ac_count + 1` - if test "$lt_ac_count" -gt "$lt_ac_max"; then - lt_ac_max=$lt_ac_count - lt_cv_path_SED=$lt_ac_sed - fi - done -done -]) -SED=$lt_cv_path_SED -AC_SUBST([SED]) -AC_MSG_RESULT([$SED]) -])#AC_PROG_SED -])#m4_ifndef - -# Old name: -AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([LT_AC_PROG_SED], []) - - -# _LT_CHECK_SHELL_FEATURES -# ------------------------ -# Find out whether the shell is Bourne or XSI compatible, -# or has some other useful features. -m4_defun([_LT_CHECK_SHELL_FEATURES], -[if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - lt_unset=unset -else - lt_unset=false -fi -_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl - -# test EBCDIC or ASCII -case `echo X|tr X '\101'` in - A) # ASCII based system - # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr - lt_SP2NL='tr \040 \012' - lt_NL2SP='tr \015\012 \040\040' - ;; - *) # EBCDIC based system - lt_SP2NL='tr \100 \n' - lt_NL2SP='tr \r\n \100\100' - ;; -esac -_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl -_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl -])# _LT_CHECK_SHELL_FEATURES - - -# _LT_PATH_CONVERSION_FUNCTIONS -# ----------------------------- -# Determine what file name conversion functions should be used by -# func_to_host_file (and, implicitly, by func_to_host_path). These are needed -# for certain cross-compile configurations and native mingw. -m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_CANONICAL_BUILD])dnl -AC_MSG_CHECKING([how to convert $build file names to $host format]) -AC_CACHE_VAL(lt_cv_to_host_file_cmd, -[case $host in - *-*-mingw* ) - case $build in - *-*-mingw* ) # actually msys - lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 - ;; - *-*-cygwin* ) - lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 - ;; - * ) # otherwise, assume *nix - lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 - ;; - esac - ;; - *-*-cygwin* ) - case $build in - *-*-mingw* ) # actually msys - lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin - ;; - *-*-cygwin* ) - lt_cv_to_host_file_cmd=func_convert_file_noop - ;; - * ) # otherwise, assume *nix - lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin - ;; - esac - ;; - * ) # unhandled hosts (and "normal" native builds) - lt_cv_to_host_file_cmd=func_convert_file_noop - ;; -esac -]) -to_host_file_cmd=$lt_cv_to_host_file_cmd -AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) -_LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], - [0], [convert $build file names to $host format])dnl - -AC_MSG_CHECKING([how to convert $build file names to toolchain format]) -AC_CACHE_VAL(lt_cv_to_tool_file_cmd, -[#assume ordinary cross tools, or native build. -lt_cv_to_tool_file_cmd=func_convert_file_noop -case $host in - *-*-mingw* ) - case $build in - *-*-mingw* ) # actually msys - lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 - ;; - esac - ;; -esac -]) -to_tool_file_cmd=$lt_cv_to_tool_file_cmd -AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) -_LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], - [0], [convert $build files to toolchain format])dnl -])# _LT_PATH_CONVERSION_FUNCTIONS diff -Nru mate-utils-1.26.0/m4/lt~obsolete.m4 mate-utils-1.26.1/m4/lt~obsolete.m4 --- mate-utils-1.26.0/m4/lt~obsolete.m4 2021-08-05 19:45:22.000000000 +0000 +++ mate-utils-1.26.1/m4/lt~obsolete.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,99 +0,0 @@ -# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- -# -# Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software -# Foundation, Inc. -# Written by Scott James Remnant, 2004. -# -# 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. - -# serial 5 lt~obsolete.m4 - -# These exist entirely to fool aclocal when bootstrapping libtool. -# -# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN), -# which have later been changed to m4_define as they aren't part of the -# exported API, or moved to Autoconf or Automake where they belong. -# -# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN -# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us -# using a macro with the same name in our local m4/libtool.m4 it'll -# pull the old libtool.m4 in (it doesn't see our shiny new m4_define -# and doesn't know about Autoconf macros at all.) -# -# So we provide this file, which has a silly filename so it's always -# included after everything else. This provides aclocal with the -# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything -# because those macros already exist, or will be overwritten later. -# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. -# -# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. -# Yes, that means every name once taken will need to remain here until -# we give up compatibility with versions before 1.7, at which point -# we need to keep only those names which we still refer to. - -# This is to help aclocal find these macros, as it can't see m4_define. -AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) - -m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) -m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) -m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) -m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) -m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) -m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) -m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) -m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) -m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) -m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) -m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) -m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) -m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) -m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) -m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) -m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) -m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) -m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) -m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) -m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) -m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) -m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) -m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) -m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) -m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) -m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) -m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) -m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) -m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) -m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) -m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) -m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) -m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) -m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) -m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) -m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) -m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) -m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) -m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) -m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) -m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) -m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) -m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) -m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) -m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) -m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) -m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) -m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) -m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) -m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) -m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) -m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) -m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) -m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) -m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) -m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) -m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) -m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) -m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) -m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) -m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) diff -Nru mate-utils-1.26.0/m4/ltoptions.m4 mate-utils-1.26.1/m4/ltoptions.m4 --- mate-utils-1.26.0/m4/ltoptions.m4 2021-08-05 19:45:21.000000000 +0000 +++ mate-utils-1.26.1/m4/ltoptions.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,437 +0,0 @@ -# Helper functions for option handling. -*- Autoconf -*- -# -# Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software -# Foundation, Inc. -# Written by Gary V. Vaughan, 2004 -# -# 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. - -# serial 8 ltoptions.m4 - -# This is to help aclocal find these macros, as it can't see m4_define. -AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) - - -# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) -# ------------------------------------------ -m4_define([_LT_MANGLE_OPTION], -[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) - - -# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) -# --------------------------------------- -# Set option OPTION-NAME for macro MACRO-NAME, and if there is a -# matching handler defined, dispatch to it. Other OPTION-NAMEs are -# saved as a flag. -m4_define([_LT_SET_OPTION], -[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl -m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), - _LT_MANGLE_DEFUN([$1], [$2]), - [m4_warning([Unknown $1 option '$2'])])[]dnl -]) - - -# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) -# ------------------------------------------------------------ -# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. -m4_define([_LT_IF_OPTION], -[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) - - -# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) -# ------------------------------------------------------- -# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME -# are set. -m4_define([_LT_UNLESS_OPTIONS], -[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), - [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), - [m4_define([$0_found])])])[]dnl -m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 -])[]dnl -]) - - -# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) -# ---------------------------------------- -# OPTION-LIST is a space-separated list of Libtool options associated -# with MACRO-NAME. If any OPTION has a matching handler declared with -# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about -# the unknown option and exit. -m4_defun([_LT_SET_OPTIONS], -[# Set options -m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), - [_LT_SET_OPTION([$1], _LT_Option)]) - -m4_if([$1],[LT_INIT],[ - dnl - dnl Simply set some default values (i.e off) if boolean options were not - dnl specified: - _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no - ]) - _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no - ]) - dnl - dnl If no reference was made to various pairs of opposing options, then - dnl we run the default mode handler for the pair. For example, if neither - dnl 'shared' nor 'disable-shared' was passed, we enable building of shared - dnl archives by default: - _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) - _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) - _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) - _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], - [_LT_ENABLE_FAST_INSTALL]) - _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4], - [_LT_WITH_AIX_SONAME([aix])]) - ]) -])# _LT_SET_OPTIONS - - -## --------------------------------- ## -## Macros to handle LT_INIT options. ## -## --------------------------------- ## - -# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) -# ----------------------------------------- -m4_define([_LT_MANGLE_DEFUN], -[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) - - -# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) -# ----------------------------------------------- -m4_define([LT_OPTION_DEFINE], -[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl -])# LT_OPTION_DEFINE - - -# dlopen -# ------ -LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes -]) - -AU_DEFUN([AC_LIBTOOL_DLOPEN], -[_LT_SET_OPTION([LT_INIT], [dlopen]) -AC_DIAGNOSE([obsolete], -[$0: Remove this warning and the call to _LT_SET_OPTION when you -put the 'dlopen' option into LT_INIT's first parameter.]) -]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) - - -# win32-dll -# --------- -# Declare package support for building win32 dll's. -LT_OPTION_DEFINE([LT_INIT], [win32-dll], -[enable_win32_dll=yes - -case $host in -*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) - AC_CHECK_TOOL(AS, as, false) - AC_CHECK_TOOL(DLLTOOL, dlltool, false) - AC_CHECK_TOOL(OBJDUMP, objdump, false) - ;; -esac - -test -z "$AS" && AS=as -_LT_DECL([], [AS], [1], [Assembler program])dnl - -test -z "$DLLTOOL" && DLLTOOL=dlltool -_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl - -test -z "$OBJDUMP" && OBJDUMP=objdump -_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl -])# win32-dll - -AU_DEFUN([AC_LIBTOOL_WIN32_DLL], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -_LT_SET_OPTION([LT_INIT], [win32-dll]) -AC_DIAGNOSE([obsolete], -[$0: Remove this warning and the call to _LT_SET_OPTION when you -put the 'win32-dll' option into LT_INIT's first parameter.]) -]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) - - -# _LT_ENABLE_SHARED([DEFAULT]) -# ---------------------------- -# implement the --enable-shared flag, and supports the 'shared' and -# 'disable-shared' LT_INIT options. -# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. -m4_define([_LT_ENABLE_SHARED], -[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl -AC_ARG_ENABLE([shared], - [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], - [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], - [p=${PACKAGE-default} - case $enableval in - yes) enable_shared=yes ;; - no) enable_shared=no ;; - *) - enable_shared=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, - for pkg in $enableval; do - IFS=$lt_save_ifs - if test "X$pkg" = "X$p"; then - enable_shared=yes - fi - done - IFS=$lt_save_ifs - ;; - esac], - [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) - - _LT_DECL([build_libtool_libs], [enable_shared], [0], - [Whether or not to build shared libraries]) -])# _LT_ENABLE_SHARED - -LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) -LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) - -# Old names: -AC_DEFUN([AC_ENABLE_SHARED], -[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) -]) - -AC_DEFUN([AC_DISABLE_SHARED], -[_LT_SET_OPTION([LT_INIT], [disable-shared]) -]) - -AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) -AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AM_ENABLE_SHARED], []) -dnl AC_DEFUN([AM_DISABLE_SHARED], []) - - - -# _LT_ENABLE_STATIC([DEFAULT]) -# ---------------------------- -# implement the --enable-static flag, and support the 'static' and -# 'disable-static' LT_INIT options. -# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. -m4_define([_LT_ENABLE_STATIC], -[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl -AC_ARG_ENABLE([static], - [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], - [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], - [p=${PACKAGE-default} - case $enableval in - yes) enable_static=yes ;; - no) enable_static=no ;; - *) - enable_static=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, - for pkg in $enableval; do - IFS=$lt_save_ifs - if test "X$pkg" = "X$p"; then - enable_static=yes - fi - done - IFS=$lt_save_ifs - ;; - esac], - [enable_static=]_LT_ENABLE_STATIC_DEFAULT) - - _LT_DECL([build_old_libs], [enable_static], [0], - [Whether or not to build static libraries]) -])# _LT_ENABLE_STATIC - -LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) -LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) - -# Old names: -AC_DEFUN([AC_ENABLE_STATIC], -[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) -]) - -AC_DEFUN([AC_DISABLE_STATIC], -[_LT_SET_OPTION([LT_INIT], [disable-static]) -]) - -AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) -AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AM_ENABLE_STATIC], []) -dnl AC_DEFUN([AM_DISABLE_STATIC], []) - - - -# _LT_ENABLE_FAST_INSTALL([DEFAULT]) -# ---------------------------------- -# implement the --enable-fast-install flag, and support the 'fast-install' -# and 'disable-fast-install' LT_INIT options. -# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. -m4_define([_LT_ENABLE_FAST_INSTALL], -[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl -AC_ARG_ENABLE([fast-install], - [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], - [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], - [p=${PACKAGE-default} - case $enableval in - yes) enable_fast_install=yes ;; - no) enable_fast_install=no ;; - *) - enable_fast_install=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, - for pkg in $enableval; do - IFS=$lt_save_ifs - if test "X$pkg" = "X$p"; then - enable_fast_install=yes - fi - done - IFS=$lt_save_ifs - ;; - esac], - [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) - -_LT_DECL([fast_install], [enable_fast_install], [0], - [Whether or not to optimize for fast installation])dnl -])# _LT_ENABLE_FAST_INSTALL - -LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) -LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) - -# Old names: -AU_DEFUN([AC_ENABLE_FAST_INSTALL], -[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) -AC_DIAGNOSE([obsolete], -[$0: Remove this warning and the call to _LT_SET_OPTION when you put -the 'fast-install' option into LT_INIT's first parameter.]) -]) - -AU_DEFUN([AC_DISABLE_FAST_INSTALL], -[_LT_SET_OPTION([LT_INIT], [disable-fast-install]) -AC_DIAGNOSE([obsolete], -[$0: Remove this warning and the call to _LT_SET_OPTION when you put -the 'disable-fast-install' option into LT_INIT's first parameter.]) -]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) -dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) - - -# _LT_WITH_AIX_SONAME([DEFAULT]) -# ---------------------------------- -# implement the --with-aix-soname flag, and support the `aix-soname=aix' -# and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT -# is either `aix', `both' or `svr4'. If omitted, it defaults to `aix'. -m4_define([_LT_WITH_AIX_SONAME], -[m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl -shared_archive_member_spec= -case $host,$enable_shared in -power*-*-aix[[5-9]]*,yes) - AC_MSG_CHECKING([which variant of shared library versioning to provide]) - AC_ARG_WITH([aix-soname], - [AS_HELP_STRING([--with-aix-soname=aix|svr4|both], - [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])], - [case $withval in - aix|svr4|both) - ;; - *) - AC_MSG_ERROR([Unknown argument to --with-aix-soname]) - ;; - esac - lt_cv_with_aix_soname=$with_aix_soname], - [AC_CACHE_VAL([lt_cv_with_aix_soname], - [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT) - with_aix_soname=$lt_cv_with_aix_soname]) - AC_MSG_RESULT([$with_aix_soname]) - if test aix != "$with_aix_soname"; then - # For the AIX way of multilib, we name the shared archive member - # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', - # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. - # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, - # the AIX toolchain works better with OBJECT_MODE set (default 32). - if test 64 = "${OBJECT_MODE-32}"; then - shared_archive_member_spec=shr_64 - else - shared_archive_member_spec=shr - fi - fi - ;; -*) - with_aix_soname=aix - ;; -esac - -_LT_DECL([], [shared_archive_member_spec], [0], - [Shared archive member basename, for filename based shared library versioning on AIX])dnl -])# _LT_WITH_AIX_SONAME - -LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])]) -LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])]) -LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])]) - - -# _LT_WITH_PIC([MODE]) -# -------------------- -# implement the --with-pic flag, and support the 'pic-only' and 'no-pic' -# LT_INIT options. -# MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'. -m4_define([_LT_WITH_PIC], -[AC_ARG_WITH([pic], - [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], - [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], - [lt_p=${PACKAGE-default} - case $withval in - yes|no) pic_mode=$withval ;; - *) - pic_mode=default - # Look at the argument we got. We use all the common list separators. - lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, - for lt_pkg in $withval; do - IFS=$lt_save_ifs - if test "X$lt_pkg" = "X$lt_p"; then - pic_mode=yes - fi - done - IFS=$lt_save_ifs - ;; - esac], - [pic_mode=m4_default([$1], [default])]) - -_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl -])# _LT_WITH_PIC - -LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) -LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) - -# Old name: -AU_DEFUN([AC_LIBTOOL_PICMODE], -[_LT_SET_OPTION([LT_INIT], [pic-only]) -AC_DIAGNOSE([obsolete], -[$0: Remove this warning and the call to _LT_SET_OPTION when you -put the 'pic-only' option into LT_INIT's first parameter.]) -]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) - -## ----------------- ## -## LTDL_INIT Options ## -## ----------------- ## - -m4_define([_LTDL_MODE], []) -LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], - [m4_define([_LTDL_MODE], [nonrecursive])]) -LT_OPTION_DEFINE([LTDL_INIT], [recursive], - [m4_define([_LTDL_MODE], [recursive])]) -LT_OPTION_DEFINE([LTDL_INIT], [subproject], - [m4_define([_LTDL_MODE], [subproject])]) - -m4_define([_LTDL_TYPE], []) -LT_OPTION_DEFINE([LTDL_INIT], [installable], - [m4_define([_LTDL_TYPE], [installable])]) -LT_OPTION_DEFINE([LTDL_INIT], [convenience], - [m4_define([_LTDL_TYPE], [convenience])]) diff -Nru mate-utils-1.26.0/m4/ltsugar.m4 mate-utils-1.26.1/m4/ltsugar.m4 --- mate-utils-1.26.0/m4/ltsugar.m4 2021-08-05 19:45:21.000000000 +0000 +++ mate-utils-1.26.1/m4/ltsugar.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,124 +0,0 @@ -# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- -# -# Copyright (C) 2004-2005, 2007-2008, 2011-2015 Free Software -# Foundation, Inc. -# Written by Gary V. Vaughan, 2004 -# -# 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. - -# serial 6 ltsugar.m4 - -# This is to help aclocal find these macros, as it can't see m4_define. -AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) - - -# lt_join(SEP, ARG1, [ARG2...]) -# ----------------------------- -# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their -# associated separator. -# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier -# versions in m4sugar had bugs. -m4_define([lt_join], -[m4_if([$#], [1], [], - [$#], [2], [[$2]], - [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) -m4_define([_lt_join], -[m4_if([$#$2], [2], [], - [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) - - -# lt_car(LIST) -# lt_cdr(LIST) -# ------------ -# Manipulate m4 lists. -# These macros are necessary as long as will still need to support -# Autoconf-2.59, which quotes differently. -m4_define([lt_car], [[$1]]) -m4_define([lt_cdr], -[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], - [$#], 1, [], - [m4_dquote(m4_shift($@))])]) -m4_define([lt_unquote], $1) - - -# lt_append(MACRO-NAME, STRING, [SEPARATOR]) -# ------------------------------------------ -# Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'. -# Note that neither SEPARATOR nor STRING are expanded; they are appended -# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). -# No SEPARATOR is output if MACRO-NAME was previously undefined (different -# than defined and empty). -# -# This macro is needed until we can rely on Autoconf 2.62, since earlier -# versions of m4sugar mistakenly expanded SEPARATOR but not STRING. -m4_define([lt_append], -[m4_define([$1], - m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) - - - -# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) -# ---------------------------------------------------------- -# Produce a SEP delimited list of all paired combinations of elements of -# PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list -# has the form PREFIXmINFIXSUFFIXn. -# Needed until we can rely on m4_combine added in Autoconf 2.62. -m4_define([lt_combine], -[m4_if(m4_eval([$# > 3]), [1], - [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl -[[m4_foreach([_Lt_prefix], [$2], - [m4_foreach([_Lt_suffix], - ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, - [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) - - -# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) -# ----------------------------------------------------------------------- -# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited -# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. -m4_define([lt_if_append_uniq], -[m4_ifdef([$1], - [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], - [lt_append([$1], [$2], [$3])$4], - [$5])], - [lt_append([$1], [$2], [$3])$4])]) - - -# lt_dict_add(DICT, KEY, VALUE) -# ----------------------------- -m4_define([lt_dict_add], -[m4_define([$1($2)], [$3])]) - - -# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) -# -------------------------------------------- -m4_define([lt_dict_add_subkey], -[m4_define([$1($2:$3)], [$4])]) - - -# lt_dict_fetch(DICT, KEY, [SUBKEY]) -# ---------------------------------- -m4_define([lt_dict_fetch], -[m4_ifval([$3], - m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), - m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) - - -# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) -# ----------------------------------------------------------------- -m4_define([lt_if_dict_fetch], -[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], - [$5], - [$6])]) - - -# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) -# -------------------------------------------------------------- -m4_define([lt_dict_filter], -[m4_if([$5], [], [], - [lt_join(m4_quote(m4_default([$4], [[, ]])), - lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), - [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl -]) diff -Nru mate-utils-1.26.0/m4/ltversion.m4 mate-utils-1.26.1/m4/ltversion.m4 --- mate-utils-1.26.0/m4/ltversion.m4 2021-08-05 19:45:22.000000000 +0000 +++ mate-utils-1.26.1/m4/ltversion.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -# ltversion.m4 -- version numbers -*- Autoconf -*- -# -# Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. -# Written by Scott James Remnant, 2004 -# -# 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. - -# @configure_input@ - -# serial 4179 ltversion.m4 -# This file is part of GNU Libtool - -m4_define([LT_PACKAGE_VERSION], [2.4.6]) -m4_define([LT_PACKAGE_REVISION], [2.4.6]) - -AC_DEFUN([LTVERSION_VERSION], -[macro_version='2.4.6' -macro_revision='2.4.6' -_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) -_LT_DECL(, macro_revision, 0) -]) diff -Nru mate-utils-1.26.0/m4/nls.m4 mate-utils-1.26.1/m4/nls.m4 --- mate-utils-1.26.0/m4/nls.m4 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/m4/nls.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -# nls.m4 serial 6 (gettext-0.20.2) -dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014, 2016, 2019-2020 Free -dnl Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. -dnl -dnl This file can be used in projects which are not available under -dnl the GNU General Public License or the GNU Lesser General Public -dnl License but which still want to provide support for the GNU gettext -dnl functionality. -dnl Please note that the actual code of the GNU gettext library is covered -dnl by the GNU Lesser General Public License, and the rest of the GNU -dnl gettext package is covered by the GNU General Public License. -dnl They are *not* in the public domain. - -dnl Authors: -dnl Ulrich Drepper , 1995-2000. -dnl Bruno Haible , 2000-2003. - -AC_PREREQ([2.50]) - -AC_DEFUN([AM_NLS], -[ - AC_MSG_CHECKING([whether NLS is requested]) - dnl Default is enabled NLS - AC_ARG_ENABLE([nls], - [ --disable-nls do not use Native Language Support], - USE_NLS=$enableval, USE_NLS=yes) - AC_MSG_RESULT([$USE_NLS]) - AC_SUBST([USE_NLS]) -]) diff -Nru mate-utils-1.26.0/m4/po.m4 mate-utils-1.26.1/m4/po.m4 --- mate-utils-1.26.0/m4/po.m4 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/m4/po.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,450 +0,0 @@ -# po.m4 serial 31 (gettext-0.20.2) -dnl Copyright (C) 1995-2014, 2016, 2018-2020 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. -dnl -dnl This file can be used in projects which are not available under -dnl the GNU General Public License or the GNU Lesser General Public -dnl License but which still want to provide support for the GNU gettext -dnl functionality. -dnl Please note that the actual code of the GNU gettext library is covered -dnl by the GNU Lesser General Public License, and the rest of the GNU -dnl gettext package is covered by the GNU General Public License. -dnl They are *not* in the public domain. - -dnl Authors: -dnl Ulrich Drepper , 1995-2000. -dnl Bruno Haible , 2000-2003. - -AC_PREREQ([2.60]) - -dnl Checks for all prerequisites of the po subdirectory. -AC_DEFUN([AM_PO_SUBDIRS], -[ - AC_REQUIRE([AC_PROG_MAKE_SET])dnl - AC_REQUIRE([AC_PROG_INSTALL])dnl - AC_REQUIRE([AC_PROG_MKDIR_P])dnl - AC_REQUIRE([AC_PROG_SED])dnl - AC_REQUIRE([AM_NLS])dnl - - dnl Release version of the gettext macros. This is used to ensure that - dnl the gettext macros and po/Makefile.in.in are in sync. - AC_SUBST([GETTEXT_MACRO_VERSION], [0.20]) - - dnl Perform the following tests also if --disable-nls has been given, - dnl because they are needed for "make dist" to work. - - dnl Search for GNU msgfmt in the PATH. - dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions. - dnl The second test excludes FreeBSD msgfmt. - AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, - [$ac_dir/$ac_word --statistics /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && - (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], - :) - AC_PATH_PROG([GMSGFMT], [gmsgfmt], [$MSGFMT]) - - dnl Test whether it is GNU msgfmt >= 0.15. -changequote(,)dnl - case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in - '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; - *) GMSGFMT_015=$GMSGFMT ;; - esac -changequote([,])dnl - AC_SUBST([GMSGFMT_015]) - - dnl Search for GNU xgettext 0.12 or newer in the PATH. - dnl The first test excludes Solaris xgettext and early GNU xgettext versions. - dnl The second test excludes FreeBSD xgettext. - AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, - [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && - (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], - :) - dnl Remove leftover from FreeBSD xgettext call. - rm -f messages.po - - dnl Test whether it is GNU xgettext >= 0.15. -changequote(,)dnl - case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in - '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; - *) XGETTEXT_015=$XGETTEXT ;; - esac -changequote([,])dnl - AC_SUBST([XGETTEXT_015]) - - dnl Search for GNU msgmerge 0.11 or newer in the PATH. - AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge, - [$ac_dir/$ac_word --update -q /dev/null /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1], :) - - dnl Test whether it is GNU msgmerge >= 0.20. - if LC_ALL=C $MSGMERGE --help | grep ' --for-msgfmt ' >/dev/null; then - MSGMERGE_FOR_MSGFMT_OPTION='--for-msgfmt' - else - dnl Test whether it is GNU msgmerge >= 0.12. - if LC_ALL=C $MSGMERGE --help | grep ' --no-fuzzy-matching ' >/dev/null; then - MSGMERGE_FOR_MSGFMT_OPTION='--no-fuzzy-matching --no-location --quiet' - else - dnl With these old versions, $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) is - dnl slow. But this is not a big problem, as such old gettext versions are - dnl hardly in use any more. - MSGMERGE_FOR_MSGFMT_OPTION='--no-location --quiet' - fi - fi - AC_SUBST([MSGMERGE_FOR_MSGFMT_OPTION]) - - dnl Support for AM_XGETTEXT_OPTION. - test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= - AC_SUBST([XGETTEXT_EXTRA_OPTIONS]) - - AC_CONFIG_COMMANDS([po-directories], [[ - for ac_file in $CONFIG_FILES; do - # Support "outfile[:infile[:infile...]]" - case "$ac_file" in - *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; - esac - # PO directories have a Makefile.in generated from Makefile.in.in. - case "$ac_file" in */Makefile.in) - # Adjust a relative srcdir. - ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` - ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'` - ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` - # In autoconf-2.13 it is called $ac_given_srcdir. - # In autoconf-2.50 it is called $srcdir. - test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" - case "$ac_given_srcdir" in - .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; - /*) top_srcdir="$ac_given_srcdir" ;; - *) top_srcdir="$ac_dots$ac_given_srcdir" ;; - esac - # Treat a directory as a PO directory if and only if it has a - # POTFILES.in file. This allows packages to have multiple PO - # directories under different names or in different locations. - if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then - rm -f "$ac_dir/POTFILES" - test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" - gt_tab=`printf '\t'` - cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ${gt_tab}]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" - POMAKEFILEDEPS="POTFILES.in" - # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend - # on $ac_dir but don't depend on user-specified configuration - # parameters. - if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then - # The LINGUAS file contains the set of available languages. - if test -n "$OBSOLETE_ALL_LINGUAS"; then - test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" - fi - ALL_LINGUAS=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` - POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" - else - # The set of available languages was given in configure.in. - ALL_LINGUAS=$OBSOLETE_ALL_LINGUAS - fi - # Compute POFILES - # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) - # Compute UPDATEPOFILES - # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) - # Compute DUMMYPOFILES - # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) - # Compute GMOFILES - # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) - case "$ac_given_srcdir" in - .) srcdirpre= ;; - *) srcdirpre='$(srcdir)/' ;; - esac - POFILES= - UPDATEPOFILES= - DUMMYPOFILES= - GMOFILES= - for lang in $ALL_LINGUAS; do - POFILES="$POFILES $srcdirpre$lang.po" - UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" - DUMMYPOFILES="$DUMMYPOFILES $lang.nop" - GMOFILES="$GMOFILES $srcdirpre$lang.gmo" - done - # CATALOGS depends on both $ac_dir and the user's LINGUAS - # environment variable. - INST_LINGUAS= - if test -n "$ALL_LINGUAS"; then - for presentlang in $ALL_LINGUAS; do - useit=no - if test "%UNSET%" != "$LINGUAS"; then - desiredlanguages="$LINGUAS" - else - desiredlanguages="$ALL_LINGUAS" - fi - for desiredlang in $desiredlanguages; do - # Use the presentlang catalog if desiredlang is - # a. equal to presentlang, or - # b. a variant of presentlang (because in this case, - # presentlang can be used as a fallback for messages - # which are not translated in the desiredlang catalog). - case "$desiredlang" in - "$presentlang"*) useit=yes;; - esac - done - if test $useit = yes; then - INST_LINGUAS="$INST_LINGUAS $presentlang" - fi - done - fi - CATALOGS= - if test -n "$INST_LINGUAS"; then - for lang in $INST_LINGUAS; do - CATALOGS="$CATALOGS $lang.gmo" - done - fi - test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" - sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" - for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do - if test -f "$f"; then - case "$f" in - *.orig | *.bak | *~) ;; - *) cat "$f" >> "$ac_dir/Makefile" ;; - esac - fi - done - fi - ;; - esac - done]], - [# Capture the value of obsolete ALL_LINGUAS because we need it to compute - # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. - OBSOLETE_ALL_LINGUAS="$ALL_LINGUAS" - # Capture the value of LINGUAS because we need it to compute CATALOGS. - LINGUAS="${LINGUAS-%UNSET%}" - ]) -]) - -dnl Postprocesses a Makefile in a directory containing PO files. -AC_DEFUN([AM_POSTPROCESS_PO_MAKEFILE], -[ - # When this code is run, in config.status, two variables have already been - # set: - # - OBSOLETE_ALL_LINGUAS is the value of LINGUAS set in configure.in, - # - LINGUAS is the value of the environment variable LINGUAS at configure - # time. - -changequote(,)dnl - # Adjust a relative srcdir. - ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` - ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'` - ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` - # In autoconf-2.13 it is called $ac_given_srcdir. - # In autoconf-2.50 it is called $srcdir. - test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" - case "$ac_given_srcdir" in - .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; - /*) top_srcdir="$ac_given_srcdir" ;; - *) top_srcdir="$ac_dots$ac_given_srcdir" ;; - esac - - # Find a way to echo strings without interpreting backslash. - if test "X`(echo '\t') 2>/dev/null`" = 'X\t'; then - gt_echo='echo' - else - if test "X`(printf '%s\n' '\t') 2>/dev/null`" = 'X\t'; then - gt_echo='printf %s\n' - else - echo_func () { - cat < "$ac_file.tmp" - tab=`printf '\t'` - if grep -l '@TCLCATALOGS@' "$ac_file" > /dev/null; then - # Add dependencies that cannot be formulated as a simple suffix rule. - for lang in $ALL_LINGUAS; do - frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` - cat >> "$ac_file.tmp" < /dev/null; then - # Add dependencies that cannot be formulated as a simple suffix rule. - for lang in $ALL_LINGUAS; do - frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'` - cat >> "$ac_file.tmp" <> "$ac_file.tmp" <, 1996. - -AC_PREREQ([2.50]) - -# Search path for a program which passes the given test. - -dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, -dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) -AC_DEFUN([AM_PATH_PROG_WITH_TEST], -[ -# Prepare PATH_SEPARATOR. -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which - # contains only /bin. Note that ksh looks also at the FPATH variable, - # so we have to set that as well for the test. - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ - && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ - || PATH_SEPARATOR=';' - } -fi - -# Find out how to test for executable files. Don't use a zero-byte file, -# as systems may use methods other than mode bits to determine executability. -cat >conf$$.file <<_ASEOF -#! /bin/sh -exit 0 -_ASEOF -chmod +x conf$$.file -if test -x conf$$.file >/dev/null 2>&1; then - ac_executable_p="test -x" -else - ac_executable_p="test -f" -fi -rm -f conf$$.file - -# Extract the first word of "$2", so it can be a program name with args. -set dummy $2; ac_word=[$]2 -AC_MSG_CHECKING([for $ac_word]) -AC_CACHE_VAL([ac_cv_path_$1], -[case "[$]$1" in - [[\\/]]* | ?:[[\\/]]*) - ac_cv_path_$1="[$]$1" # Let the user override the test with a path. - ;; - *) - ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in ifelse([$5], , $PATH, [$5]); do - IFS="$ac_save_IFS" - test -z "$ac_dir" && ac_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then - echo "$as_me: trying $ac_dir/$ac_word..." >&AS_MESSAGE_LOG_FD - if [$3]; then - ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext" - break 2 - fi - fi - done - done - IFS="$ac_save_IFS" -dnl If no 4th arg is given, leave the cache variable unset, -dnl so AC_PATH_PROGS will keep looking. -ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" -])dnl - ;; -esac])dnl -$1="$ac_cv_path_$1" -if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then - AC_MSG_RESULT([$][$1]) -else - AC_MSG_RESULT([no]) -fi -AC_SUBST([$1])dnl -]) diff -Nru mate-utils-1.26.0/Makefile.in mate-utils-1.26.1/Makefile.in --- mate-utils-1.26.0/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,952 +0,0 @@ -# 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 . -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@ -@BUILD_DISK_IMAGE_MOUNTER_TRUE@am__append_1 = \ -@BUILD_DISK_IMAGE_MOUNTER_TRUE@ mate-disk-image-mounter - -subdir = . -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 $(top_srcdir)/configure \ - $(am__configure_deps) $(am__DIST_COMMON) -am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ - configure.lineno config.status.lineno -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = config.h -CONFIG_CLEAN_FILES = -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 = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - cscope distdir distdir-am dist dist-all distcheck -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \ - config.h.in -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -CSCOPE = cscope -DIST_SUBDIRS = po baobab mate-dictionary mate-screenshot gsearchtool \ - logview mate-disk-image-mounter -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \ - ABOUT-NLS AUTHORS COPYING ChangeLog NEWS THANKS compile \ - config.guess config.rpath config.sub install-sh ltmain.sh \ - missing -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -distdir = $(PACKAGE)-$(VERSION) -top_distdir = $(distdir) -am__remove_distdir = \ - if test -d "$(distdir)"; then \ - find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ - && rm -rf "$(distdir)" \ - || { sleep 5 && rm -rf "$(distdir)"; }; \ - else :; fi -am__post_remove_distdir = $(am__remove_distdir) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -GZIP_ENV = --best -DIST_ARCHIVES = $(distdir).tar.xz -DIST_TARGETS = dist-xz -distuninstallcheck_listfiles = find . -type f -print -am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ - | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' -ACLOCAL = @ACLOCAL@ -ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} -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@ -distcleancheck_listfiles = find . -type f -print | grep -v 'omf\.out' | grep -v 'legal.xml' -@USE_NLS_TRUE@PO_SUBDIR = po -SUBDIRS = $(PO_SUBDIR) baobab mate-dictionary mate-screenshot \ - gsearchtool logview $(NULL) $(am__append_1) -EXTRA_DIST = \ - autogen.sh \ - omf.make \ - xmldocs.make \ - COPYING.libs \ - COPYING.docs \ - README.md - -DISTCLEANFILES = \ - gtk-doc.make - -DISTCHECK_CONFIGURE_FLAGS = \ - --enable-gtk-doc \ - --enable-compile-warnings=no \ - CFLAGS='-Wno-deprecated-declarations' - -all: config.h - $(MAKE) $(AM_MAKEFLAGS) all-recursive - -.SUFFIXES: -am--refresh: Makefile - @: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ - $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ - && exit 0; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - echo ' $(SHELL) ./config.status'; \ - $(SHELL) ./config.status;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - $(SHELL) ./config.status --recheck - -$(top_srcdir)/configure: $(am__configure_deps) - $(am__cd) $(srcdir) && $(AUTOCONF) -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) -$(am__aclocal_m4_deps): - -config.h: stamp-h1 - @test -f $@ || rm -f stamp-h1 - @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 - -stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status - @rm -f stamp-h1 - cd $(top_builddir) && $(SHELL) ./config.status config.h -$(srcdir)/config.h.in: $(am__configure_deps) - ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) - rm -f stamp-h1 - touch $@ - -distclean-hdr: - -rm -f config.h stamp-h1 - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -distclean-libtool: - -rm -f libtool config.lt - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscope: cscope.files - test ! -s cscope.files \ - || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) -clean-cscope: - -rm -f cscope.files -cscope.files: clean-cscope cscopelist -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -rm -f cscope.out cscope.in.out cscope.po.out cscope.files - -distdir: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) distdir-am - -distdir-am: $(DISTFILES) - @case `sed 15q $(srcdir)/NEWS` in \ - *"$(VERSION)"*) : ;; \ - *) \ - echo "NEWS not updated; not releasing" 1>&2; \ - exit 1;; \ - esac - $(am__remove_distdir) - test -d "$(distdir)" || mkdir "$(distdir)" - @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 - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done - -test -n "$(am__skip_mode_fix)" \ - || find "$(distdir)" -type d ! -perm -755 \ - -exec chmod u+rwx,go+rx {} \; -o \ - ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ - ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ - ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ - || chmod -R a+r "$(distdir)" -dist-gzip: distdir - tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz - $(am__post_remove_distdir) - -dist-bzip2: distdir - tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 - $(am__post_remove_distdir) - -dist-lzip: distdir - tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz - $(am__post_remove_distdir) -dist-xz: distdir - tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz - $(am__post_remove_distdir) - -dist-zstd: distdir - tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst - $(am__post_remove_distdir) - -dist-tarZ: distdir - @echo WARNING: "Support for distribution archives compressed with" \ - "legacy program 'compress' is deprecated." >&2 - @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 - tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z - $(am__post_remove_distdir) - -dist-shar: distdir - @echo WARNING: "Support for shar distribution archives is" \ - "deprecated." >&2 - @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 - shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz - $(am__post_remove_distdir) - -dist-zip: distdir - -rm -f $(distdir).zip - zip -rq $(distdir).zip $(distdir) - $(am__post_remove_distdir) - -dist dist-all: - $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' - $(am__post_remove_distdir) - -# This target untars the dist file and tries a VPATH configuration. Then -# it guarantees that the distribution is self-contained by making another -# tarfile. -distcheck: dist - case '$(DIST_ARCHIVES)' in \ - *.tar.gz*) \ - eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ - *.tar.bz2*) \ - bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ - *.tar.lz*) \ - lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ - *.tar.xz*) \ - xz -dc $(distdir).tar.xz | $(am__untar) ;;\ - *.tar.Z*) \ - uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ - *.shar.gz*) \ - eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ - *.zip*) \ - unzip $(distdir).zip ;;\ - *.tar.zst*) \ - zstd -dc $(distdir).tar.zst | $(am__untar) ;;\ - esac - chmod -R a-w $(distdir) - chmod u+w $(distdir) - mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst - chmod a-w $(distdir) - test -d $(distdir)/_build || exit 0; \ - dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ - && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ - && am__cwd=`pwd` \ - && $(am__cd) $(distdir)/_build/sub \ - && ../../configure \ - $(AM_DISTCHECK_CONFIGURE_FLAGS) \ - $(DISTCHECK_CONFIGURE_FLAGS) \ - --srcdir=../.. --prefix="$$dc_install_base" \ - && $(MAKE) $(AM_MAKEFLAGS) \ - && $(MAKE) $(AM_MAKEFLAGS) dvi \ - && $(MAKE) $(AM_MAKEFLAGS) check \ - && $(MAKE) $(AM_MAKEFLAGS) install \ - && $(MAKE) $(AM_MAKEFLAGS) installcheck \ - && $(MAKE) $(AM_MAKEFLAGS) uninstall \ - && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ - distuninstallcheck \ - && chmod -R a-w "$$dc_install_base" \ - && ({ \ - (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ - distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ - } || { rm -rf "$$dc_destdir"; exit 1; }) \ - && rm -rf "$$dc_destdir" \ - && $(MAKE) $(AM_MAKEFLAGS) dist \ - && rm -rf $(DIST_ARCHIVES) \ - && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ - && cd "$$am__cwd" \ - || exit 1 - $(am__post_remove_distdir) - @(echo "$(distdir) archives ready for distribution: "; \ - list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ - sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' -distcleancheck: distclean - @if test '$(srcdir)' = . ; then \ - echo "ERROR: distcleancheck can only run from a VPATH build" ; \ - exit 1 ; \ - fi - @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ - || { echo "ERROR: files left in build directory after distclean:" ; \ - $(distcleancheck_listfiles) ; \ - exit 1; } >&2 -check-am: all-am -check: check-recursive -all-am: Makefile config.h -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -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: - -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) - -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) - -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-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f $(am__CONFIG_DISTCLEAN_FILES) - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-hdr \ - distclean-libtool distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f $(am__CONFIG_DISTCLEAN_FILES) - -rm -rf $(top_srcdir)/autom4te.cache - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) all install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ - am--refresh check check-am clean clean-cscope clean-generic \ - clean-libtool cscope cscopelist-am ctags ctags-am dist \ - dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \ - dist-xz dist-zip dist-zstd distcheck distclean \ - distclean-generic distclean-hdr distclean-libtool \ - distclean-tags distcleancheck distdir distuninstallcheck dvi \ - dvi-am html html-am info info-am install install-am \ - 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-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs installdirs-am \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - -distuninstallcheck: - @: - -# Build ChangeLog from GIT history -ChangeLog: - $(AM_V_GEN) if test -d $(top_srcdir)/.git; then \ - GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \ - fi - -dist: ChangeLog - -.PHONY: ChangeLog - --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 -Nru mate-utils-1.26.0/makepot mate-utils-1.26.1/makepot --- mate-utils-1.26.0/makepot 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/makepot 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,23 @@ +#! /bin/sh + +PACKAGE=mate-utils; +DISK=mate-disk-usage-analyzer; +SEARCH=mate-search-tool; +LOG=mate-system-log; +DICT=mate-dictionary; + +# main translations +make -C po $PACKAGE.pot && mv po/$PACKAGE.pot . +sed -i "/#, fuzzy/d" $PACKAGE.pot + +# mate-disk-usage-analyzer +make -C baobab/help $DISK.pot && mv baobab/help/$DISK.pot . + +# mate-search-tool +make -C gsearchtool/help $SEARCH.pot && mv gsearchtool/help/$SEARCH.pot . + +# mate-system-log +make -C logview/help $LOG.pot && mv logview/help/$LOG.pot . + +# mate-dictionary +make -C $DICT/help $DICT.pot && mv $DICT/help/$DICT.pot . diff -Nru mate-utils-1.26.0/mate-dictionary/data/Makefile.in mate-utils-1.26.1/mate-dictionary/data/Makefile.in --- mate-utils-1.26.0/mate-dictionary/data/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/data/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,882 +0,0 @@ -# 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 . - -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@ -@BUILD_GDICT_APPLET_TRUE@am__append_1 = dictionary-applet-menu.xml -subdir = mate-dictionary/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.dictionary.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)$(appletdir)" "$(DESTDIR)$(builderdir)" \ - "$(DESTDIR)$(dictsourcedir)" "$(DESTDIR)$(gdictappdir)" \ - "$(DESTDIR)$(servicedir)" "$(DESTDIR)$(uidir)" -NROFF = nroff -MANS = $(man_MANS) -DATA = $(appdata_DATA) $(applet_DATA) $(builder_DATA) \ - $(dictsource_DATA) $(gdictapp_DATA) $(service_DATA) $(ui_DATA) -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(srcdir)/org.mate.dictionary.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@ -NULL = -man_MANS = mate-dictionary.1 -gdictappdir = $(datadir)/applications -gdictapp_in_files = mate-dictionary.desktop.in -gdictapp_DATA = $(gdictapp_in_files:.desktop.in=.desktop) - -# dictionary sources definitions -dictsourcedir = $(datadir)/mate-dict/sources -dictsource_in_files = \ - default.desktop.in \ - thai.desktop.in \ - $(NULL) - -dictsource_DATA = $(dictsource_in_files:.desktop.in=.desktop) -builderdir = $(datadir)/mate-dictionary -builder_DATA = \ - mate-dictionary-preferences.ui \ - mate-dictionary-source.ui \ - $(NULL) - -uidir = $(datadir)/mate-dictionary -ui_DATA = mate-dictionary-ui.xml $(am__append_1) - -# applet file, dbus service, and menu definition -@BUILD_GDICT_APPLET_TRUE@appletdir = $(datadir)/mate-panel/applets -@BUILD_GDICT_APPLET_TRUE@applet_in_files = org.mate.DictionaryApplet.mate-panel-applet.desktop.in -@BUILD_GDICT_APPLET_TRUE@applet_DATA = $(applet_in_files:.mate-panel-applet.desktop.in=.mate-panel-applet) -@BUILD_GDICT_APPLET_TRUE@servicedir = $(datadir)/dbus-1/services -@BUILD_GDICT_APPLET_TRUE@service_in_files = org.mate.panel.applet.DictionaryAppletFactory.service.in -@BUILD_GDICT_APPLET_TRUE@service_DATA = $(service_in_files:.service.in=.service) -appdatadir = $(datadir)/metainfo -appdata_in_files = mate-dictionary.appdata.xml.in -appdata_DATA = $(appdata_in_files:.xml.in=.xml) -gsettings_SCHEMAS = org.mate.dictionary.gschema.xml -EXTRA_DIST = \ - $(applet_in_files).in \ - $(service_in_files) \ - $(gdictapp_in_files).in \ - $(dictsource_in_files) \ - $(man_MANS) \ - $(appdata_in_files) \ - $(builder_DATA) \ - $(ui_DATA) \ - $(NULL) - -CLEANFILES = \ - $(applet_DATA) \ - $(applet_DATA).in \ - $(applet_in_files) \ - $(service_DATA) \ - $(dictsource_DATA) \ - $(gdictapp_in_files) \ - $(gdictapp_DATA) \ - $(gsettings_SCHEMAS) \ - mate-dictionary.appdata.xml \ - $(NULL) - -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 mate-dictionary/data/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign mate-dictionary/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.dictionary.gschema.xml: $(top_builddir)/config.status $(srcdir)/org.mate.dictionary.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-appletDATA: $(applet_DATA) - @$(NORMAL_INSTALL) - @list='$(applet_DATA)'; test -n "$(appletdir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(appletdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(appletdir)" || 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)$(appletdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(appletdir)" || exit $$?; \ - done - -uninstall-appletDATA: - @$(NORMAL_UNINSTALL) - @list='$(applet_DATA)'; test -n "$(appletdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(appletdir)'; $(am__uninstall_files_from_dir) -install-builderDATA: $(builder_DATA) - @$(NORMAL_INSTALL) - @list='$(builder_DATA)'; test -n "$(builderdir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(builderdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(builderdir)" || 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)$(builderdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(builderdir)" || exit $$?; \ - done - -uninstall-builderDATA: - @$(NORMAL_UNINSTALL) - @list='$(builder_DATA)'; test -n "$(builderdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(builderdir)'; $(am__uninstall_files_from_dir) -install-dictsourceDATA: $(dictsource_DATA) - @$(NORMAL_INSTALL) - @list='$(dictsource_DATA)'; test -n "$(dictsourcedir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(dictsourcedir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(dictsourcedir)" || 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)$(dictsourcedir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(dictsourcedir)" || exit $$?; \ - done - -uninstall-dictsourceDATA: - @$(NORMAL_UNINSTALL) - @list='$(dictsource_DATA)'; test -n "$(dictsourcedir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(dictsourcedir)'; $(am__uninstall_files_from_dir) -install-gdictappDATA: $(gdictapp_DATA) - @$(NORMAL_INSTALL) - @list='$(gdictapp_DATA)'; test -n "$(gdictappdir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(gdictappdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(gdictappdir)" || 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)$(gdictappdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(gdictappdir)" || exit $$?; \ - done - -uninstall-gdictappDATA: - @$(NORMAL_UNINSTALL) - @list='$(gdictapp_DATA)'; test -n "$(gdictappdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(gdictappdir)'; $(am__uninstall_files_from_dir) -install-serviceDATA: $(service_DATA) - @$(NORMAL_INSTALL) - @list='$(service_DATA)'; test -n "$(servicedir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(servicedir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(servicedir)" || 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)$(servicedir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(servicedir)" || exit $$?; \ - done - -uninstall-serviceDATA: - @$(NORMAL_UNINSTALL) - @list='$(service_DATA)'; test -n "$(servicedir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(servicedir)'; $(am__uninstall_files_from_dir) -install-uiDATA: $(ui_DATA) - @$(NORMAL_INSTALL) - @list='$(ui_DATA)'; test -n "$(uidir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(uidir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(uidir)" || 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)$(uidir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(uidir)" || exit $$?; \ - done - -uninstall-uiDATA: - @$(NORMAL_UNINSTALL) - @list='$(ui_DATA)'; test -n "$(uidir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(uidir)'; $(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)$(appletdir)" "$(DESTDIR)$(builderdir)" "$(DESTDIR)$(dictsourcedir)" "$(DESTDIR)$(gdictappdir)" "$(DESTDIR)$(servicedir)" "$(DESTDIR)$(uidir)"; 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-appletDATA \ - install-builderDATA install-dictsourceDATA \ - install-gdictappDATA install-man install-serviceDATA \ - install-uiDATA - -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-appletDATA \ - uninstall-builderDATA uninstall-dictsourceDATA \ - uninstall-gdictappDATA uninstall-man uninstall-serviceDATA \ - uninstall-uiDATA - -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-appletDATA \ - install-builderDATA install-data install-data-am \ - install-dictsourceDATA install-dvi install-dvi-am install-exec \ - install-exec-am install-gdictappDATA 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-serviceDATA install-strip install-uiDATA \ - 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-appletDATA \ - uninstall-builderDATA uninstall-dictsourceDATA \ - uninstall-gdictappDATA uninstall-man uninstall-man1 \ - uninstall-serviceDATA uninstall-uiDATA - -.PRECIOUS: Makefile - - -$(gdictapp_in_files): $(gdictapp_in_files:.desktop.in=.desktop.in.in) - $(AM_V_GEN)sed -e "s|\@VERSION\@|@VERSION@|" $< > $@ - -$(gdictapp_DATA): $(gdictapp_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 $< $@ - -$(dictsource_DATA): $(dictsource_in_files) -@USE_NLS_TRUE@ $(AM_V_GEN) $(MSGFMT) --desktop --keyword= --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@ -@USE_NLS_FALSE@ $(AM_V_GEN) cp $< $@ - -@BUILD_GDICT_APPLET_TRUE@$(applet_in_files): $(applet_in_files).in Makefile -@BUILD_GDICT_APPLET_TRUE@ $(AM_V_GEN)sed \ -@BUILD_GDICT_APPLET_TRUE@ -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \ -@BUILD_GDICT_APPLET_TRUE@ $< > $@ - -@BUILD_GDICT_APPLET_TRUE@$(applet_DATA): $(applet_in_files) Makefile -@BUILD_GDICT_APPLET_TRUE@@USE_NLS_TRUE@ $(AM_V_GEN) $(MSGFMT) --desktop --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@ -@BUILD_GDICT_APPLET_TRUE@@USE_NLS_FALSE@ $(AM_V_GEN) cp $< $@ - -@BUILD_GDICT_APPLET_TRUE@org.mate.panel.applet.DictionaryAppletFactory.service: $(service_in_files) -@BUILD_GDICT_APPLET_TRUE@ $(AM_V_GEN)sed \ -@BUILD_GDICT_APPLET_TRUE@ -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \ -@BUILD_GDICT_APPLET_TRUE@ $< > $@ - -$(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 -Nru mate-utils-1.26.0/mate-dictionary/docs/Makefile.in mate-utils-1.26.1/mate-dictionary/docs/Makefile.in --- mate-utils-1.26.0/mate-dictionary/docs/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,728 +0,0 @@ -# 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 . -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 = mate-dictionary/docs -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 = -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 = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir distdir-am -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -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@ -SUBDIRS = reference -EXTRA_DIST = source-configuration.txt -all: all-recursive - -.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 mate-dictionary/docs/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign mate-dictionary/docs/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): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -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: - -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-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ - check-am clean clean-generic clean-libtool cscopelist-am ctags \ - ctags-am distclean distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am 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-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - installdirs-am maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ - ps ps-am tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - --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 -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/gdict-sections.txt mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/gdict-sections.txt --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/gdict-sections.txt 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/gdict-sections.txt 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,336 @@ +
+gdict-client-context +GdictClientContext +GdictClientContext +GdictClientContextClass +GdictClientContextError +gdict_client_context_new +gdict_client_context_set_hostname +gdict_client_context_get_hostname +gdict_client_context_set_port +gdict_client_context_get_port +gdict_client_context_set_client +gdict_client_context_get_client + +GdictContext +GDICT_CLIENT_CONTEXT +GDICT_IS_CLIENT_CONTEXT +GDICT_TYPE_CLIENT_CONTEXT +gdict_client_context_get_type +GDICT_CLIENT_CONTEXT_CLASS +GDICT_CLIENT_CONTEXT_GET_CLASS +GDICT_CLIENT_CONTEXT_ERROR +gdict_client_context_error_quark + +GdictClientContextPrivate +
+ +
+gdict-context +GdictContext +GdictContextIface +GdictContextError +gdict_context_set_local_only +gdict_context_get_local_only +gdict_context_lookup_databases +gdict_context_lookup_strategies +gdict_context_match_word +gdict_context_define_word + +GdictDatabase +gdict_database_ref +gdict_database_unref +gdict_database_get_name +gdict_database_get_full_name + +GdictStrategy +gdict_strategy_ref +gdict_strategy_unref +gdict_strategy_get_name +gdict_strategy_get_description + +GdictMatch +gdict_match_ref +gdict_match_unref +gdict_match_get_word +gdict_match_get_database + +GdictDefinition +gdict_definition_ref +gdict_definition_unref +gdict_definition_get_total +gdict_definition_get_word +gdict_definition_get_database +gdict_definition_get_text + +GDICT_TYPE_DATABASE +GDICT_TYPE_STRATEGY +GDICT_TYPE_MATCH +GDICT_TYPE_DEFINITION +GDICT_CONTEXT +GDICT_IS_CONTEXT +GDICT_TYPE_CONTEXT +gdict_context_get_type +gdict_database_get_type +gdict_definition_get_type +gdict_match_get_type +gdict_strategy_get_type +GDICT_CONTEXT_GET_IFACE +GDICT_CONTEXT_ERROR +gdict_context_error_quark +
+ +
+gdict-database-chooser +GdictDatabaseChooser +GdictDatabaseChooser +GdictDatabaseChooserClass +gdict_database_chooser_new +gdict_database_chooser_new_with_context +gdict_database_chooser_get_context +gdict_database_chooser_set_context +gdict_database_chooser_get_databases +gdict_database_chooser_count_databases +gdict_database_chooser_has_database +gdict_database_chooser_refresh +gdict_database_chooser_clear +gdict_database_chooser_add_button +gdict_database_chooser_get_current_database +gdict_database_chooser_select_database +gdict_database_chooser_set_current_database +gdict_database_chooser_unselect_database + +GDICT_DATABASE_CHOOSER +GDICT_IS_DATABASE_CHOOSER +GDICT_TYPE_DATABASE_CHOOSER +gdict_database_chooser_get_type +GDICT_DATABASE_CHOOSER_CLASS +GDICT_IS_DATABASE_CHOOSER_CLASS +GDICT_DATABASE_CHOOSER_GET_CLASS + +GdictDatabaseChooserPrivate +
+ +
+gdict-defbox +GdictDefbox +GdictDefbox +GdictDefboxClass +gdict_defbox_new +gdict_defbox_new_with_context +gdict_defbox_set_context +gdict_defbox_get_context +gdict_defbox_set_database +gdict_defbox_get_database +gdict_defbox_get_text +gdict_defbox_select_all +gdict_defbox_copy_to_clipboard +gdict_defbox_clear +gdict_defbox_lookup +gdict_defbox_get_word +gdict_defbox_count_definitions +gdict_defbox_jump_to_definition +gdict_defbox_set_show_find +gdict_defbox_get_show_find +gdict_defbox_find_next +gdict_defbox_find_previous +gdict_defbox_set_font_name +gdict_defbox_get_font_name +gdict_defbox_get_selected_word + +GDICT_DEFBOX +GDICT_IS_DEFBOX +GDICT_TYPE_DEFBOX +gdict_defbox_get_type +GDICT_DEFBOX_CLASS +GDICT_IS_DEFBOX_CLASS +GDICT_DEFBOX_GET_CLASS + +GdictDefboxPrivate +
+ +
+gdict-source-loader +GdictSourceLoader +GdictSourceLoader +GdictSourceLoaderClass +gdict_source_loader_new +gdict_source_loader_update +gdict_source_loader_add_search_path +gdict_source_loader_get_paths +gdict_source_loader_get_names +gdict_source_loader_get_sources +gdict_source_loader_get_source +gdict_source_loader_remove_source +gdict_source_loader_has_source + +GDICT_SOURCE_LOADER +GDICT_IS_SOURCE_LOADER +GDICT_TYPE_SOURCE_LOADER +gdict_source_loader_get_type +GDICT_SOURCE_LOADER_CLASS +GDICT_IS_SOURCE_LOADER_CLASS +GDICT_SOURCE_LOADER_GET_CLASS + +GdictSourceLoaderPrivate +
+ +
+gdict-source +GdictSource +GdictSourceError +GdictSource +GdictSourceClass +gdict_source_new +gdict_source_load_from_file +gdict_source_load_from_data +gdict_source_to_data +gdict_source_set_name +gdict_source_get_name +gdict_source_set_description +gdict_source_get_description +gdict_source_set_database +gdict_source_get_database +gdict_source_set_strategy +gdict_source_get_strategy +GdictSourceTransport +gdict_source_set_transport +gdict_source_set_transportv +gdict_source_get_transport +gdict_source_get_context +gdict_source_peek_context + +GDICT_SOURCE +GDICT_IS_SOURCE +GDICT_TYPE_SOURCE +gdict_source_get_type +GDICT_SOURCE_CLASS +GDICT_IS_SOURCE_CLASS +GDICT_SOURCE_GET_CLASS +GDICT_SOURCE_ERROR +gdict_source_error_quark + +GdictSourcePrivate +
+ +
+gdict-speller +GdictSpeller +GdictSpeller +GdictSpellerClass +gdict_speller_new +gdict_speller_new_with_context +gdict_speller_set_context +gdict_speller_get_context +gdict_speller_set_database +gdict_speller_get_database +gdict_speller_set_strategy +gdict_speller_get_strategy +gdict_speller_clear +gdict_speller_match +gdict_speller_count_matches +gdict_speller_get_matches + +GDICT_SPELLER +GDICT_IS_SPELLER +GDICT_TYPE_SPELLER +gdict_speller_get_type +GDICT_SPELLER_CLASS +GDICT_IS_SPELLER_CLASS +GDICT_SPELLER_GET_CLASS + +GdictSpellerPrivate +
+ +
+gdict-strategy-chooser +GdictStrategyChooser +GdictStrategyChooser +GdictStrategyChooserClass +gdict_strategy_chooser_new +gdict_strategy_chooser_new_with_context +gdict_strategy_chooser_get_context +gdict_strategy_chooser_set_context +gdict_strategy_chooser_get_strategies +gdict_strategy_chooser_has_strategy +gdict_strategy_chooser_add_button +gdict_strategy_chooser_clear +gdict_strategy_chooser_count_strategies +gdict_strategy_chooser_get_current_strategy +gdict_strategy_chooser_refresh +gdict_strategy_chooser_select_strategy +gdict_strategy_chooser_set_current_strategy +gdict_strategy_chooser_unselect_strategy + +GDICT_STRATEGY_CHOOSER +GDICT_IS_STRATEGY_CHOOSER +GDICT_TYPE_STRATEGY_CHOOSER +gdict_strategy_chooser_get_type +GDICT_STRATEGY_CHOOSER_CLASS +GDICT_IS_STRATEGY_CHOOSER_CLASS +GDICT_STRATEGY_CHOOSER_GET_CLASS + +GdictStrategyChooserPrivate +
+ +
+gdict-source-chooser +GdictSourceChooser +GdictSourceChooser +GdictSourceChooserClass +gdict_source_chooser_new +gdict_source_chooser_new_with_loader +gdict_source_chooser_get_loader +gdict_source_chooser_set_loader +gdict_source_chooser_get_sources +gdict_source_chooser_count_sources +gdict_source_chooser_has_source +gdict_source_chooser_refresh +gdict_source_chooser_select_source +gdict_source_chooser_unselect_source +gdict_source_chooser_get_current_source +gdict_source_chooser_set_current_source +gdict_source_chooser_add_button + +GDICT_SOURCE_CHOOSER +GDICT_SOURCE_CHOOSER_CLASS +GDICT_SOURCE_CHOOSER_GET_CLASS +GDICT_TYPE_SOURCE_CHOOSER +GDICT_IS_SOURCE_CHOOSER +GDICT_IS_SOURCE_CHOOSER_CLASS +gdict_source_chooser_get_type + +GdictSourceChooserPrivate +
+ +
+gdict-utils +Gdict Utilities +GDICT_DEFAULT_DATABASE +GDICT_DEFAULT_STRATEGY +GDICT_DEFAULT_FONT_NAME +GdictContextProp +GdictStatusCode +gdict_debug_init +gdict_get_option_group + +GDICT_IS_VALID_STATUS_CODE +
+ +
+gdict-version +Gdict Version Checking +GDICT_MAJOR_VERSION +GDICT_MINOR_VERSION +GDICT_MICRO_VERSION +GDICT_VERSION +GDICT_VERSION_S +GDICT_VERSION_HEX +GDICT_CHECK_VERSION + +gdict_major +gdict_minor +gdict_micro +gdict_check_version +
+ diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/gdict.types mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/gdict.types --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/gdict.types 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/gdict.types 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,9 @@ +gdict_client_context_get_type +gdict_context_get_type +gdict_database_chooser_get_type +gdict_defbox_get_type +gdict_source_get_type +gdict_source_chooser_get_type +gdict_source_loader_get_type +gdict_speller_get_type +gdict_strategy_chooser_get_type diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/ch05.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/ch05.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/ch05.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/ch05.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ - - - - -Base widgets: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-

-Base widgets

-
-
-GdictDefbox — Display the list of definitions for a word -
-
-GdictSpeller — Display matching words -
-
-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/ch06.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/ch06.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/ch06.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/ch06.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - -Advanced widgets: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-

-Advanced widgets

-
-
-GdictDatabaseChooser — Display the list of available databases -
-
-GdictStrategyChooser — Display a list of matching strategies -
-
-GdictSourceChooser — Display the list of available sources -
-
-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/context.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/context.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/context.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/context.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - -Dictionary Context: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-

-Dictionary Context

-
-GdictContext — Interface for dictionary transports -
-

A dictionary context is a representation of a transport method, - that is a way to access a dictionary source.

-

A dictionary source is any digital representation of a language - dictionary which provides a way to programmatically query its contents - for the available definitions of a word, phrase or any kind of - text.

-

A dictionary source might use files encoded using the DICT or the - StarDict formats, and offer an interface for queries compliant to the - Dictionary Protocol as defined by the RFC 2229.

-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/context-types.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/context-types.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/context-types.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/context-types.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ - - - - -Context Implementations: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-

-Context Implementations

-
-GdictClientContext — DICT client transport -
-

The only context implementation currently available is a client - for the Dictionary Protocol.

-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictClientContext.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictClientContext.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictClientContext.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictClientContext.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,591 +0,0 @@ - - - - -GdictClientContext: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

GdictClientContext

-

GdictClientContext — DICT client transport

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-GQuark - -gdict_client_context_error_quark () -
-GdictContext * - -gdict_client_context_new () -
-void - -gdict_client_context_set_hostname () -
const gchar * - -gdict_client_context_get_hostname () -
-void - -gdict_client_context_set_port () -
-guint - -gdict_client_context_get_port () -
-void - -gdict_client_context_set_client () -
const gchar * - -gdict_client_context_get_client () -
-
-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - -
-char *client-nameRead / Write
-char *hostnameRead / Write
guintportRead / Write
GdictStatusCodestatusRead
-
-
-

Signals

-
----- - - - - - - - - - - - - -
voidconnectedRun Last
voiddisconnectedRun Last
-
-
-

Types and Values

-
---- - - - - - - - - - - -
#defineGDICT_CLIENT_CONTEXT_ERROR
enumGdictClientContextError
-
-
-

Object Hierarchy

-
    GObject
-    ╰── GdictClientContext
-
-
-
-

Description

-

GdictClientContext is an implementation of the GdictContext interface. -It implements the Dictionary Protocol as defined by the RFC 2229 in order -to connect to a dictionary server.

-

You should rarely instantiate this object directely: use an appropriate -GdictSource instead.

-
-
-

Functions

-
-

gdict_client_context_error_quark ()

-
GQuark
-gdict_client_context_error_quark (void);
-
-
-
-

gdict_client_context_new ()

-
GdictContext *
-gdict_client_context_new (const gchar *hostname,
-                          gint port);
-

Creates a new GdictClientContext object for hostname -. Use this -object to connect and query the dictionary server using the Dictionary -Protocol as defined by RFC 2229.

-
-

Parameters

-
----- - - - - - - - - - - - - -

hostname

the hostname of a dictionary server, or NULL for the -default server

 

port

port to be used when connecting to the dictionary server, -or -1 for the default port

 
-
-
-

Returns

-

the newly created GdictClientContext object. You should -free it using g_object_unref().

-
-
-
-
-

gdict_client_context_set_hostname ()

-
void
-gdict_client_context_set_hostname (GdictClientContext *context,
-                                   const gchar *hostname);
-

Sets hostname - as the hostname of the dictionary server to be used. -If hostname - is NULL, the default dictionary server will be used.

-
-

Parameters

-
----- - - - - - - - - - - - - -

context

a GdictClientContext

 

hostname

the hostname of a Dictionary server, or NULL

 
-
-
-
-
-

gdict_client_context_get_hostname ()

-
const gchar *
-gdict_client_context_get_hostname (GdictClientContext *context);
-

Gets the hostname of the dictionary server used by context -.

-
-

Parameters

-
----- - - - - - -

context

a GdictClientContext

 
-
-
-

Returns

-

the hostname of a dictionary server. The returned string is -owned by the GdictClientContext object and should never be modified or -freed.

-
-
-
-
-

gdict_client_context_set_port ()

-
void
-gdict_client_context_set_port (GdictClientContext *context,
-                               gint port);
-

Sets the port of the dictionary server to be used when connecting.

-

If port - is -1, the default port will be used.

-
-

Parameters

-
----- - - - - - - - - - - - - -

context

a GdictClientContext

 

port

port of the dictionary server to be used, or -1

 
-
-
-
-
-

gdict_client_context_get_port ()

-
guint
-gdict_client_context_get_port (GdictClientContext *context);
-

Gets the port of the dictionary server used by context -.

-
-

Parameters

-
----- - - - - - -

context

a GdictClientContext

 
-
-
-

Returns

-

the number of the port.

-
-
-
-
-

gdict_client_context_set_client ()

-
void
-gdict_client_context_set_client (GdictClientContext *context,
-                                 const gchar *client);
-

Sets client - as the client name to be used when advertising ourselves when -a connection the the dictionary server has been established. -If client - is NULL, the default client name will be used.

-
-

Parameters

-
----- - - - - - - - - - - - - -

context

a GdictClientContext

 

client

the client name to use, or NULL

 
-
-
-
-
-

gdict_client_context_get_client ()

-
const gchar *
-gdict_client_context_get_client (GdictClientContext *context);
-

Gets the client name used by context -. See gdict_client_context_set_client().

-
-

Parameters

-
----- - - - - - -

context

a GdictClientContext

 
-
-
-

Returns

-

the client name. The returned string is owned by the -GdictClientContext object and should never be modified or freed.

-
-
-
-
-

Types and Values

-
-

GDICT_CLIENT_CONTEXT_ERROR

-
#define GDICT_CLIENT_CONTEXT_ERROR (gdict_client_context_error_quark ())
-
-
-
-
-

enum GdictClientContextError

-

GdictClientContext error enumeration

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - -

GDICT_CLIENT_CONTEXT_ERROR_SOCKET

  

GDICT_CLIENT_CONTEXT_ERROR_LOOKUP

  

GDICT_CLIENT_CONTEXT_ERROR_NO_CONNECTION

  

GDICT_CLIENT_CONTEXT_ERROR_SERVER_DOWN

  
-
-
-
-
-

Property Details

-
-

The “client-name” property

-
  “client-name”              char *
-

The name of the client using this context; it will be advertised when -connecting to the dictionary server.

-

Owner: GdictClientContext

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.0

-
-
-
-

The “hostname” property

-
  “hostname”                 char *
-

The hostname of the dictionary server to connect to.

-

Owner: GdictClientContext

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.0

-
-
-
-

The “port” property

-
  “port”                     guint
-

The port of the dictionary server to connect to.

-

Owner: GdictClientContext

-

Flags: Read / Write

-

Allowed values: <= 65535

-

Default value: 2628

-

Since: 1.0

-
-
-
-

The “status” property

-
  “status”                   GdictStatusCode
-

The status code as returned by the dictionary server.

-

Owner: GdictClientContext

-

Flags: Read

-

Default value: GDICT_STATUS_INVALID

-

Since: 1.0

-
-
-
-

Signal Details

-
-

The “connected” signal

-
void
-user_function (GdictClientContext *client,
-               gpointer            user_data)
-

Emitted when a GdictClientContext has successfully established a -connection with a dictionary server.

-
-

Parameters

-
----- - - - - - - - - - - - - -

client

the object which received the signal

 

user_data

user data set when the signal handler was connected.

 
-
-

Flags: Run Last

-

Since: 1.0

-
-
-
-

The “disconnected” signal

-
void
-user_function (GdictClientContext *client,
-               gpointer            user_data)
-

Emitted when a GdictClientContext has disconnected from a dictionary -server.

-
-

Parameters

-
----- - - - - - - - - - - - - -

client

the object which received the signal

 

user_data

user data set when the signal handler was connected.

 
-
-

Flags: Run Last

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictContext.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictContext.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictContext.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictContext.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,1533 +0,0 @@ - - - - -GdictContext: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

GdictContext

-

GdictContext — Interface for dictionary transports

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-GQuark - -gdict_context_error_quark () -
-GdictDatabase * - -gdict_database_ref () -
-void - -gdict_database_unref () -
const gchar * - -gdict_database_get_name () -
const gchar * - -gdict_database_get_full_name () -
-GdictStrategy * - -gdict_strategy_ref () -
-void - -gdict_strategy_unref () -
const gchar * - -gdict_strategy_get_name () -
const gchar * - -gdict_strategy_get_description () -
-GdictMatch * - -gdict_match_ref () -
-void - -gdict_match_unref () -
const gchar * - -gdict_match_get_word () -
const gchar * - -gdict_match_get_database () -
-GdictDefinition * - -gdict_definition_ref () -
-void - -gdict_definition_unref () -
-gint - -gdict_definition_get_total () -
const gchar * - -gdict_definition_get_word () -
const gchar * - -gdict_definition_get_database () -
const gchar * - -gdict_definition_get_text () -
-void - -gdict_context_set_local_only () -
-gboolean - -gdict_context_get_local_only () -
-gboolean - -gdict_context_lookup_databases () -
-gboolean - -gdict_context_lookup_strategies () -
-gboolean - -gdict_context_match_word () -
-gboolean - -gdict_context_define_word () -
-
-
-

Properties

-
----- - - - - - -
gbooleanlocal-onlyRead / Write
-
-
-

Signals

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
voiddatabase-foundRun Last
voiddefinition-foundRun Last
voiderrorRun Last
voidlookup-endRun Last
voidlookup-startRun Last
voidmatch-foundRun Last
voidstrategy-foundRun Last
-
-
-

Types and Values

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#defineGDICT_CONTEXT_ERROR
enumGdictContextError
structGdictContextIface
 GdictDatabase
 GdictDefinition
 GdictMatch
 GdictStrategy
-
-
-

Object Hierarchy

-
    GBoxed
-    ├── GdictDatabase
-    ├── GdictDefinition
-    ├── GdictMatch
-    ╰── GdictStrategy
-    GInterface
-    ╰── GdictContext
-
-
-
-

Description

-

GdictContext is an interface used to uniformly access dictionary -transport objects. Each implementation of GdictContext must provide -functions for accessing the list of databases available on a dictionary -source and the available matching strategies; a function for retrieving -all words matching a given string, inside one (or more) of those databases -and using one of those strategies; a function for querying one (or more) -of those databases for a definition of a word.

-

Implementations of the GdictContext interface should query their -dictionary sources asynchronously; methods of the GdictContext interface -should return immediately, and each time a new database, strategy, match -or definition has been found, a signal should be fired by those -implementations.

-
-
-

Functions

-
-

gdict_context_error_quark ()

-
GQuark
-gdict_context_error_quark (void);
-
-
-
-

gdict_database_ref ()

-
GdictDatabase *
-gdict_database_ref (GdictDatabase *db);
-

Increases the reference count of db - by one.

-
-

Parameters

-
----- - - - - - -

db

a GdictDatabase

 
-
-
-

Returns

-

db -with its reference count increased

-
-

Since: 1.0

-
-
-
-

gdict_database_unref ()

-
void
-gdict_database_unref (GdictDatabase *db);
-

Decreases the reference count of db - by one. If the reference count reaches -zero, db - is destroyed.

-
-

Parameters

-
----- - - - - - -

db

a GdictDatabase

 
-
-

Since: 1.0

-
-
-
-

gdict_database_get_name ()

-
const gchar *
-gdict_database_get_name (GdictDatabase *db);
-

Gets the short name of the database, to be used with functions like -gdict_context_match_word() or gdict_context_define_word().

-
-

Parameters

-
----- - - - - - -

db

a GdictDatabase

 
-
-
-

Returns

-

the short name of the database. The string is owned by -the GdictDatabase object, and should never be modified or freed.

-
-

Since: 1.0

-
-
-
-

gdict_database_get_full_name ()

-
const gchar *
-gdict_database_get_full_name (GdictDatabase *db);
-

Gets the full name of the database, suitable for display.

-
-

Parameters

-
----- - - - - - -

db

a GdictDatabase

 
-
-
-

Returns

-

the full name of the database. The string is owned by -the GdictDatabase object, and should never be modified or freed.

-
-

Since: 1.0

-
-
-
-

gdict_strategy_ref ()

-
GdictStrategy *
-gdict_strategy_ref (GdictStrategy *strat);
-

Increases the reference count of strat - by one.

-
-

Parameters

-
----- - - - - - -

strat

a GdictStrategy

 
-
-
-

Returns

-

the GdictStrategy object with its reference count -increased

-
-

Since: 1.0

-
-
-
-

gdict_strategy_unref ()

-
void
-gdict_strategy_unref (GdictStrategy *strat);
-

Decreases the reference count of strat - by one. If the reference count -reaches zero, the GdictStrategy object is freed.

-
-

Parameters

-
----- - - - - - -

strat

a GdictStrategy

 
-
-

Since: 1.0

-
-
-
-

gdict_strategy_get_name ()

-
const gchar *
-gdict_strategy_get_name (GdictStrategy *strat);
-

FIXME

-
-

Parameters

-
----- - - - - - -

strat

a GdictStrategy

 
-
-
-

Returns

-

FIXME

-
-

Since: 1.0

-
-
-
-

gdict_strategy_get_description ()

-
const gchar *
-gdict_strategy_get_description (GdictStrategy *strat);
-

FIXME

-
-

Parameters

-
----- - - - - - -

strat

a GdictStrategy

 
-
-
-

Returns

-

FIXME

-
-

Since: 1.0

-
-
-
-

gdict_match_ref ()

-
GdictMatch *
-gdict_match_ref (GdictMatch *match);
-

FIXME

-
-

Parameters

-
----- - - - - - -

match

a GdictMatch

 
-
-
-

Returns

-

FIXME

-
-

Since: 1.0

-
-
-
-

gdict_match_unref ()

-
void
-gdict_match_unref (GdictMatch *match);
-

FIXME

-
-

Parameters

-
----- - - - - - -

match

a GdictMatch

 
-
-

Since: 1.0

-
-
-
-

gdict_match_get_word ()

-
const gchar *
-gdict_match_get_word (GdictMatch *match);
-

FIXME

-
-

Parameters

-
----- - - - - - -

match

a GdictMatch

 
-
-
-

Returns

-

FIXME

-
-

Since: 1.0

-
-
-
-

gdict_match_get_database ()

-
const gchar *
-gdict_match_get_database (GdictMatch *match);
-

FIXME

-
-

Parameters

-
----- - - - - - -

match

a GdictMatch

 
-
-
-

Returns

-

FIXME

-
-

Since: 1.0

-
-
-
-

gdict_definition_ref ()

-
GdictDefinition *
-gdict_definition_ref (GdictDefinition *def);
-

Increases the reference count of def - by one.

-
-

Parameters

-
----- - - - - - -

def

a GdictDefinition

 
-
-
-

Returns

-

the GdictDefinition object with its reference count -increased.

-
-

Since: 1.0

-
-
-
-

gdict_definition_unref ()

-
void
-gdict_definition_unref (GdictDefinition *def);
-

Decreases the reference count of def - by one. If the reference count -reaches zero, the GdictDefinition object is freed.

-
-

Parameters

-
----- - - - - - -

def

a GdictDefinition

 
-
-

Since: 1.0

-
-
-
-

gdict_definition_get_total ()

-
gint
-gdict_definition_get_total (GdictDefinition *def);
-

Retrieves the total number of definitions that were found on a -dictionary.

-
-

Parameters

-
----- - - - - - -

def

a GdictDefinition

 
-
-
-

Returns

-

the number of definitions.

-
-

Since: 1.0

-
-
-
-

gdict_definition_get_word ()

-
const gchar *
-gdict_definition_get_word (GdictDefinition *def);
-

Retrieves the word used by the dictionary database to store -the definition.

-
-

Parameters

-
----- - - - - - -

def

a GdictDefinition

 
-
-
-

Returns

-

a word. The returned string is owned by the -GdictDefinition object and should not be modified or freed.

-
-

Since: 1.0

-
-
-
-

gdict_definition_get_database ()

-
const gchar *
-gdict_definition_get_database (GdictDefinition *def);
-

Retrieves the full name of the dictionary database where the -definition is stored.

-
-

Parameters

-
----- - - - - - -

def

a GdictDefinition

 
-
-
-

Returns

-

the full name of a database. The returned string -is owned by the GdictDefinition object and should not be -modified or freed.

-
-

Since: 1.0

-
-
-
-

gdict_definition_get_text ()

-
const gchar *
-gdict_definition_get_text (GdictDefinition *def);
-

Retrieves the text of the definition.

-
-

Parameters

-
----- - - - - - -

def

a GdictDefinition

 
-
-
-

Returns

-

the text of the definition. The returned string -is owned by the GdictDefinition object, and should not be -modified or freed.

-
-

Since: 1.0

-
-
-
-

gdict_context_set_local_only ()

-
void
-gdict_context_set_local_only (GdictContext *context,
-                              gboolean local_only);
-

Sets whether only local resources will be used when querying for databases, -strategies, matches or definitions.

-
-

Parameters

-
----- - - - - - - - - - - - - -

context

a GdictContext

 

local_only

TRUE if only local resources will be used

 
-
-

Since: 1.0

-
-
-
-

gdict_context_get_local_only ()

-
gboolean
-gdict_context_get_local_only (GdictContext *context);
-

Gets whether only local resources will be used when querying.

-
-

Parameters

-
----- - - - - - -

context

a GdictContext

 
-
-
-

Returns

-

TRUE if only local resources will be used.

-
-

Since: 1.0

-
-
-
-

gdict_context_lookup_databases ()

-
gboolean
-gdict_context_lookup_databases (GdictContext *context,
-                                GError **error);
-

Query context - for the list of databases available. Each time a -database is found, the "database-found" signal is fired.

-
-

Parameters

-
----- - - - - - - - - - - - - -

context

a GdictContext

 

error

return location for a GError, or NULL

 
-
-
-

Returns

-

TRUE if the query was successfully started.

-
-

Since: 1.0

-
-
-
-

gdict_context_lookup_strategies ()

-
gboolean
-gdict_context_lookup_strategies (GdictContext *context,
-                                 GError **error);
-

Query context - for the list of matching strategies available. Each -time a new strategy is found, the "strategy-found" signal is fired.

-
-

Parameters

-
----- - - - - - - - - - - - - -

context

a GdictContext

 

error

return location for a GError, or NULL

 
-
-
-

Returns

-

TRUE if the query was successfully started.

-
-

Since: 1.0

-
-
-
-

gdict_context_match_word ()

-
gboolean
-gdict_context_match_word (GdictContext *context,
-                          const gchar *database,
-                          const gchar *strategy,
-                          const gchar *word,
-                          GError **error);
-

Query context - for a list of word matching word - inside database -, -using strategy - as a matching strategy. Each time a matching word -is found, the "match-found" signal is fired.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

context

a GdictContext

 

database

a database name to search into, or NULL for the -default database

 

strategy

a strategy name to use for matching, or NULL for -the default strategy

 

word

the word to match

 

error

return location for a GError, or NULL

 
-
-
-

Returns

-

TRUE if the query was successfully started.

-
-

Since: 1.0

-
-
-
-

gdict_context_define_word ()

-
gboolean
-gdict_context_define_word (GdictContext *context,
-                           const gchar *database,
-                           const gchar *word,
-                           GError **error);
-

Query context - for a list of definitions of word - inside database -. Each -time a new definition is found, the "definition-found" signal is fired.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

context

a GdictContext

 

database

a database name to search into, or NULL for the -default database

 

word

the word to search

 

error

return location for a GError, or NULL

 
-
-
-

Returns

-

TRUE if the query was successfully sent.

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

GDICT_CONTEXT_ERROR

-
#define GDICT_CONTEXT_ERROR (gdict_context_error_quark ())
-
-
-
-
-

enum GdictContextError

-

GdictContext error enumeration.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

GDICT_CONTEXT_ERROR_PARSE

  

GDICT_CONTEXT_ERROR_NOT_IMPLEMENTED

  

GDICT_CONTEXT_ERROR_INVALID_DATABASE

  

GDICT_CONTEXT_ERROR_INVALID_STRATEGY

  

GDICT_CONTEXT_ERROR_INVALID_COMMAND

  

GDICT_CONTEXT_ERROR_NO_MATCH

  

GDICT_CONTEXT_ERROR_NO_DATABASES

  

GDICT_CONTEXT_ERROR_NO_STRATEGIES

  
-
-
-
-
-

struct GdictContextIface

-
struct GdictContextIface {
-  /* methods, not signals */
-  gboolean (*get_databases)     (GdictContext  *context,
-  			         GError       **error);
-  gboolean (*get_strategies)    (GdictContext  *context,
-  			         GError       **error);
-  gboolean (*match_word)        (GdictContext  *context,
-  			         const gchar   *database,
-  			         const gchar   *strategy,
-  			         const gchar   *word,
-  			         GError       **error);
-  gboolean (*define_word)       (GdictContext  *context,
-  			         const gchar   *database,
-  			         const gchar   *word,
-  			         GError       **error);
-
-  /* signals */
-  void (*lookup_start)     (GdictContext    *context);
-  void (*lookup_end)       (GdictContext    *context);
-
-  void (*database_found)   (GdictContext    *context,
-  			    GdictDatabase   *database);
-  void (*strategy_found)   (GdictContext    *context,
-  			    GdictStrategy   *strategy);
-  void (*match_found)      (GdictContext    *context,
-  			    GdictMatch      *match);
-  void (*definition_found) (GdictContext    *context,
-  			    GdictDefinition *definition);
-
-  /* fired each time there's an error; the GError is owned
-   * by the context, and should never be modified or freed
-   */
-  void (*error)            (GdictContext    *context,
-  			    const GError    *error);
-};
-
-

Interface defintion

-
-
-
-

GdictDatabase

-
typedef struct _GdictDatabase GdictDatabase;
-

A GdictDatabase represents a database inside a dictionary source.

-

The GdictDatabase structure is private and should only be accessed -using the available functions.

-
-
-
-

GdictDefinition

-
typedef struct _GdictDefinition GdictDefinition;
-

A GdictDefinition represents a single definition for the searched -word.

-

The GdictDefinition structure is private and should only be -accessed using the available functions.

-
-
-
-

GdictMatch

-
typedef struct _GdictMatch GdictMatch;
-

A GdictMatch represents a single match for the searched word.

-

The GdictMatch structure is private and should only be accessed -using the available functions.

-
-
-
-

GdictStrategy

-
typedef struct _GdictStrategy GdictStrategy;
-

A GdictStrategy represents a matching strategy implemented by -a dictionary source.

-

The GdictStrategy structure is private and should only be accessed -using the available functions.

-
-
-
-

Property Details

-
-

The “local-only” property

-
  “local-only”               gboolean
-

Whether the context uses only local dictionaries or not.

-

Owner: GdictContext

-

Flags: Read / Write

-

Default value: FALSE

-

Since: 1.0

-
-
-
-

Signal Details

-
-

The “database-found” signal

-
void
-user_function (GdictContext  *context,
-               GdictDatabase *database,
-               gpointer       user_data)
-

This signal is emitted when a database request has found a database.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

context

the object which received the signal

 

database

a GdictDatabase

 

user_data

user data set when the signal handler was connected.

 
-
-

Flags: Run Last

-

Since: 1.0

-
-
-
-

The “definition-found” signal

-
void
-user_function (GdictContext    *context,
-               GdictDefinition *definition,
-               gpointer         user_data)
-

This signal is emitted when a definition request has found a definition.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

context

the object which received the signal

 

definition

a GdictDefinition

 

user_data

user data set when the signal handler was connected.

 
-
-

Flags: Run Last

-

Since: 1.0

-
-
-
-

The “error” signal

-
void
-user_function (GdictContext *context,
-               gpointer      error,
-               gpointer      user_data)
-

This signal is emitted when an error happened during an asynchronous -request.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

context

the object which received the signal

 

error

a GError

 

user_data

user data set when the signal handler was connected.

 
-
-

Flags: Run Last

-

Since: 1.0

-
-
-
-

The “lookup-end” signal

-
void
-user_function (GdictContext *context,
-               gpointer      user_data)
-

This signal is emitted when a look up operation that has been issued -using a GdictContext has been completed. Since every operation using a -context is asynchronous, you can use this signal to know if the request -has been completed or not.

-
-

Parameters

-
----- - - - - - - - - - - - - -

context

the object which received the signal

 

user_data

user data set when the signal handler was connected.

 
-
-

Flags: Run Last

-

Since: 1.0

-
-
-
-

The “lookup-start” signal

-
void
-user_function (GdictContext *context,
-               gpointer      user_data)
-

This signal is emitted when a look up operation has been issued using -a GdictContext. Since every operation using a context is -asynchronous, you can use this signal to know if the request has been -issued or not.

-
-

Parameters

-
----- - - - - - - - - - - - - -

context

the object which received the signal

 

user_data

user data set when the signal handler was connected.

 
-
-

Flags: Run Last

-

Since: 1.0

-
-
-
-

The “match-found” signal

-
void
-user_function (GdictContext *context,
-               GdictMatch   *match,
-               gpointer      user_data)
-

This signal is emitted when a match request has found a match.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

context

the object which received the signal

 

match

a GdictMatch

 

user_data

user data set when the signal handler was connected.

 
-
-

Flags: Run Last

-

Since: 1.0

-
-
-
-

The “strategy-found” signal

-
void
-user_function (GdictContext  *context,
-               GdictStrategy *strategy,
-               gpointer       user_data)
-

This signal is emitted when a strategy request has found a strategy.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

context

the object which received the signal

 

strategy

a GdictStrategy

 

user_data

user data set when the signal handler was connected.

 
-
-

Flags: Run Last

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictDatabaseChooser.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictDatabaseChooser.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictDatabaseChooser.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictDatabaseChooser.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,768 +0,0 @@ - - - - -GdictDatabaseChooser: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

GdictDatabaseChooser

-

GdictDatabaseChooser — Display the list of available databases

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-GtkWidget * - -gdict_database_chooser_new () -
-GtkWidget * - -gdict_database_chooser_new_with_context () -
-GdictContext * - -gdict_database_chooser_get_context () -
-void - -gdict_database_chooser_set_context () -
-gboolean - -gdict_database_chooser_select_database () -
-gboolean - -gdict_database_chooser_unselect_database () -
-gboolean - -gdict_database_chooser_set_current_database () -
-gchar * - -gdict_database_chooser_get_current_database () -
-gchar ** - -gdict_database_chooser_get_databases () -
-gint - -gdict_database_chooser_count_databases () -
-gboolean - -gdict_database_chooser_has_database () -
-void - -gdict_database_chooser_refresh () -
-void - -gdict_database_chooser_clear () -
-GtkWidget * - -gdict_database_chooser_add_button () -
-
-
-

Properties

-
----- - - - - - - - - - - - - -
-GdictContext *contextRead / Write / Construct
intcountRead
-
-
-

Signals

-
----- - - - - - - - - - - - - -
voiddatabase-activatedRun Last
voidselection-changedRun Last
-
-
-

Object Hierarchy

-
    GObject
-    ╰── GInitiallyUnowned
-        ╰── GtkWidget
-            ╰── GtkContainer
-                ╰── GtkBox
-                    ╰── GdictDatabaseChooser
-
-
-
-

Description

-

Each GdictContext has a list of databases, that is dictionaries that -can be queried. GdictDatabaseChooser is a widget that queries a given -GdictContext and displays the list of available databases.

-

GdictDatabaseChooser is available since Gdict 0.10

-
-
-

Functions

-
-

gdict_database_chooser_new ()

-
GtkWidget *
-gdict_database_chooser_new (void);
-

Creates a new GdictDatabaseChooser widget. A Database chooser widget -can be used to display the list of available databases on a dictionary -source using the GdictContext representing it. After creation, the -GdictContext can be set using gdict_database_chooser_set_context().

-
-

Returns

-

the newly created GdictDatabaseChooser widget.

-
-

Since: 0.10

-
-
-
-

gdict_database_chooser_new_with_context ()

-
GtkWidget *
-gdict_database_chooser_new_with_context
-                               (GdictContext *context);
-

Creates a new GdictDatabaseChooser, using context - as the representation -of the dictionary source to query for the list of available databases.

-
-

Parameters

-
----- - - - - - -

context

a GdictContext

 
-
-
-

Returns

-

the newly created GdictDatabaseChooser widget.

-
-

Since: 0.10

-
-
-
-

gdict_database_chooser_get_context ()

-
GdictContext *
-gdict_database_chooser_get_context (GdictDatabaseChooser *chooser);
-

Retrieves the GdictContext used by chooser -.

-
-

Parameters

-
----- - - - - - -

chooser

a GdictDatabaseChooser

 
-
-
-

Returns

-

a GdictContext or NULL

-
-

Since: 0.10

-
-
-
-

gdict_database_chooser_set_context ()

-
void
-gdict_database_chooser_set_context (GdictDatabaseChooser *chooser,
-                                    GdictContext *context);
-

Sets the GdictContext to be used to query a dictionary source -for the list of available databases.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictDatabaseChooser

 

context

a GdictContext

 
-
-

Since: 0.10

-
-
-
-

gdict_database_chooser_select_database ()

-
gboolean
-gdict_database_chooser_select_database
-                               (GdictDatabaseChooser *chooser,
-                                const gchar *db_name);
-

Selects the database with db_name - inside the chooser - widget.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictDatabaseChooser

 

db_name

name of the database to select

 
-
-
-

Returns

-

TRUE if the database was found and selected

-
-

Since: 0.10

-
-
-
-

gdict_database_chooser_unselect_database ()

-
gboolean
-gdict_database_chooser_unselect_database
-                               (GdictDatabaseChooser *chooser,
-                                const gchar *db_name);
-

Unselects the database db_name - inside the chooser - widget

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictDatabaseChooser

 

db_name

name of the database to unselect

 
-
-
-

Returns

-

TRUE if the database was found and unselected

-
-

Since: 0.10

-
-
-
-

gdict_database_chooser_set_current_database ()

-
gboolean
-gdict_database_chooser_set_current_database
-                               (GdictDatabaseChooser *chooser,
-                                const gchar *db_name);
-

Sets db_name - as the current database. This function will select -and activate the corresponding row, if the database is found.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictDatabaseChooser

 

db_name

the name of the database

 
-
-
-

Returns

-

TRUE if the database was found and set

-
-

Since: 0.10

-
-
-
-

gdict_database_chooser_get_current_database ()

-
gchar *
-gdict_database_chooser_get_current_database
-                               (GdictDatabaseChooser *chooser);
-

Retrieves the name of the currently selected database inside chooser -

-
-

Parameters

-
----- - - - - - -

chooser

a GdictDatabaseChooser

 
-
-
-

Returns

-

the name of the selected database. Use g_free() on the -returned string when done using it

-
-

Since: 0.10

-
-
-
-

gdict_database_chooser_get_databases ()

-
gchar **
-gdict_database_chooser_get_databases (GdictDatabaseChooser *chooser,
-                                      gsize *length);
-

Gets the list of available database names.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictDatabaseChooser

 

length

return location for the length of the returned vector

 
-
-
-

Returns

-

a newly allocated, NULL terminated string vector -containing database names. Use g_strfreev() to deallocate it.

-
-

Since: 0.10

-
-
-
-

gdict_database_chooser_count_databases ()

-
gint
-gdict_database_chooser_count_databases
-                               (GdictDatabaseChooser *chooser);
-

Returns the number of databases found.

-
-

Parameters

-
----- - - - - - -

chooser

a GdictDatabaseChooser

 
-
-
-

Returns

-

the number of databases or -1 if no context is set

-
-

Since: 0.10

-
-
-
-

gdict_database_chooser_has_database ()

-
gboolean
-gdict_database_chooser_has_database (GdictDatabaseChooser *chooser,
-                                     const gchar *database);
-

Checks whether the chooser - displays database -

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictDatabaseChooser

 

database

the name of a database

 
-
-
-

Returns

-

TRUE if the search database name is present

-
-

Since: 0.10

-
-
-
-

gdict_database_chooser_refresh ()

-
void
-gdict_database_chooser_refresh (GdictDatabaseChooser *chooser);
-

Reloads the list of available databases.

-
-

Parameters

-
----- - - - - - -

chooser

a GdictDatabaseChooser

 
-
-

Since: 0.10

-
-
-
-

gdict_database_chooser_clear ()

-
void
-gdict_database_chooser_clear (GdictDatabaseChooser *chooser);
-

Clears chooser -.

-
-

Parameters

-
----- - - - - - -

chooser

a GdictDatabaseChooser

 
-
-

Since: 0.10

-
-
-
-

gdict_database_chooser_add_button ()

-
GtkWidget *
-gdict_database_chooser_add_button (GdictDatabaseChooser *chooser,
-                                   const gchar *button_text);
-

Adds a GtkButton with button_text - to the button area on -the bottom of chooser -. The button_text - can also be a -stock ID.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictDatabase

 

button_text

text of the button

 
-
-
-

Returns

-

the newly packed button.

-
-

Since: 0.10

-
-
-
-

Property Details

-
-

The “context” property

-
  “context”                  GdictContext *
-

The GdictContext used to retrieve the list of available databases.

-

Owner: GdictDatabaseChooser

-

Flags: Read / Write / Construct

-

Since: 0.10

-
-
-
-

The “count” property

-
  “count”                    int
-

The number of displayed databases or, if no GdictContext is set, -1.

-

Owner: GdictDatabaseChooser

-

Flags: Read

-

Allowed values: >= -1

-

Default value: -1

-

Since: 0.12

-
-
-
-

Signal Details

-
-

The “database-activated” signal

-
void
-user_function (GdictDatabaseChooser *chooser,
-               char                 *name,
-               char                 *description,
-               gpointer              user_data)
-

The ::database-activated signal is emitted each time the user -activated a row in the database chooser widget, either by double -clicking on it or by a keyboard event.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

chooser

the database chooser that received the signal

 

name

the name of the activated database

 

description

the description of the activated database

 

user_data

user data set when the signal handler was connected.

 
-
-

Flags: Run Last

-

Since: 0.10

-
-
-
-

The “selection-changed” signal

-
void
-user_function (GdictDatabaseChooser *chooser,
-               gpointer              user_data)
-

The ::selection-changed signal is emitted each time the selection -inside the database chooser has been changed.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

the database chooser that received the signal

 

user_data

user data set when the signal handler was connected.

 
-
-

Flags: Run Last

-

Since: 0.12

-
-
-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictDefbox.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictDefbox.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictDefbox.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictDefbox.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,1009 +0,0 @@ - - - - -GdictDefbox: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

GdictDefbox

-

GdictDefbox — Display the list of definitions for a word

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-GtkWidget * - -gdict_defbox_new () -
-GtkWidget * - -gdict_defbox_new_with_context () -
-void - -gdict_defbox_set_context () -
-GdictContext * - -gdict_defbox_get_context () -
-void - -gdict_defbox_set_database () -
const gchar * - -gdict_defbox_get_database () -
const gchar * - -gdict_defbox_get_word () -
-gchar * - -gdict_defbox_get_text () -
-void - -gdict_defbox_select_all () -
-void - -gdict_defbox_copy_to_clipboard () -
-void - -gdict_defbox_clear () -
-void - -gdict_defbox_lookup () -
-gint - -gdict_defbox_count_definitions () -
-void - -gdict_defbox_jump_to_definition () -
-void - -gdict_defbox_set_show_find () -
-gboolean - -gdict_defbox_get_show_find () -
-void - -gdict_defbox_find_next () -
-void - -gdict_defbox_find_previous () -
-void - -gdict_defbox_set_font_name () -
const gchar * - -gdict_defbox_get_font_name () -
-gchar * - -gdict_defbox_get_selected_word () -
-
-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - -
-GdictContext *contextRead / Write / Construct
-char *databaseRead / Write
-char *font-nameRead / Write
-char *wordRead / Write
-
-
-

Signals

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
voidfind-nextAction
voidfind-previousAction
voidhide-findAction
voidlink-clickedRun Last
voidshow-findAction
-
-
-

Object Hierarchy

-
    GObject
-    ╰── GInitiallyUnowned
-        ╰── GtkWidget
-            ╰── GtkContainer
-                ╰── GtkBox
-                    ╰── GdictDefbox
-
-
-
-

Description

-

The GdictDefbox widget is a composite widget showing the list of -definitions for a word. It queries the passed GdictContext and displays -the list of GdictDefinitions obtained.

-

It provides syntax highlighting, clickable links and an embedded find -bar.

-
-
-

Functions

-
-

gdict_defbox_new ()

-
GtkWidget *
-gdict_defbox_new (void);
-

Creates a new GdictDefbox widget. Use this widget to search for -a word using a GdictContext, and to show the resulting definition(s). -You must set a GdictContext for this widget using -gdict_defbox_set_context().

-
-

Returns

-

a new GdictDefbox widget.

-
-

Since: 0.1

-
-
-
-

gdict_defbox_new_with_context ()

-
GtkWidget *
-gdict_defbox_new_with_context (GdictContext *context);
-

Creates a new GdictDefbox widget. Use this widget to search for -a word using context -, and to show the resulting definition.

-
-

Parameters

-
----- - - - - - -

context

a GdictContext

 
-
-
-

Returns

-

a new GdictDefbox widget.

-
-

Since: 0.1

-
-
-
-

gdict_defbox_set_context ()

-
void
-gdict_defbox_set_context (GdictDefbox *defbox,
-                          GdictContext *context);
-

Sets context - as the GdictContext to be used by defbox - in order -to retrieve the definitions of a word.

-
-

Parameters

-
----- - - - - - - - - - - - - -

defbox

a GdictDefbox

 

context

a GdictContext

 
-
-

Since: 0.1

-
-
-
-

gdict_defbox_get_context ()

-
GdictContext *
-gdict_defbox_get_context (GdictDefbox *defbox);
-

Gets the GdictContext used by defbox -.

-
-

Parameters

-
----- - - - - - -

defbox

a GdictDefbox

 
-
-
-

Returns

-

a GdictContext.

-
-

Since: 0.1

-
-
-
-

gdict_defbox_set_database ()

-
void
-gdict_defbox_set_database (GdictDefbox *defbox,
-                           const gchar *database);
-

Sets database - as the database used by the GdictContext bound to defbox - -to query for word definitions.

-
-

Parameters

-
----- - - - - - - - - - - - - -

defbox

a GdictDefbox

 

database

a database

 
-
-

Since: 0.1

-
-
-
-

gdict_defbox_get_database ()

-
const gchar *
-gdict_defbox_get_database (GdictDefbox *defbox);
-

Gets the database used by defbox -. See gdict_defbox_set_database().

-
-

Parameters

-
----- - - - - - -

defbox

a GdictDefbox

 
-
-
-

Returns

-

the name of a database. The return string is owned by -the GdictDefbox widget and should not be modified or freed.

-
-

Since: 0.1

-
-
-
-

gdict_defbox_get_word ()

-
const gchar *
-gdict_defbox_get_word (GdictDefbox *defbox);
-

Retrieves the word being looked up.

-
-

Parameters

-
----- - - - - - -

defbox

a GdictDefbox

 
-
-
-

Returns

-

the word looked up, or NULL. The returned string is -owned by the GdictDefbox widget and should never be modified or -freed.

-
-

Since: 0.12

-
-
-
-

gdict_defbox_get_text ()

-
gchar *
-gdict_defbox_get_text (GdictDefbox *defbox,
-                       gsize *length);
-

Gets the full contents of defbox -.

-
-

Parameters

-
----- - - - - - - - - - - - - -

defbox

a GdictDefbox

 

length

return location for the text length or NULL

 
-
-
-

Returns

-

a newly allocated string containing the text displayed by -defbox -.

-
-

Since: 0.1

-
-
-
-

gdict_defbox_select_all ()

-
void
-gdict_defbox_select_all (GdictDefbox *defbox);
-

Selects all the text displayed by defbox -

-
-

Parameters

-
----- - - - - - -

defbox

a GdictDefbox

 
-
-

Since: 0.1

-
-
-
-

gdict_defbox_copy_to_clipboard ()

-
void
-gdict_defbox_copy_to_clipboard (GdictDefbox *defbox,
-                                GtkClipboard *clipboard);
-

Copies the selected text inside defbox - into clipboard -.

-
-

Parameters

-
----- - - - - - - - - - - - - -

defbox

a GdictDefbox

 

clipboard

a GtkClipboard

 
-
-

Since: 0.1

-
-
-
-

gdict_defbox_clear ()

-
void
-gdict_defbox_clear (GdictDefbox *defbox);
-

Clears the buffer of defbox -

-
-

Parameters

-
----- - - - - - -

defbox

a GdictDefbox -

 
-
-

Since: 0.1

-
-
-
-

gdict_defbox_lookup ()

-
void
-gdict_defbox_lookup (GdictDefbox *defbox,
-                     const gchar *word);
-

Searches word - inside the dictionary sources using the GdictContext -provided when creating defbox - or set using gdict_defbox_set_context().

-
-

Parameters

-
----- - - - - - - - - - - - - -

defbox

a GdictDefbox

 

word

the word to look up

 
-
-

Since: 0.1

-
-
-
-

gdict_defbox_count_definitions ()

-
gint
-gdict_defbox_count_definitions (GdictDefbox *defbox);
-

Gets the number of definitions displayed by defbox -

-
-

Parameters

-
----- - - - - - -

defbox

a GdictDefbox

 
-
-
-

Returns

-

the number of definitions.

-
-

Since: 0.1

-
-
-
-

gdict_defbox_jump_to_definition ()

-
void
-gdict_defbox_jump_to_definition (GdictDefbox *defbox,
-                                 gint number);
-

Scrolls to the definition identified by number -. If number - is -1, -jumps to the last definition.

-
-

Parameters

-
----- - - - - - - - - - - - - -

defbox

a GdictDefbox

 

number

the definition to jump to

 
-
-

Since: 0.1

-
-
-
-

gdict_defbox_set_show_find ()

-
void
-gdict_defbox_set_show_find (GdictDefbox *defbox,
-                            gboolean show_find);
-

Whether defbox - should show the find pane.

-
-

Parameters

-
----- - - - - - - - - - - - - -

defbox

a GdictDefbox

 

show_find

TRUE to show the find pane

 
-
-

Since: 0.1

-
-
-
-

gdict_defbox_get_show_find ()

-
gboolean
-gdict_defbox_get_show_find (GdictDefbox *defbox);
-

Gets whether the find pane should be visible or not.

-
-

Parameters

-
----- - - - - - -

defbox

a GdictDefbox

 
-
-
-

Returns

-

TRUE if the find pane is visible.

-
-

Since: 0.1

-
-
-
-

gdict_defbox_find_next ()

-
void
-gdict_defbox_find_next (GdictDefbox *defbox);
-

Emits the "find-next" signal.

-
-

Parameters

-
----- - - - - - -

defbox

a GdictDefbox

 
-
-

Since: 0.1

-
-
-
-

gdict_defbox_find_previous ()

-
void
-gdict_defbox_find_previous (GdictDefbox *defbox);
-

Emits the "find-previous" signal.

-
-

Parameters

-
----- - - - - - -

defbox

a GdictDefbox

 
-
-

Since: 0.1

-
-
-
-

gdict_defbox_set_font_name ()

-
void
-gdict_defbox_set_font_name (GdictDefbox *defbox,
-                            const gchar *font_name);
-

Sets font_name - as the font for defbox -. It calls internally -pango_font_description_from_string() and gtk_widget_modify_font().

-

Passing NULL for font_name - will reset any previously set font.

-
-

Parameters

-
----- - - - - - - - - - - - - -

defbox

a GdictDefbox

 

font_name

a font description, or NULL

 
-
-

Since: 0.3.0

-
-
-
-

gdict_defbox_get_font_name ()

-
const gchar *
-gdict_defbox_get_font_name (GdictDefbox *defbox);
-

Retrieves the font currently used by defbox -.

-
-

Parameters

-
----- - - - - - -

defbox

a GdictDefbox

 
-
-
-

Returns

-

a font name. The returned string is owned by defbox -and -should not be modified or freed.

-
-

Since: 0.3

-
-
-
-

gdict_defbox_get_selected_word ()

-
gchar *
-gdict_defbox_get_selected_word (GdictDefbox *defbox);
-

Retrieves the selected word from the defbox widget

-
-

Parameters

-
----- - - - - - -

defbox

a GdictDefbox

 
-
-
-

Returns

-

a newly allocated string containing the selected -word. Use g_free() when done using it.

-
-

Since: 0.12

-
-
-
-

Property Details

-
-

The “context” property

-
  “context”                  GdictContext *
-

The GdictContext object used to get the word definition.

-

Owner: GdictDefbox

-

Flags: Read / Write / Construct

-

Since: 0.1

-
-
-
-

The “database” property

-
  “database”                 char *
-

The database used by the GdictDefbox bound to this object to get the word -definition.

-

Owner: GdictDefbox

-

Flags: Read / Write

-

Default value: "*"

-

Since: 0.1

-
-
-
-

The “font-name” property

-
  “font-name”                char *
-

The name of the font used by the GdictDefbox to display the definitions. -use the same string you use for pango_font_description_from_string().

-

Owner: GdictDefbox

-

Flags: Read / Write

-

Default value: "Sans 10"

-

Since: 0.3

-
-
-
-

The “word” property

-
  “word”                     char *
-

The word to look up.

-

Owner: GdictDefbox

-

Flags: Read / Write

-

Default value: NULL

-

Since: 0.10

-
-
-
-

Signal Details

-
-

The “find-next” signal

-
void
-user_function (GdictDefbox *gdictdefbox,
-               gpointer     user_data)
-

Flags: Action

-
-
-
-

The “find-previous” signal

-
void
-user_function (GdictDefbox *gdictdefbox,
-               gpointer     user_data)
-

Flags: Action

-
-
-
-

The “hide-find” signal

-
void
-user_function (GdictDefbox *gdictdefbox,
-               gpointer     user_data)
-

Flags: Action

-
-
-
-

The “link-clicked” signal

-
void
-user_function (GdictDefbox *gdictdefbox,
-               char        *arg1,
-               gpointer     user_data)
-

Flags: Run Last

-
-
-
-

The “show-find” signal

-
void
-user_function (GdictDefbox *gdictdefbox,
-               gpointer     user_data)
-

Flags: Action

-
-
-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/gdict.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/gdict.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/gdict.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/gdict.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,60 +0,0 @@ - - - - -Part II. The MATE Dictionary Library: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-

-Part II. The MATE Dictionary Library

-
-

Table of Contents

-
-
Dictionary Context
-
-GdictContext — Interface for dictionary transports -
-
Context Implementations
-
-GdictClientContext — DICT client transport -
-
Dictionary Source
-
-
-GdictSource — A dictionary source definition -
-
-GdictSourceLoader — Loader object for a set of dictionary sources -
-
-
Gdict Utilities
-
-
-gdict-utils -
-
-gdict-version -
-
-
-
-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictSourceChooser.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictSourceChooser.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictSourceChooser.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictSourceChooser.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,736 +0,0 @@ - - - - -GdictSourceChooser: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

GdictSourceChooser

-

GdictSourceChooser — Display the list of available sources

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-GtkWidget * - -gdict_source_chooser_new () -
-GtkWidget * - -gdict_source_chooser_new_with_loader () -
-void - -gdict_source_chooser_set_loader () -
-GdictSourceLoader * - -gdict_source_chooser_get_loader () -
-gboolean - -gdict_source_chooser_select_source () -
-gboolean - -gdict_source_chooser_unselect_source () -
-gboolean - -gdict_source_chooser_set_current_source () -
-gchar * - -gdict_source_chooser_get_current_source () -
-gchar ** - -gdict_source_chooser_get_sources () -
-gint - -gdict_source_chooser_count_sources () -
-gboolean - -gdict_source_chooser_has_source () -
-void - -gdict_source_chooser_refresh () -
-GtkWidget * - -gdict_source_chooser_add_button () -
-
-
-

Properties

-
----- - - - - - - - - - - - - -
intcountRead
-GdictSourceLoader *loaderRead / Write / Construct
-
-
-

Signals

-
----- - - - - - - - - - - - - -
voidselection-changedRun Last
voidsource-activatedRun Last
-
-
-

Object Hierarchy

-
    GObject
-    ╰── GInitiallyUnowned
-        ╰── GtkWidget
-            ╰── GtkContainer
-                ╰── GtkBox
-                    ╰── GdictSourceChooser
-
-
-
-

Description

-

GdictSourceChooser is a widget that shows the list of available -dictionary sources using a GdictSourceLoader instance as a model. -It can be used to allow choosing the current dictionary source.

-

GdictSourceChooser is available since Gdict 0.12.

-
-
-

Functions

-
-

gdict_source_chooser_new ()

-
GtkWidget *
-gdict_source_chooser_new (void);
-

Creates a new GdictSourceChooser widget. This widget can be used to -display the list of available dictionary sources.

-
-

Returns

-

the newly created GdictSourceChooser widget.

-
-

Since: 0.12

-
-
-
-

gdict_source_chooser_new_with_loader ()

-
GtkWidget *
-gdict_source_chooser_new_with_loader (GdictSourceLoader *loader);
-

Creates a new GdictSourceChooser widget and sets loader - as the -GdictSourceLoader object to be used to retrieve the list of -available dictionary sources.

-
-

Parameters

-
----- - - - - - -

loader

a GdictSourceLoader

 
-
-
-

Returns

-

the newly created GdictSourceChooser widget.

-
-

Since: 0.12

-
-
-
-

gdict_source_chooser_set_loader ()

-
void
-gdict_source_chooser_set_loader (GdictSourceChooser *chooser,
-                                 GdictSourceLoader *loader);
-

Sets the GdictSourceLoader to be used by the source chooser -widget.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictSourceChooser

 

loader

a GdictSourceLoader or NULL to unset it

 
-
-

Since: 0.12

-
-
-
-

gdict_source_chooser_get_loader ()

-
GdictSourceLoader *
-gdict_source_chooser_get_loader (GdictSourceChooser *chooser);
-

Retrieves the GdictSourceLoader used by chooser -.

-
-

Parameters

-
----- - - - - - -

chooser

a GdictSourceChooser

 
-
-
-

Returns

-

a GdictSourceLoader or NULL is none is set

-
-

Since: 0.12

-
-
-
-

gdict_source_chooser_select_source ()

-
gboolean
-gdict_source_chooser_select_source (GdictSourceChooser *chooser,
-                                    const gchar *source_name);
-

Selects the dictionary source named source_name - inside chooser -. -The selection is moved but the row containing the dictionary source -is not activated.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictSourceChooser

 

source_name

the name of a dictionary source

 
-
-
-

Returns

-

TRUE if the source was found and selected

-
-

Since: 0.12

-
-
-
-

gdict_source_chooser_unselect_source ()

-
gboolean
-gdict_source_chooser_unselect_source (GdictSourceChooser *chooser,
-                                      const gchar *source_name);
-

Unselects source_name - inside chooser -.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictSourceChooser

 

source_name

the name of a dictionary source

 
-
-
-

Returns

-

TRUE if the source was found and unselected

-
-

Since: 0.12

-
-
-
-

gdict_source_chooser_set_current_source ()

-
gboolean
-gdict_source_chooser_set_current_source
-                               (GdictSourceChooser *chooser,
-                                const gchar *source_name);
-

Sets the current dictionary source named source_name -. The row -of the source, if found, will be selected and activated.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictSourceChooser

 

source_name

the name of a dictionary source

 
-
-
-

Returns

-

TRUE if the source was found

-
-

Since: 0.12

-
-
-
-

gdict_source_chooser_get_current_source ()

-
gchar *
-gdict_source_chooser_get_current_source
-                               (GdictSourceChooser *chooser);
-

Retrieves the currently selected source.

-
-

Parameters

-
----- - - - - - -

chooser

a GdictSourceChooser

 
-
-
-

Returns

-

a newly allocated string containing the name of -the currently selected source. Use g_free() when done using it

-
-

Since: 0.12

-
-
-
-

gdict_source_chooser_get_sources ()

-
gchar **
-gdict_source_chooser_get_sources (GdictSourceChooser *chooser,
-                                  gsize *length);
-

Retrieves the names of the available dictionary sources.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictSouceChooser

 

length

return location for the length of the returned vector

 
-
-
-

Returns

-

a newly allocated, NULL terminated string vector -containing the names of the available sources. Use g_strfreev() -when done using it.

-
-

Since: 0.12

-
-
-
-

gdict_source_chooser_count_sources ()

-
gint
-gdict_source_chooser_count_sources (GdictSourceChooser *chooser);
-

Retrieve the number of available dictionary sources.

-
-

Parameters

-
----- - - - - - -

chooser

a GdictSourceChooser

 
-
-
-

Returns

-

the number of available sources, or -1 if no -GdictSourceLoader has been set

-
-

Since: 0.12

-
-
-
-

gdict_source_chooser_has_source ()

-
gboolean
-gdict_source_chooser_has_source (GdictSourceChooser *chooser,
-                                 const gchar *source_name);
-

Checks whether chooser - has a dictionary source named source_name -.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictSourceChooser

 

source_name

the name of a dictionary source

 
-
-
-

Returns

-

TRUE if the dictionary source was found

-
-

Since: 0.12

-
-
-
-

gdict_source_chooser_refresh ()

-
void
-gdict_source_chooser_refresh (GdictSourceChooser *chooser);
-

Forces a refresh on the contents of the source chooser widget

-
-

Parameters

-
----- - - - - - -

chooser

a GdictSourceChooser

 
-
-

Since: 0.12

-
-
-
-

gdict_source_chooser_add_button ()

-
GtkWidget *
-gdict_source_chooser_add_button (GdictSourceChooser *chooser,
-                                 const gchar *button_text);
-

Adds a GtkButton with button_text - to the button area on -the bottom of chooser -. The button_text - can also be a -stock ID.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictSourceChooser

 

button_text

text of the button

 
-
-
-

Returns

-

the newly packed button.

-
-

Since: 0.12

-
-
-
-

Property Details

-
-

The “count” property

-
  “count”                    int
-

The number of available dictionary sources, or -1 if no -GdictSourceLoader is set.

-

Owner: GdictSourceChooser

-

Flags: Read

-

Allowed values: >= -1

-

Default value: -1

-

Since: 0.12

-
-
-
-

The “loader” property

-
  “loader”                   GdictSourceLoader *
-

The GdictSourceLoader used to retrieve the list of available -dictionary sources.

-

Owner: GdictSourceChooser

-

Flags: Read / Write / Construct

-

Since: 0.12

-
-
-
-

Signal Details

-
-

The “selection-changed” signal

-
void
-user_function (GdictSourceChooser *chooser,
-               gpointer            user_data)
-

The ::selection-changed signal is emitted each time the -selection inside the source chooser widget has been changed.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

the GdictSourceChooser that received the signal

 

user_data

user data set when the signal handler was connected.

 
-
-

Flags: Run Last

-

Since: 0.12

-
-
-
-

The “source-activated” signal

-
void
-user_function (GdictSourceChooser *chooser,
-               char               *source_name,
-               GdictSource        *source,
-               gpointer            user_data)
-

The ::source-activated signal is emitted each time the user -activates a row in the source chooser widget, either by double -clicking on it or by a keyboard event.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

chooser

the GdictSourceChooser that received the signal

 

source_name

the name of the activated source

 

source

the activated GdictSource

 

user_data

user data set when the signal handler was connected.

 
-
-

Flags: Run Last

-

Since: 0.12

-
-
-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictSource.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictSource.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictSource.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictSource.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,1041 +0,0 @@ - - - - -GdictSource: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

GdictSource

-

GdictSource — A dictionary source definition

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-GQuark - -gdict_source_error_quark () -
-GdictSource * - -gdict_source_new () -
-gboolean - -gdict_source_load_from_file () -
-gboolean - -gdict_source_load_from_data () -
-gchar * - -gdict_source_to_data () -
-void - -gdict_source_set_name () -
const gchar * - -gdict_source_get_name () -
-void - -gdict_source_set_description () -
const gchar * - -gdict_source_get_description () -
-void - -gdict_source_set_database () -
const gchar * - -gdict_source_get_database () -
-void - -gdict_source_set_strategy () -
const gchar * - -gdict_source_get_strategy () -
-void - -gdict_source_set_transport () -
-void - -gdict_source_set_transportv () -
-GdictSourceTransport - -gdict_source_get_transport () -
-GdictContext * - -gdict_source_get_context () -
-GdictContext * - -gdict_source_peek_context () -
-
-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-GdictContext *contextRead
-char *databaseRead / Write
-char *descriptionRead / Write
-char *filenameRead
-char *nameRead / Write
-char *strategyRead / Write
GdictSourceTransporttransportRead / Write
-
-
-

Types and Values

-
---- - - - - - - - - - - - - - - -
enumGdictSourceTransport
#defineGDICT_SOURCE_ERROR
enumGdictSourceError
-
-
-

Object Hierarchy

-
    GObject
-    ╰── GdictSource
-
-
-
-

Description

-

GdictSource is the representation of a GdictContext. Each dictionary -source provides a list of available dictionaries (databases) and a list -of available matching strategies. Using a GdictContext you can query -the dictionary source for matching words and for definitions.

-

By using a GdictSource object you can retrieve the appropriate -GdictContext, already set up with the right parameters.

-
-
-

Functions

-
-

gdict_source_error_quark ()

-
GQuark
-gdict_source_error_quark (void);
-
-
-
-

gdict_source_new ()

-
GdictSource *
-gdict_source_new (void);
-

Creates an empty GdictSource object. Use gdict_load_from_file() to -read an existing dictionary source definition file.

-
-

Returns

-

an empty GdictSource

-
-
-
-
-

gdict_source_load_from_file ()

-
gboolean
-gdict_source_load_from_file (GdictSource *source,
-                             const gchar *filename,
-                             GError **error);
-

Loads a dictionary source definition file into an empty GdictSource -object.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

source

an empty GdictSource

 

filename

path to a dictionary source file

 

error

return location for a GError or NULL

 
-
-
-

Returns

-

TRUE if filename -was loaded successfully.

-
-

Since: 1.0

-
-
-
-

gdict_source_load_from_data ()

-
gboolean
-gdict_source_load_from_data (GdictSource *source,
-                             const gchar *data,
-                             gsize length,
-                             GError **error);
-

Loads a dictionary source definition from data - inside an empty -GdictSource object.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

source

a GdictSource

 

data

string containing a dictionary source

 

length

length of data -

 

error

return location for a GError or NULL

 
-
-
-

Returns

-

TRUE if filename -was loaded successfully.

-
-

Since: 1.0

-
-
-
-

gdict_source_to_data ()

-
gchar *
-gdict_source_to_data (GdictSource *source,
-                      gsize *length,
-                      GError **error);
-

Outputs a dictionary source as a string.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

source

a GdictSource

 

length

return loaction for the length of the string, or NULL

 

error

return location for a GError or NULL

 
-
-
-

Returns

-

a newly allocated string holding the contents of source -.

-
-

Since: 1.0

-
-
-
-

gdict_source_set_name ()

-
void
-gdict_source_set_name (GdictSource *source,
-                       const gchar *name);
-

Sets name - as the displayable name of the dictionary source.

-
-

Parameters

-
----- - - - - - - - - - - - - -

source

a GdictSource

 

name

the UTF8-encoded name of the dictionary source

 
-
-

Since: 1.0

-
-
-
-

gdict_source_get_name ()

-
const gchar *
-gdict_source_get_name (GdictSource *source);
-

Retrieves the name of source -.

-
-

Parameters

-
----- - - - - - -

source

a GdictSource

 
-
-
-

Returns

-

the name of a GdictSource. The returned string is owned -by the GdictSource object, and should not be modified or freed.

-
-

Since: 1.0

-
-
-
-

gdict_source_set_description ()

-
void
-gdict_source_set_description (GdictSource *source,
-                              const gchar *description);
-

Sets the description of source -. If description - is NULL, unsets the -currently set description.

-
-

Parameters

-
----- - - - - - - - - - - - - -

source

a GdictSource

 

description

a UTF-8 encoded description or NULL

 
-
-

Since: 1.0

-
-
-
-

gdict_source_get_description ()

-
const gchar *
-gdict_source_get_description (GdictSource *source);
-

Retrieves the description of source -.

-
-

Parameters

-
----- - - - - - -

source

a GdictSource

 
-
-
-

Returns

-

the description of a GdictSource. The returned string is -owned by the GdictSource object, and should not be modified or freed.

-
-

Since: 1.0

-
-
-
-

gdict_source_set_database ()

-
void
-gdict_source_set_database (GdictSource *source,
-                           const gchar *database);
-

Sets the default database of source -. If database - is NULL, unsets the -currently set database.

-
-

Parameters

-
----- - - - - - - - - - - - - -

source

a GdictSource

 

database

a UTF-8 encoded database name or NULL

 
-
-

Since: 1.0

-
-
-
-

gdict_source_get_database ()

-
const gchar *
-gdict_source_get_database (GdictSource *source);
-

Retrieves the default database of source -.

-
-

Parameters

-
----- - - - - - -

source

a GdictSource

 
-
-
-

Returns

-

the default strategy of a GdictSource. The returned string -is owned by the GdictSource object, and should not be modified or freed.

-
-

Since: 1.0

-
-
-
-

gdict_source_set_strategy ()

-
void
-gdict_source_set_strategy (GdictSource *source,
-                           const gchar *strategy);
-

Sets the description of source -. If strategy - is NULL, unsets the -currently set strategy.

-
-

Parameters

-
----- - - - - - - - - - - - - -

source

a GdictSource

 

strategy

a UTF-8 encoded strategy or NULL

 
-
-

Since: 1.0

-
-
-
-

gdict_source_get_strategy ()

-
const gchar *
-gdict_source_get_strategy (GdictSource *source);
-

Retrieves the default strategy of source -.

-
-

Parameters

-
----- - - - - - -

source

a GdictSource

 
-
-
-

Returns

-

the default strategy of a GdictSource. The returned string -is owned by the GdictSource object, and should not be modified or freed.

-
-

Since: 1.0

-
-
-
-

gdict_source_set_transport ()

-
void
-gdict_source_set_transport (GdictSource *source,
-                            GdictSourceTransport transport,
-                            const gchar *first_transport_property,
-                            ...);
-

Sets transport - as the choosen transport for source -. The transport - -argument is a method of retrieving dictionary data from a source; it is -used to create the right GdictContext for this GdictSource. After -transport -, property name/value pairs should be listed, with a NULL -pointer ending the list. Properties are the same passed to a GdictContext -implementation instance using g_object_set().

-

Here's a simple example:

-
- - - - - - - -
1
-2
-3
-4
-5
-6
-7
-8
#include <gdict/gdict.h>
- GdictSource *source = gdict_source_new ();
-
- gdict_source_set_name (source, "My Source");
- gdict_source_set_transport (source, GDICT_SOURCE_TRANSPORT_DICTD,
-                             "hostname", "dictionary-server.org",
-                             "port", 2628,
-                             NULL);
-
- -
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

source

a GdictSource

 

transport

a valid transport

 

first_transport_property

property for the context bound to -the transport, or NULL

 

Varargs

property value for first property name, then additionary -properties, ending with NULL

 
-
-

Since: 1.0

-
-
-
-

gdict_source_set_transportv ()

-
void
-gdict_source_set_transportv (GdictSource *source,
-                             GdictSourceTransport transport,
-                             const gchar *first_transport_property,
-                             va_list var_args);
-

FIXME

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

source

a GdictSource

 

transport

a GdictSourceTransport

 

first_transport_property

FIXME

 

var_args

FIXME

 
-
-

Since: 1.0

-
-
-
-

gdict_source_get_transport ()

-
GdictSourceTransport
-gdict_source_get_transport (GdictSource *source);
-

FIXME

-
-

Parameters

-
----- - - - - - -

source

a GdictSource

 
-
-
-

Returns

-

FIXME

-
-

Since: 1.0

-
-
-
-

gdict_source_get_context ()

-
GdictContext *
-gdict_source_get_context (GdictSource *source);
-

Gets the GdictContext bound to source -.

-
-

Parameters

-
----- - - - - - -

source

a GdictSource

 
-
-
-

Returns

-

a GdictContext for source -. Use g_object_unref() -when you don't need it anymore.

-
-

Since: 1.0

-
-
-
-

gdict_source_peek_context ()

-
GdictContext *
-gdict_source_peek_context (GdictSource *source);
-

Gets the GdictContext bound to source -. The returned object is a -referenced copy of the context held by source -; if you want a different -instance, use gdict_source_get_context().

-
-

Parameters

-
----- - - - - - -

source

a GdictSource

 
-
-
-

Returns

-

a referenced GdictContext. Use g_object_unref() when -finished using it.

-
-

Since: 1.0

-
-
-
-

Types and Values

-
-

enum GdictSourceTransport

-
-

Members

-
----- - - - - - - - - - - - - -

GDICT_SOURCE_TRANSPORT_DICTD

  

GDICT_SOURCE_TRANSPORT_INVALID

  
-
-
-
-
-

GDICT_SOURCE_ERROR

-
#define GDICT_SOURCE_ERROR (gdict_source_error_quark ())
-
-
-
-
-

enum GdictSourceError

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - -

GDICT_SOURCE_ERROR_PARSE

  

GDICT_SOURCE_ERROR_INVALID_NAME

  

GDICT_SOURCE_ERROR_INVALID_TRANSPORT

  

GDICT_SOURCE_ERROR_INVALID_BAD_PARAMETER

  
-
-
-
-
-

Property Details

-
-

The “context” property

-
  “context”                  GdictContext *
-

The GdictContext bound to this source.

-

Owner: GdictSource

-

Flags: Read

-

Since: 1.0

-
-
-
-

The “database” property

-
  “database”                 char *
-

The default database of this dictionary source.

-

Owner: GdictSource

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.0

-
-
-
-

The “description” property

-
  “description”              char *
-

The description of this dictionary source.

-

Owner: GdictSource

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.0

-
-
-
-

The “filename” property

-
  “filename”                 char *
-

The filename used by this dictionary source.

-

Owner: GdictSource

-

Flags: Read

-

Default value: NULL

-

Since: 1.0

-
-
-
-

The “name” property

-
  “name”                     char *
-

The display name of this dictionary source.

-

Owner: GdictSource

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.0

-
-
-
-

The “strategy” property

-
  “strategy”                 char *
-

The default strategy of this dictionary source.

-

Owner: GdictSource

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.0

-
-
-
-

The “transport” property

-
  “transport”                GdictSourceTransport
-

The transport mechanism used by this source.

-

Owner: GdictSource

-

Flags: Read / Write

-

Default value: GDICT_SOURCE_TRANSPORT_INVALID

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictSourceLoader.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictSourceLoader.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictSourceLoader.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictSourceLoader.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,517 +0,0 @@ - - - - -GdictSourceLoader: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

GdictSourceLoader

-

GdictSourceLoader — Loader object for a set of dictionary sources

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-GdictSourceLoader * - -gdict_source_loader_new () -
-void - -gdict_source_loader_update () -
-void - -gdict_source_loader_add_search_path () -
const GSList * - -gdict_source_loader_get_paths () -
-gchar ** - -gdict_source_loader_get_names () -
const GSList * - -gdict_source_loader_get_sources () -
-GdictSource * - -gdict_source_loader_get_source () -
-gboolean - -gdict_source_loader_has_source () -
-gboolean - -gdict_source_loader_remove_source () -
-
-
-

Properties

-
----- - - - - - - - - - - - - -
gpointerpathsRead
gpointersourcesRead
-
-
-

Signals

-
----- - - - - - -
voidsource-loadedRun Last
-
-
-

Object Hierarchy

-
    GObject
-    ╰── GdictSourceLoader
-
-
-
-

Description

-

GdictSourceLoader allows searching for dictionary source definition -files inside a set of paths and return a GdictSource using its name.

-
-
-

Functions

-
-

gdict_source_loader_new ()

-
GdictSourceLoader *
-gdict_source_loader_new (void);
-

Creates a new GdictSourceLoader object. This object is used to search -into a list of paths for dictionary source files. See GdictSource for -more informations about the format of dictionary source files.

-
-

Returns

-

a new GdictSourceLoader object

-
-

Since: 1.0

-
-
-
-

gdict_source_loader_update ()

-
void
-gdict_source_loader_update (GdictSourceLoader *loader);
-

Queue an update of the sources inside loader -.

-
-

Parameters

-
----- - - - - - -

loader

a GdictSourceLoader

 
-
-

Since: 1.0

-
-
-
-

gdict_source_loader_add_search_path ()

-
void
-gdict_source_loader_add_search_path (GdictSourceLoader *loader,
-                                     const gchar *path);
-

Adds path - to the search paths list of loader -.

-
-

Parameters

-
----- - - - - - - - - - - - - -

loader

a GdictSourceLoader

 

path

a path to be added to the search path list

 
-
-

Since: 1.0

-
-
-
-

gdict_source_loader_get_paths ()

-
const GSList *
-gdict_source_loader_get_paths (GdictSourceLoader *loader);
-

Gets the list of paths used by loader - to search for dictionary source -files.

-
-

Parameters

-
----- - - - - - -

loader

a GdictSourceLoader

 
-
-
-

Returns

-

a list containing the paths. The returned list is owned -by the GdictSourceLoader object and should never be free or modified.

-
-

Since: 1.0

-
-
-
-

gdict_source_loader_get_names ()

-
gchar **
-gdict_source_loader_get_names (GdictSourceLoader *loader,
-                               gsize *length);
-

Retrieves the list of dictionary source names available into the -search paths of loader -.

-
-

Parameters

-
----- - - - - - - - - - - - - -

loader

a GdictSourceLoader

 

length

return location for the number of source names, or NULL

 
-
-
-

Returns

-

a newly allocated, NULL terminated array of strings. You -should free the returned string array with g_strfreev()

-
-

Since: 1.0

-
-
-
-

gdict_source_loader_get_sources ()

-
const GSList *
-gdict_source_loader_get_sources (GdictSourceLoader *loader);
-

Retrieves the list of dictionary sources available into the search -paths of loader -, in form of GdictSource objects.

-
-

Parameters

-
----- - - - - - -

loader

a GdictSourceLoader

 
-
-
-

Returns

-

a list of GdictSource objects. The returned list -is owned by the GdictSourceLoader object, and should never be -freed or modified.

-
-

Since: 1.0

-
-
-
-

gdict_source_loader_get_source ()

-
GdictSource *
-gdict_source_loader_get_source (GdictSourceLoader *loader,
-                                const gchar *name);
-

Retrieves a dictionary source using name -. You can use the returned -GdictSource object to create the right GdictContext for that -dictionary source.

-
-

Parameters

-
----- - - - - - - - - - - - - -

loader

a GdictSourceLoader

 

name

a name of a dictionary source

 
-
-
-

Returns

-

a referenced GdictSource object. You should de-reference -it using g_object_unref() when you finished using it.

-
-

Since: 1.0

-
-
-
-

gdict_source_loader_has_source ()

-
gboolean
-gdict_source_loader_has_source (GdictSourceLoader *loader,
-                                const gchar *source_name);
-

Checks whether loader - has a dictionary source with name source_name -.

-
-

Parameters

-
----- - - - - - - - - - - - - -

loader

a GdictSourceLoader

 

source_name

the name of a dictionary source

 
-
-
-

Returns

-

TRUE if the dictionary source is known

-
-

Since: 0.12

-
-
-
-

gdict_source_loader_remove_source ()

-
gboolean
-gdict_source_loader_remove_source (GdictSourceLoader *loader,
-                                   const gchar *name);
-

Removes the dictionary source name - from loader -. This function will -also remove the dictionary source definition file bound to it.

-
-

Parameters

-
----- - - - - - - - - - - - - -

loader

a GdictSourceLoader

 

name

name of a dictionary source

 
-
-
-

Returns

-

TRUE if the dictionary source was successfully removed

-
-

Since: 1.0

-
-
-
-

Property Details

-
-

The “paths” property

-
  “paths”                    gpointer
-

The search paths used by this object

-

Owner: GdictSourceLoader

-

Flags: Read

-

Since: 1.0

-
-
-
-

The “sources” property

-
  “sources”                  gpointer
-

The GdictSource objects found by this object

-

Owner: GdictSourceLoader

-

Flags: Read

-

Since: 1.0

-
-
-
-

Signal Details

-
-

The “source-loaded” signal

-
void
-user_function (GdictSourceLoader *loader,
-               GdictSource       *source,
-               gpointer           user_data)
-

This signal is emitted when a new dictionary source has been added -to the list.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

loader

the object which received the signal

 

source

the new GdictSource object found

 

user_data

user data set when the signal handler was connected.

 
-
-

Flags: Run Last

-

Since: 1.0

-
-
-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictSpeller.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictSpeller.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictSpeller.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictSpeller.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ - - - - -GdictSpeller: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

GdictSpeller

-

GdictSpeller — Display matching words

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-GtkWidget * - -gdict_speller_new () -
-GtkWidget * - -gdict_speller_new_with_context () -
-void - -gdict_speller_set_context () -
-GdictContext * - -gdict_speller_get_context () -
-void - -gdict_speller_set_database () -
const gchar * - -gdict_speller_get_database () -
-void - -gdict_speller_set_strategy () -
const gchar * - -gdict_speller_get_strategy () -
-void - -gdict_speller_clear () -
-void - -gdict_speller_match () -
-gint - -gdict_speller_count_matches () -
-gchar ** - -gdict_speller_get_matches () -
-
-
-

Properties

-
----- - - - - - - - - - - - - - - - - - -
-GdictContext *contextRead / Write / Construct
-char *databaseRead / Write
-char *strategyRead / Write
-
-
-

Signals

-
----- - - - - - -
voidword-activatedRun Last
-
-
-

Object Hierarchy

-
    GObject
-    ╰── GInitiallyUnowned
-        ╰── GtkWidget
-            ╰── GtkContainer
-                ╰── GtkBox
-                    ╰── GdictSpeller
-
-
-
-

Description

-

GdictSpeller is a widget showing a list of words returned by a -GdictContext query, using a specific database and a matching strategy.

-
-
-

Functions

-
-

gdict_speller_new ()

-
GtkWidget *
-gdict_speller_new (void);
-

FIXME

-
-

Returns

-

FIXME

-
-

Since:

-
-
-
-

gdict_speller_new_with_context ()

-
GtkWidget *
-gdict_speller_new_with_context (GdictContext *context);
-

FIXME

-
-

Parameters

-
----- - - - - - -

context

a GdictContext

 
-
-
-

Returns

-

FIXME

-
-

Since:

-
-
-
-

gdict_speller_set_context ()

-
void
-gdict_speller_set_context (GdictSpeller *speller,
-                           GdictContext *context);
-

FIXME

-
-

Parameters

-
----- - - - - - - - - - - - - -

speller

a GdictSpeller

 

context

a GdictContext

 
-
-

Since:

-
-
-
-

gdict_speller_get_context ()

-
GdictContext *
-gdict_speller_get_context (GdictSpeller *speller);
-

FIXME

-
-

Parameters

-
----- - - - - - -

speller

a GdictSpeller

 
-
-
-

Returns

-

a GdictContext

-
-

Since:

-
-
-
-

gdict_speller_set_database ()

-
void
-gdict_speller_set_database (GdictSpeller *speller,
-                            const gchar *database);
-

FIXME

-
-

Parameters

-
----- - - - - - - - - - - - - -

speller

a GdictSpeller

 

database

FIXME

 
-
-

Since:

-
-
-
-

gdict_speller_get_database ()

-
const gchar *
-gdict_speller_get_database (GdictSpeller *speller);
-

FIXME

-
-

Parameters

-
----- - - - - - -

speller

a GdictSpeller

 
-
-
-

Returns

-

FIXME

-
-

Since: FIXME

-
-
-
-

gdict_speller_set_strategy ()

-
void
-gdict_speller_set_strategy (GdictSpeller *speller,
-                            const gchar *strategy);
-

FIXME

-
-

Parameters

-
----- - - - - - - - - - - - - -

speller

a GdictSpeller

 

strategy

FIXME

 
-
-

Since: FIXME

-
-
-
-

gdict_speller_get_strategy ()

-
const gchar *
-gdict_speller_get_strategy (GdictSpeller *speller);
-

FIXME

-
-

Parameters

-
----- - - - - - -

speller

a GdictSpeller

 
-
-
-

Returns

-

FIXME

-
-

Since: FIXME

-
-
-
-

gdict_speller_clear ()

-
void
-gdict_speller_clear (GdictSpeller *speller);
-

FIXME

-
-

Parameters

-
----- - - - - - -

speller

a GdictSpeller

 
-
-

Since: FIXME

-
-
-
-

gdict_speller_match ()

-
void
-gdict_speller_match (GdictSpeller *speller,
-                     const gchar *word);
-

FIXME

-
-

Parameters

-
----- - - - - - - - - - - - - -

speller

a GdictSpeller

 

word

FIXME

 
-
-

Since: FIXME

-
-
-
-

gdict_speller_count_matches ()

-
gint
-gdict_speller_count_matches (GdictSpeller *speller);
-
-
-
-

gdict_speller_get_matches ()

-
gchar **
-gdict_speller_get_matches (GdictSpeller *speller,
-                           gsize length);
-

FIXME

-
-

Parameters

-
----- - - - - - - - - - - - - -

speller

a GdictSpeller

 

length

FIXME

 
-
-
-

Returns

-

FIXME

-
-

Since: FIXME

-
-
-
-

Property Details

-
-

The “context” property

-
  “context”                  GdictContext *
-

The GdictContext object used to get the word definition.

-

Owner: GdictSpeller

-

Flags: Read / Write / Construct

-
-
-
-

The “database” property

-
  “database”                 char *
-

The database used to query the GdictContext.

-

Owner: GdictSpeller

-

Flags: Read / Write

-

Default value: "*"

-
-
-
-

The “strategy” property

-
  “strategy”                 char *
-

The strategy used to query the GdictContext.

-

Owner: GdictSpeller

-

Flags: Read / Write

-

Default value: "."

-
-
-
-

Signal Details

-
-

The “word-activated” signal

-
void
-user_function (GdictSpeller *gdictspeller,
-               char         *arg1,
-               char         *arg2,
-               gpointer      user_data)
-

Flags: Run Last

-
-
-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictStrategyChooser.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictStrategyChooser.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/GdictStrategyChooser.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/GdictStrategyChooser.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,702 +0,0 @@ - - - - -GdictStrategyChooser: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

GdictStrategyChooser

-

GdictStrategyChooser — Display a list of matching strategies

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-GtkWidget * - -gdict_strategy_chooser_new () -
-GtkWidget * - -gdict_strategy_chooser_new_with_context () -
-GdictContext * - -gdict_strategy_chooser_get_context () -
-void - -gdict_strategy_chooser_set_context () -
-gboolean - -gdict_strategy_chooser_select_strategy () -
-gboolean - -gdict_strategy_chooser_unselect_strategy () -
-gboolean - -gdict_strategy_chooser_set_current_strategy () -
-gchar * - -gdict_strategy_chooser_get_current_strategy () -
-gchar ** - -gdict_strategy_chooser_get_strategies () -
-gint - -gdict_strategy_chooser_count_strategies () -
-gboolean - -gdict_strategy_chooser_has_strategy () -
-void - -gdict_strategy_chooser_refresh () -
-void - -gdict_strategy_chooser_clear () -
-GtkWidget * - -gdict_strategy_chooser_add_button () -
-
-
-

Properties

-
----- - - - - - -
-GdictContext *contextRead / Write / Construct
-
-
-

Signals

-
----- - - - - - -
voidstrategy-activatedRun Last
-
-
-

Object Hierarchy

-
    GObject
-    ╰── GInitiallyUnowned
-        ╰── GtkWidget
-            ╰── GtkContainer
-                ╰── GtkBox
-                    ╰── GdictStrategyChooser
-
-
-
-

Description

-

Each GdictContext allows matching a word using a specific "matching -strategy". The GdictStrategyChooser widget queries a GdictContext and -displays the list of available matching strategies.

-
-
-

Functions

-
-

gdict_strategy_chooser_new ()

-
GtkWidget *
-gdict_strategy_chooser_new (void);
-

Creates a new GdictStrategyChooser. Use this widget to show a list -of matching strategies available on a dictionary source represented -by a GdictContext, set with gdict_strategy_chooser_set_context().

-
-

Returns

-

the newly created GdictStrategyChooser widget

-
-

Since: 0.9

-
-
-
-

gdict_strategy_chooser_new_with_context ()

-
GtkWidget *
-gdict_strategy_chooser_new_with_context
-                               (GdictContext *context);
-

Creates a new GdictStrategyChooser widget, using context - as the -representation of a dictionary source.

-
-

Parameters

-
----- - - - - - -

context

a GdictContext

 
-
-
-

Returns

-

the newly created GdictStrategyChooser widget

-
-

Since: 0.9

-
-
-
-

gdict_strategy_chooser_get_context ()

-
GdictContext *
-gdict_strategy_chooser_get_context (GdictStrategyChooser *chooser);
-

Retrieves the GdictContext used by chooser -.

-
-

Parameters

-
----- - - - - - -

chooser

a GdictStrategyChooser

 
-
-
-

Returns

-

a GdictContext

-
-

Since:

-
-
-
-

gdict_strategy_chooser_set_context ()

-
void
-gdict_strategy_chooser_set_context (GdictStrategyChooser *chooser,
-                                    GdictContext *context);
-

Sets the GdictContext to be used by chooser - to retrieve the -list of matching strategies.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictStrategyChooser

 

context

a GdictContext, or NULL to unset the context

 
-
-

Since: 0.9

-
-
-
-

gdict_strategy_chooser_select_strategy ()

-
gboolean
-gdict_strategy_chooser_select_strategy
-                               (GdictStrategyChooser *chooser,
-                                const gchar *strat_name);
-

Selects strat_name -, if available.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictStrategyChooser

 

strat_name

the name of the strategy to select

 
-
-
-

Returns

-

TRUE if the matching strategy was found and selected

-
-

Since: 0.10

-
-
-
-

gdict_strategy_chooser_unselect_strategy ()

-
gboolean
-gdict_strategy_chooser_unselect_strategy
-                               (GdictStrategyChooser *chooser,
-                                const gchar *strat_name);
-

Unselects strat_name - from the list.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictStrategyChooser

 

strat_name

the name of the strategy to unselect

 
-
-
-

Returns

-

TRUE if the matching strategy was found and successfully -unselected

-
-

Since: 0.10

-
-
-
-

gdict_strategy_chooser_set_current_strategy ()

-
gboolean
-gdict_strategy_chooser_set_current_strategy
-                               (GdictStrategyChooser *chooser,
-                                const gchar *strat_name);
-

Sets strat_name - as the current matching strategy.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictStrategyChooser

 

strat_name

the name of the matching strategy

 
-
-
-

Returns

-

TRUE if the matching strategy was found

-
-

Since: 0.10

-
-
-
-

gdict_strategy_chooser_get_current_strategy ()

-
gchar *
-gdict_strategy_chooser_get_current_strategy
-                               (GdictStrategyChooser *chooser);
-

Retrieves the current matching strategy.

-
-

Parameters

-
----- - - - - - -

chooser

a GdictStrategyChooser

 
-
-
-

Returns

-

a newly allocated string containing the name of -the current matching strategy

-
-

Since: 0.10

-
-
-
-

gdict_strategy_chooser_get_strategies ()

-
gchar **
-gdict_strategy_chooser_get_strategies (GdictStrategyChooser *chooser,
-                                       gsize *length);
-

Retrieves the list of matching strategies available.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictStrategyChooser

 

length

return location for the length of the returned string list

 
-
-
-

Returns

-

a string vector containing the names of the matching -strategies. Use g_strfreev() to deallocate the memory when done

-
-

Since: 0.9

-
-
-
-

gdict_strategy_chooser_count_strategies ()

-
gint
-gdict_strategy_chooser_count_strategies
-                               (GdictStrategyChooser *chooser);
-

Returns the number of strategies found.

-
-

Parameters

-
----- - - - - - -

chooser

a GdictStrategyChooser

 
-
-
-

Returns

-

the number of strategies or -1 if case of error

-
-

Since:

-
-
-
-

gdict_strategy_chooser_has_strategy ()

-
gboolean
-gdict_strategy_chooser_has_strategy (GdictStrategyChooser *chooser,
-                                     const gchar *strategy);
-

Checks whether strategy - is available in the list of matching -strategies displayed by chooser -.

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictStrategyChooser

 

strategy

a strategy name

 
-
-
-

Returns

-

TRUE if the strategy was found, FALSE otherwise

-
-

Since: 0.9

-
-
-
-

gdict_strategy_chooser_refresh ()

-
void
-gdict_strategy_chooser_refresh (GdictStrategyChooser *chooser);
-

Reloads the list of available strategies.

-
-

Parameters

-
----- - - - - - -

chooser

a GdictStrategyChooser

 
-
-

Since: 0.10

-
-
-
-

gdict_strategy_chooser_clear ()

-
void
-gdict_strategy_chooser_clear (GdictStrategyChooser *chooser);
-

Clears chooser -.

-
-

Parameters

-
----- - - - - - -

chooser

a GdictStrategyChooser

 
-
-

Since: 0.10

-
-
-
-

gdict_strategy_chooser_add_button ()

-
GtkWidget *
-gdict_strategy_chooser_add_button (GdictStrategyChooser *chooser,
-                                   const gchar *button_text);
-

Creates a new button and packs it into the GdictStrategyChooser -"action area".

-
-

Parameters

-
----- - - - - - - - - - - - - -

chooser

a GdictStrategyChooser

 

button_text

text of the button (can be a stock id)

 
-
-
-

Returns

-

the packed GtkButton

-
-

Since: 0.10

-
-
-
-

Property Details

-
-

The “context” property

-
  “context”                  GdictContext *
-

The GdictContext object used to retrieve the list of strategies.

-

Owner: GdictStrategyChooser

-

Flags: Read / Write / Construct

-
-
-
-

Signal Details

-
-

The “strategy-activated” signal

-
void
-user_function (GdictStrategyChooser *chooser,
-               char                 *name,
-               char                 *description,
-               gpointer              user_data)
-

The ::strategy-activated signal is emitted each time the user -activates a strategy in the chooser -, either by double click or -using the keyboard.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - - - - - - -

chooser

the widget that received the signal

 

name

the name of the activated strategy

 

description

the description of the activate strategy

 

user_data

user data set when the signal handler was connected.

 
-
-

Flags: Run Last

-
-
-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/gdictui.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/gdictui.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/gdictui.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/gdictui.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - -Part III. The MATE Dictionary Library Widgets: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-

-Part III. The MATE Dictionary Library Widgets

-
-
-

- Apart from the low-level classes, the MATE Dictionary library - offers a set of widgets for accessing the dictionary sources and showing - the results of queries. -

-
-

Table of Contents

-
-
Base widgets
-
-
-GdictDefbox — Display the list of definitions for a word -
-
-GdictSpeller — Display matching words -
-
-
Advanced widgets
-
-
-GdictDatabaseChooser — Display the list of available databases -
-
-GdictStrategyChooser — Display a list of matching strategies -
-
-GdictSourceChooser — Display the list of available sources -
-
-
-
-
-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/gdict-utils.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/gdict-utils.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/gdict-utils.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/gdict-utils.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ - - - - -Gdict Utilities: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-

-Gdict Utilities

- -
- - - \ No newline at end of file Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/home.png and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/home.png differ diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/index.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/index.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/index.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/index.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,96 +0,0 @@ - - - - -MATE Dictionary Library Reference Manual: MATE Dictionary Library Reference Manual - - - - - - - - -
-
-
-
-
-

-Emmanuele Bassi -

-


-            
-          

-
-
-

- This manual documents the 1.1.0 - release of the Dictionary - Library for MATE 2.x -

-
-
-
-
-
I. Introduction
-
II. The MATE Dictionary Library
-
-
Dictionary Context
-
-GdictContext — Interface for dictionary transports -
-
Context Implementations
-
-GdictClientContext — DICT client transport -
-
Dictionary Source
-
-
-GdictSource — A dictionary source definition -
-
-GdictSourceLoader — Loader object for a set of dictionary sources -
-
-
Gdict Utilities
-
-
-gdict-utils -
-
-gdict-version -
-
-
-
III. The MATE Dictionary Library Widgets
-
-
Base widgets
-
-
-GdictDefbox — Display the list of definitions for a word -
-
-GdictSpeller — Display matching words -
-
-
Advanced widgets
-
-
-GdictDatabaseChooser — Display the list of available databases -
-
-GdictStrategyChooser — Display a list of matching strategies -
-
-GdictSourceChooser — Display the list of available sources -
-
-
-
Index
-
-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/introduction.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/introduction.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/introduction.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/introduction.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - -Part I. Introduction: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-

-Part I. Introduction

-
-
-

- The MATE Dictionary Library is a simple yet powerful collection of - classes that can be used to access various dictionary sources. -

-

- It was created for the MATE Dictionary application, but it has been - made available for each developer whom wishes to access and display - definitions stored inside language dictionaries. -

-
-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/ix01.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/ix01.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/ix01.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/ix01.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,456 +0,0 @@ - - - - -Index: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-

-Index

-
-

G

-
-
GdictClientContext::connected, The “connected” signal -
-
GdictClientContext::disconnected, The “disconnected” signal -
-
GdictClientContext:client-name, The “client-name” property -
-
GdictClientContext:hostname, The “hostname” property -
-
GdictClientContext:port, The “port” property -
-
GdictClientContext:status, The “status” property -
-
GdictClientContextError, enum GdictClientContextError -
-
GdictContext::database-found, The “database-found” signal -
-
GdictContext::definition-found, The “definition-found” signal -
-
GdictContext::error, The “error” signal -
-
GdictContext::lookup-end, The “lookup-end” signal -
-
GdictContext::lookup-start, The “lookup-start” signal -
-
GdictContext::match-found, The “match-found” signal -
-
GdictContext::strategy-found, The “strategy-found” signal -
-
GdictContext:local-only, The “local-only” property -
-
GdictContextError, enum GdictContextError -
-
GdictContextIface, struct GdictContextIface -
-
GdictContextProp, enum GdictContextProp -
-
GdictDatabase, GdictDatabase -
-
GdictDatabaseChooser::database-activated, The “database-activated” signal -
-
GdictDatabaseChooser::selection-changed, The “selection-changed” signal -
-
GdictDatabaseChooser:context, The “context” property -
-
GdictDatabaseChooser:count, The “count” property -
-
GdictDefbox::find-next, The “find-next” signal -
-
GdictDefbox::find-previous, The “find-previous” signal -
-
GdictDefbox::hide-find, The “hide-find” signal -
-
GdictDefbox::link-clicked, The “link-clicked” signal -
-
GdictDefbox::show-find, The “show-find” signal -
-
GdictDefbox:context, The “context” property -
-
GdictDefbox:database, The “database” property -
-
GdictDefbox:font-name, The “font-name” property -
-
GdictDefbox:word, The “word” property -
-
GdictDefinition, GdictDefinition -
-
GdictMatch, GdictMatch -
-
GdictSource:context, The “context” property -
-
GdictSource:database, The “database” property -
-
GdictSource:description, The “description” property -
-
GdictSource:filename, The “filename” property -
-
GdictSource:name, The “name” property -
-
GdictSource:strategy, The “strategy” property -
-
GdictSource:transport, The “transport” property -
-
GdictSourceChooser::selection-changed, The “selection-changed” signal -
-
GdictSourceChooser::source-activated, The “source-activated” signal -
-
GdictSourceChooser:count, The “count” property -
-
GdictSourceChooser:loader, The “loader” property -
-
GdictSourceError, enum GdictSourceError -
-
GdictSourceLoader::source-loaded, The “source-loaded” signal -
-
GdictSourceLoader:paths, The “paths” property -
-
GdictSourceLoader:sources, The “sources” property -
-
GdictSourceTransport, enum GdictSourceTransport -
-
GdictSpeller::word-activated, The “word-activated” signal -
-
GdictSpeller:context, The “context” property -
-
GdictSpeller:database, The “database” property -
-
GdictSpeller:strategy, The “strategy” property -
-
GdictStatusCode, enum GdictStatusCode -
-
GdictStrategy, GdictStrategy -
-
GdictStrategyChooser::strategy-activated, The “strategy-activated” signal -
-
GdictStrategyChooser:context, The “context” property -
-
GDICT_CHECK_VERSION, GDICT_CHECK_VERSION() -
-
gdict_check_version, gdict_check_version () -
-
GDICT_CLIENT_CONTEXT_ERROR, GDICT_CLIENT_CONTEXT_ERROR -
-
gdict_client_context_error_quark, gdict_client_context_error_quark () -
-
gdict_client_context_get_client, gdict_client_context_get_client () -
-
gdict_client_context_get_hostname, gdict_client_context_get_hostname () -
-
gdict_client_context_get_port, gdict_client_context_get_port () -
-
gdict_client_context_new, gdict_client_context_new () -
-
gdict_client_context_set_client, gdict_client_context_set_client () -
-
gdict_client_context_set_hostname, gdict_client_context_set_hostname () -
-
gdict_client_context_set_port, gdict_client_context_set_port () -
-
gdict_context_define_word, gdict_context_define_word () -
-
GDICT_CONTEXT_ERROR, GDICT_CONTEXT_ERROR -
-
gdict_context_error_quark, gdict_context_error_quark () -
-
gdict_context_get_local_only, gdict_context_get_local_only () -
-
gdict_context_lookup_databases, gdict_context_lookup_databases () -
-
gdict_context_lookup_strategies, gdict_context_lookup_strategies () -
-
gdict_context_match_word, gdict_context_match_word () -
-
gdict_context_set_local_only, gdict_context_set_local_only () -
-
gdict_database_chooser_add_button, gdict_database_chooser_add_button () -
-
gdict_database_chooser_clear, gdict_database_chooser_clear () -
-
gdict_database_chooser_count_databases, gdict_database_chooser_count_databases () -
-
gdict_database_chooser_get_context, gdict_database_chooser_get_context () -
-
gdict_database_chooser_get_current_database, gdict_database_chooser_get_current_database () -
-
gdict_database_chooser_get_databases, gdict_database_chooser_get_databases () -
-
gdict_database_chooser_has_database, gdict_database_chooser_has_database () -
-
gdict_database_chooser_new, gdict_database_chooser_new () -
-
gdict_database_chooser_new_with_context, gdict_database_chooser_new_with_context () -
-
gdict_database_chooser_refresh, gdict_database_chooser_refresh () -
-
gdict_database_chooser_select_database, gdict_database_chooser_select_database () -
-
gdict_database_chooser_set_context, gdict_database_chooser_set_context () -
-
gdict_database_chooser_set_current_database, gdict_database_chooser_set_current_database () -
-
gdict_database_chooser_unselect_database, gdict_database_chooser_unselect_database () -
-
gdict_database_get_full_name, gdict_database_get_full_name () -
-
gdict_database_get_name, gdict_database_get_name () -
-
gdict_database_ref, gdict_database_ref () -
-
gdict_database_unref, gdict_database_unref () -
-
gdict_debug_init, gdict_debug_init () -
-
GDICT_DEFAULT_DATABASE, GDICT_DEFAULT_DATABASE -
-
GDICT_DEFAULT_FONT_NAME, GDICT_DEFAULT_FONT_NAME -
-
GDICT_DEFAULT_STRATEGY, GDICT_DEFAULT_STRATEGY -
-
gdict_defbox_clear, gdict_defbox_clear () -
-
gdict_defbox_copy_to_clipboard, gdict_defbox_copy_to_clipboard () -
-
gdict_defbox_count_definitions, gdict_defbox_count_definitions () -
-
gdict_defbox_find_next, gdict_defbox_find_next () -
-
gdict_defbox_find_previous, gdict_defbox_find_previous () -
-
gdict_defbox_get_context, gdict_defbox_get_context () -
-
gdict_defbox_get_database, gdict_defbox_get_database () -
-
gdict_defbox_get_font_name, gdict_defbox_get_font_name () -
-
gdict_defbox_get_selected_word, gdict_defbox_get_selected_word () -
-
gdict_defbox_get_show_find, gdict_defbox_get_show_find () -
-
gdict_defbox_get_text, gdict_defbox_get_text () -
-
gdict_defbox_get_word, gdict_defbox_get_word () -
-
gdict_defbox_jump_to_definition, gdict_defbox_jump_to_definition () -
-
gdict_defbox_lookup, gdict_defbox_lookup () -
-
gdict_defbox_new, gdict_defbox_new () -
-
gdict_defbox_new_with_context, gdict_defbox_new_with_context () -
-
gdict_defbox_select_all, gdict_defbox_select_all () -
-
gdict_defbox_set_context, gdict_defbox_set_context () -
-
gdict_defbox_set_database, gdict_defbox_set_database () -
-
gdict_defbox_set_font_name, gdict_defbox_set_font_name () -
-
gdict_defbox_set_show_find, gdict_defbox_set_show_find () -
-
gdict_definition_get_database, gdict_definition_get_database () -
-
gdict_definition_get_text, gdict_definition_get_text () -
-
gdict_definition_get_total, gdict_definition_get_total () -
-
gdict_definition_get_word, gdict_definition_get_word () -
-
gdict_definition_ref, gdict_definition_ref () -
-
gdict_definition_unref, gdict_definition_unref () -
-
gdict_get_option_group, gdict_get_option_group () -
-
gdict_major, gdict_major -
-
GDICT_MAJOR_VERSION, GDICT_MAJOR_VERSION -
-
gdict_match_get_database, gdict_match_get_database () -
-
gdict_match_get_word, gdict_match_get_word () -
-
gdict_match_ref, gdict_match_ref () -
-
gdict_match_unref, gdict_match_unref () -
-
gdict_micro, gdict_micro -
-
GDICT_MICRO_VERSION, GDICT_MICRO_VERSION -
-
gdict_minor, gdict_minor -
-
GDICT_MINOR_VERSION, GDICT_MINOR_VERSION -
-
gdict_source_chooser_add_button, gdict_source_chooser_add_button () -
-
gdict_source_chooser_count_sources, gdict_source_chooser_count_sources () -
-
gdict_source_chooser_get_current_source, gdict_source_chooser_get_current_source () -
-
gdict_source_chooser_get_loader, gdict_source_chooser_get_loader () -
-
gdict_source_chooser_get_sources, gdict_source_chooser_get_sources () -
-
gdict_source_chooser_has_source, gdict_source_chooser_has_source () -
-
gdict_source_chooser_new, gdict_source_chooser_new () -
-
gdict_source_chooser_new_with_loader, gdict_source_chooser_new_with_loader () -
-
gdict_source_chooser_refresh, gdict_source_chooser_refresh () -
-
gdict_source_chooser_select_source, gdict_source_chooser_select_source () -
-
gdict_source_chooser_set_current_source, gdict_source_chooser_set_current_source () -
-
gdict_source_chooser_set_loader, gdict_source_chooser_set_loader () -
-
gdict_source_chooser_unselect_source, gdict_source_chooser_unselect_source () -
-
GDICT_SOURCE_ERROR, GDICT_SOURCE_ERROR -
-
gdict_source_error_quark, gdict_source_error_quark () -
-
gdict_source_get_context, gdict_source_get_context () -
-
gdict_source_get_database, gdict_source_get_database () -
-
gdict_source_get_description, gdict_source_get_description () -
-
gdict_source_get_name, gdict_source_get_name () -
-
gdict_source_get_strategy, gdict_source_get_strategy () -
-
gdict_source_get_transport, gdict_source_get_transport () -
-
gdict_source_loader_add_search_path, gdict_source_loader_add_search_path () -
-
gdict_source_loader_get_names, gdict_source_loader_get_names () -
-
gdict_source_loader_get_paths, gdict_source_loader_get_paths () -
-
gdict_source_loader_get_source, gdict_source_loader_get_source () -
-
gdict_source_loader_get_sources, gdict_source_loader_get_sources () -
-
gdict_source_loader_has_source, gdict_source_loader_has_source () -
-
gdict_source_loader_new, gdict_source_loader_new () -
-
gdict_source_loader_remove_source, gdict_source_loader_remove_source () -
-
gdict_source_loader_update, gdict_source_loader_update () -
-
gdict_source_load_from_data, gdict_source_load_from_data () -
-
gdict_source_load_from_file, gdict_source_load_from_file () -
-
gdict_source_new, gdict_source_new () -
-
gdict_source_peek_context, gdict_source_peek_context () -
-
gdict_source_set_database, gdict_source_set_database () -
-
gdict_source_set_description, gdict_source_set_description () -
-
gdict_source_set_name, gdict_source_set_name () -
-
gdict_source_set_strategy, gdict_source_set_strategy () -
-
gdict_source_set_transport, gdict_source_set_transport () -
-
gdict_source_set_transportv, gdict_source_set_transportv () -
-
gdict_source_to_data, gdict_source_to_data () -
-
gdict_speller_clear, gdict_speller_clear () -
-
gdict_speller_count_matches, gdict_speller_count_matches () -
-
gdict_speller_get_context, gdict_speller_get_context () -
-
gdict_speller_get_database, gdict_speller_get_database () -
-
gdict_speller_get_matches, gdict_speller_get_matches () -
-
gdict_speller_get_strategy, gdict_speller_get_strategy () -
-
gdict_speller_match, gdict_speller_match () -
-
gdict_speller_new, gdict_speller_new () -
-
gdict_speller_new_with_context, gdict_speller_new_with_context () -
-
gdict_speller_set_context, gdict_speller_set_context () -
-
gdict_speller_set_database, gdict_speller_set_database () -
-
gdict_speller_set_strategy, gdict_speller_set_strategy () -
-
gdict_strategy_chooser_add_button, gdict_strategy_chooser_add_button () -
-
gdict_strategy_chooser_clear, gdict_strategy_chooser_clear () -
-
gdict_strategy_chooser_count_strategies, gdict_strategy_chooser_count_strategies () -
-
gdict_strategy_chooser_get_context, gdict_strategy_chooser_get_context () -
-
gdict_strategy_chooser_get_current_strategy, gdict_strategy_chooser_get_current_strategy () -
-
gdict_strategy_chooser_get_strategies, gdict_strategy_chooser_get_strategies () -
-
gdict_strategy_chooser_has_strategy, gdict_strategy_chooser_has_strategy () -
-
gdict_strategy_chooser_new, gdict_strategy_chooser_new () -
-
gdict_strategy_chooser_new_with_context, gdict_strategy_chooser_new_with_context () -
-
gdict_strategy_chooser_refresh, gdict_strategy_chooser_refresh () -
-
gdict_strategy_chooser_select_strategy, gdict_strategy_chooser_select_strategy () -
-
gdict_strategy_chooser_set_context, gdict_strategy_chooser_set_context () -
-
gdict_strategy_chooser_set_current_strategy, gdict_strategy_chooser_set_current_strategy () -
-
gdict_strategy_chooser_unselect_strategy, gdict_strategy_chooser_unselect_strategy () -
-
gdict_strategy_get_description, gdict_strategy_get_description () -
-
gdict_strategy_get_name, gdict_strategy_get_name () -
-
gdict_strategy_ref, gdict_strategy_ref () -
-
gdict_strategy_unref, gdict_strategy_unref () -
-
GDICT_VERSION, GDICT_VERSION -
-
GDICT_VERSION_HEX, GDICT_VERSION_HEX -
-
GDICT_VERSION_S, GDICT_VERSION_S -
-
-
-
- - - \ No newline at end of file Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/left-insensitive.png and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/left-insensitive.png differ Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/left.png and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/left.png differ diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/mate-dict.devhelp2 mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/mate-dict.devhelp2 --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/mate-dict.devhelp2 2021-08-05 19:49:48.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/mate-dict.devhelp2 1970-01-01 00:00:00.000000000 +0000 @@ -1,300 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/mate-dict-gdict-utils.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/mate-dict-gdict-utils.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/mate-dict-gdict-utils.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/mate-dict-gdict-utils.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,356 +0,0 @@ - - - - -gdict-utils: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

gdict-utils

-

gdict-utils

-
-
-

Functions

-
---- - - - - - - - - - - -
-GOptionGroup * - -gdict_get_option_group () -
-void - -gdict_debug_init () -
-
-
-

Types and Values

-
---- - - - - - - - - - - - - - - - - - - - - - - -
#defineGDICT_DEFAULT_DATABASE
#defineGDICT_DEFAULT_STRATEGY
#defineGDICT_DEFAULT_FONT_NAME
enumGdictContextProp
enumGdictStatusCode
-
-
-

Description

-
-
-

Functions

-
-

gdict_get_option_group ()

-
GOptionGroup *
-gdict_get_option_group (void);
-

FIXME

-
-

Returns

-

FIXME

-
-

Since: 0.12

-
-
-
-

gdict_debug_init ()

-
void
-gdict_debug_init (gint *argc,
-                  gchar ***argv);
-

FIXME

-
-

Parameters

-
----- - - - - - - - - - - - - -

argc

FIXME

 

argv

FIXME

 
-
-

Since: 0.12

-
-
-
-

Types and Values

-
-

GDICT_DEFAULT_DATABASE

-
#define GDICT_DEFAULT_DATABASE "*"
-
-
-
-
-

GDICT_DEFAULT_STRATEGY

-
#define GDICT_DEFAULT_STRATEGY "."
-
-
-
-
-

GDICT_DEFAULT_FONT_NAME

-
#define GDICT_DEFAULT_FONT_NAME "Sans 10"
-
-
-
-
-

enum GdictContextProp

-
-

Members

-
----- - - - - - - - - - - - - - - - - - -

GDICT_CONTEXT_PROP_FIRST

  

GDICT_CONTEXT_PROP_LOCAL_ONLY

  

GDICT_CONTEXT_PROP_LAST

  
-
-
-
-
-

enum GdictStatusCode

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

GDICT_STATUS_INVALID

  

GDICT_STATUS_N_DATABASES_PRESENT

  

GDICT_STATUS_N_STRATEGIES_PRESENT

  

GDICT_STATUS_DATABASE_INFO

  

GDICT_STATUS_HELP_TEXT

  

GDICT_STATUS_SERVER_INFO

  

GDICT_STATUS_CHALLENGE

  

GDICT_STATUS_N_DEFINITIONS_RETRIEVED

  

GDICT_STATUS_WORD_DB_NAME

  

GDICT_STATUS_N_MATCHES_FOUND

  

GDICT_STATUS_CONNECT

  

GDICT_STATUS_QUIT

  

GDICT_STATUS_AUTH_OK

  

GDICT_STATUS_OK

  

GDICT_STATUS_SEND_RESPONSE

  

GDICT_STATUS_SERVER_DOWN

  

GDICT_STATUS_SHUTDOWN

  

GDICT_STATUS_BAD_COMMAND

  

GDICT_STATUS_BAD_PARAMETERS

  

GDICT_STATUS_COMMAND_NOT_IMPLEMENTED

  

GDICT_STATUS_PARAMETER_NOT_IMPLEMENTED

  

GDICT_STATUS_NO_ACCESS

  

GDICT_STATUS_USE_SHOW_INFO

  

GDICT_STATUS_UNKNOWN_MECHANISM

  

GDICT_STATUS_BAD_DATABASE

  

GDICT_STATUS_BAD_STRATEGY

  

GDICT_STATUS_NO_MATCH

  

GDICT_STATUS_NO_DATABASES_PRESENT

  

GDICT_STATUS_NO_STRATEGIES_PRESENT

  
-
-
-
-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/mate-dict-gdict-version.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/mate-dict-gdict-version.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/mate-dict-gdict-version.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/mate-dict-gdict-version.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,192 +0,0 @@ - - - - -gdict-version: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

gdict-version

-

gdict-version

-
-
-

Functions

-
---- - - - - - - - - - - -
#define -GDICT_CHECK_VERSION() -
-gboolean - -gdict_check_version () -
-
-
-

Types and Values

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#defineGDICT_MAJOR_VERSION
#defineGDICT_MINOR_VERSION
#defineGDICT_MICRO_VERSION
#defineGDICT_VERSION
#defineGDICT_VERSION_S
#defineGDICT_VERSION_HEX
extern guint gdict_major
extern guint gdict_minor
extern guint gdict_micro
-
-
-

Description

-
-
-

Functions

-
-

GDICT_CHECK_VERSION()

-
#define             GDICT_CHECK_VERSION(major,minor,micro)
-
-
-
-

gdict_check_version ()

-
gboolean
-gdict_check_version (guint required_major,
-                     guint required_minor,
-                     guint required_micro);
-
-
-
-

Types and Values

-
-

GDICT_MAJOR_VERSION

-
#define GDICT_MAJOR_VERSION (1)
-
-

FIXME

-
-
-
-

GDICT_MINOR_VERSION

-
#define GDICT_MINOR_VERSION (1)
-
-

FIXME

-
-
-
-

GDICT_MICRO_VERSION

-
#define GDICT_MICRO_VERSION (0)
-
-

FIXME

-
-
-
-

GDICT_VERSION

-
#define GDICT_VERSION           (1.1.0)
-
-

FIXME

-

Since: 0.11

-
-
-
-

GDICT_VERSION_S

-
#define GDICT_VERSION_S         "1.1.0"
-
-

FIXME

-

Since: 0.11

-
-
-
-

GDICT_VERSION_HEX

-
#define             GDICT_VERSION_HEX
-

FIXME

-

Since: 0.11

-
-
-
-

gdict_major

-
extern guint gdict_major;
-
-
-
-
-

gdict_minor

-
extern guint gdict_minor;
-
-
-
-
-

gdict_micro

-
extern guint gdict_micro;
-
-
-
-
- - - \ No newline at end of file Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/right-insensitive.png and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/right-insensitive.png differ Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/right.png and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/right.png differ diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/sources.html mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/sources.html --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/sources.html 2021-08-05 19:49:49.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/sources.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ - - - - -Dictionary Source: MATE Dictionary Library Reference Manual - - - - - - - - - - - - - - - - -
-

-Dictionary Source

-
-
-GdictSource — A dictionary source definition -
-
-GdictSourceLoader — Loader object for a set of dictionary sources -
-
-

A dictionary source is repesented using a specially crafted file, - and can be accessed using the GdictSource class.

-

Dictionary sources can be created at runtime or stored inside a - file and loaded directly using its path. Usually, sources files are - stored inside a predefined path and loaded using the GdictSourceLoader - class.

-
- - - \ No newline at end of file diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/style.css mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/style.css --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/style.css 2021-08-05 19:49:48.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/style.css 1970-01-01 00:00:00.000000000 +0000 @@ -1,530 +0,0 @@ -body -{ - font-family: cantarell, sans-serif; -} -.synopsis, .classsynopsis -{ - /* tango:aluminium 1/2 */ - background: #eeeeec; - background: rgba(238, 238, 236, 0.5); - border: solid 1px rgb(238, 238, 236); - padding: 0.5em; -} -.programlisting -{ - /* tango:sky blue 0/1 */ - /* fallback for no rgba support */ - background: #e6f3ff; - border: solid 1px #729fcf; - background: rgba(114, 159, 207, 0.1); - border: solid 1px rgba(114, 159, 207, 0.2); - padding: 0.5em; -} -.variablelist -{ - padding: 4px; - margin-left: 3em; -} -.variablelist td:first-child -{ - vertical-align: top; -} - -span.nowrap { - white-space: nowrap; -} - -div.gallery-float -{ - float: left; - padding: 10px; -} -div.gallery-float img -{ - border-style: none; -} -div.gallery-spacer -{ - clear: both; -} - -a, a:visited -{ - text-decoration: none; - /* tango:sky blue 2 */ - color: #3465a4; -} -a:hover -{ - text-decoration: underline; - /* tango:sky blue 1 */ - color: #729fcf; -} - -.function_type, -.variable_type, -.property_type, -.signal_type, -.parameter_name, -.struct_member_name, -.union_member_name, -.define_keyword, -.datatype_keyword, -.typedef_keyword -{ - text-align: right; -} - -/* dim non-primary columns */ -.c_punctuation, -.function_type, -.variable_type, -.property_type, -.signal_type, -.define_keyword, -.datatype_keyword, -.typedef_keyword, -.property_flags, -.signal_flags, -.parameter_annotations, -.enum_member_annotations, -.struct_member_annotations, -.union_member_annotations -{ - color: #888a85; -} - -.function_type a, -.function_type a:visited, -.function_type a:hover, -.property_type a, -.property_type a:visited, -.property_type a:hover, -.signal_type a, -.signal_type a:visited, -.signal_type a:hover, -.signal_flags a, -.signal_flags a:visited, -.signal_flags a:hover -{ - color: #729fcf; -} - -td p -{ - margin: 0.25em; -} - -div.informaltable table[border="1"], -div.table table -{ - border-collapse: collapse; - border-spacing: 0px; - /* tango:aluminium 3 */ - border: solid 1px #babdb6; -} - -div.informaltable table[border="1"] td, -div.informaltable table th, -div.table table td, div.table table th -{ - /* tango:aluminium 3 */ - border: solid 1px #babdb6; - padding: 3px; - vertical-align: top; -} - -div.informaltable table[border="1"] th, -div.table table th -{ - /* tango:aluminium 2 */ - background-color: #d3d7cf; -} - -h4 -{ - color: #555753; - margin-top: 1em; - margin-bottom: 1em; -} - -hr -{ - /* tango:aluminium 1 */ - color: #d3d7cf; - background: #d3d7cf; - border: none 0px; - height: 1px; - clear: both; - margin: 2.0em 0em 2.0em 0em; -} - -dl.toc dt -{ - padding-bottom: 0.25em; -} - -dl.toc > dt -{ - padding-top: 0.25em; - padding-bottom: 0.25em; - font-weight: bold; -} - -dl.toc > dl -{ - padding-bottom: 0.5em; -} - -.parameter -{ - font-style: normal; -} - -.footer -{ - padding-top: 3.5em; - /* tango:aluminium 3 */ - color: #babdb6; - text-align: center; - font-size: 80%; -} - -.informalfigure, -.figure -{ - margin: 1em; -} - -.informalexample, -.example -{ - margin-top: 1em; - margin-bottom: 1em; -} - -.warning -{ - /* tango:orange 0/1 */ - background: #ffeed9; - background: rgba(252, 175, 62, 0.1); - border-color: #ffb04f; - border-color: rgba(252, 175, 62, 0.2); -} -.note -{ - /* tango:chameleon 0/0.5 */ - background: #d8ffb2; - background: rgba(138, 226, 52, 0.1); - border-color: #abf562; - border-color: rgba(138, 226, 52, 0.2); -} -div.blockquote -{ - border-color: #eeeeec; -} -.note, .warning, div.blockquote -{ - padding: 0.5em; - border-width: 1px; - border-style: solid; - margin: 2em; -} -.note p, .warning p -{ - margin: 0; -} - -div.warning h3.title, -div.note h3.title -{ - display: none; -} - -p + div.section -{ - margin-top: 1em; -} - -div.refnamediv, -div.refsynopsisdiv, -div.refsect1, -div.refsect2, -div.toc, -div.section -{ - margin-bottom: 1em; -} - -/* blob links */ -h2 .extralinks, h3 .extralinks -{ - float: right; - /* tango:aluminium 3 */ - color: #babdb6; - font-size: 80%; - font-weight: normal; -} - -.lineart -{ - color: #d3d7cf; - font-weight: normal; -} - -.annotation -{ - /* tango:aluminium 5 */ - color: #555753; - font-weight: normal; -} - -.structfield -{ - font-style: normal; - font-weight: normal; -} - -acronym,abbr -{ - border-bottom: 1px dotted gray; -} - -.listing_frame { - /* tango:sky blue 1 */ - border: solid 1px #729fcf; - border: solid 1px rgba(114, 159, 207, 0.2); - padding: 0px; -} - -.listing_lines, .listing_code { - margin-top: 0px; - margin-bottom: 0px; - padding: 0.5em; -} -.listing_lines { - /* tango:sky blue 0.5 */ - background: #a6c5e3; - background: rgba(114, 159, 207, 0.2); - /* tango:aluminium 6 */ - color: #2e3436; -} -.listing_code { - /* tango:sky blue 0 */ - background: #e6f3ff; - background: rgba(114, 159, 207, 0.1); -} -.listing_code .programlisting { - /* override from previous */ - border: none 0px; - padding: 0px; - background: none; -} -.listing_lines pre, .listing_code pre { - margin: 0px; -} - -@media screen { - /* these have a as a first child, but since there are no parent selectors - * we can't use that. */ - a.footnote - { - position: relative; - top: 0em ! important; - } - /* this is needed so that the local anchors are displayed below the naviagtion */ - div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name] - { - display: inline-block; - position: relative; - top:-5em; - } - /* this seems to be a bug in the xsl style sheets when generating indexes */ - div.index div.index - { - top: 0em; - } - /* make space for the fixed navigation bar and add space at the bottom so that - * link targets appear somewhat close to top - */ - body - { - padding-top: 2.5em; - padding-bottom: 500px; - max-width: 60em; - } - p - { - max-width: 60em; - } - /* style and size the navigation bar */ - table.navigation#top - { - position: fixed; - background: #e2e2e2; - border-bottom: solid 1px #babdb6; - border-spacing: 5px; - margin-top: 0; - margin-bottom: 0; - top: 0; - left: 0; - z-index: 10; - } - table.navigation#top td - { - padding-left: 6px; - padding-right: 6px; - } - .navigation a, .navigation a:visited - { - /* tango:sky blue 3 */ - color: #204a87; - } - .navigation a:hover - { - /* tango:sky blue 2 */ - color: #3465a4; - } - td.shortcuts - { - /* tango:sky blue 2 */ - color: #3465a4; - font-size: 80%; - white-space: nowrap; - } - td.shortcuts .dim - { - color: #babdb6; - } - .navigation .title - { - font-size: 80%; - max-width: none; - margin: 0px; - font-weight: normal; - } -} -@media screen and (min-width: 60em) { - /* screen larger than 60em */ - body { margin: auto; } -} -@media screen and (max-width: 60em) { - /* screen less than 60em */ - #nav_hierarchy { display: none; } - #nav_interfaces { display: none; } - #nav_prerequisites { display: none; } - #nav_derived_interfaces { display: none; } - #nav_implementations { display: none; } - #nav_child_properties { display: none; } - #nav_style_properties { display: none; } - #nav_index { display: none; } - #nav_glossary { display: none; } - .gallery_image { display: none; } - .property_flags { display: none; } - .signal_flags { display: none; } - .parameter_annotations { display: none; } - .enum_member_annotations { display: none; } - .struct_member_annotations { display: none; } - .union_member_annotations { display: none; } - /* now that a column is hidden, optimize space */ - col.parameters_name { width: auto; } - col.parameters_description { width: auto; } - col.struct_members_name { width: auto; } - col.struct_members_description { width: auto; } - col.enum_members_name { width: auto; } - col.enum_members_description { width: auto; } - col.union_members_name { width: auto; } - col.union_members_description { width: auto; } - .listing_lines { display: none; } -} -@media print { - table.navigation { - visibility: collapse; - display: none; - } - div.titlepage table.navigation { - visibility: visible; - display: table; - background: #e2e2e2; - border: solid 1px #babdb6; - margin-top: 0; - margin-bottom: 0; - top: 0; - left: 0; - height: 3em; - } -} - -pre { line-height: 125%; } -td.linenos pre { color: #000000; background-color: #f0f0f0; padding-left: 5px; padding-right: 5px; } -span.linenos { color: #000000; background-color: #f0f0f0; padding-left: 5px; padding-right: 5px; } -td.linenos pre.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } -span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } -.hll { background-color: #ffffcc } -.c { color: #408080; font-style: italic } /* Comment */ -.err { border: 1px solid #FF0000 } /* Error */ -.k { color: #008000; font-weight: bold } /* Keyword */ -.o { color: #666666 } /* Operator */ -.ch { color: #408080; font-style: italic } /* Comment.Hashbang */ -.cm { color: #408080; font-style: italic } /* Comment.Multiline */ -.cp { color: #BC7A00 } /* Comment.Preproc */ -.cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */ -.c1 { color: #408080; font-style: italic } /* Comment.Single */ -.cs { color: #408080; font-style: italic } /* Comment.Special */ -.gd { color: #A00000 } /* Generic.Deleted */ -.ge { font-style: italic } /* Generic.Emph */ -.gr { color: #FF0000 } /* Generic.Error */ -.gh { color: #000080; font-weight: bold } /* Generic.Heading */ -.gi { color: #00A000 } /* Generic.Inserted */ -.go { color: #888888 } /* Generic.Output */ -.gp { color: #000080; font-weight: bold } /* Generic.Prompt */ -.gs { font-weight: bold } /* Generic.Strong */ -.gu { color: #800080; font-weight: bold } /* Generic.Subheading */ -.gt { color: #0044DD } /* Generic.Traceback */ -.kc { color: #008000; font-weight: bold } /* Keyword.Constant */ -.kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ -.kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ -.kp { color: #008000 } /* Keyword.Pseudo */ -.kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ -.kt { color: #B00040 } /* Keyword.Type */ -.m { color: #666666 } /* Literal.Number */ -.s { color: #BA2121 } /* Literal.String */ -.na { color: #7D9029 } /* Name.Attribute */ -.nb { color: #008000 } /* Name.Builtin */ -.nc { color: #0000FF; font-weight: bold } /* Name.Class */ -.no { color: #880000 } /* Name.Constant */ -.nd { color: #AA22FF } /* Name.Decorator */ -.ni { color: #999999; font-weight: bold } /* Name.Entity */ -.ne { color: #D2413A; font-weight: bold } /* Name.Exception */ -.nf { color: #0000FF } /* Name.Function */ -.nl { color: #A0A000 } /* Name.Label */ -.nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ -.nt { color: #008000; font-weight: bold } /* Name.Tag */ -.nv { color: #19177C } /* Name.Variable */ -.ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ -.w { color: #bbbbbb } /* Text.Whitespace */ -.mb { color: #666666 } /* Literal.Number.Bin */ -.mf { color: #666666 } /* Literal.Number.Float */ -.mh { color: #666666 } /* Literal.Number.Hex */ -.mi { color: #666666 } /* Literal.Number.Integer */ -.mo { color: #666666 } /* Literal.Number.Oct */ -.sa { color: #BA2121 } /* Literal.String.Affix */ -.sb { color: #BA2121 } /* Literal.String.Backtick */ -.sc { color: #BA2121 } /* Literal.String.Char */ -.dl { color: #BA2121 } /* Literal.String.Delimiter */ -.sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ -.s2 { color: #BA2121 } /* Literal.String.Double */ -.se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ -.sh { color: #BA2121 } /* Literal.String.Heredoc */ -.si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ -.sx { color: #008000 } /* Literal.String.Other */ -.sr { color: #BB6688 } /* Literal.String.Regex */ -.s1 { color: #BA2121 } /* Literal.String.Single */ -.ss { color: #19177C } /* Literal.String.Symbol */ -.bp { color: #008000 } /* Name.Builtin.Pseudo */ -.fm { color: #0000FF } /* Name.Function.Magic */ -.vc { color: #19177C } /* Name.Variable.Class */ -.vg { color: #19177C } /* Name.Variable.Global */ -.vi { color: #19177C } /* Name.Variable.Instance */ -.vm { color: #19177C } /* Name.Variable.Magic */ -.il { color: #666666 } /* Literal.Number.Integer.Long */ \ No newline at end of file Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/up-insensitive.png and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/up-insensitive.png differ Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/html/up.png and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/html/up.png differ diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/Makefile.in mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/Makefile.in --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,927 +0,0 @@ -# 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 . - -# -*- mode: makefile -*- -# -# gtk-doc.make - make rules for gtk-doc -# Copyright (C) 2003 James Henstridge -# 2004-2007 Damon Chaplin -# 2007-2017 Stefan Sauer -# -# 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 . - -#################################### -# Everything below here is generic # -#################################### -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 = mate-dictionary/docs/reference/gdict -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 = version.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__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/version.xml.in \ - $(top_srcdir)/gtk-doc.make -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@ -AUTOMAKE_OPTIONS = 1.6 - -# The name of the module, e.g. 'glib'. -DOC_MODULE = mate-dict - -# The top-level SGML file. Change it if you want. -DOC_MAIN_SGML_FILE = gdict-docs.sgml - -# The directory containing the source code. Relative to $(srcdir). -# gtk-doc will search all .c & .h files beneath here for inline comments -# documenting functions and macros. -DOC_SOURCE_DIR = ../../../libgdict - -# Extra options to supply to gtkdoc-scan. -SCAN_OPTIONS = - -# Extra options to pass to gtkdoc-scangobj -SCANGOBJ_OPTIONS = --type-init-func="g_type_init()" - -# Extra options to supply to gtkdoc-mkdb. -MKDB_OPTIONS = --sgml-mode --output-format=xml - -# Extra options to supply to gtkdoc-fixref. -FIXXREF_OPTIONS = - -# Used for dependencies. -HFILE_GLOB = $(top_srcdir)/mate-dictionary/libgdict/*.h -CFILE_GLOB = $(top_srcdir)/mate-dictionary/libgdict/*.c - -# Header files to ignore when scanning. -IGNORE_HFILES = \ - gdict-enum-types.h \ - gdict-marshal.h \ - gdict-context-private.h \ - gdict-debug.h \ - gdict-private.h \ - stamp-gdict-enum-types.h \ - stamp-gdict-marshal.h - - -# Images to copy into HTML directory. -HTML_IMAGES = - -# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE). -content_files = version.xml - -# Other files to distribute. -extra_files = - -# CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib -# contains GtkObjects/GObjects and you want to document signals and properties. -GTKDOC_CFLAGS = \ - $(CFLAGS) \ - $(CPPFLAGS) \ - $(LIBGDICT_CFLAGS) \ - -I$(srcdir)/../../../libgdict \ - -I$(top_builddir)/mate-dictionary/libgdict - -GTKDOC_LIBS = \ - $(LDFLAGS) \ - $(LIBGDICT_LIBS) \ - ../../../libgdict/libmatedict.la - -@GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -@GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -@GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -@GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --tag=CC --mode=link $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -@GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_RUN = -@GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_RUN = $(LIBTOOL) --mode=execute - -# We set GPATH here; this gives us semantics for GNU make -# which are more like other make's VPATH, when it comes to -# whether a source that is a target of one rule is then -# searched for in VPATH/GPATH. -# -GPATH = $(srcdir) -TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) -SETUP_FILES = \ - $(content_files) \ - $(expand_content_files) \ - $(DOC_MAIN_SGML_FILE) \ - $(DOC_MODULE)-sections.txt \ - $(DOC_MODULE)-overrides.txt - - -# Other files to distribute -# e.g. EXTRA_DIST += version.xml.in -EXTRA_DIST = $(HTML_IMAGES) $(SETUP_FILES) version.xml.in -DOC_STAMPS = setup-build.stamp scan-build.stamp sgml-build.stamp \ - html-build.stamp pdf-build.stamp \ - sgml.stamp html.stamp pdf.stamp - -SCANOBJ_FILES = \ - $(DOC_MODULE).actions \ - $(DOC_MODULE).args \ - $(DOC_MODULE).hierarchy \ - $(DOC_MODULE).interfaces \ - $(DOC_MODULE).prerequisites \ - $(DOC_MODULE).signals - -REPORT_FILES = \ - $(DOC_MODULE)-undocumented.txt \ - $(DOC_MODULE)-undeclared.txt \ - $(DOC_MODULE)-unused.txt - -CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) gtkdoc-check.test -@GTK_DOC_BUILD_HTML_FALSE@HTML_BUILD_STAMP = -@GTK_DOC_BUILD_HTML_TRUE@HTML_BUILD_STAMP = html-build.stamp -@GTK_DOC_BUILD_PDF_FALSE@PDF_BUILD_STAMP = -@GTK_DOC_BUILD_PDF_TRUE@PDF_BUILD_STAMP = pdf-build.stamp - -#### setup #### -GTK_DOC_V_SETUP = $(GTK_DOC_V_SETUP_@AM_V@) -GTK_DOC_V_SETUP_ = $(GTK_DOC_V_SETUP_@AM_DEFAULT_V@) -GTK_DOC_V_SETUP_0 = @echo " DOC Preparing build"; - -#### scan #### -GTK_DOC_V_SCAN = $(GTK_DOC_V_SCAN_@AM_V@) -GTK_DOC_V_SCAN_ = $(GTK_DOC_V_SCAN_@AM_DEFAULT_V@) -GTK_DOC_V_SCAN_0 = @echo " DOC Scanning header files"; -GTK_DOC_V_INTROSPECT = $(GTK_DOC_V_INTROSPECT_@AM_V@) -GTK_DOC_V_INTROSPECT_ = $(GTK_DOC_V_INTROSPECT_@AM_DEFAULT_V@) -GTK_DOC_V_INTROSPECT_0 = @echo " DOC Introspecting gobjects"; - -#### xml #### -GTK_DOC_V_XML = $(GTK_DOC_V_XML_@AM_V@) -GTK_DOC_V_XML_ = $(GTK_DOC_V_XML_@AM_DEFAULT_V@) -GTK_DOC_V_XML_0 = @echo " DOC Building XML"; - -#### html #### -GTK_DOC_V_HTML = $(GTK_DOC_V_HTML_@AM_V@) -GTK_DOC_V_HTML_ = $(GTK_DOC_V_HTML_@AM_DEFAULT_V@) -GTK_DOC_V_HTML_0 = @echo " DOC Building HTML"; -GTK_DOC_V_XREF = $(GTK_DOC_V_XREF_@AM_V@) -GTK_DOC_V_XREF_ = $(GTK_DOC_V_XREF_@AM_DEFAULT_V@) -GTK_DOC_V_XREF_0 = @echo " DOC Fixing cross-references"; - -#### pdf #### -GTK_DOC_V_PDF = $(GTK_DOC_V_PDF_@AM_V@) -GTK_DOC_V_PDF_ = $(GTK_DOC_V_PDF_@AM_DEFAULT_V@) -GTK_DOC_V_PDF_0 = @echo " DOC Building PDF"; -DISTCLEANFILES = $(DOC_MODULE).actions -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/gtk-doc.make $(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 mate-dictionary/docs/reference/gdict/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign mate-dictionary/docs/reference/gdict/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_srcdir)/gtk-doc.make $(am__empty): - -$(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): -version.xml: $(top_builddir)/config.status $(srcdir)/version.xml.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -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 - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" distdir="$(distdir)" \ - dist-hook -check-am: all-am -check: check-am -@ENABLE_GTK_DOC_FALSE@all-local: -all-am: Makefile all-local -installdirs: -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) - -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) - -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 clean-local mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-local - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-data-local - -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-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 \ - maintainer-clean-local - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-local - -.MAKE: install-am install-strip - -.PHONY: all all-am all-local check check-am clean clean-generic \ - clean-libtool clean-local cscopelist-am ctags-am dist-hook \ - distclean distclean-generic distclean-libtool distclean-local \ - distdir dvi dvi-am html html-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-dvi install-dvi-am install-exec install-exec-am \ - install-html install-html-am install-info install-info-am \ - install-man install-pdf install-pdf-am install-ps \ - install-ps-am install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - maintainer-clean-local mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ - uninstall-am uninstall-local - -.PRECIOUS: Makefile - - -gtkdoc-check.test: Makefile - $(AM_V_GEN)echo "#!/bin/sh -e" > $@; \ - echo "$(GTKDOC_CHECK_PATH) || exit 1" >> $@; \ - chmod +x $@ - -all-gtk-doc: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP) -.PHONY: all-gtk-doc - -@ENABLE_GTK_DOC_TRUE@all-local: all-gtk-doc - -docs: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP) - -$(REPORT_FILES): sgml-build.stamp - -setup-build.stamp: - -$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ - files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \ - if test "x$$files" != "x" ; then \ - for file in $$files ; do \ - destdir=`dirname $(abs_builddir)/$$file`; \ - test -d "$$destdir" || mkdir -p "$$destdir"; \ - test -f $(abs_srcdir)/$$file && \ - cp -pf $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \ - done; \ - fi; \ - fi - $(AM_V_at)touch setup-build.stamp - -scan-build.stamp: setup-build.stamp $(HFILE_GLOB) $(CFILE_GLOB) - $(GTK_DOC_V_SCAN)_source_dir='' ; \ - for i in $(DOC_SOURCE_DIR) ; do \ - _source_dir="$${_source_dir} --source-dir=$$i" ; \ - done ; \ - gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES) - $(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \ - scanobj_options=""; \ - gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \ - if test "$$?" = "0"; then \ - if test "x$(V)" = "x1"; then \ - scanobj_options="--verbose"; \ - fi; \ - fi; \ - CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \ - gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \ - else \ - for i in $(SCANOBJ_FILES) ; do \ - test -f $$i || touch $$i ; \ - done \ - fi - $(AM_V_at)touch scan-build.stamp - -$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp - @true - -sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files) xml/gtkdocentities.ent - $(GTK_DOC_V_XML)_source_dir='' ; \ - for i in $(DOC_SOURCE_DIR) ; do \ - _source_dir="$${_source_dir} --source-dir=$$i" ; \ - done ; \ - gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS) - $(AM_V_at)touch sgml-build.stamp - -sgml.stamp: sgml-build.stamp - @true - -$(DOC_MAIN_SGML_FILE): sgml-build.stamp - @true - -xml/gtkdocentities.ent: Makefile - $(GTK_DOC_V_XML)$(MKDIR_P) $(@D) && ( \ - echo ""; \ - echo ""; \ - echo ""; \ - echo ""; \ - echo ""; \ - echo ""; \ - echo ""; \ - ) > $@ - -html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files) - $(GTK_DOC_V_HTML)rm -rf html && mkdir html && \ - mkhtml_options=""; \ - gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \ - if test "$$?" = "0"; then \ - if test "x$(V)" = "x1"; then \ - mkhtml_options="$$mkhtml_options --verbose"; \ - fi; \ - fi; \ - gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \ - if test "$$?" = "0"; then \ - mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \ - fi; \ - cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) - -@test "x$(HTML_IMAGES)" = "x" || \ - for file in $(HTML_IMAGES) ; do \ - test -f $(abs_srcdir)/$$file && cp $(abs_srcdir)/$$file $(abs_builddir)/html; \ - test -f $(abs_builddir)/$$file && cp $(abs_builddir)/$$file $(abs_builddir)/html; \ - test -f $$file && cp $$file $(abs_builddir)/html; \ - done; - $(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) - $(AM_V_at)touch html-build.stamp - -pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files) - $(GTK_DOC_V_PDF)rm -f $(DOC_MODULE).pdf && \ - mkpdf_options=""; \ - gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \ - if test "$$?" = "0"; then \ - if test "x$(V)" = "x1"; then \ - mkpdf_options="$$mkpdf_options --verbose"; \ - fi; \ - fi; \ - if test "x$(HTML_IMAGES)" != "x"; then \ - for img in $(HTML_IMAGES); do \ - part=`dirname $$img`; \ - echo $$mkpdf_options | grep >/dev/null "\-\-imgdir=$$part "; \ - if test $$? != 0; then \ - mkpdf_options="$$mkpdf_options --imgdir=$$part"; \ - fi; \ - done; \ - fi; \ - gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS) - $(AM_V_at)touch pdf-build.stamp - -############## - -clean-local: - @rm -f *~ *.bak - @rm -rf .libs - @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-types" ; then \ - rm -f $(DOC_MODULE).types; \ - fi - @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-sections" ; then \ - rm -f $(DOC_MODULE)-sections.txt; \ - fi - -distclean-local: - @rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \ - $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt - @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ - rm -f $(SETUP_FILES) $(DOC_MODULE).types; \ - fi - -maintainer-clean-local: - @rm -rf xml html - -install-data-local: - @installfiles=`echo $(builddir)/html/*`; \ - if test "$$installfiles" = '$(builddir)/html/*'; \ - then echo 1>&2 'Nothing to install' ; \ - else \ - if test -n "$(DOC_MODULE_VERSION)"; then \ - installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \ - else \ - installdir="$(DESTDIR)$(TARGET_DIR)"; \ - fi; \ - $(mkinstalldirs) $${installdir} ; \ - for i in $$installfiles; do \ - echo ' $(INSTALL_DATA) '$$i ; \ - $(INSTALL_DATA) $$i $${installdir}; \ - done; \ - if test -n "$(DOC_MODULE_VERSION)"; then \ - mv -f $${installdir}/$(DOC_MODULE).devhelp2 \ - $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp2; \ - fi; \ - $(GTKDOC_REBASE) --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir}; \ - fi - -uninstall-local: - @if test -n "$(DOC_MODULE_VERSION)"; then \ - installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \ - else \ - installdir="$(DESTDIR)$(TARGET_DIR)"; \ - fi; \ - rm -rf $${installdir} - -# -# Require gtk-doc when making dist -# -@HAVE_GTK_DOC_TRUE@dist-check-gtkdoc: docs -@HAVE_GTK_DOC_FALSE@dist-check-gtkdoc: -@HAVE_GTK_DOC_FALSE@ @echo "*** gtk-doc is needed to run 'make dist'. ***" -@HAVE_GTK_DOC_FALSE@ @echo "*** gtk-doc was not found when 'configure' ran. ***" -@HAVE_GTK_DOC_FALSE@ @echo "*** please install gtk-doc and rerun 'configure'. ***" -@HAVE_GTK_DOC_FALSE@ @false - -dist-hook: dist-check-gtkdoc all-gtk-doc dist-hook-local - @mkdir $(distdir)/html - @cp ./html/* $(distdir)/html - @-cp ./$(DOC_MODULE).pdf $(distdir)/ - @-cp ./$(DOC_MODULE).types $(distdir)/ - @-cp ./$(DOC_MODULE)-sections.txt $(distdir)/ - @cd $(distdir) && rm -f $(DISTCLEANFILES) - @$(GTKDOC_REBASE) --online --relative --html-dir=$(distdir)/html - -.PHONY : dist-hook-local docs - -#dist-hook-local: -# mkdir $(distdir)/TEXT; \ -# for f in $(srcdir)/TEXT/* ; do \ -# test -f $$f && cp -p $$f $(distdir)/TEXT; \ -# done - --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 -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/mate-dict-sections.txt mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/mate-dict-sections.txt --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/mate-dict-sections.txt 2021-08-05 19:49:48.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/mate-dict-sections.txt 1970-01-01 00:00:00.000000000 +0000 @@ -1,326 +0,0 @@ -
-gdict - -
- -
-gdict-client-context -GdictClientContext -GDICT_CLIENT_CONTEXT_ERROR -GdictClientContextError -gdict_client_context_error_quark -gdict_client_context_new -gdict_client_context_set_hostname -gdict_client_context_get_hostname -gdict_client_context_set_port -gdict_client_context_get_port -gdict_client_context_set_client -gdict_client_context_get_client - -GDICT_CLIENT_CONTEXT -GDICT_CLIENT_CONTEXT_CLASS -GDICT_CLIENT_CONTEXT_GET_CLASS -GDICT_IS_CLIENT_CONTEXT -GDICT_TYPE_CLIENT_CONTEXT -GdictClientContext -GdictClientContextClass -GdictClientContextPrivate -gdict_client_context_get_type -
- -
-gdict-context -GdictContext -GDICT_CONTEXT_ERROR -GdictContextError -gdict_context_error_quark -gdict_database_ref -gdict_database_unref -gdict_database_get_name -gdict_database_get_full_name -gdict_strategy_ref -gdict_strategy_unref -gdict_strategy_get_name -gdict_strategy_get_description -gdict_match_ref -gdict_match_unref -gdict_match_get_word -gdict_match_get_database -gdict_definition_ref -gdict_definition_unref -gdict_definition_get_total -gdict_definition_get_word -gdict_definition_get_database -gdict_definition_get_text -GdictContextIface -gdict_context_set_local_only -gdict_context_get_local_only -gdict_context_lookup_databases -gdict_context_lookup_strategies -gdict_context_match_word -gdict_context_define_word -GdictDatabase -GdictDefinition -GdictMatch -GdictStrategy - -GDICT_CONTEXT -GDICT_CONTEXT_GET_IFACE -GDICT_IS_CONTEXT -GDICT_TYPE_CONTEXT -GDICT_TYPE_DATABASE -GDICT_TYPE_DEFINITION -GDICT_TYPE_MATCH -GDICT_TYPE_STRATEGY -GdictContext -gdict_context_get_type -gdict_database_get_type -gdict_definition_get_type -gdict_match_get_type -gdict_strategy_get_type -
- -
-gdict-database-chooser -GdictDatabaseChooser -gdict_database_chooser_new -gdict_database_chooser_new_with_context -gdict_database_chooser_get_context -gdict_database_chooser_set_context -gdict_database_chooser_select_database -gdict_database_chooser_unselect_database -gdict_database_chooser_set_current_database -gdict_database_chooser_get_current_database -gdict_database_chooser_get_databases -gdict_database_chooser_count_databases -gdict_database_chooser_has_database -gdict_database_chooser_refresh -gdict_database_chooser_clear -gdict_database_chooser_add_button - -GDICT_DATABASE_CHOOSER -GDICT_DATABASE_CHOOSER_CLASS -GDICT_DATABASE_CHOOSER_GET_CLASS -GDICT_IS_DATABASE_CHOOSER -GDICT_IS_DATABASE_CHOOSER_CLASS -GDICT_TYPE_DATABASE_CHOOSER -GdictDatabaseChooser -GdictDatabaseChooserClass -GdictDatabaseChooserPrivate -gdict_database_chooser_get_type -
- -
-gdict-defbox -GdictDefbox -gdict_defbox_new -gdict_defbox_new_with_context -gdict_defbox_set_context -gdict_defbox_get_context -gdict_defbox_set_database -gdict_defbox_get_database -gdict_defbox_get_word -gdict_defbox_get_text -gdict_defbox_select_all -gdict_defbox_copy_to_clipboard -gdict_defbox_clear -gdict_defbox_lookup -gdict_defbox_count_definitions -gdict_defbox_jump_to_definition -gdict_defbox_set_show_find -gdict_defbox_get_show_find -gdict_defbox_find_next -gdict_defbox_find_previous -gdict_defbox_set_font_name -gdict_defbox_get_font_name -gdict_defbox_get_selected_word - -GDICT_DEFBOX -GDICT_DEFBOX_CLASS -GDICT_DEFBOX_GET_CLASS -GDICT_IS_DEFBOX -GDICT_IS_DEFBOX_CLASS -GDICT_TYPE_DEFBOX -GdictDefbox -GdictDefboxClass -GdictDefboxPrivate -gdict_defbox_get_type -
- -
-gdict-source -GdictSource -GdictSourceTransport -GDICT_SOURCE_ERROR -GdictSourceError -gdict_source_error_quark -gdict_source_new -gdict_source_load_from_file -gdict_source_load_from_data -gdict_source_to_data -gdict_source_set_name -gdict_source_get_name -gdict_source_set_description -gdict_source_get_description -gdict_source_set_database -gdict_source_get_database -gdict_source_set_strategy -gdict_source_get_strategy -gdict_source_set_transport -gdict_source_set_transportv -gdict_source_get_transport -gdict_source_get_context -gdict_source_peek_context - -GDICT_IS_SOURCE -GDICT_IS_SOURCE_CLASS -GDICT_SOURCE -GDICT_SOURCE_CLASS -GDICT_SOURCE_GET_CLASS -GDICT_TYPE_SOURCE -GdictSource -GdictSourceClass -GdictSourcePrivate -gdict_source_get_type -
- -
-gdict-source-chooser -GdictSourceChooser -gdict_source_chooser_new -gdict_source_chooser_new_with_loader -gdict_source_chooser_set_loader -gdict_source_chooser_get_loader -gdict_source_chooser_select_source -gdict_source_chooser_unselect_source -gdict_source_chooser_set_current_source -gdict_source_chooser_get_current_source -gdict_source_chooser_get_sources -gdict_source_chooser_count_sources -gdict_source_chooser_has_source -gdict_source_chooser_refresh -gdict_source_chooser_add_button - -GDICT_IS_SOURCE_CHOOSER -GDICT_IS_SOURCE_CHOOSER_CLASS -GDICT_SOURCE_CHOOSER -GDICT_SOURCE_CHOOSER_CLASS -GDICT_SOURCE_CHOOSER_GET_CLASS -GDICT_TYPE_SOURCE_CHOOSER -GdictSourceChooser -GdictSourceChooserClass -GdictSourceChooserPrivate -gdict_source_chooser_get_type -
- -
-gdict-source-loader -GdictSourceLoader -gdict_source_loader_new -gdict_source_loader_update -gdict_source_loader_add_search_path -gdict_source_loader_get_paths -gdict_source_loader_get_names -gdict_source_loader_get_sources -gdict_source_loader_get_source -gdict_source_loader_has_source -gdict_source_loader_remove_source - -GDICT_IS_SOURCE_LOADER -GDICT_IS_SOURCE_LOADER_CLASS -GDICT_SOURCE_LOADER -GDICT_SOURCE_LOADER_CLASS -GDICT_SOURCE_LOADER_GET_CLASS -GDICT_TYPE_SOURCE_LOADER -GdictSourceLoader -GdictSourceLoaderClass -GdictSourceLoaderPrivate -gdict_source_loader_get_type -
- -
-gdict-speller -GdictSpeller -gdict_speller_new -gdict_speller_new_with_context -gdict_speller_set_context -gdict_speller_get_context -gdict_speller_set_database -gdict_speller_get_database -gdict_speller_set_strategy -gdict_speller_get_strategy -gdict_speller_clear -gdict_speller_match -gdict_speller_count_matches -gdict_speller_get_matches - -GDICT_IS_SPELLER -GDICT_IS_SPELLER_CLASS -GDICT_SPELLER -GDICT_SPELLER_CLASS -GDICT_SPELLER_GET_CLASS -GDICT_TYPE_SPELLER -GdictSpeller -GdictSpellerClass -GdictSpellerPrivate -gdict_speller_get_type -
- -
-gdict-strategy-chooser -GdictStrategyChooser -gdict_strategy_chooser_new -gdict_strategy_chooser_new_with_context -gdict_strategy_chooser_get_context -gdict_strategy_chooser_set_context -gdict_strategy_chooser_select_strategy -gdict_strategy_chooser_unselect_strategy -gdict_strategy_chooser_set_current_strategy -gdict_strategy_chooser_get_current_strategy -gdict_strategy_chooser_get_strategies -gdict_strategy_chooser_count_strategies -gdict_strategy_chooser_has_strategy -gdict_strategy_chooser_refresh -gdict_strategy_chooser_clear -gdict_strategy_chooser_add_button - -GDICT_IS_STRATEGY_CHOOSER -GDICT_IS_STRATEGY_CHOOSER_CLASS -GDICT_STRATEGY_CHOOSER -GDICT_STRATEGY_CHOOSER_CLASS -GDICT_STRATEGY_CHOOSER_GET_CLASS -GDICT_TYPE_STRATEGY_CHOOSER -GdictStrategyChooser -GdictStrategyChooserClass -GdictStrategyChooserPrivate -gdict_strategy_chooser_get_type -
- -
-gdict-utils -GDICT_DEFAULT_DATABASE -GDICT_DEFAULT_STRATEGY -GDICT_DEFAULT_FONT_NAME -GdictContextProp -GdictStatusCode -gdict_get_option_group -gdict_debug_init - -GDICT_IS_VALID_STATUS_CODE -
- -
-gdict-version -GDICT_MAJOR_VERSION -GDICT_MINOR_VERSION -GDICT_MICRO_VERSION -GDICT_VERSION -GDICT_VERSION_S -GDICT_VERSION_HEX -GDICT_CHECK_VERSION -gdict_major -gdict_minor -gdict_micro -gdict_check_version -
- diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/mate-dict.types mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/mate-dict.types --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/mate-dict.types 2021-08-05 19:49:48.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/mate-dict.types 1970-01-01 00:00:00.000000000 +0000 @@ -1,13 +0,0 @@ -gdict_client_context_get_type -gdict_context_get_type -gdict_database_chooser_get_type -gdict_database_get_type -gdict_defbox_get_type -gdict_definition_get_type -gdict_match_get_type -gdict_source_chooser_get_type -gdict_source_get_type -gdict_source_loader_get_type -gdict_speller_get_type -gdict_strategy_chooser_get_type -gdict_strategy_get_type diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/version.xml mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/version.xml --- mate-utils-1.26.0/mate-dictionary/docs/reference/gdict/version.xml 2021-08-05 19:45:45.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/gdict/version.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -1.1.0 diff -Nru mate-utils-1.26.0/mate-dictionary/docs/reference/Makefile.in mate-utils-1.26.1/mate-dictionary/docs/reference/Makefile.in --- mate-utils-1.26.0/mate-dictionary/docs/reference/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/docs/reference/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,727 +0,0 @@ -# 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 . -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 = mate-dictionary/docs/reference -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 = -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 = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir distdir-am -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -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@ -SUBDIRS = gdict -all: all-recursive - -.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 mate-dictionary/docs/reference/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign mate-dictionary/docs/reference/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): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -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: - -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-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ - check-am clean clean-generic clean-libtool cscopelist-am ctags \ - ctags-am distclean distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am 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-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - installdirs-am maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ - ps ps-am tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - --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 -Nru mate-utils-1.26.0/mate-dictionary/help/af/af.po mate-utils-1.26.1/mate-dictionary/help/af/af.po --- mate-utils-1.26.0/mate-dictionary/help/af/af.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/af/af.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Afrikaans (https://www.transifex.com/mate/teams/13566/af/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Afrikaans (https://app.transifex.com/mate/teams/13566/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -674,8 +674,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/af/index.docbook mate-utils-1.26.1/mate-dictionary/help/af/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/af/index.docbook 2021-08-05 19:47:25.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/af/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Inleiding - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Opdraglyn - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Gebruik - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Voorkeure - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Woordeboekbronne - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Voorkeure - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/af/legal.xml mate-utils-1.26.1/mate-dictionary/help/af/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/af/legal.xml 2021-08-05 19:47:25.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/af/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/am/am.po mate-utils-1.26.1/mate-dictionary/help/am/am.po --- mate-utils-1.26.0/mate-dictionary/help/am/am.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/am/am.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# samson , 2018 +# samson , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: samson , 2018\n" -"Language-Team: Amharic (https://www.transifex.com/mate/teams/13566/am/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: samson , 2021\n" +"Language-Team: Amharic (https://app.transifex.com/mate/teams/13566/am/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/am/index.docbook mate-utils-1.26.1/mate-dictionary/help/am/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/am/index.docbook 2021-08-05 19:47:25.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/am/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - መግቢያ - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - የ ትእዛዝ መስመር - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - አጠቃቀም - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - ምርጫዎች - - To change the Dictionary application - preferences, choose EditPreferences. - - - - የመዝገበ ቃላት ምንጭ - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - መጓጓዣ - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - ምርጫዎች - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/am/legal.xml mate-utils-1.26.1/mate-dictionary/help/am/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/am/legal.xml 2021-08-05 19:47:25.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/am/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/an/index.docbook mate-utils-1.26.1/mate-dictionary/help/an/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/an/index.docbook 2021-08-05 19:47:25.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/an/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferencias - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferencias - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/an/legal.xml mate-utils-1.26.1/mate-dictionary/help/an/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/an/legal.xml 2021-08-05 19:47:25.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/an/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ar/ar.po mate-utils-1.26.1/mate-dictionary/help/ar/ar.po --- mate-utils-1.26.0/mate-dictionary/help/ar/ar.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ar/ar.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,18 +1,18 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Mosaab Alzoubi , 2018 -# Wolfgang Ulbrich , 2018 -# مهدي السطيفي , 2018 -# Ahmad Dakhlallah , 2019 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 +# Ahmad Dakhlallah , 2021 +# مهدي السطيفي , 2021 +# Oukiki Saleh , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Ahmad Dakhlallah , 2019\n" -"Language-Team: Arabic (https://www.transifex.com/mate/teams/13566/ar/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Oukiki Saleh , 2021\n" +"Language-Team: Arabic (https://app.transifex.com/mate/teams/13566/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,7 +24,8 @@ msgid "translator-credits" msgstr "" "فريق عيون العرب للترجمة http://www.arabeyes.org :\n" -"مصعب الزعبي\t" +"مصعب الزعبي\t\n" +"لينيكس العرب linuxarabia.co" #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -52,7 +53,7 @@ #. (itstool) path: revdescription/para #: C/index.docbook:52 C/index.docbook:96 msgid "MATE Documentation Project" -msgstr "مشروع دليل MATE" +msgstr "مشروع توثيق ماتي" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -677,8 +678,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ar/index.docbook mate-utils-1.26.1/mate-dictionary/help/ar/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ar/index.docbook 2021-08-05 19:47:25.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ar/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - مشروع دليل MATE - - - مشروع دليل GNOME - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - آراء وانطباعات - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - مقدمة - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - سطر الأوامر - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - الاستخدام - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - تفضيلات - - To change the Dictionary application - preferences, choose EditPreferences. - - - - مصادر القاموس - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - النقل - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - تفضيلات - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ar/legal.xml mate-utils-1.26.1/mate-dictionary/help/ar/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ar/legal.xml 2021-08-05 19:47:25.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ar/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/as/as.po mate-utils-1.26.1/mate-dictionary/help/as/as.po --- mate-utils-1.26.0/mate-dictionary/help/as/as.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/as/as.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Assamese (https://www.transifex.com/mate/teams/13566/as/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Assamese (https://app.transifex.com/mate/teams/13566/as/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/as/index.docbook mate-utils-1.26.1/mate-dictionary/help/as/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/as/index.docbook 2021-08-05 19:47:25.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/as/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - ভূমিকা - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - কমান্ড-লাইন - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - পছন্দসমূহ - - To change the Dictionary application - preferences, choose EditPreferences. - - - - অভিধান উৎস - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - পৰিবহণ - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - পছন্দসমূহ - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/as/legal.xml mate-utils-1.26.1/mate-dictionary/help/as/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/as/legal.xml 2021-08-05 19:47:25.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/as/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ast/ast.po mate-utils-1.26.1/mate-dictionary/help/ast/ast.po --- mate-utils-1.26.0/mate-dictionary/help/ast/ast.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ast/ast.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Ḷḷumex03, 2018 +# Stefano Karapetsas , 2021 +# Ḷḷumex03, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Ḷḷumex03, 2018\n" -"Language-Team: Asturian (https://www.transifex.com/mate/teams/13566/ast/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Ḷḷumex03, 2021\n" +"Language-Team: Asturian (https://app.transifex.com/mate/teams/13566/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -672,8 +672,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ast/index.docbook mate-utils-1.26.1/mate-dictionary/help/ast/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ast/index.docbook 2021-08-05 19:47:25.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ast/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introducción - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Llinia de comandu - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usu - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferencies - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Fontes de diccionariu - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Tresporte - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferencies - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ast/legal.xml mate-utils-1.26.1/mate-dictionary/help/ast/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ast/legal.xml 2021-08-05 19:47:25.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ast/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/az/az.po mate-utils-1.26.1/mate-dictionary/help/az/az.po --- mate-utils-1.26.0/mate-dictionary/help/az/az.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/az/az.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Azerbaijani (https://www.transifex.com/mate/teams/13566/az/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Azerbaijani (https://app.transifex.com/mate/teams/13566/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -675,8 +675,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/az/index.docbook mate-utils-1.26.1/mate-dictionary/help/az/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/az/index.docbook 2021-08-05 19:47:25.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/az/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Əmr Sətiri - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Qurğular - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Qurğular - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/az/legal.xml mate-utils-1.26.1/mate-dictionary/help/az/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/az/legal.xml 2021-08-05 19:47:25.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/az/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/be/be.po mate-utils-1.26.1/mate-dictionary/help/be/be.po --- mate-utils-1.26.0/mate-dictionary/help/be/be.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/be/be.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Mihail Varantsou , 2018 +# Stefano Karapetsas , 2021 +# Mihail Varantsou , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Mihail Varantsou , 2018\n" -"Language-Team: Belarusian (https://www.transifex.com/mate/teams/13566/be/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Mihail Varantsou , 2021\n" +"Language-Team: Belarusian (https://app.transifex.com/mate/teams/13566/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -674,8 +674,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/be/index.docbook mate-utils-1.26.1/mate-dictionary/help/be/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/be/index.docbook 2021-08-05 19:47:25.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/be/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Уводзіны - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Загадны радок - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - доля - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Настáўленні - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Крыніцы слоўнікаў - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Транспарт - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Настáўленні - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/be/legal.xml mate-utils-1.26.1/mate-dictionary/help/be/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/be/legal.xml 2021-08-05 19:47:25.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/be/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/bg/bg.po mate-utils-1.26.1/mate-dictionary/help/bg/bg.po --- mate-utils-1.26.0/mate-dictionary/help/bg/bg.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/bg/bg.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Любомир Василев, 2018 -# Wolfgang Ulbrich , 2018 -# Замфир Йончев , 2018 +# Stefano Karapetsas , 2021 +# Любомир Василев, 2021 +# Wolfgang Ulbrich , 2021 +# Замфир Йончев , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Замфир Йончев , 2018\n" -"Language-Team: Bulgarian (https://www.transifex.com/mate/teams/13566/bg/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Замфир Йончев , 2021\n" +"Language-Team: Bulgarian (https://app.transifex.com/mate/teams/13566/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -682,8 +682,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/bg/index.docbook mate-utils-1.26.1/mate-dictionary/help/bg/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/bg/index.docbook 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/bg/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - Проектът за документация на MATE - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Обратна връзка - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Въведение - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Меню Програми - - Choose Accessories - Dictionary. - - - - - Команден ред - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Употреба - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Настройки - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Източници на речници - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Транспорт - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Настройки - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/bg/legal.xml mate-utils-1.26.1/mate-dictionary/help/bg/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/bg/legal.xml 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/bg/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/bn/bn.po mate-utils-1.26.1/mate-dictionary/help/bn/bn.po --- mate-utils-1.26.0/mate-dictionary/help/bn/bn.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/bn/bn.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Bengali (https://www.transifex.com/mate/teams/13566/bn/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Bengali (https://app.transifex.com/mate/teams/13566/bn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -676,8 +676,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/bn/index.docbook mate-utils-1.26.1/mate-dictionary/help/bn/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/bn/index.docbook 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/bn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - ভূমিকা - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - কমান্ড-লাইন - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - ব্যবহার প্রণালী - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - পছন্দতালিকা - - To change the Dictionary application - preferences, choose EditPreferences. - - - - অভিধানের উৎস - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - পরিবহণ - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - পছন্দতালিকা - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/bn/legal.xml mate-utils-1.26.1/mate-dictionary/help/bn/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/bn/legal.xml 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/bn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/bn_IN/bn_IN.po mate-utils-1.26.1/mate-dictionary/help/bn_IN/bn_IN.po --- mate-utils-1.26.0/mate-dictionary/help/bn_IN/bn_IN.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/bn_IN/bn_IN.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# umesh agarwal , 2018 +# Stefano Karapetsas , 2021 +# umesh agarwal , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: umesh agarwal , 2018\n" -"Language-Team: Bengali (India) (https://www.transifex.com/mate/teams/13566/bn_IN/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: umesh agarwal , 2021\n" +"Language-Team: Bengali (India) (https://app.transifex.com/mate/teams/13566/bn_IN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -675,8 +675,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/bn_IN/index.docbook mate-utils-1.26.1/mate-dictionary/help/bn_IN/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/bn_IN/index.docbook 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/bn_IN/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - ভূমিকা - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - কমান্ড-লাইন - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - ব্যবহার প্রণালী - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - प्राथमिकताएं - - To change the Dictionary application - preferences, choose EditPreferences. - - - - অভিধানের উৎস - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - পরিবহণ - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - प्राथमिकताएं - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/bn_IN/legal.xml mate-utils-1.26.1/mate-dictionary/help/bn_IN/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/bn_IN/legal.xml 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/bn_IN/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/br/br.po mate-utils-1.26.1/mate-dictionary/help/br/br.po --- mate-utils-1.26.0/mate-dictionary/help/br/br.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/br/br.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Alan Monfort , 2018 +# Stefano Karapetsas , 2021 +# Alan Monfort , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Alan Monfort , 2018\n" -"Language-Team: Breton (https://www.transifex.com/mate/teams/13566/br/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Alan Monfort , 2021\n" +"Language-Team: Breton (https://app.transifex.com/mate/teams/13566/br/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -672,8 +672,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/br/index.docbook mate-utils-1.26.1/mate-dictionary/help/br/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/br/index.docbook 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/br/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Linenn arc'had - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Arver - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Gwellvezioù - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Tarzhioù ar geriadur - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Treuzdougen - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Gwellvezioù - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/br/legal.xml mate-utils-1.26.1/mate-dictionary/help/br/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/br/legal.xml 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/br/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/bs/bs.po mate-utils-1.26.1/mate-dictionary/help/bs/bs.po --- mate-utils-1.26.0/mate-dictionary/help/bs/bs.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/bs/bs.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Sky Lion , 2018 +# Stefano Karapetsas , 2021 +# Sky Lion , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Sky Lion , 2018\n" -"Language-Team: Bosnian (https://www.transifex.com/mate/teams/13566/bs/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Sky Lion , 2021\n" +"Language-Team: Bosnian (https://app.transifex.com/mate/teams/13566/bs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -672,8 +672,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/bs/index.docbook mate-utils-1.26.1/mate-dictionary/help/bs/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/bs/index.docbook 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/bs/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Komandna linija - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Postavke - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Postavke - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/bs/legal.xml mate-utils-1.26.1/mate-dictionary/help/bs/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/bs/legal.xml 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/bs/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ca/ca.po mate-utils-1.26.1/mate-dictionary/help/ca/ca.po --- mate-utils-1.26.0/mate-dictionary/help/ca/ca.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ca/ca.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Francesc Famadas, 2018 # Robert Antoni Buj i Gelonch , 2021 +# Stefano Karapetsas , 2021 +# Francesc Famadas, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Robert Antoni Buj i Gelonch , 2021\n" -"Language-Team: Catalan (https://www.transifex.com/mate/teams/13566/ca/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Francesc Famadas, 2021\n" +"Language-Team: Catalan (https://app.transifex.com/mate/teams/13566/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,7 +20,9 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Robert Antoni Buj Gelonch " +msgstr "" +"Aniol Gervasi , 2009\n" +"Robert Antoni Buj Gelonch , 2018, 2019, 2020, 2021" #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -802,8 +804,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" "El diàleg de Preferències és el mateix que s'utilitza a" " l'aplicació de Diccionari, per tant, adreceu-vos" @@ -907,10 +909,10 @@ "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." +" ELS DANYS PER PÈRDUA DE CLIENTS, INTERRUPCIONS DE LA FEINA, FALLADA O " +"MALFUNCIONAMENT 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 diff -Nru mate-utils-1.26.0/mate-dictionary/help/ca/index.docbook mate-utils-1.26.1/mate-dictionary/help/ca/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ca/index.docbook 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ca/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,360 +0,0 @@ - - - - - - - -]> - - - -
- - - - Manual del diccionari - - - El diccionari us permet consultar definicions i corregir errors ortogràfics. - - - 2015-2021 Projecte de documentació de MATE - 2005 Emmanuele Bassi - - - - - Projecte de documentació de MATE - - - Projecte de documentació de GNOME - - - - - Equip de documentació de MATE Escriptori MATE - Emmanuele Bassi
ebassi@gmail.com
- - - -
- - - Versió 1.10.0 del manual del diccionari Juliol de 2015 - Wolfgang Ulbrich - Projecte de documentació de MATE - - Versió 1.10.0 del manual del diccionari Juliol de 2015 - Emmanuele Bassi - Projecte de documentació de GNOME - - - - Aquest manual descriu la versió 1.10 del diccionari. - - Retroacció - Per informar d'un error o fer un suggeriment sobre l'aplicació del diccionari o d'aquest manual, seguiu les instruccions de la pàgina de retroacció de MATE. - - - -
- - Diccionari - - - - - Introducció - - L'aplicació Diccionari us permet cercar paraules i termes a una font de diccionari. - - - - - - Primers passos - - - - Com iniciar el diccionari - - Podeu iniciar el diccionari de les maneres següents: - - - - Menú Aplicacions - - Seleccioneu Accessoris Diccionari. - - - - Línia d'ordres - - Executeu l'ordre següent: mate-dictionary - - - - - Un cop s'ha iniciat, es mostra la finestra del diccionari: - -
- Finestra del diccionari - - Mostra la finestra principal del diccionari. - -
- -
- -
- - - - Utilització - - - Consultar una paraula - - Per consultar una paraula, teclegeu-la dins del camp d'entrada i premeu Retorn. - - Si es troba alguna definició de la paraula, apareixerà dins de l'àrea de la finestra principal: - -
- Finestra del diccionari - - Mostra una definició dins de la finestra principal del diccionari. - -
- - En cas contrari, apareixerà un diàleg d'error, amb un missatge que explica la naturalesa de l'error. - -
- - - Desar resultats de consultes - - Per desar els resultats d'una consulta, seleccioneu FitxerDesa una còpia. Introduïu un nom per al fitxer al diàleg de Desa una còpia i després feu clic a Desa. - - - - - Imprimir resultats de consultes - - Per imprimir els resultats d'una consulta, seleccioneu FitxerImprimeix. - - Dins del diàleg Imprimeix podeu seleccionar la impressora que voleu utilitzar, el format del paper i el nombre de còpies. - - Per veure una vista prèvia del que s'imprimirà, feu clic a Previsualització. - - Per imprimir, feu clic a Imprimeix. - - - - - Trobar text - -
- Finestra del diccionari - - Mostra el plafó de cerca del diccionari dins de la finestra principal. - -
- - - Per trobar text dins dels resultats d'una consulta, realitzeu els passos següents: - - - Seleccioneu Edita Troba per mostrar el plafó Cerca. - Teclegeu el text que voleu trobar a dins de l'entrada de Cerca. - Per trobar la següent ocurrència del text, feu clic a Següent. Per trobar l'anterior ocurrència del text, feu clic a Anterior. - - -
- -
- - - - Preferències - - Per canviar les preferències de l'aplicació del diccionari, seleccioneu EditaPreferències. - - - - Fonts de diccionaris - -
- Finestra del diccionari - - Mostra la pestanya Font del diàleg de preferències. - -
- - Per canviar la font de diccionari utilitzada per consultar paraules, seleccioneu la font desitjada de la llista. -
- - - - Afegir una font nova - -
- Finestra del diccionari - - Mostra el diàleg Afegeix una font. - -
- - Per afegir una font de diccionari nova, realitzeu els passos següents: - - - Feu clic al botó Afegeix - Editeu el nom de la font nova dins de l'entrada de la Descripció - Canvieu el tipus de transport de la font nova mitjançant quadre desplegable del Transport - Editeu els atributs de la font nova - Feu clic a Afegeix - - - Diferents tipus de transport de fonts utilitzen diferents atributs. Aquesta és la llista dels atributs disponibles per tipus de transport: - - - - - - Transport - Atributs - - - - - Servidor de diccionari - - Nom d'amfitrió: el nom d'amfitrió del servidor de diccionari - Port: el port del servidor de diccionari - - - - - - -
- - - - Treure una font - - Per treure una font de diccionari, realitzeu els passos següents: - - - Seleccioneu la font que voleu treure - Feu clic al botó Suprimeix - - - Si traieu una font de diccionari, se suprimirà permanentment de la llista de fonts disponibles. A més, a mesura que algunes fonts es puguin definir a tot el sistema, realment no podreu treure-les tret que tingueu els privilegis de propietat adequats. - - - - - - Opcions d'impressió - -
- Finestra del diccionari - - Mostra la pestanya Imprimeix dins del diàleg de Preferències. - -
- - Si voleu canviar el nom de la lletra i la mida que s'utilitza quan s'imprimeix, realitzeu els passos següents: - - - Feu clic al botó Lletra per imprimir - Seleccioneu la lletra i la mida que voleu utilitzar - Feu clic a D'acord - - -
- -
- - - - La miniaplicació de diccionari - - L'aplicació Diccionari ve amb una miniaplicació de tauler, la Miniaplicació de diccionari. Podeu afegir la Miniaplicació de diccionari a un tauler i consultar paraules als diccionaris. - -
- Finestra de la miniaplicació de diccionari - - Mostra la miniaplicació de diccionari. - -
- - - - - Com iniciar la miniaplicació de diccionari - - Per afegir la Miniaplicació de diccionari a un tauler, feu clic dret amb el ratolí al tauler, després seleccioneu Afegeix al tauler. Seleccioneu la Miniaplicació de diccionari al diàleg Afegeix al tauler, després feu clic a D'acord. - - - - - - Ús de la miniaplicació de diccionari - - Per consultar una paraula, teclegeu-la al camp d'entrada i premeu Retorn, o bé feu clic amb el botó dret a la icona del diccionari i després seleccioneu Consulta. - - Si s'ha trobat alguna definició de la paraula, apareixerà una finestra amb el text de les definicions: - -
- Finestra de la miniaplicació de diccionari - - Mostra la finestra principal de la miniaplicació de diccionari. - -
- - Feu clic a Desa per desar les definicions a un fitxer de text. Feu clic a Imprimeix per imprimir les definicions. Feu clic a Neteja per netejar les definicions. - - Podeu fer desaparèixer la finestra en fer clic amb el botó esquerre a la icona del diccionari o en prémer Esc. - -
- - - Preferències - - Per configurar la Miniaplicació de diccionari, feu clic amb el botó dret a la icona del diccionari i després seleccioneu Preferències. - - El diàleg de Preferències és el mateix que s'utilitza a l'aplicació de Diccionari, per tant, adreceu-vos a - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ca/legal.xml mate-utils-1.26.1/mate-dictionary/help/ca/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ca/legal.xml 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ca/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 enllaç o bé al fitxer COPYING-DOCS que es distribueix amb aquest manual. - 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. - - 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. - - 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: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ca@valencia/ca@valencia.po mate-utils-1.26.1/mate-dictionary/help/ca@valencia/ca@valencia.po --- mate-utils-1.26.0/mate-dictionary/help/ca@valencia/ca@valencia.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ca@valencia/ca@valencia.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Jose Alfredo Murcia Andrés , 2018 -# Pilar Embid , 2018 -# Empar Montoro , 2018 +# Stefano Karapetsas , 2021 +# Jose Alfredo Murcia Andrés , 2021 +# Pilar Embid , 2021 +# Empar Montoro , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Empar Montoro , 2018\n" -"Language-Team: Catalan (Valencian) (https://www.transifex.com/mate/teams/13566/ca@valencia/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Empar Montoro , 2021\n" +"Language-Team: Catalan (Valencian) (https://app.transifex.com/mate/teams/13566/ca@valencia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -680,8 +680,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ca@valencia/index.docbook mate-utils-1.26.1/mate-dictionary/help/ca@valencia/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ca@valencia/index.docbook 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ca@valencia/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - Projecte de documentació del MATE - - - Projecte de documentació de GNOME - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Comentaris - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introducció - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Com començar - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Menú Aplicacions - - Choose Accessories - Dictionary. - - - - - Línia d'ordes - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Ús - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferències - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Fons de diccionaris - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferències - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ca@valencia/legal.xml mate-utils-1.26.1/mate-dictionary/help/ca@valencia/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ca@valencia/legal.xml 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ca@valencia/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 enllaç o bé al fitxer COPYING-DOCS que es distribueix amb aquest manual. - 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. - - 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. - - 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: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/cmn/cmn.po mate-utils-1.26.1/mate-dictionary/help/cmn/cmn.po --- mate-utils-1.26.0/mate-dictionary/help/cmn/cmn.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/cmn/cmn.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# 趙惟倫 , 2018 +# 趙惟倫 , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: 趙惟倫 , 2018\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mate/teams/13566/cmn/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: 趙惟倫 , 2021\n" +"Language-Team: Chinese (Mandarin) (https://app.transifex.com/mate/teams/13566/cmn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -674,8 +674,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/cmn/index.docbook mate-utils-1.26.1/mate-dictionary/help/cmn/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/cmn/index.docbook 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/cmn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,511 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - - - - - Woodman Tuen - - wmtuen@gmail.com - - - - 2005-06 - - Woodman Tuen - - - - - Abel Cheung - - abel@oaka.org - - - - 2003-04 - - Abel Cheung - - - - - 趙惟倫 - - bluebat@member.fsf.org - - - - 2013 - - 趙惟倫 - -
- - - Dictionary - - - - - - 導覽 - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - 命令列 - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - 用量 - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - 偏好設定 - - To change the Dictionary application - preferences, choose EditPreferences. - - - - 字典來源 - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - 傳送 - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - 偏好設定 - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/cmn/legal.xml mate-utils-1.26.1/mate-dictionary/help/cmn/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/cmn/legal.xml 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/cmn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/crh/crh.po mate-utils-1.26.1/mate-dictionary/help/crh/crh.po --- mate-utils-1.26.0/mate-dictionary/help/crh/crh.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/crh/crh.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Crimean Turkish (https://www.transifex.com/mate/teams/13566/crh/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Crimean Turkish (https://app.transifex.com/mate/teams/13566/crh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -673,8 +673,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/crh/index.docbook mate-utils-1.26.1/mate-dictionary/help/crh/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/crh/index.docbook 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/crh/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Komut satırı - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Kullanım - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Tercihler - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Sözlük Kaynakları - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Naqliye - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Tercihler - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/crh/legal.xml mate-utils-1.26.1/mate-dictionary/help/crh/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/crh/legal.xml 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/crh/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/cs/cs.po mate-utils-1.26.1/mate-dictionary/help/cs/cs.po --- mate-utils-1.26.0/mate-dictionary/help/cs/cs.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/cs/cs.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# LiberteCzech , 2018 -# ToMáš Marný, 2018 -# Roman Horník , 2021 +# Stefano Karapetsas , 2021 +# ToMáš Marný, 2021 # Lukáš Lommer , 2021 +# Wolfgang Ulbrich , 2021 +# LiberteCzech , 2021 +# Roman Horník , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Lukáš Lommer , 2021\n" -"Language-Team: Czech (https://www.transifex.com/mate/teams/13566/cs/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Roman Horník , 2021\n" +"Language-Team: Czech (https://app.transifex.com/mate/teams/13566/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -30,9 +30,7 @@ "Petr Tomeš \n" "Jakub Friedl \n" "Lucas Lommer \n" -"Kamil Páral \n" "Petr Kovář \n" -"Adrian Guniš \n" "Roman Horník " #. (itstool) path: articleinfo/title @@ -686,8 +684,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/cs/index.docbook mate-utils-1.26.1/mate-dictionary/help/cs/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/cs/index.docbook 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/cs/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,469 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - 2015-2021 Projekt dokumentace MATE - - 2005 - Emmanuele Bassi - - - - - - Dokumentační projekt MATE - - - Dokumentační projekt GNOME - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Ohlasy - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Úvod - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Začínáme - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - nabídky Aplikace - - Choose Accessories - Dictionary. - - - - - Příkazový řádek - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Využití - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Předvolby - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Zdroje slovníků - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Předvolby - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/cs/legal.xml mate-utils-1.26.1/mate-dictionary/help/cs/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/cs/legal.xml 2021-08-05 19:47:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/cs/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - 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. - - 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: - - 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 - - - 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. - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/cy/cy.po mate-utils-1.26.1/mate-dictionary/help/cy/cy.po --- mate-utils-1.26.0/mate-dictionary/help/cy/cy.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/cy/cy.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# ciaran, 2018 +# Stefano Karapetsas , 2021 +# ciaran, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: ciaran, 2018\n" -"Language-Team: Welsh (https://www.transifex.com/mate/teams/13566/cy/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: ciaran, 2021\n" +"Language-Team: Welsh (https://app.transifex.com/mate/teams/13566/cy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -674,8 +674,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/cy/index.docbook mate-utils-1.26.1/mate-dictionary/help/cy/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/cy/index.docbook 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/cy/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Llinell orchymyn - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Hoffterau - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Cludiant - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Hoffterau - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/cy/legal.xml mate-utils-1.26.1/mate-dictionary/help/cy/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/cy/legal.xml 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/cy/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/da/da.po mate-utils-1.26.1/mate-dictionary/help/da/da.po --- mate-utils-1.26.0/mate-dictionary/help/da/da.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/da/da.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # Joe Hansen , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" "Last-Translator: Joe Hansen , 2021\n" -"Language-Team: Danish (https://www.transifex.com/mate/teams/13566/da/)\n" +"Language-Team: Danish (https://app.transifex.com/mate/teams/13566/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,10 +20,10 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"\"Joe Hansen, 2012, 2013, 2014, 2015, 2016, 2017, 2018.\\n\"\n" -"\"\\n\"\n" -"\"Dansk-gruppen \\n\"\n" -"\"Mere info: http://www.dansk-gruppen.dk\"" +"Joe Hansen 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021.\n" +"\n" +"Dansk-gruppen \n" +"Mere info: http://www.dansk-gruppen.dk" #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -51,13 +51,13 @@ #. (itstool) path: revdescription/para #: C/index.docbook:52 C/index.docbook:96 msgid "MATE Documentation Project" -msgstr "MATE-dokumentationsprojektet" +msgstr "MATE-dokumentationsprojekt" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:55 C/index.docbook:104 msgid "GNOME Documentation Project" -msgstr "GNOME-dokumentationsprojektet" +msgstr "GNOME-dokumentationsprojekt" #. (itstool) path: authorgroup/author #: C/index.docbook:60 @@ -104,7 +104,7 @@ #. (itstool) path: legalnotice/title #: C/index.docbook:111 msgid "Feedback" -msgstr "Tilbagemeldinger" +msgstr "Tilbagemelding" #. (itstool) path: legalnotice/para #: C/index.docbook:112 @@ -114,8 +114,8 @@ "guide/feedback\" type=\"help\">MATE Feedback Page
." msgstr "" "For at rapportere en fejl eller komme med et forslag jævnfør programmet " -"Ordbog eller denne manual, så følg retningslinjerne i MATE's side for " +"Ordbog eller denne manual, så følg retningslinjerne i MATE's side for " "tilbagemeldinger." #. (itstool) path: article/indexterm @@ -126,7 +126,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:128 msgid "Introduction" -msgstr "Introduktion" +msgstr "Indledning" #. (itstool) path: sect1/para #: C/index.docbook:130 @@ -140,7 +140,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:137 msgid "Getting Started" -msgstr "Kom i gang" +msgstr "Kom godt i gang" #. (itstool) path: sect2/title #: C/index.docbook:141 @@ -156,7 +156,7 @@ #. (itstool) path: varlistentry/term #: C/index.docbook:148 msgid "Applications menu" -msgstr "Programmenuen" +msgstr "Menuen Programmer" #. (itstool) path: listitem/para #: C/index.docbook:150 @@ -217,7 +217,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:184 msgid "Usage" -msgstr "Forbrug" +msgstr "Brug" #. (itstool) path: sect2/title #: C/index.docbook:187 @@ -401,7 +401,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:269 C/index.docbook:459 msgid "Preferences" -msgstr "Præferencer" +msgstr "Indstillinger" #. (itstool) path: sect1/para #: C/index.docbook:271 @@ -789,8 +789,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" "Vinduet Indstillinger er det samme som brugt af " "programmet Ordbog, så se i or in the file COPYING-DOCS distributed " "with this manual." msgstr "" -"Tilladelse er givet til at kopiere, distribuere og/eller ændre dette " +"Der gives tilladelse 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-1/> eller i filen COPYING-DOCS som distribueres " -"sammen med denne manual." +"version 1.1 eller enhver nyere version, udgivet af Free Software Foundation " +"uden invariante afsnit, uden forsidetekster, og uden bagsidetekster. Du kan " +"finde en kopi af GFDL'en her <_:ulink-1/> eller i filen COPYING-DOCS, der " +"distribueres med denne manual." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -826,10 +826,10 @@ "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." +"Denne manual er en del af MATE-manualsamlingen distribueret under GFDL. Hvis" +" du vil distribuere denne manual separat fra denne samling, kan du gøre det " +"ved at tilføje en kopi af licensen til manualen, som beskrevet i sektion 6 " +"af licensen." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -840,11 +840,11 @@ "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." +"Mange af navnene brugt af firmaer til at skelne deres produkter og tjenester" +" er registrerede varemærker. Der hvor disse navne optræder i MATE-" +"dokumentationen, og medlemmerne af MATE-dokumentationsprojektet er blevet " +"gjort opmærksomme på disse varemærker, er navnene skrevet med store " +"bogstaver eller store forbogstaver." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -866,14 +866,14 @@ "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 " +"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" +"FORBEHOLDSERKLÆRING; OG" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -892,10 +892,10 @@ "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 " +"ELLER FORSYNER 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, " +"SKADE SOM FØLGE AF TAB AF RYGTE, ARBEJDSSTOP, COMPUTER-FEJL 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." @@ -907,5 +907,6 @@ "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/>" +"DETTE DOKUMENT OG MODIFICEREDE VERSIONER GØRES TILGÆNGELIGT UNDER " +"BETINGELSERNE I GNU FREE DOCUMENTATION LICENSE UNDER DEN FORUDSÆTNING AT: " +"<_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/mate-dictionary/help/da/index.docbook mate-utils-1.26.1/mate-dictionary/help/da/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/da/index.docbook 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/da/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,360 +0,0 @@ - - - - - - - -]> - - - -
- - - - Ordbogsmanual - - - Ordbog gør, at du kan slå orddefinitioner og korrekt stavning op. - - - 2015-2021 MATE-dokumentationsprojektet - 2005 Emmanuele Bassi - - - - - MATE-dokumentationsprojektet - - - GNOME-dokumentationsprojektet - - - - - MATE-dokumentationsholdet Mate desktop - Emmanuele Bassi
ebassi@gmail.com
- - - -
- - - Manual for Ordbog version 1.10.0 Juli 2015 - Wolfgang Ulbrich - MATE-dokumentationsprojektet - - Manual for Ordbog version 1.10.0 Juli 2015 - Emmanuele Bassi - GNOME-dokumentationsprojektet - - - - Denne manual beskriver version 1.10 af ordbog. - - Tilbagemeldinger - For at rapportere en fejl eller komme med et forslag jævnfør programmet Ordbog eller denne manual, så følg retningslinjerne i MATE's side for tilbagemeldinger. - - - -
- - Ordbog - - - - - Introduktion - - Programmet Ordbog gør det muligt for dig at søge blandt ord og termer fra en ordbogskilde. - - - - - - Kom i gang - - - - For at starte ordbogsopslag - - Du kan starte Ordbog på følgende måder: - - - - Programmenuen - - Vælg Tilbehør Ordbog. - - - - Kommandolinje - - Udfør den følgende kommando: mate-dictionary - - - - - Når startet vises vinduet for Ordbog: - -
- Ordbogsvindue - - Viser hovedvinduet for Ordbog. - -
- -
- -
- - - - Forbrug - - - Slå et ord op - - For at slå et ord op tastes det i indtastningsfeltet efterfulgt af Retur. - - Hvis en definition på et ord findes, vil denne vises inden i hovedvinduets område: - -
- Ordbogsvindue - - Viser en definition inden i hovedvinduet for ordbogen. - -
- - Ellers vil en fejlbesked komme frem, med en besked der forklarer årsagen til fejlen. - -
- - - Gem opslagsresultater - - For at gemme resultatet af et opslag vælges FilGem en kopi. Indtast et navn på filen i vinduet Gem en kopi, og klik på Gem. - - - - - Udskriv opslagsresultater - - For at udskrive et opslagsresultat vælges FilUdskriv. - - I vinduet Udskriv kan du vælge den ønskede printer, papirformatet og antallet af kopier. - - For at se en forhåndsvisning af det udskrevne klikkes på Forhåndsvisning. - - For at udskrive klikkes på Udskriv. - - - - - Find tekst - -
- Ordbogsvindue - - Viser ordbogens Find-panel inden i hovedvinduet. - -
- - - For at finde tekst i resultaterne af et opslag gøres følgende: - - - Vælg Rediger Find for at vise panelet Find. - Indtast teksten du ønsker at finde inden i indtastningsfeltet Find. - For at finde den næste forekomst af teksten klikkes på Næste. For at finde den forrige forekomst af teksten klikkes på Forrige. - - -
- -
- - - - Præferencer - - For at ændre programindstillingerne for Ordbog vælges RedigerIndstillinger. - - - - Ordbogskilder - -
- Ordbogsvindue - - Viser fanebladet med kilder for præferencedialogen. - -
- - Vælg den kilde fra listen som ønskes brugt til at slå ord op med. -
- - - - Tilføjelse af en ny kilde - -
- Ordbogsvindue - - Viser Tilføj kilde-dialogen. - -
- - For at tilføje en ny ordbogskilde gøres følgende: - - - Klip på knappen Tilføj - Rediger navnet på den nye kilde inden i indtastningsfeltet Beskrivelse - Ændre transportypen på den nye kilde med brug af valgboksen Transport - Rediger attributterne på den nye kilde - Klik Tilføj - - - Forskellige kildetransporttyper anvender forskellige attributter. Dette er listen over tilgængelige attributter per transporttype: - - - - - - Transport - Attributter - - - - - Ordbogsserver - - Værtsnavn: Værtsnavnet på ordbogsserveren - Port: Porten på ordbogsserveren - - - - - - -
- - - - Fjern en kilde - - For at fjerne en ordbogskilde, gøres følgende: - - - Vælg kilden du ønsker at fjerne - Klik på knappen Fjern - - - Hvis du fjerner en ordbogskilde, vil den permanent blive slettet fra listen over tilgængelige kilder. Bemærk også at nogle kilder måske er generelt defineret, og at du måske ikke kan fjerne dem uden at have de korrekte ejerskabsprivilegier. - - - - - - Udskrivningsindstillinger - -
- Ordbogsvindue - - Viser fanebladet udskriv inden i præferencedialogen. - -
- - Hvis du ønsker at ændre den brugte skrifttype og størrelse under udskrivning så udfør de følgende trin: - - - Klik på knappen Udskriv skrifttype - Vælg skrifttypen og størrelse du ønsker at bruge - Klik O.k. - - -
- -
- - - - Ordbogspanelprogrammet - - Programmet Ordbog kommer med et panelprogram, Ordbogsopslag. Du kan tilføje panelprogrammet Ordbogsopslag til et panel og slå ord op i ordbøger. - -
- Vindue for ordbogsopslag - - Viser panelprogrammet ordbog. - -
- - - - - For at starte panelprogrammet ordbogsopslag - - For at tilføje Ordbogsopslag til et panel højreklikkes på panelet, og der vælges Tilføj til panel. Vælg ordbogsopslag i vinduet Tilføj til panelet og klik på O.k.. - - - - - - Brug af panelprogrammet ordbogsopslag - - For at slå et ord op, tastes det i indtastningsfeltet, og der trykkes på Retur eller højreklik på ordbogsikonet og så vælge Slå op. - - Hvis en definition for ordet blev fundet, vil et vindue vise sig med teksten på definitionerne: - -
- Vindue for ordbogsopslag - - Viser hovedvinduet for panelprogrammet ordbog. - -
- - Klik Gem for at gemme definitionerne til en tekstfil. Klik Udskriv for at udskrive definitionerne. Klik Ryd for at rydde definitionerne. - - Du får vinduet til at forsvinde ved at venstreklikke på ordbogsikonet eller ved at trykke på Esc. - -
- - - Præferencer - - For at konfigurere Ordbogsopslag, højreklik på ordbogsikonet, og vælg Indstillinger. - - Vinduet Indstillinger er det samme som brugt af programmet Ordbog, så se i - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/da/legal.xml mate-utils-1.26.1/mate-dictionary/help/da/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/da/legal.xml 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/da/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 henvisning eller i filen COPYING-DOCS som distribueres sammen med denne manual. - 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. - - 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. - - DOKUMENTET OG ÆNDREDE VERSIONER AF DOKUMENTET STILLES TIL RÅDIGHED UNDER GNU FREE DOCOMENTATION LICENSE MED FØLGENDE BETINGELSER: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/de/de.po mate-utils-1.26.1/mate-dictionary/help/de/de.po --- mate-utils-1.26.0/mate-dictionary/help/de/de.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/de/de.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,21 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Ettore Atalan , 2018 -# Tobias Bannert , 2018 -# Wolfgang Ulbrich , 2018 -# Moritz Bruder , 2018 -# Marcel Artz , 2021 +# Stefano Karapetsas , 2021 +# Ettore Atalan , 2021 +# Moritz Bruder , 2021 +# Tobias Bannert , 2021 +# Wolfgang Ulbrich , 2021 # Julian Rüger , 2021 +# Marcel Artz , 2021 +# Xpistian , 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Julian Rüger , 2021\n" -"Language-Team: German (https://www.transifex.com/mate/teams/13566/de/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Xpistian , 2023\n" +"Language-Team: German (https://app.transifex.com/mate/teams/13566/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -31,7 +32,8 @@ "Hendrik Richter\n" "Christian Kirbach\n" "Wolfgang Stoeggl\n" -"Tobias Bannert" +"Tobias Bannert\n" +"Marcel Artz" #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -50,7 +52,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:33 msgid "2015-2021 MATE Documentation Project" -msgstr "" +msgstr "2015-2021 Mate-Dokumentationsprojekt" #. (itstool) path: articleinfo/copyright #: C/index.docbook:37 @@ -111,7 +113,12 @@ #. (itstool) path: legalnotice/title #: C/index.docbook:111 msgid "Feedback" -msgstr "Rückmeldungen" +msgstr "" +"\n" +"\n" +"### CuBox i4 Pro Review\n" +"\n" +"" #. (itstool) path: legalnotice/para #: C/index.docbook:112 @@ -722,8 +729,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink @@ -843,6 +850,6 @@ "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 " +"DAS DOKUMENT SOWIE VERÄNDERTE VERSIONEN DAVON WERDEN UNTER DEN BEDINGUNGEN " +"DER »GNU FREE DOCUMENTATION LICENSE« BEREITGESTELLT, MIT DEM WEITEREN " "VERSTÄNDNIS, DASS: <_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/mate-dictionary/help/de/index.docbook mate-utils-1.26.1/mate-dictionary/help/de/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/de/index.docbook 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/de/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,425 +0,0 @@ - - - - - - - -]> - - - -
- - - - Handbuch zum Wörterbuch - - - Das Wörterbuch ermöglicht Ihnen die Definitionen und die richtige Schreibweise von Wörtern nachzuschlagen. - - - - 2015-2021 - MATE Documentation Project - - 2005 Emmanuele Bassi - - - - - MATE-Dokumentationsprojekt - - - GNOME-Dokumentationsprojekt - - - - - MATE Dokumentationsteam MATE-Arbeitsumgebung - EmmanueleBassi
ebassi@gmail.com
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - Dieses Handbuch beschreibt die Version 1.10 des Wörterbuches. - - Rückmeldungen - Um einen Fehler zu melden oder eine Verbesserung bzgl. der Wörterbuch-Anwendung oder dieses Handbuchs vorzuschlagen, folgen Sie den Anweisungen auf der MATE-Rückmeldungsseite. - - - -
- - - Dictionary - - - - - - Einführung - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Erste Schritte - - - - To Start Dictionary - - Sie können das Wörterbuch auf folgende Weise starten: - - - - Menü Anwendungen - - Wählen Sie ZubehörWörterbuch. - - - - Befehlszeile - - Führen Sie den folgenden Befehl aus: mate-dictionary - - - - - Erst einmal gestartet wird das Fenster des Wörterbuchs folgendermaßen dargestellt: - -
- Dictionary Window - - Zeigt das Hauptmenü des Wörterbuchs. - -
- -
- -
- - - - Verwendung - - - Looking up a word - - Um nach einem Wort zu suchen, tippen Sie es in das Eingagefeld und drücken Sie Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Einstellungen - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Wörterbuchquellen - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - Das Wörterbuch-Applet - - Die Wörterbuch-Anwendung hat ein Applet im Lieferumfang, das Wörterbuch-Applet. Sie können es einer Leiste hinzufügen, um schnell Wörter nachzuschlagen. - -
- Fenster des Wörterbuch-Applets - - Zeigt das Wörterbuch-Applet. - -
- - - - - Das Wörterbuch-Applet starten - - Um das Wörterbuch-Applet einer Leiste hinzuzufügen, klicken Sie mit der rechten Maustaste auf die Leiste und wählen Sie Zur Leiste hinzufügen. Wählen Sie das Wörterbuch-Applet im folgenden Dialogfeld aus und klicken Sie auf OK. - - - - - - Verwendung des Wörterbuch-Applets - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Fenster des Wörterbuch-Applets - - Zeigt das Hauptfenster des Wörterbuch-Applets. - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Einstellungen - - Um das Wörterbuch-Applet zu konfigurieren, klicken Sie mit der rechten Maustaste auf das Wörterbuchsymbol und wählen Sie Eigenschaften. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/de/legal.xml mate-utils-1.26.1/mate-dictionary/help/de/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/de/legal.xml 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/de/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 Verknüpfung oder in der mit diesem Handbuch gelieferten Datei COPYING-DOCS. - 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. - - 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. - - DAS DOKUMENT SOWIE MODIFIZIERTE VERSIONEN DAVON WERDEN UNTER DEN BEDINGUNGEN DER GNU FREE DOCUMENTATION LICENSE BEREITGESTELLT, MIT DEM WEITEREN VERSTÄNDNIS, DASS: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/dz/dz.po mate-utils-1.26.1/mate-dictionary/help/dz/dz.po --- mate-utils-1.26.0/mate-dictionary/help/dz/dz.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/dz/dz.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Dzongkha (https://www.transifex.com/mate/teams/13566/dz/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Dzongkha (https://app.transifex.com/mate/teams/13566/dz/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -674,8 +674,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/dz/index.docbook mate-utils-1.26.1/mate-dictionary/help/dz/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/dz/index.docbook 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/dz/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - བཀོད་ལམ། - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - བེད་སྤྱོད་ - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - དགའ་གདམ་ཚུ། - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - སྐྱེལ་འདྲེན། - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - དགའ་གདམ་ཚུ། - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/dz/legal.xml mate-utils-1.26.1/mate-dictionary/help/dz/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/dz/legal.xml 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/dz/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/el/el.po mate-utils-1.26.1/mate-dictionary/help/el/el.po --- mate-utils-1.26.0/mate-dictionary/help/el/el.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/el/el.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Alexandros Kapetanios , 2018 -# 437c9d6e19936ed69f57bed9e0fe4716, 2018 -# kosmmart , 2018 -# TheDimitris15, 2019 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 +# Alexandros Kapetanios , 2021 +# 437c9d6e19936ed69f57bed9e0fe4716, 2021 +# kosmmart , 2021 +# TheDimitris15, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: TheDimitris15, 2019\n" -"Language-Team: Greek (https://www.transifex.com/mate/teams/13566/el/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: TheDimitris15, 2021\n" +"Language-Team: Greek (https://app.transifex.com/mate/teams/13566/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -680,8 +680,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink @@ -699,8 +699,8 @@ " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" -"Επιτρέπεται η αντιγραφή, η διανομή και / ή η τροποποίηση αυτού του εγγράφου " -"σύμφωνα με τους όρους της Άδειας Τεκμηρίωσης ελευθέρου λογισμικού GNU " +"Επιτρέπεται η αντιγραφή, η διανομή και / η τροποποίηση αυτού του εγγράφου " +"σύμφωνα με τους όρους της Άδειας Τεκμηρίωσης Ελευθέρου λογισμικού GNU " "(GFDL), Έκδοσης 1.1 ή οποιασδήποτε μεταγενέστερης έκδοσης που δημοσιεύεται " "από το Ίδρυμα Ελεύθερου Λογισμικού χωρίς Μεταβλητές Ενότητες, χωρίς Κείμενα " "Προσωρινού Εξώφυλλου και Κανένα κείμενο πίσω. Μπορείτε να βρείτε ένα " @@ -788,7 +788,6 @@ "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" -"Η οθόνη προσβασιμότητας πληκτρολογίου σας δείχνει την κατάσταση των " -"χαρακτηριστικών προσβασιμότητας πληκτρολογίου όταν αυτά χρησιμοποιούνται. " -"Για παράδειγμα, μπορείτε να δείτε ποια πλήκτρα τροποποίησης είναι ενεργά και" -" ποια κουμπιά του ποντικιού πιέζονται μέσω του πληκτρολογίου." +"ΤΟ ΕΓΓΡΑΦΟ ΚΑΙ ΤΡΟΠΟΠΟΙΗΜΕΝΕΣ ΕΚΔΟΣΕΙΣ ΤΟΥ ΕΓΓΡΑΦΟΥ ΠΑΡΕΧΟΝΤΑΙ ΜΕ ΤΟΥΣ ΟΡΟΥΣ" +" ΤΗΣ ΑΔΕΙΑΣ ΤΕΚΜΗΡΙΩΣΗ ΕΛΕΥΘΕΡΟΥ ΛΟΓΙΣΜΙΚΟΥ GNU ΜΕ ΤΗΝ ΠΕΡΑΙΤΕΡΩ ΚΑΤΑΝΟΜΗ " +"ΟΤΙ: <_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/mate-dictionary/help/el/index.docbook mate-utils-1.26.1/mate-dictionary/help/el/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/el/index.docbook 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/el/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - Έργο Τεκμηρίωσης MATE - - - Έργο τεκμηρίωσης GNOME - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Ανάδραση - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Εισαγωγή - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Για να ξεκινήσετε - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Μενού Εφαρμογές - - Choose Accessories - Dictionary. - - - - - Γραμμή εντολών - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Χρήση - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Προτιμήσεις - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Πηγές λεξικού - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Μεταφορά - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Προτιμήσεις - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/el/legal.xml mate-utils-1.26.1/mate-dictionary/help/el/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/el/legal.xml 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/el/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ - - - Επιτρέπεται η αντιγραφή, η διανομή και / ή η τροποποίηση αυτού του εγγράφου σύμφωνα με τους όρους της Άδειας Τεκμηρίωσης ελευθέρου λογισμικού GNU (GFDL), Έκδοσης 1.1 ή οποιασδήποτε μεταγενέστερης έκδοσης που δημοσιεύεται από το Ίδρυμα Ελεύθερου Λογισμικού χωρίς Μεταβλητές Ενότητες, χωρίς Κείμενα Προσωρινού Εξώφυλλου και Κανένα κείμενο πίσω. Μπορείτε να βρείτε ένα αντίγραφο του GFDL σε αυτό σύνδεσμος ή στο αρχείο COPYING-DOCS που διανέμεται με αυτό το εγχειρίδιο. - Αυτή η τεκμηρίωση είναι μέρος της συλλογής τεκμηρίωσης του MATE όπως διανέμεται υπό τους όρους του GFDL. Εάν επιθυμείτε να διανείμετε αυτή την τεκμηρίωση ξεχωριστά από την συλλογή, μπορείτε να το κάνετε εάν η τεκμηρίωση συνοδεύεται από αντίγραφο της άδειας (GFDL) όπως περιγράφεται στον τομέα 6 της άδειας. - - Πολλά από τα ονόματα που χρησιμοποιούνται από εταιρίες για να ξεχωρίσουν τα προϊόντα και τις υπηρεσίες είναι σήματα κατατεθέν. Όπου αυτά τα ονόματα εμφανίζονται στην τεκμηρίωση MATE, και τα μέλη της ομάδας τεκμηρίωσης MATE έχουν γνώση αυτών, τότε αυτά αναγράφονται με κεφαλαίους χαρακτήρες ή με αρχικούς κεφαλαίους χαρακτήρες. - - Η οθόνη προσβασιμότητας πληκτρολογίου σας δείχνει την κατάσταση των χαρακτηριστικών προσβασιμότητας πληκτρολογίου όταν αυτά χρησιμοποιούνται. Για παράδειγμα, μπορείτε να δείτε ποια πλήκτρα τροποποίησης είναι ενεργά και ποια κουμπιά του ποντικιού πιέζονται μέσω του πληκτρολογίου. - diff -Nru mate-utils-1.26.0/mate-dictionary/help/en_AU/en_AU.po mate-utils-1.26.1/mate-dictionary/help/en_AU/en_AU.po --- mate-utils-1.26.0/mate-dictionary/help/en_AU/en_AU.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/en_AU/en_AU.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Michael Findlay , 2018 +# Michael Findlay , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Michael Findlay , 2018\n" -"Language-Team: English (Australia) (https://www.transifex.com/mate/teams/13566/en_AU/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Michael Findlay , 2021\n" +"Language-Team: English (Australia) (https://app.transifex.com/mate/teams/13566/en_AU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/en_AU/index.docbook mate-utils-1.26.1/mate-dictionary/help/en_AU/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/en_AU/index.docbook 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/en_AU/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferences - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferences - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/en_AU/legal.xml mate-utils-1.26.1/mate-dictionary/help/en_AU/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/en_AU/legal.xml 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/en_AU/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/en_CA/en_CA.po mate-utils-1.26.1/mate-dictionary/help/en_CA/en_CA.po --- mate-utils-1.26.0/mate-dictionary/help/en_CA/en_CA.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/en_CA/en_CA.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: English (Canada) (https://www.transifex.com/mate/teams/13566/en_CA/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: English (Canada) (https://app.transifex.com/mate/teams/13566/en_CA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/en_CA/index.docbook mate-utils-1.26.1/mate-dictionary/help/en_CA/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/en_CA/index.docbook 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/en_CA/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferences - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferences - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/en_CA/legal.xml mate-utils-1.26.1/mate-dictionary/help/en_CA/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/en_CA/legal.xml 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/en_CA/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/en_GB/en_GB.po mate-utils-1.26.1/mate-dictionary/help/en_GB/en_GB.po --- mate-utils-1.26.0/mate-dictionary/help/en_GB/en_GB.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/en_GB/en_GB.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Martin Wimpress , 2018 -# Andi Chandler , 2021 +# Stefano Karapetsas , 2021 +# Andi Chandler , 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Andi Chandler , 2021\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mate/teams/13566/en_GB/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Andi Chandler , 2023\n" +"Language-Team: English (United Kingdom) (https://app.transifex.com/mate/teams/13566/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,12 +19,14 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Martin Wimpress" +msgstr "" +"Martin Wimpress\n" +"Andi Chandler" #. (itstool) path: articleinfo/title #: C/index.docbook:24 msgid "Dictionary Manual" -msgstr "" +msgstr "Dictionary Manual" #. (itstool) path: abstract/para #: C/index.docbook:27 @@ -33,6 +34,8 @@ "Dictionary enables you to look up definitions and correct spellings of " "words." msgstr "" +"Dictionary enables you to look up definitions and correct spellings of " +"words." #. (itstool) path: articleinfo/copyright #: C/index.docbook:33 @@ -42,7 +45,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:37 msgid "2005 Emmanuele Bassi" -msgstr "" +msgstr "2005 Emmanuele Bassi" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -71,11 +74,13 @@ "Emmanuele Bassi " "
ebassi@gmail.com
" msgstr "" +"Emmanuele Bassi " +"
ebassi@gmail.com
" #. (itstool) path: revdescription/para #: C/index.docbook:94 msgid "Wolfgang Ulbrich" -msgstr "" +msgstr "Wolfgang Ulbrich" #. (itstool) path: revhistory/revision #: C/index.docbook:90 C/index.docbook:99 @@ -83,16 +88,18 @@ "Dictionary Manual V1.10.0 July 2015 " "<_:revdescription-1/>" msgstr "" +"Dictionary Manual V1.10.0 July 2015 " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:103 msgid "Emmanuele Bassi" -msgstr "" +msgstr "Emmanuele Bassi" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:109 msgid "This manual describes version 1.10 of Dictionary." -msgstr "" +msgstr "This manual describes version 1.10 of the Dictionary." #. (itstool) path: legalnotice/title #: C/index.docbook:111 @@ -106,11 +113,14 @@ " this manual, follow the directions in the MATE Feedback Page." msgstr "" +"To report a bug or make a suggestion regarding the Dictionary application or" +" this manual, follow the directions in the MATE Feedback Page." #. (itstool) path: article/indexterm #: C/index.docbook:121 msgid "Dictionary" -msgstr "" +msgstr "Dictionary" #. (itstool) path: sect1/title #: C/index.docbook:128 @@ -123,27 +133,30 @@ "The Dictionary application enables you to search " "words and terms on a dictionary source." msgstr "" +"The Dictionary application enables you to search " +"words and terms on a dictionary source." #. (itstool) path: sect1/title #: C/index.docbook:137 msgid "Getting Started" -msgstr "" +msgstr "Getting Started" #. (itstool) path: sect2/title #: C/index.docbook:141 msgid "To Start Dictionary" -msgstr "" +msgstr "To Start Dictionary" #. (itstool) path: sect2/para #: C/index.docbook:143 msgid "" "You can start Dictionary in the following ways:" msgstr "" +"You can start Dictionary in the following ways:" #. (itstool) path: varlistentry/term #: C/index.docbook:148 msgid "Applications menu" -msgstr "" +msgstr "Applications menu" #. (itstool) path: listitem/para #: C/index.docbook:150 @@ -151,6 +164,8 @@ "Choose Accessories " "Dictionary." msgstr "" +"Choose Accessories " +"Dictionary." #. (itstool) path: varlistentry/term #: C/index.docbook:156 @@ -160,19 +175,20 @@ #. (itstool) path: listitem/para #: C/index.docbook:158 msgid "Execute the following command: mate-dictionary" -msgstr "" +msgstr "Execute the following command: mate-dictionary" #. (itstool) path: sect2/para #: C/index.docbook:163 msgid "" "Once started, the Dictionary window is displayed:" msgstr "" +"Once started, the Dictionary window is displayed:" #. (itstool) path: figure/title #: C/index.docbook:167 C/index.docbook:196 C/index.docbook:238 #: C/index.docbook:279 C/index.docbook:299 C/index.docbook:368 msgid "Dictionary Window" -msgstr "" +msgstr "Dictionary Window" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -185,6 +201,8 @@ "external ref='figures/mate-dictionary-application.png' " "md5='fb48a9e5863bfb2b3811df2e28489eb7'" msgstr "" +"external ref='figures/mate-dictionary-application.png' " +"md5='fb48a9e5863bfb2b3811df2e28489eb7'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:169 @@ -193,6 +211,9 @@ " format=\"PNG\"/> Shows Dictionary main " "window." msgstr "" +" Shows Dictionary main " +"window." #. (itstool) path: sect1/title #: C/index.docbook:184 @@ -202,7 +223,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:187 msgid "Looking up a word" -msgstr "" +msgstr "Looking up a word" #. (itstool) path: sect2/para #: C/index.docbook:189 @@ -210,6 +231,8 @@ "To look up a word, type it into the entry field and " "press Enter." msgstr "" +"To look up a word, type it into the entry field and " +"press Enter." #. (itstool) path: sect2/para #: C/index.docbook:192 @@ -217,6 +240,8 @@ "If some definition for the word is found, it will appear inside the main " "window area:" msgstr "" +"If some definition for the word is found, it will appear inside the main " +"window area:" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -229,6 +254,8 @@ "external ref='figures/mate-dictionary-lookup.png' " "md5='c41c96af4de54f457a2081aad009a8d0'" msgstr "" +"external ref='figures/mate-dictionary-lookup.png' " +"md5='c41c96af4de54f457a2081aad009a8d0'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:198 @@ -237,6 +264,9 @@ "format=\"PNG\"/> Shows a definition " "inside the Dictionary main window." msgstr "" +" Shows a definition " +"inside the Dictionary main window." #. (itstool) path: sect2/para #: C/index.docbook:207 @@ -244,11 +274,13 @@ "Otherwise, an error dialog will appear, with a message explaining the nature" " of the error." msgstr "" +"Otherwise, an error dialogue will appear, with a message explaining the " +"nature of the error." #. (itstool) path: sect2/title #: C/index.docbook:213 msgid "Save look up results" -msgstr "" +msgstr "Save look up results" #. (itstool) path: sect2/para #: C/index.docbook:215 @@ -259,11 +291,16 @@ "Save a Copy dialog, then click " "Save." msgstr "" +"To save the results of a look up, choose " +"FileSave a " +"Copy. Enter a name for the file in the " +"Save a Copy dialogue, then click " +"Save." #. (itstool) path: sect2/title #: C/index.docbook:220 msgid "Print look up results" -msgstr "" +msgstr "Print look up results" #. (itstool) path: sect2/para #: C/index.docbook:222 @@ -271,6 +308,8 @@ "To print the results of a look up, choose " "FilePrint." msgstr "" +"To print the results of a look up, choose " +"FilePrint." #. (itstool) path: sect2/para #: C/index.docbook:224 @@ -278,6 +317,8 @@ "Inside the Print dialog you can select the printer to " "use, the paper format, the number of copies." msgstr "" +"Inside the Print dialogue you can select the printer to" +" use, the paper format, the number of copies." #. (itstool) path: sect2/para #: C/index.docbook:227 @@ -285,16 +326,18 @@ "To see a preview of what will be printed, click " "Preview." msgstr "" +"To see a preview of what will be printed, click " +"Preview." #. (itstool) path: sect2/para #: C/index.docbook:230 msgid "To print, click Print." -msgstr "" +msgstr "To print, click Print." #. (itstool) path: sect2/title #: C/index.docbook:235 msgid "Find Text" -msgstr "" +msgstr "Find Text" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -307,6 +350,8 @@ "external ref='figures/mate-dictionary-find.png' " "md5='d8bf0677084e2d9998a7942faaab5379'" msgstr "" +"external ref='figures/mate-dictionary-find.png' " +"md5='d8bf0677084e2d9998a7942faaab5379'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:240 @@ -315,12 +360,16 @@ "format=\"PNG\"/> Shows the Dictionary " "Find pane inside the main window." msgstr "" +" Shows the Dictionary " +"Find pane inside the main window." #. (itstool) path: sect2/para #: C/index.docbook:250 msgid "" "To find text inside the results of a look up, perform the following steps:" msgstr "" +"To find text inside the results of a look up, perform the following steps:" #. (itstool) path: listitem/para #: C/index.docbook:254 @@ -328,12 +377,15 @@ "Choose Edit Find " " to display the Find pane." msgstr "" +"Choose Edit Find " +" to display the Find pane." #. (itstool) path: listitem/para #: C/index.docbook:256 msgid "" "Type the text you want to find inside the Search entry." msgstr "" +"Type the text you want to find inside the Search entry." #. (itstool) path: listitem/para #: C/index.docbook:258 @@ -342,6 +394,9 @@ "To find the previous occurrence of the text, click " "Previous." msgstr "" +"To find the next occurrence of the text, click Next. " +"To find the previous occurrence of the text, click " +"Previous." #. (itstool) path: sect1/title #. (itstool) path: sect2/title @@ -356,6 +411,9 @@ " choose " "EditPreferences." msgstr "" +"To change the Dictionary application preferences," +" choose " +"EditPreferences." #. (itstool) path: sect2/title #: C/index.docbook:276 @@ -373,6 +431,8 @@ "external ref='figures/mate-dictionary-preferences-source.png' " "md5='5470b15e64e66924477f150c4f47e96d'" msgstr "" +"external ref='figures/mate-dictionary-preferences-source.png' " +"md5='5470b15e64e66924477f150c4f47e96d'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:281 @@ -381,6 +441,9 @@ "source.png\" format=\"PNG\"/> Shows the " "Source tab of the Preferences dialog." msgstr "" +" Shows the " +"Source tab of the Preferences dialogue." #. (itstool) path: sect2/para #: C/index.docbook:290 @@ -388,11 +451,13 @@ "To change the dictionary source used to look up words, select the desired " "source from the list." msgstr "" +"To change the dictionary source used to look up words, select the desired " +"source from the list." #. (itstool) path: sect2/title #: C/index.docbook:296 msgid "Adding a new source" -msgstr "" +msgstr "Adding a new source" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -405,6 +470,8 @@ "external ref='figures/mate-dictionary-add-source.png' " "md5='d059507fee77bb176fce53373951756b'" msgstr "" +"external ref='figures/mate-dictionary-add-source.png' " +"md5='d059507fee77bb176fce53373951756b'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:301 @@ -413,16 +480,19 @@ "format=\"PNG\"/> Shows the Add Source " "dialog." msgstr "" +" Shows the Add Source " +"dialogue." #. (itstool) path: sect2/para #: C/index.docbook:310 msgid "To add a new dictionary source, perform the following steps:" -msgstr "" +msgstr "To add a new dictionary source, perform the following steps:" #. (itstool) path: listitem/para #: C/index.docbook:313 msgid "Click on the Add button" -msgstr "" +msgstr "Click on the Add button" #. (itstool) path: listitem/para #: C/index.docbook:314 @@ -430,6 +500,8 @@ "Edit the name of the new source inside the Description " "entry" msgstr "" +"Edit the name of the new source inside the Description " +"entry" #. (itstool) path: listitem/para #: C/index.docbook:315 @@ -437,16 +509,18 @@ "Change the transport type of the new source using the " "Transport combo box" msgstr "" +"Change the transport type of the new source using the " +"Transport combo box" #. (itstool) path: listitem/para #: C/index.docbook:316 msgid "Edit the attributes of the new source" -msgstr "" +msgstr "Edit the attributes of the new source" #. (itstool) path: listitem/para #: C/index.docbook:317 msgid "Click Add" -msgstr "" +msgstr "Click Add" #. (itstool) path: sect2/para #: C/index.docbook:320 @@ -454,6 +528,8 @@ "Different source transport types uses different attributes. This is the list" " of available attributes per transport type:" msgstr "" +"Different source transport types uses different attributes. This is the list" +" of available attributes per transport type:" #. (itstool) path: entry/para #: C/index.docbook:327 @@ -463,42 +539,42 @@ #. (itstool) path: entry/para #: C/index.docbook:328 msgid "Attributes" -msgstr "" +msgstr "Attributes" #. (itstool) path: entry/para #: C/index.docbook:333 msgid "Dictionary Server" -msgstr "" +msgstr "Dictionary Server" #. (itstool) path: entry/para #: C/index.docbook:335 msgid "Hostname: the hostname of the dictionary server" -msgstr "" +msgstr "Hostname: the hostname of the dictionary server" #. (itstool) path: entry/para #: C/index.docbook:336 msgid "Port: the port of the dictionary server" -msgstr "" +msgstr "Port: the port of the dictionary server" #. (itstool) path: sect2/title #: C/index.docbook:347 msgid "Removing a source" -msgstr "" +msgstr "Removing a source" #. (itstool) path: sect2/para #: C/index.docbook:349 msgid "To remove a dictionary source, perform the following steps:" -msgstr "" +msgstr "To remove a dictionary source, perform the following steps:" #. (itstool) path: listitem/para #: C/index.docbook:352 msgid "Select the source you wish to remove" -msgstr "" +msgstr "Select the source you wish to remove" #. (itstool) path: listitem/para #: C/index.docbook:353 msgid "Click the Remove button" -msgstr "" +msgstr "Click the Remove button" #. (itstool) path: warning/para #: C/index.docbook:356 @@ -508,11 +584,15 @@ "wide you may actually not be able to remove them unless you have the right " "ownership privileges." msgstr "" +"If you remove a dictionary source it will be permanently deleted from the " +"list of available sources. Also, as some sources might be defined system-" +"wide you may actually not be able to remove them unless you have the right " +"ownership privileges." #. (itstool) path: sect2/title #: C/index.docbook:365 msgid "Print Options" -msgstr "" +msgstr "Print Options" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -525,6 +605,8 @@ "external ref='figures/mate-dictionary-preferences-print.png' " "md5='12a65f07cb333db4c7ba743d1d12a00f'" msgstr "" +"external ref='figures/mate-dictionary-preferences-print.png' " +"md5='12a65f07cb333db4c7ba743d1d12a00f'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:370 @@ -533,6 +615,9 @@ "print.png\" format=\"PNG\"/> Shows the " "Print tab inside the Preferences dialog." msgstr "" +" Shows the " +"Print tab inside the Preferences dialogue." #. (itstool) path: sect2/para #: C/index.docbook:379 @@ -540,26 +625,28 @@ "If you want to change the font name and size used when printing, perform the" " following steps:" msgstr "" +"If you want to change the font name and size used when printing, perform the" +" following steps:" #. (itstool) path: listitem/para #: C/index.docbook:383 msgid "Click on the Print Font button" -msgstr "" +msgstr "Click on the Print Font button" #. (itstool) path: listitem/para #: C/index.docbook:384 msgid "Select the font and size you wish to use" -msgstr "" +msgstr "Select the font and size you wish to use" #. (itstool) path: listitem/para #: C/index.docbook:385 msgid "Click Ok" -msgstr "" +msgstr "Click Ok" #. (itstool) path: sect1/title #: C/index.docbook:394 msgid "The Dictionary Applet" -msgstr "" +msgstr "The Dictionary Applet" #. (itstool) path: sect1/para #: C/index.docbook:396 @@ -569,11 +656,15 @@ "Dictionary Applet applet to a panel and look up " "words in dictionaries." msgstr "" +"The Dictionary application comes with a panel " +"applet, the Dictionary Applet. You can add the " +"Dictionary Applet applet to a panel and look up " +"words in dictionaries." #. (itstool) path: figure/title #: C/index.docbook:402 C/index.docbook:438 msgid "Dictionary Applet Window" -msgstr "" +msgstr "Dictionary Applet Window" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -586,6 +677,8 @@ "external ref='figures/mate-dictionary-applet.png' " "md5='538c7fa191540f99dd964963a1079677'" msgstr "" +"external ref='figures/mate-dictionary-applet.png' " +"md5='538c7fa191540f99dd964963a1079677'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:404 @@ -594,11 +687,14 @@ "format=\"PNG\"/> Shows Dictionary " "Applet." msgstr "" +" Shows Dictionary " +"Applet." #. (itstool) path: sect2/title #: C/index.docbook:416 msgid "To Start Dictionary Applet" -msgstr "" +msgstr "To Start Dictionary Applet" #. (itstool) path: sect2/para #: C/index.docbook:418 @@ -608,11 +704,15 @@ "Dictionary Applet in the Add to the panel dialog," " then click OK." msgstr "" +"To add Dictionary Applet to a panel, right-click " +"on the panel, then choose Add to Panel. Select " +"Dictionary Applet in the Add to the panel " +"dialogue, then click OK." #. (itstool) path: sect2/title #: C/index.docbook:427 msgid "Using the Dictionary Applet" -msgstr "" +msgstr "Using the Dictionary Applet" #. (itstool) path: sect2/para #: C/index.docbook:429 @@ -621,6 +721,9 @@ "press Enter or right-click on the dictionary icon and then " "choose Look up." msgstr "" +"To look up a word, type it into the entry field, and " +"press Enter or right-click on the dictionary icon and then " +"choose Look up." #. (itstool) path: sect2/para #: C/index.docbook:434 @@ -628,6 +731,8 @@ "If some definition for the word was found, a window will appear, with the " "text of the definitions:" msgstr "" +"If some definition for the word was found, a window will appear, with the " +"text of the definitions:" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -640,6 +745,8 @@ "external ref='figures/mate-dictionary-applet-window.png' " "md5='e26ac4847d2e7b53c6bba7d8e1a519c4'" msgstr "" +"external ref='figures/mate-dictionary-applet-window.png' " +"md5='e26ac4847d2e7b53c6bba7d8e1a519c4'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:440 @@ -648,6 +755,9 @@ "window.png\" format=\"PNG\"/> Shows " "Dictionary Applet main window." msgstr "" +" Shows " +"Dictionary Applet main window." #. (itstool) path: sect2/para #: C/index.docbook:449 @@ -656,6 +766,9 @@ "Click Print to print the definitions. Click " "Clear to clear the definitions." msgstr "" +"Click Save to save the definitions to a text file. " +"Click Print to print the definitions. Click " +"Clear to clear the definitions." #. (itstool) path: sect2/para #: C/index.docbook:453 @@ -663,6 +776,8 @@ "You can make the window disappear by left-clicking on the dictionary icon or" " by pressing Esc." msgstr "" +"You can make the window disappear by left-clicking on the dictionary icon or" +" by pressing Esc." #. (itstool) path: sect2/para #: C/index.docbook:461 @@ -670,14 +785,19 @@ "To configure the Dictionary Applet, right-click " "on the dictionary icon, then choose Preferences." msgstr "" +"To configure the Dictionary Applet, right-click " +"on the dictionary icon, then choose Preferences." #. (itstool) path: sect2/para #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" +"The Preferences dialogue is the same used by the " +"Dictionary application, so refer to " #. (itstool) path: para/ulink #: C/legal.xml:9 diff -Nru mate-utils-1.26.0/mate-dictionary/help/en_GB/index.docbook mate-utils-1.26.1/mate-dictionary/help/en_GB/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/en_GB/index.docbook 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/en_GB/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - 2015-2021 MATE Documentation Project - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - MATE Documentation Team Mate desktop - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferences - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferences - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/en_GB/legal.xml mate-utils-1.26.1/mate-dictionary/help/en_GB/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/en_GB/legal.xml 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/en_GB/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 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 link or in the file COPYING-DOCS distributed with this manual. - 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. - - 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. - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENCE WITH THE FURTHER UNDERSTANDING THAT: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/eo/eo.po mate-utils-1.26.1/mate-dictionary/help/eo/eo.po --- mate-utils-1.26.0/mate-dictionary/help/eo/eo.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/eo/eo.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Michael Moroni , 2018 -# Stefano Karapetsas , 2018 -# Forecast , 2018 -# Cora Loftis, 2018 +# Michael Moroni , 2021 +# Stefano Karapetsas , 2021 +# Forecast , 2021 +# Cora Loftis, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Cora Loftis, 2018\n" -"Language-Team: Esperanto (https://www.transifex.com/mate/teams/13566/eo/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Cora Loftis, 2021\n" +"Language-Team: Esperanto (https://app.transifex.com/mate/teams/13566/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -682,8 +682,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/eo/index.docbook mate-utils-1.26.1/mate-dictionary/help/eo/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/eo/index.docbook 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/eo/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - Projekto de Dokumentado de MATE - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Rimarkoj - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Enkonduko - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Komandlinio - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Uzado - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Agordoj - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transporto - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Agordoj - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/eo/legal.xml mate-utils-1.26.1/mate-dictionary/help/eo/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/eo/legal.xml 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/eo/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,55 +0,0 @@ - - - Permeso estas aljuĝita kopii, distribui kaj/aŭ ŝanĝi ĉi tiun dokumenton sur la kondiĉoj de la GNU Licenso de Libera Dokumentado (GFDL), Eldono 1.1 aŭ iu posta eldono eldonita de la Free Software Foundation, sen Invariantaj Sekcioj, aŭ Teksto de Antaŭa aŭ Malantaŭa Kovrilo. Vi povas trovi kopio de la GFDL je ĉi tiun ligo aŭ en la dosiero COPYING-DOCS, distribuita kun ĉi tiu manlibro. - Ĉi tiu manlibro estas parto de kolekto de manlibroj de MATE, distribuita sur la GFDL. Se vi ŝatus distribui ĉi tiun manlibron aparte de la kolekto, vi povas fari tion aldonante kopion de la licenso al la manlibro, kiel priskribita je sekcio 6 de la licenso. - - Multaj el la nomoj uzitaj de kompanioj distingui iliaj produktoj kaj servicioj asertis kiel varmarkoj. Tie, kie tiuj nomoj aperas je iu dokumentado de MATE, kaj la membroj de la Projekto de Dokumentado de MATE estas konsciaj pri tiuj, tiam la nomoj estas majusklaj aŭ la unua letero estas majuskla. - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/es/es.po mate-utils-1.26.1/mate-dictionary/help/es/es.po --- mate-utils-1.26.0/mate-dictionary/help/es/es.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es/es.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,30 +1,32 @@ # # Translators: -# Stefano Karapetsas , 2018 -# elio , 2018 -# Wolfgang Ulbrich , 2018 -# Isabel Ortuño , 2018 -# Andres Sanchez , 2018 +# seacat , 2021 +# Stefano Karapetsas , 2021 +# Andres Sanchez , 2021 +# elio , 2021 +# Wolfgang Ulbrich , 2021 +# Isabel Ortuño , 2021 # Toni Estévez , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" "Last-Translator: Toni Estévez , 2021\n" -"Language-Team: Spanish (https://www.transifex.com/mate/teams/13566/es/)\n" +"Language-Team: Spanish (https://app.transifex.com/mate/teams/13566/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" msgstr "" -"Toni Estevez , 2020\n" +"Toni Estevez , 2020-2021\n" +"Adolfo Jayme Barrientos , 2018\n" "Jorge González , 2007-2010\n" "Francisco Javier F. Serrador , 2003-2006\n" "Pablo Gonzalo del Campo , 2002-2003" @@ -579,7 +581,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:394 msgid "The Dictionary Applet" -msgstr "Miniaplicación Diccionario" +msgstr "La miniaplicación Diccionario" #. (itstool) path: sect1/para #: C/index.docbook:396 @@ -699,8 +701,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink @@ -733,10 +735,10 @@ "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" -"Este manual es parte de una colección de manuales de MATE distribuidos " -"conforme a la GFDL. Si quiere distribuir este manual por separado de la " -"colección, puede hacerlo añadiendo una copia de la licencia al manual, tal " -"como se describe en la sección 6 de la licencia." +"Este manual es parte de una colección de manuales de MATE distribuidos bajo " +"la GFDL. Si quiere distribuir este manual por separado de la colección, " +"puede hacerlo añadiendo una copia de la licencia al manual, tal y como se " +"describe en la sección 6 de la licencia." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -747,9 +749,9 @@ "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" -"Muchos de los nombres utilizados por las empresas para distinguir sus " -"productos y servicios se consideran marcas comerciales. Cuando esos nombres " -"aparecen en cualquier documentación de MATE y los miembros del proyecto de " +"Muchos de los nombres usados por las empresas para distinguir sus productos " +"y servicios se consideran marcas comerciales. Cuando esos nombres aparecen " +"en cualquier documentación de MATE y los miembros del proyecto de " "documentación de MATE son conscientes de que se trata de marcas registradas," " dichos nombres se escriben en letras mayúsculas o con inical mayúscula." @@ -768,8 +770,8 @@ "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 DOCUMENTO SE PROPORCIONA «TAL CUAL», SIN GARANTÍA DE NINGÚN TIPO, NI " -"EXPLÍCITA NI IMPLÍCITA, INCLUYENDO, ENTRE OTRAS, LAS GARANTÍAS DE QUE EL " +"EL DOCUMENTO SE PROPORCIONA «TAL CUAL ESTA», SIN GARANTÍA DE NINGÚN TIPO, NI" +" EXPLÍCITA NI IMPLÍCITA, INCLUYENDO, ENTRE OTRAS, LAS GARANTÍAS DE QUE EL " "DOCUMENTO O UNA VERSIÓN MODIFICADA DEL DOCUMENTO CAREZCA DE DEFECTOS " "COMERCIALES, SEA ADECUADO A UN PROPÓSITO PARTICULAR O INCUMPLA ALGUNA " "NORMATIVA. TODO RIESGO EN RELACIÓN CON LA CALIDAD, LA PRECISIÓN Y LA " diff -Nru mate-utils-1.26.0/mate-dictionary/help/es/index.docbook mate-utils-1.26.1/mate-dictionary/help/es/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/es/index.docbook 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,516 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - 2015-2021 Proyecto de documentación de MATE - - 2005 - Emmanuele Bassi - - - - - - Proyecto de documentación de MATE - - - Proyecto de documentación de GNOME - - - - - Equipo de documentación de MATE Escritorio MATE - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Comentarios - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - - - - - Toni Estevez - - toni.estevez@gmail.com - - - - 2020 - - Toni Estevez - - - - - Jorge González - - jorgegonz@svn.gnome.org - - - - 2007-2010 - - Jorge González - - - - - Francisco Javier F. Serrador - - serrador@cvs.gnome.org - - - - 2003-2006 - - Francisco Javier F. Serrador - - - - - Pablo Gonzalo del Campo - - pablodc@bigfoot.com - - - - 2002-2003 - - Pablo Gonzalo del Campo - -
- - - Dictionary - - - - - - Introducción - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Cómo empezar - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Menú Aplicaciones - - Choose Accessories - Dictionary. - - - - - Línea de órdenes - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Uso - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferencias - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Fuentes de diccionario - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transporte - Atributos - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Opciones de Impresión - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - Miniaplicación Diccionario - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Ventana de la miniaplicación Diccionario - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Ventana de la miniaplicación Diccionario - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferencias - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/es/legal.xml mate-utils-1.26.1/mate-dictionary/help/es/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/es/legal.xml 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Se concede permiso para copiar, distribuir y/o modificar este documento según los términos de la Licencia de Documentación Libre (GFDL) de GNU, en la versión 1.1 o en cualquier verisón posterior publicada por la Free Software Foundation, sin secciones invariables ni textos de portada ni de contraportada. Puede encontrar una copia de la GFDL enenlace o en el archivo COPYING-DOCS distribuido con este manual. - Este manual es parte de una colección de manuales de MATE distribuidos conforme a la GFDL. Si quiere distribuir este manual por separado de la colección, puede hacerlo añadiendo una copia de la licencia al manual, tal como se describe en la sección 6 de la licencia. - - Muchos de los nombres utilizados por las empresas para distinguir sus productos y servicios se consideran marcas comerciales. Cuando esos nombres aparecen en cualquier documentación de MATE y los miembros del proyecto de documentación de MATE son conscientes de que se trata de marcas registradas, dichos nombres se escriben en letras mayúsculas o con inical mayúscula. - - EL DOCUMENTO Y LAS VERSIONES MODIFICADAS DEL DOCUMENTO SE PROPORCIONAN SEGÚN LOS TÉRMINOS DE LA LICENCIA DE DOCUMENTACIÓN LIBRE DE GNU CON EL ACUERDO ADICIONAL DE QUE: - - EL DOCUMENTO SE PROPORCIONA «TAL CUAL», SIN GARANTÍA DE NINGÚN TIPO, NI EXPLÍCITA NI IMPLÍCITA, INCLUYENDO, ENTRE OTRAS, LAS GARANTÍAS DE QUE EL DOCUMENTO O UNA VERSIÓN MODIFICADA DEL DOCUMENTO CAREZCA DE DEFECTOS COMERCIALES, SEA ADECUADO A UN PROPÓSITO PARTICULAR O INCUMPLA ALGUNA NORMATIVA. TODO RIESGO EN RELACIÓN CON LA CALIDAD, LA PRECISIÓN Y LA UTILIDAD DEL DOCUMENTO O UNA VERSIÓN MODIFICADA DEL DOCUMENTO RECAE EN USTED. SI EL DOCUMENTO O CUALQUIER VERSIÓN MODIFICADA DEL DOCUMENTO RESULTARA DEFECTUOSO EN CUALQUIER ASPECTO, USTED (Y NO EL REDACTOR INICIAL, EL AUTOR O CUALQUIER CONTRIBUYENTE) ASUMIRÁ TODOS LOS COSTES DE MANTENIMIENTO, REPARACIÓN O CORRECCIÓN NECESARIOS. ESTA RENUNCIA DE GARANTÍA ES UNA PARTE ESENCIAL DE ESTA LICENCIA. NO SE AUTORIZA EL USO DEL DOCUMENTO NI DE CUALQUIER VERSIÓN MODIFICADA DEL DOCUMENTO SALVO EN VIRTUD DE LA PRESENTE CLÁUSULA DE EXENCIÓN DE RESPONSABILIDAD; Y - - - BAJO NINGUNA CIRCUNSTANCIA NI BAJO NINGÚN CONCEPTO LEGAL, YA SEA POR RESPONSABILIDAD CIVIL (INCLUIDA LA NEGLIGENCIA), CONTRACTUAL O DE OTRO TIPO, EL AUTOR, EL REDACTOR INICIAL, CUALQUIER CONTRIBUYENTE O CUALQUIER DISTRIBUIDOR DEL DOCUMENTO O DE UNA VERSIÓN MODIFICADA DEL DOCUMENTO, O CUALQUIER PROVEEDOR DE CUALQUIERA DE DICHAS PARTES, NO SERÁN RESPONSABLES ANTE NINGUNA PERSONA POR NINGÚN DAÑO DIRECTO, INDIRECTO, ESPECIAL, ACCIDENTAL O DERIVADO DE CUALQUIER TIPO, INCLUIDOS, ENTRE OTROS, LOS DAÑOS POR PÉRDIDA DE REPUTACIÓN, INTERRUPCIÓN DEL TRABAJO, FALLO O MAL FUNCIONAMIENTO DEL EQUIPO O CUALQUIER OTRO DAÑO O PÉRDIDA DERIVADO O RELACIONADO CON EL USO DEL DOCUMENTO Y LAS VERSIONES MODIFICADAS DEL DOCUMENTO, INCLUSO SI DICHAS PARTES HAN SIDO INFORMADAS DE LA POSIBILIDAD DE QUE SE PRODUZCAN DICHOS DAÑOS. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_AR/es_AR.po mate-utils-1.26.1/mate-dictionary/help/es_AR/es_AR.po --- mate-utils-1.26.0/mate-dictionary/help/es_AR/es_AR.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_AR/es_AR.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,21 +1,21 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Reshi Starkey , 2018 -# Dario Badagnani , 2018 +# Stefano Karapetsas , 2021 +# Reshi Starkey , 2021 +# Dario Badagnani , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Dario Badagnani , 2018\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mate/teams/13566/es_AR/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Dario Badagnani , 2021\n" +"Language-Team: Spanish (Argentina) (https://app.transifex.com/mate/teams/13566/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -675,8 +675,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_AR/index.docbook mate-utils-1.26.1/mate-dictionary/help/es_AR/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/es_AR/index.docbook 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_AR/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - Proyecto de Documentación para MATE - - - Proyecto de Documentación para GNOME - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Línea de comandos - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferencias - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferencias - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_AR/legal.xml mate-utils-1.26.1/mate-dictionary/help/es_AR/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/es_AR/legal.xml 2021-08-05 19:47:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_AR/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_CL/es_CL.po mate-utils-1.26.1/mate-dictionary/help/es_CL/es_CL.po --- mate-utils-1.26.0/mate-dictionary/help/es_CL/es_CL.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_CL/es_CL.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,22 +1,22 @@ # # Translators: -# Stefano Karapetsas , 2018 -# prflr88 , 2018 -# Alejo_K , 2018 -# Robert Petitpas , 2018 +# Stefano Karapetsas , 2021 +# Pablo Lezaeta Reyes , 2021 +# Alejo_K , 2021 +# Robert Petitpas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Robert Petitpas , 2018\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/mate/teams/13566/es_CL/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Robert Petitpas , 2021\n" +"Language-Team: Spanish (Chile) (https://app.transifex.com/mate/teams/13566/es_CL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_CL\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -674,8 +674,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_CL/index.docbook mate-utils-1.26.1/mate-dictionary/help/es_CL/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/es_CL/index.docbook 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_CL/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Línea de comandos - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Uso - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferencias - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferencias - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_CL/legal.xml mate-utils-1.26.1/mate-dictionary/help/es_CL/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/es_CL/legal.xml 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_CL/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_CO/es_CO.po mate-utils-1.26.1/mate-dictionary/help/es_CO/es_CO.po --- mate-utils-1.26.0/mate-dictionary/help/es_CO/es_CO.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_CO/es_CO.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,21 +1,21 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Sergio Alejandro Bayona Becerra , 2018 -# Julian Borrero , 2018 +# Stefano Karapetsas , 2021 +# Sergio Alejandro Bayona Becerra , 2021 +# Julian Borrero , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Julian Borrero , 2018\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/mate/teams/13566/es_CO/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Julian Borrero , 2021\n" +"Language-Team: Spanish (Colombia) (https://app.transifex.com/mate/teams/13566/es_CO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_CO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -673,8 +673,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_CO/index.docbook mate-utils-1.26.1/mate-dictionary/help/es_CO/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/es_CO/index.docbook 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_CO/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Línea de comandos - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferencias - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferencias - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_CO/legal.xml mate-utils-1.26.1/mate-dictionary/help/es_CO/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/es_CO/legal.xml 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_CO/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_CR/index.docbook mate-utils-1.26.1/mate-dictionary/help/es_CR/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/es_CR/index.docbook 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_CR/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Línea de comandos - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferences - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferences - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_CR/legal.xml mate-utils-1.26.1/mate-dictionary/help/es_CR/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/es_CR/legal.xml 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_CR/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_DO/index.docbook mate-utils-1.26.1/mate-dictionary/help/es_DO/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/es_DO/index.docbook 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_DO/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Línea de comandos - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferences - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferences - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_DO/legal.xml mate-utils-1.26.1/mate-dictionary/help/es_DO/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/es_DO/legal.xml 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_DO/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_EC/index.docbook mate-utils-1.26.1/mate-dictionary/help/es_EC/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/es_EC/index.docbook 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_EC/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Línea de comandos - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferences - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferences - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_EC/legal.xml mate-utils-1.26.1/mate-dictionary/help/es_EC/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/es_EC/legal.xml 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_EC/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_ES/es_ES.po mate-utils-1.26.1/mate-dictionary/help/es_ES/es_ES.po --- mate-utils-1.26.0/mate-dictionary/help/es_ES/es_ES.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_ES/es_ES.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,20 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Jose11091 , 2018 +# Stefano Karapetsas , 2021 +# Jose11091 , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Jose11091 , 2018\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/mate/teams/13566/es_ES/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Jose11091 , 2021\n" +"Language-Team: Spanish (Spain) (https://app.transifex.com/mate/teams/13566/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -674,8 +674,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_ES/index.docbook mate-utils-1.26.1/mate-dictionary/help/es_ES/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/es_ES/index.docbook 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_ES/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Línea de comandos - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferencias - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferencias - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_ES/legal.xml mate-utils-1.26.1/mate-dictionary/help/es_ES/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/es_ES/legal.xml 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_ES/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_MX/es_MX.po mate-utils-1.26.1/mate-dictionary/help/es_MX/es_MX.po --- mate-utils-1.26.0/mate-dictionary/help/es_MX/es_MX.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_MX/es_MX.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,21 +1,21 @@ # # Translators: -# Stefano Karapetsas , 2018 -# jorge becerril , 2018 -# Luis Armando Medina , 2018 +# Stefano Karapetsas , 2021 +# jorge becerril , 2021 +# Luis Armando Medina , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Luis Armando Medina , 2018\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mate/teams/13566/es_MX/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Luis Armando Medina , 2021\n" +"Language-Team: Spanish (Mexico) (https://app.transifex.com/mate/teams/13566/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_MX\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -680,8 +680,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_MX/index.docbook mate-utils-1.26.1/mate-dictionary/help/es_MX/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/es_MX/index.docbook 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_MX/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,565 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - - - - - Luis Armando Medina A. - - contacto@luisarmandomedina.com - - - - 2016 - - Luis Armando Medina A. - - - - - Jorge González - - jorgegonz@svn.gnome.org - - - - 2007-2010 - - Jorge González - - - - - Francisco Javier F. Serrador - - serrador@cvs.gnome.org - - - - 2003-2006 - - Francisco Javier F. Serrador - - - - - Pablo Gonzalo del Campo - - pablodc@bigfoot.com - - - - 2000-2004 - - Pablo Gonzalo del Campo - - - - - Carlos Perelló Marín - - carlos@gnome-db.org - - - - 2000 - - 2002 - - Carlos Perelló Marín - - - - - Ismael Olea - - ismael@olea.org - - - - 2001 - - Ismael Olea - - - - - Jorge Carrasquilla Soares - - jorge@conectiva.com.br - - - - 2000 - - Jorge Carrasquilla Soares - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Línea de comandos - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferencias - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferencias - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_MX/legal.xml mate-utils-1.26.1/mate-dictionary/help/es_MX/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/es_MX/legal.xml 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_MX/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_NI/index.docbook mate-utils-1.26.1/mate-dictionary/help/es_NI/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/es_NI/index.docbook 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_NI/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Línea de comandos - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferences - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferences - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_NI/legal.xml mate-utils-1.26.1/mate-dictionary/help/es_NI/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/es_NI/legal.xml 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_NI/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_PA/index.docbook mate-utils-1.26.1/mate-dictionary/help/es_PA/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/es_PA/index.docbook 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_PA/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Línea de comandos - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferences - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferences - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_PA/legal.xml mate-utils-1.26.1/mate-dictionary/help/es_PA/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/es_PA/legal.xml 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_PA/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_PE/index.docbook mate-utils-1.26.1/mate-dictionary/help/es_PE/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/es_PE/index.docbook 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_PE/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Línea de comandos - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferences - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferences - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_PE/legal.xml mate-utils-1.26.1/mate-dictionary/help/es_PE/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/es_PE/legal.xml 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_PE/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_PR/es_PR.po mate-utils-1.26.1/mate-dictionary/help/es_PR/es_PR.po --- mate-utils-1.26.0/mate-dictionary/help/es_PR/es_PR.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_PR/es_PR.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,20 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Neverest , 2018 +# Stefano Karapetsas , 2021 +# Neverest , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Neverest , 2018\n" -"Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/mate/teams/13566/es_PR/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Neverest , 2021\n" +"Language-Team: Spanish (Puerto Rico) (https://app.transifex.com/mate/teams/13566/es_PR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_PR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -674,8 +674,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_PR/index.docbook mate-utils-1.26.1/mate-dictionary/help/es_PR/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/es_PR/index.docbook 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_PR/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Línea de comandos - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferencias - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferencias - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_PR/legal.xml mate-utils-1.26.1/mate-dictionary/help/es_PR/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/es_PR/legal.xml 2021-08-05 19:47:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_PR/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_SV/index.docbook mate-utils-1.26.1/mate-dictionary/help/es_SV/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/es_SV/index.docbook 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_SV/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Línea de comandos - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferences - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferences - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_SV/legal.xml mate-utils-1.26.1/mate-dictionary/help/es_SV/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/es_SV/legal.xml 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_SV/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_UY/index.docbook mate-utils-1.26.1/mate-dictionary/help/es_UY/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/es_UY/index.docbook 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_UY/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Línea de comandos - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferences - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferences - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_UY/legal.xml mate-utils-1.26.1/mate-dictionary/help/es_UY/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/es_UY/legal.xml 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_UY/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_VE/index.docbook mate-utils-1.26.1/mate-dictionary/help/es_VE/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/es_VE/index.docbook 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_VE/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Línea de comandos - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferences - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferences - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/es_VE/legal.xml mate-utils-1.26.1/mate-dictionary/help/es_VE/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/es_VE/legal.xml 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/es_VE/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/et/et.po mate-utils-1.26.1/mate-dictionary/help/et/et.po --- mate-utils-1.26.0/mate-dictionary/help/et/et.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/et/et.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Ivar Smolin , 2018 +# Ivar Smolin , 2021 +# Stefano Karapetsas , 2021 +# vaba , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Ivar Smolin , 2018\n" -"Language-Team: Estonian (https://www.transifex.com/mate/teams/13566/et/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: vaba , 2021\n" +"Language-Team: Estonian (https://app.transifex.com/mate/teams/13566/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,7 +25,8 @@ "Ilmar Kerm , 2001, 2002.\n" "Tõivo Leedjärv , 2002, 2003.\n" "Priit Laes , 2004–2006, 2008, 2009\n" -"Ivar Smolin , 2005–2010, 2014–2015, 2018." +"Ivar Smolin , 2005–2010, 2014–2015, 2018.\n" +"Marko Silluste, 2021." #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -677,8 +679,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/et/index.docbook mate-utils-1.26.1/mate-dictionary/help/et/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/et/index.docbook 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/et/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,534 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Tagasiside - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - - - - - Ilmar Kerm - - ikerm hot ee - - - - 2001 - - 2002. - - Ilmar Kerm - - - - - Tõivo Leedjärv - - toivo linux ee - - - - 2002 - - 2003. - - Tõivo Leedjärv - - - - - Priit Laes - - plaes plaes org - - - - 2004–2006 - - 2008 - - 2009 - - Priit Laes - - - - - Ivar Smolin - - okul linux ee - - - - 2005–2010 - - 2014–2015 - - 2018. - - Ivar Smolin - -
- - Sõnastik - - - - - Sissejuhatus - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Käsurida - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Kasutus - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Eelistused - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Sõnastikuallikad - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Eelistused - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/et/legal.xml mate-utils-1.26.1/mate-dictionary/help/et/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/et/legal.xml 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/et/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/eu/eu.po mate-utils-1.26.1/mate-dictionary/help/eu/eu.po --- mate-utils-1.26.0/mate-dictionary/help/eu/eu.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/eu/eu.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Asier Iturralde Sarasola , 2018 -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Alexander Gabilondo , 2018 +# Asier Iturralde Sarasola , 2021 +# Stefano Karapetsas , 2021 +# Alexander Gabilondo , 2021 +# Wolfgang Ulbrich , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Alexander Gabilondo , 2018\n" -"Language-Team: Basque (https://www.transifex.com/mate/teams/13566/eu/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Wolfgang Ulbrich , 2021\n" +"Language-Team: Basque (https://app.transifex.com/mate/teams/13566/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -676,8 +676,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/eu/index.docbook mate-utils-1.26.1/mate-dictionary/help/eu/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/eu/index.docbook 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/eu/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATEren dokumentazio-proiektua - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Ohar-bidaltzea - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Sarrera - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Aplikazioak menua - - Choose Accessories - Dictionary. - - - - - Komando-lerroa - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Erabilera - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Hobespenak - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Hiztegiaren iturburuak - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Garraioa - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Hobespenak - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/eu/legal.xml mate-utils-1.26.1/mate-dictionary/help/eu/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/eu/legal.xml 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/eu/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - Eskuliburu hau GFDL lizentziarekin banatzen diren MATE eskuliburuen bildumakoa da. Eskuliburu hau bildumatik bereizita banatu nahi baduzu, bana dezakezu, baina eskuliburuari lizentziaren kopia bat gehitu beharko diozu, lizentzian bertan 6. atalean azaltzen den bezala. - - Enpresek euren produktu eta zerbitzuak bereizteko erabiltzen dituzten izen asko marka erregistratu moduan hartu behar dira. Izen horiek MATEren edozein agiritan agertzen direnean, eta MATEren Dokumentazio Proiektuko kideak marka komertzialak direla konturatu badira, orduan izen horiek maiuskulaz idatzita egongo dira, osorik edo hasierako letra maiuskulaz jarrita. - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/fa/fa.po mate-utils-1.26.1/mate-dictionary/help/fa/fa.po --- mate-utils-1.26.0/mate-dictionary/help/fa/fa.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/fa/fa.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Borderliner , 2018 -# Mahdi Pourghasem , 2018 +# Stefano Karapetsas , 2021 +# Borderliner , 2021 +# Mahdi Pourghasem , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Mahdi Pourghasem , 2018\n" -"Language-Team: Persian (https://www.transifex.com/mate/teams/13566/fa/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Mahdi Pourghasem , 2021\n" +"Language-Team: Persian (https://app.transifex.com/mate/teams/13566/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -673,8 +673,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/fa/index.docbook mate-utils-1.26.1/mate-dictionary/help/fa/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/fa/index.docbook 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/fa/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - سطر فرمان - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - تنظیمات - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - انتقال - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - تنظیمات - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/fa/legal.xml mate-utils-1.26.1/mate-dictionary/help/fa/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/fa/legal.xml 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/fa/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/fi/fi.po mate-utils-1.26.1/mate-dictionary/help/fi/fi.po --- mate-utils-1.26.0/mate-dictionary/help/fi/fi.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/fi/fi.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,18 +1,18 @@ # # Translators: -# Lasse Liehu , 2018 -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Riku Viitanen , 2018 -# nomen omen, 2018 +# Lasse Liehu , 2021 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 +# Riku Viitanen , 2021 +# nomen omen, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: nomen omen, 2018\n" -"Language-Team: Finnish (https://www.transifex.com/mate/teams/13566/fi/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: nomen omen, 2021\n" +"Language-Team: Finnish (https://app.transifex.com/mate/teams/13566/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -680,8 +680,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/fi/index.docbook mate-utils-1.26.1/mate-dictionary/help/fi/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/fi/index.docbook 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/fi/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - Maten dokumentointiprojekti - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Palaute - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Johdanto - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Komentorivi - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Käyttö - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Asetukset - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Sanakirjalähteet - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Siirtoyhteys - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Asetukset - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/fi/legal.xml mate-utils-1.26.1/mate-dictionary/help/fi/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/fi/legal.xml 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/fi/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/fr/fr.po mate-utils-1.26.1/mate-dictionary/help/fr/fr.po --- mate-utils-1.26.0/mate-dictionary/help/fr/fr.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/fr/fr.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,34 +1,35 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Étienne Deparis , 2018 -# Wolfgang Ulbrich , 2018 -# df3de0cb43d289cd23a753345b3743cd_a20684f, 2018 -# Guillaume Fayard , 2018 -# Laurent Napias , 2018 -# bf437f16c5a5796ac2a6f350075b40dc, 2018 -# Firokat Informatique , 2019 -# Tubuntu, 2020 +# Stefano Karapetsas , 2021 +# Tubuntu, 2021 +# Étienne Deparis , 2021 +# Wolfgang Ulbrich , 2021 +# df3de0cb43d289cd23a753345b3743cd_a20684f, 2021 +# bf437f16c5a5796ac2a6f350075b40dc, 2021 +# Laurent Napias, 2021 +# Firokat Informatique , 2021 +# Guillaume Fayard , 2021 +# Laurent Napias , 2021 # Stéphane PETRUS , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" "Last-Translator: Stéphane PETRUS , 2021\n" -"Language-Team: French (https://www.transifex.com/mate/teams/13566/fr/)\n" +"Language-Team: French (https://app.transifex.com/mate/teams/13566/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" msgstr "" -"Contributeurs au projet MATE :\n" +"Contributeurs au projet MATE :\n" "Voir https://www.transifex.com/mate/teams/13566/fr/\n" "\n" "Contributeurs au projet GNOME :\n" @@ -71,13 +72,13 @@ #. (itstool) path: revdescription/para #: C/index.docbook:52 C/index.docbook:96 msgid "MATE Documentation Project" -msgstr "Le projet de documentation MATE" +msgstr "Projet de documentation MATE" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:55 C/index.docbook:104 msgid "GNOME Documentation Project" -msgstr "GNOME Documentation Project" +msgstr "Projet de documentation GNOME" #. (itstool) path: authorgroup/author #: C/index.docbook:60 @@ -128,8 +129,9 @@ "guide/feedback\" type=\"help\">MATE Feedback Page
." msgstr "" "Pour signaler un bug ou faire une suggestion en rapport avec l'environnement" -" de bureau MATE ou ce manuel, suivez les instructions de MATE Feedback Page." +" de bureau MATE ou ce manuel, suivez les instructions de MATE Feedback " +"Page." #. (itstool) path: article/indexterm #: C/index.docbook:121 @@ -171,7 +173,7 @@ #. (itstool) path: varlistentry/term #: C/index.docbook:148 msgid "Applications menu" -msgstr "Menu Applications" +msgstr "Par le menu Applications" #. (itstool) path: listitem/para #: C/index.docbook:150 @@ -185,7 +187,7 @@ #. (itstool) path: varlistentry/term #: C/index.docbook:156 msgid "Command line" -msgstr "Ligne de commande" +msgstr "En ligne de commande" #. (itstool) path: listitem/para #: C/index.docbook:158 @@ -324,7 +326,7 @@ "use, the paper format, the number of copies." msgstr "" "Dans la fenêtre de dialogue Imprimer, vous pouvez " -"sélectionner l'imprimante à utilizer, le format du papier ou le nombre de " +"sélectionner l'imprimante à utiliser, le format du papier ou le nombre de " "copies." #. (itstool) path: sect2/para @@ -344,7 +346,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:235 msgid "Find Text" -msgstr "Chercher du texte" +msgstr "Trouver du texte" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -725,8 +727,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink @@ -762,8 +764,8 @@ " section 6 of the license." msgstr "" "Ce manuel fait partie de la collection de manuels MATE distribués selon les " -"termes de la licence de documentation libre GNU. Si vous souhaitez " -"distribuer ce manuel indépendamment de la collection, vous devez joindre un " +"termes de la Licence GNU de documentation libre. Si vous souhaitez " +"distribuer ce manuel indépendamment de la collection, veuillez joindre un " "exemplaire de la licence au document, comme indiqué dans la section 6 de " "celle-ci." diff -Nru mate-utils-1.26.0/mate-dictionary/help/fr/index.docbook mate-utils-1.26.1/mate-dictionary/help/fr/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/fr/index.docbook 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/fr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,571 +0,0 @@ - - - - - - - -]> - - - -
- - - - Manuel du Dictionnaire - - - Le Dictionnaire vous permet de rechercher des définitions et de corriger l’orthographe des mots. - - - 2015-2021 Projet de documentation MATE - - 2005 - Emmanuele Bassi - - - - - - Le projet de documentation MATE - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - Ce manuel décrit la version 1.10 du dictionnaire. - - Votre avis - Pour signaler un bug ou faire une suggestion en rapport avec l'environnement de bureau MATE ou ce manuel, suivez les instructions de MATE Feedback Page. - - - - - - - Vincent Renardias - - vincent@ldsol.com - - - - 1998-2000. - - Vincent Renardias - - - - - Joaquim Fellmann - - joaquim@hrnet.fr - - - - 2000. - - Joaquim Fellmann - - - - - Christophe Merlet - - redfox@redfoxcenter.org - - - - 2000-2006. - - Christophe Merlet - - - - - Christophe Fergeau - - teuf@users.sourceforge.net - - - - 2002-2003. - - Christophe Fergeau - - - - - Sun G11n - - gnome_int_l10n@ireland.sun.com - - - - 2002. - - Sun G11n - - - - - Robert-André Mauchin - - zebob.m@pengzone.org - - - - 2006-2008. - - Robert-André Mauchin - - - - - Stéphane Raimbault - - stephane.raimbault@gmail.com - - - - 2007. - - Stéphane Raimbault - - - - - Yannick Tailliez - - ytdispatch-libre@yahoo.com - - - - 2008. - - Yannick Tailliez - - - - - Claude Paroz - - claude@2xlibre.net - - - - 2008-2010. - - Claude Paroz - - - - - Gérard Baylard - - gerard dot b at bbox dot fr - - - - 2010 - - Gérard Baylard - -
- - Dictionnaire - - - - - Introduction - - L'application Dictionnaire vous permet de rechercher des mots et des définitions avec une source de dictionnaire. - - - - - - Premiers pas - - - - Démarrer le Dictionnaire - - Vous pouvez démarrer Mate Dictionnaire de la façon suivante: - - - - Menu Applications - - Choisissez Accessoires Dictionnaire. - - - - Ligne de commande - - Exécutez la commande suivante: mate-dictionary - - - - - Lorsque vous démarrez Dictionnaire la fenêtre suivante est affichée: - -
- Fenêtre du dictionnaire - - Montrer la fenêtre principale du Dictionnaire. - -
- -
- -
- - - - Utilisation - - - Rechercher un mot - - Pour rechercher un mot, taper le dans le champ puis appuyer sur Entrer. - - Si une définition pour ce mot est trouvée, elle apparaîtra dans la fenêtre principale: - -
- Fenêtre du dictionnaire - - Montrer la définition à l'intérieur de la fenêtre principale du Dictionnaire. - -
- - Sinon, un message d'erreur apparaîtra, expliquant la nature de celle-ci. - -
- - - Sauvegarder les résultats - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - Pour imprimer les résultats d'une recherche, allez dans FichierImprimer. - - Dans la fenêtre de dialogue Imprimer, vous pouvez sélectionner l'imprimante à utilizer, le format du papier ou le nombre de copies. - - Pour prévisualiser ce que vous allez imprimer, cliquez sur Prévisualisation - - Pour imprimer, cliquez sur Imprimer. - - - - - Chercher du texte - -
- Fenêtre du dictionnaire - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Préférences - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Sources de dictionnaires - -
- Fenêtre du dictionnaire - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Fenêtre du dictionnaire - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Fenêtre du dictionnaire - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Préférences - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/fr/legal.xml mate-utils-1.26.1/mate-dictionary/help/fr/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/fr/legal.xml 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/fr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Permission est accordée de copier, distribuer et/ou modifier ce document selon les termes de la Licence GNU de documentation libre (GFDL), Version 1.1 ou ultérieure publiée par la Free Software Foundation sans section inaltérable, sans texte de première page ni de dernière page de couverture. Vous trouverez une copie (en anglais) de la GFDL en suivant ce lien ou dans le fichier COPYING-DOCS fourni avec le présent manuel. - Ce manuel fait partie de la collection de manuels MATE distribués selon les termes de la licence de documentation libre GNU. Si vous souhaitez distribuer ce manuel indépendamment de la collection, vous devez joindre un exemplaire de la licence au document, comme indiqué dans la section 6 de celle-ci. - - La plupart des noms utilisés par les entreprises pour distinguer leurs produits et services sont des marques déposées. Lorsque ces noms apparaissent dans la documentation MATE et que les membres du projet de Documentation MATE sont informés de l'existence de ces marques déposées, soit ces noms entiers, soit leur première lettre est en majuscule. - - CE DOCUMENT ET SES VERSIONS MODIFIEES SONT FOURNIS SELON LES TERMES DE LA LICENCE GNU FREE DOCUMENTATION EN COMPRENANT QUE : - - LE PRÉSENT DOCUMENT EST FOURNI « TEL QUEL », SANS AUCUNE GARANTIE, EXPRESSE OU IMPLICITE, Y COMPRIS, ET SANS LIMITATION, LES GARANTIES DE BONNE QUALITÉ MARCHANDE OU D'APTITUDE À UN EMPLOI PARTICULIER OU AUTORISÉ DU DOCUMENT OU DE SA VERSION MODIFIÉE. L'UTILISATEUR ASSUME TOUT RISQUE RELATIF À LA QUALITÉ, À LA PERTINENCE ET À LA PERFORMANCE DU DOCUMENT OU DE SA VERSION DE MISE À JOUR. SI LE DOCUMENT OU SA VERSION MODIFIÉE S'AVÉRAIT DÉFECTUEUSE, L'UTILISATEUR (ET NON LE RÉDACTEUR INITIAL, L'AUTEUR, NI TOUT AUTRE PARTICIPANT) ENDOSSERA LES COÛTS DE TOUTE INTERVENTION, RÉPARATION OU CORRECTION NÉCESSAIRE. CETTE DÉNÉGATION DE RESPONSABILITÉ CONSTITUE UNE PARTIE ESSENTIELLE DE CETTE LICENCE. AUCUNE UTILISATION DE CE DOCUMENT OU DE SA VERSION MODIFIÉE N'EST AUTORISÉE AUX TERMES DU PRÉSENT ACCORD, EXCEPTÉ SOUS CETTE DÉNÉGATION DE RESPONSABILITÉ ; - - - EN AUCUNE CIRCONSTANCE ET SOUS AUCUNE INTERPRÉTATION DE LA LOI, QU'IL S'AGISSE DE RESPONSABILITÉ CIVILE (Y COMPRIS LA NÉGLIGENCE), CONTRACTUELLE OU AUTRE, L'AUTEUR, LE RÉDACTEUR INITIAL, TOUT PARTICIPANT ET TOUT DISTRIBUTEUR DE CE DOCUMENT OU DE SA VERSION DE MISE À JOUR AINSI QUE TOUT FOURNISSEUR DE QUELQUE PARTIE QUE CE SOIT NE POURRONT ÊTRE TENUS RESPONSABLES À L'ÉGARD DE QUICONQUE POUR TOUT DOMMAGE DIRECT, INDIRECT, PARTICULIER OU ACCIDENTEL DE TOUT TYPE Y COMPRIS, SANS LIMITATION, LES DOMMAGES LIÉS À LA PERTE DE CLIENTÈLE, AUX ARRÊTS DE TRAVAIL, AUX DÉFAILLANCES ET AUX DYSFONCTIONNEMENTS INFORMATIQUES OU TOUT AUTRE DOMMAGE OU PERTE LIÉE À L'UTILISATION DU PRÉSENT DOCUMENT ET DE SES VERSIONS DE MISE À JOUR, ET CE MÊME SI CES PARTIES ONT ÉTÉ INFORMÉES DE LA POSSIBILITÉ DE TELS DOMMAGES. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/frp/index.docbook mate-utils-1.26.1/mate-dictionary/help/frp/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/frp/index.docbook 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/frp/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Prèfèrences - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Prèfèrences - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/frp/legal.xml mate-utils-1.26.1/mate-dictionary/help/frp/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/frp/legal.xml 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/frp/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/fur/fur.po mate-utils-1.26.1/mate-dictionary/help/fur/fur.po --- mate-utils-1.26.0/mate-dictionary/help/fur/fur.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/fur/fur.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Friulian (https://www.transifex.com/mate/teams/13566/fur/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Friulian (https://app.transifex.com/mate/teams/13566/fur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/fur/index.docbook mate-utils-1.26.1/mate-dictionary/help/fur/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/fur/index.docbook 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/fur/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferencis - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferencis - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/fur/legal.xml mate-utils-1.26.1/mate-dictionary/help/fur/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/fur/legal.xml 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/fur/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/fy/fy.po mate-utils-1.26.1/mate-dictionary/help/fy/fy.po --- mate-utils-1.26.0/mate-dictionary/help/fy/fy.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/fy/fy.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Western Frisian (https://www.transifex.com/mate/teams/13566/fy/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Western Frisian (https://app.transifex.com/mate/teams/13566/fy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -674,8 +674,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/fy/index.docbook mate-utils-1.26.1/mate-dictionary/help/fy/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/fy/index.docbook 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/fy/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Ynstellingen - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Ynstellingen - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/fy/legal.xml mate-utils-1.26.1/mate-dictionary/help/fy/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/fy/legal.xml 2021-08-05 19:47:29.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/fy/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ga/ga.po mate-utils-1.26.1/mate-dictionary/help/ga/ga.po --- mate-utils-1.26.0/mate-dictionary/help/ga/ga.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ga/ga.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Irish (https://www.transifex.com/mate/teams/13566/ga/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Irish (https://app.transifex.com/mate/teams/13566/ga/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -674,8 +674,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ga/index.docbook mate-utils-1.26.1/mate-dictionary/help/ga/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ga/index.docbook 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ga/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Líne na n-orduithe - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Úsáid - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Sainroghanna - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Foinsí Foclóra - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Sainroghanna - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ga/legal.xml mate-utils-1.26.1/mate-dictionary/help/ga/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ga/legal.xml 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ga/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/gl/gl.po mate-utils-1.26.1/mate-dictionary/help/gl/gl.po --- mate-utils-1.26.0/mate-dictionary/help/gl/gl.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/gl/gl.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Robert Antoni Buj i Gelonch , 2019 # Miguel Anxo Bouzada , 2021 +# Robert Antoni Buj i Gelonch , 2021 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Miguel Anxo Bouzada , 2021\n" -"Language-Team: Galician (https://www.transifex.com/mate/teams/13566/gl/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Wolfgang Ulbrich , 2021\n" +"Language-Team: Galician (https://app.transifex.com/mate/teams/13566/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -695,8 +695,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/gl/index.docbook mate-utils-1.26.1/mate-dictionary/help/gl/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/gl/index.docbook 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/gl/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,464 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - 2015-2021 Proxecto de documentación do MATE - - 2005 - Emmanuele Bassi - - - - - - Proxecto de documentación do MATE - - - Proxecto de documentación do GNOME - - - - - Equipo de documentación do MATE Escritorio Mate - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Comentarios - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introdución - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Comezando - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Menú de aplicacións - - Choose Accessories - Dictionary. - - - - - Liña de ordes - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Uso - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferencias - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Orixes de dicionarios - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transporte - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - A miniaplicación Dicionario - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Xanela da miniaplicación Dicionario - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Xanela da miniaplicación Dicionario - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferencias - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/gl/legal.xml mate-utils-1.26.1/mate-dictionary/help/gl/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/gl/legal.xml 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/gl/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Autorízase a copia, distribución e/ou modificación deste documento baixo os termos da Licenza de Documentación Libre de GNU (GFDL), versión 1.1 ou calquera outra versión posterior publicada pola Free Software Foundation sen seccións invariantes, sen textos de cuberta e sen textos de cuberta traseira. Pode atopar unha copia da GFDL en ligazón ou no ficheiro COPYING-DOCS distribuído con este manual. - Este manual forma parte da colección de manuais MATE distribuídos baixo a licenza GFDL. Se quere distribuír este manual separadamente da colección, pode facelo engadindo unha copia da licenza ao manual, tal e como está descrito na sección 6 da licenza. - - Moitos dos nomes utilizados polas empresas para distinguir os seus produtos e servizos son reivindicados como marcas comerciais. Cando estes nomes aparecen en calquera documentación de MATE e os membros do Proxecto de documentación de MATE son conscientes das marcas rexistradas, os nomes están en letras maiúsculas ou maiúsculas iniciais. - - O DOCUMENTO E AS VERSIÓNS MODIFICADAS DO DOCUMENTO FORNÉCENSE BAIXO OS TERMOS DA LICENZA LIBRE DE DOCUMENTACIÓN DE GNU CO ACORDO ADICIONAL DE: - - O DOCUMENTO FORNÉCESE «TAL E COMO É», SEN GARANTÍA DE NINGÚN TIPO, NIN EXPLÍCITA NIN IMPLÍCITA INCLUÍNDO, SEN LIMITACIÓN, GARANTÍA DE QUE O DOCUMENTO OU VERSIÓN MODIFICADA DESTE CAREZA DE DEFECTOS COMERCIAIS, SEXA AXEITADO A UN FIN CONCRETO OU INCUMPRA ALGUNHA NORMATIVA. TODO O RISCO RELATIVO Á CALIDADE, PRECISIÓN E UTILIDADE DO DOCUMENTO OU A SÚA VERSIÓN MODIFICADA RECAE EN VOSTEDE. SE CALQUERA DOCUMENTO OU VERSIÓN MODIFICADA DAQUEL RESULTARA DEFECTUOSO EN CALQUERA ASPECTO, VOSTEDE (E NON O REDACTOR INICIAL, AUTOR OU COLABORADOR) ASUMIRÁ OS CUSTOS DE TODA REPARACIÓN, MANTEMENTO OU CORRECCIÓN NECESARIOS. ESTA RENUNCIA DE GARANTÍA É UNHA PARTE ESENCIAL DESTA LICENZA. NON SE AUTORIZA O USO DE NINGÚN DOCUMENTO NIN VERSIÓN MODIFICADA DESTE POLO PRESENTE, SALVO DENTRO DO CUMPRIMENTO DA RENUNCIA; E - - - BAIXO NINGUNHA CIRCUNSTANCIA NIN BAIXO NINGUNHA TEORÍA LEGAL, SEXA POR ERRO (INCLUÍNDO NEGLIXENCIA), CONTRATO OU DE ALGÚN OUTRO MODO, O AUTOR, O ESCRITOR INICIAL, CALQUERA COLABORADOR, OU CALQUERA DISTRIBUIDOR DO DOCUMENTO OU VERSIÓN MODIFICADA DO DOCUMENTO, OU CALQUERA PROVEDOR DE CALQUERA DESAS PARTES, SERÁ RESPONSÁBEL ANTE NINGUNHA PERSOA POR NINGÚN DANO DIRECTO, INDIRECTO, ESPECIAL, INCIDENTAL OU DERIVADO DE NINGÚN TIPO, INCLUÍNDO, SEN LIMITACIÓN DANOS POR PERDA DE MERCANCÍAS, PARO TÉCNICO, FALLO INFORMÁTICO OU MAL FUNCIONAMENTO OU CALQUERA OUTRO POSÍBEL DANO OU PERDAS DERIVADAS OU RELACIONADAS CO USO DO DOCUMENTO OU AS SÚAS VERSIÓNS MODIFICADAS, AÍNDA QUE DITA PARTE TEÑA SIDO INFORMADA DA POSIBILIDADE DE QUE SE PRODUCISEN DITOS DANOS. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/gu/gu.po mate-utils-1.26.1/mate-dictionary/help/gu/gu.po --- mate-utils-1.26.0/mate-dictionary/help/gu/gu.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/gu/gu.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Milan Savaliya , 2018 +# Stefano Karapetsas , 2021 +# Milan Savaliya , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Milan Savaliya , 2018\n" -"Language-Team: Gujarati (https://www.transifex.com/mate/teams/13566/gu/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Milan Savaliya , 2021\n" +"Language-Team: Gujarati (https://app.transifex.com/mate/teams/13566/gu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -672,8 +672,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/gu/index.docbook mate-utils-1.26.1/mate-dictionary/help/gu/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/gu/index.docbook 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/gu/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - પરિચય - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - આદેશ વાક્ય - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - વપરાશ - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - પસંદગીઓ - - To change the Dictionary application - preferences, choose EditPreferences. - - - - શબ્દકોષ સ્રોતો - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - પરિવહન - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - પસંદગીઓ - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/gu/legal.xml mate-utils-1.26.1/mate-dictionary/help/gu/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/gu/legal.xml 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/gu/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ha/ha.po mate-utils-1.26.1/mate-dictionary/help/ha/ha.po --- mate-utils-1.26.0/mate-dictionary/help/ha/ha.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ha/ha.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Hausa (https://www.transifex.com/mate/teams/13566/ha/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Hausa (https://app.transifex.com/mate/teams/13566/ha/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ha/index.docbook mate-utils-1.26.1/mate-dictionary/help/ha/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ha/index.docbook 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ha/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Fifiko - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Fifiko - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ha/legal.xml mate-utils-1.26.1/mate-dictionary/help/ha/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ha/legal.xml 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ha/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/he/he.po mate-utils-1.26.1/mate-dictionary/help/he/he.po --- mate-utils-1.26.0/mate-dictionary/help/he/he.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/he/he.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,18 @@ # # Translators: -# Stefano Karapetsas , 2018 -# בר בוכובזה , 2018 -# Yaron Shahrabani , 2020 -# shy tzedaka , 2020 +# Yaron Shahrabani , 2021 +# Stefano Karapetsas , 2021 +# בר בוכובזה , 2021 +# shy tzedaka , 2021 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: shy tzedaka , 2020\n" -"Language-Team: Hebrew (https://www.transifex.com/mate/teams/13566/he/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e , 2021\n" +"Language-Team: Hebrew (https://app.transifex.com/mate/teams/13566/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -21,7 +22,9 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Yaron Shahrabani " +msgstr "" +"Yaron Shahrabani \n" +"Omer I.S. " #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -114,7 +117,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:128 msgid "Introduction" -msgstr "היכרות" +msgstr "מבוא" #. (itstool) path: sect1/para #: C/index.docbook:130 @@ -126,7 +129,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:137 msgid "Getting Started" -msgstr "מההתחלה" +msgstr "מדריך התחלה" #. (itstool) path: sect2/title #: C/index.docbook:141 @@ -154,7 +157,7 @@ #. (itstool) path: varlistentry/term #: C/index.docbook:156 msgid "Command line" -msgstr "שורת פקודה" +msgstr "שורת הפקודה" #. (itstool) path: listitem/para #: C/index.docbook:158 @@ -674,8 +677,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/he/index.docbook mate-utils-1.26.1/mate-dictionary/help/he/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/he/index.docbook 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/he/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - מיזם התיעוד של MATE - - - מיזם התיעוד של GNOME - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - משוב - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - היכרות - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - מההתחלה - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - שורת פקודה - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - בשימוש - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - העדפות - - To change the Dictionary application - preferences, choose EditPreferences. - - - - מקורות מילון - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - תעבורה - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - העדפות - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/he/legal.xml mate-utils-1.26.1/mate-dictionary/help/he/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/he/legal.xml 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/he/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/hi/hi.po mate-utils-1.26.1/mate-dictionary/help/hi/hi.po --- mate-utils-1.26.0/mate-dictionary/help/hi/hi.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/hi/hi.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Sadgamaya , 2018 -# Panwar108 , 2018 +# Stefano Karapetsas , 2021 +# Sadgamaya , 2021 +# Panwar108 , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Panwar108 , 2018\n" -"Language-Team: Hindi (https://www.transifex.com/mate/teams/13566/hi/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Panwar108 , 2021\n" +"Language-Team: Hindi (https://app.transifex.com/mate/teams/13566/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -349,7 +349,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:269 C/index.docbook:459 msgid "Preferences" -msgstr "वरीयताएँ" +msgstr "सेटिंग्स" #. (itstool) path: sect1/para #: C/index.docbook:271 @@ -677,8 +677,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/hi/index.docbook mate-utils-1.26.1/mate-dictionary/help/hi/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/hi/index.docbook 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/hi/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE प्रलेखन योजना - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - परिचय - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - कमांड लाइन - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - उपयोग - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - वरीयताएँ - - To change the Dictionary application - preferences, choose EditPreferences. - - - - शब्दकोश श्रोत - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - परिवहन - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - वरीयताएँ - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/hi/legal.xml mate-utils-1.26.1/mate-dictionary/help/hi/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/hi/legal.xml 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/hi/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/hr/hr.po mate-utils-1.26.1/mate-dictionary/help/hr/hr.po --- mate-utils-1.26.0/mate-dictionary/help/hr/hr.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/hr/hr.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Elvis M. Lukšić , 2018 -# Ivica Kolić , 2019 -# Radovan Gundulić , 2020 +# Ivica Kolić , 2021 +# Stefano Karapetsas , 2021 +# Elvis M. Lukšić , 2021 +# Radovan Gundulić , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Radovan Gundulić , 2020\n" -"Language-Team: Croatian (https://www.transifex.com/mate/teams/13566/hr/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Radovan Gundulić , 2021\n" +"Language-Team: Croatian (https://app.transifex.com/mate/teams/13566/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -182,7 +182,7 @@ #. (itstool) path: varlistentry/term #: C/index.docbook:156 msgid "Command line" -msgstr "Ime domene" +msgstr "Naredbeni redak" #. (itstool) path: listitem/para #: C/index.docbook:158 @@ -705,8 +705,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/hr/index.docbook mate-utils-1.26.1/mate-dictionary/help/hr/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/hr/index.docbook 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/hr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,444 +0,0 @@ - - - - - - - -]> - - - -
- - - - Priručnik rječnika - - - Rječnik vam omogućava da pogledate definicije i ispravite pravopis riječi. - - - - 2015-2021 - MATE Documentation Project - - 2005 Emmanuele Bassi - - - - - MATE dokumentacijski projekt - - - GNOME dokumentacijski projekt - - - - - - MATE Documentation Team - - Mate desktop - - - Emmanuele Bassi
ebassi@gmail.com
- - - -
- - - Priručnik rječnika V1.10.0 Srpanj 2015 - Wolfgang Ulbrich - MATE dokumentacijski projekt - - Priručnik rječnika V1.10.0 Srpanj 2015 - Emmanuele Bassi - GNOME dokumentacijski projekt - - - - Ovaj priručnik opisuje inačicu 1.10 rječnika. - - Povratne informacije - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - Rječnik - - - - - Uvod - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Započnimo - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Ime domene - - Izvrši slijedeću naredbu: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Prozor rječnika - - Shows Dictionary main window. - -
- -
- -
- - - - Upotreba - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Prozor rječnika - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Nađi tekst - -
- Prozor rječnika - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Prilagodbe - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Izvori rječnika - -
- Prozor rječnika - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Prozor rječnika - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Prijenos - Atributi - - - - - Poslužitelj rječnika - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Prozor rječnika - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Prilagodbe - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/hr/legal.xml mate-utils-1.26.1/mate-dictionary/help/hr/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/hr/legal.xml 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/hr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/hu/hu.po mate-utils-1.26.1/mate-dictionary/help/hu/hu.po --- mate-utils-1.26.0/mate-dictionary/help/hu/hu.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/hu/hu.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,21 +1,21 @@ # # Translators: -# KAMI KAMI , 2018 -# Rezső Páder , 2018 -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Falu , 2018 -# Robert Antoni Buj i Gelonch , 2019 -# Balázs Meskó , 2019 -# Csaba Székely , 2019 +# Rezső Páder , 2021 +# Robert Antoni Buj i Gelonch , 2021 +# Stefano Karapetsas , 2021 +# clefebvre , 2021 +# Wolfgang Ulbrich , 2021 +# Falu , 2021 +# Balázs Meskó , 2021 +# Csaba Székely , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Csaba Székely , 2019\n" -"Language-Team: Hungarian (https://www.transifex.com/mate/teams/13566/hu/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Csaba Székely , 2021\n" +"Language-Team: Hungarian (https://app.transifex.com/mate/teams/13566/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -26,19 +26,19 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"Dvornik László\n" -"Kelemen Gábor\n" -"Tímár András\n" -"Kalman „KAMI” Szalai\n" -"Falu\n" -"Rezső Páder\n" -"Zoltán Rápolthy\n" -"Meskó Balázs " +"Dvornik László \n" +"Kelemen Gábor \n" +"Kalman „KAMI” Szalai \n" +"Falu \n" +"Rezső Páder \n" +"Zoltán Rápolthy \n" +"Meskó Balázs \n" +"Tímár András " #. (itstool) path: articleinfo/title #: C/index.docbook:24 msgid "Dictionary Manual" -msgstr "Szótár leírása" +msgstr "Szótár útmutató" #. (itstool) path: abstract/para #: C/index.docbook:27 @@ -283,8 +283,8 @@ "Otherwise, an error dialog will appear, with a message explaining the nature" " of the error." msgstr "" -"Egyébként egy hiba párbeszédablak jelenik meg egy üzenettel, ami a hiba " -"természetét magyarázza el." +"Egyébként egy hiba párbeszédablak jelenik meg egy üzenettel, ami " +"elmagyarázza a hiba természetét." #. (itstool) path: sect2/title #: C/index.docbook:213 @@ -746,14 +746,14 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink #: C/legal.xml:9 msgid "link" -msgstr "hivatkozással" +msgstr "link" #. (itstool) path: legalnotice/para #: C/legal.xml:2 diff -Nru mate-utils-1.26.0/mate-dictionary/help/hu/index.docbook mate-utils-1.26.1/mate-dictionary/help/hu/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/hu/index.docbook 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/hu/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,416 +0,0 @@ - - - - - - - -]> - - - -
- - - - Szótár leírása - - - A Szótár segítségével kikeresheti a szavak definícióját és a helyes leírásukat. - - - - 2015-2021 - MATE Documentation Project - - 2005 Emmanuele Bassi - - - - - MATE dokumentációs projekt - - - GNOME dokumentációs projekt - - - - - - MATE Documentation Team - - Mate desktop - - - Emmanuele Bassi
ebassi@gmail.com
- - - -
- - - Szótár útmutató V1.10.0 2015. július - Wolfgang Ulbrich - MATE dokumentációs projekt - - Szótár útmutató V1.10.0 2015. július - Emmanuele Bassi - GNOME dokumentációs projekt - - - - Ez az útmutató a Szótár 1.10-es verzióját mutatja be. - - Visszajelzés - Hiba jelentéséhez vagy javaslat tételéhez a Szótárral kapcsolatban, kövesse a MATE visszajelzési oldalon leírtakat. - - - -
- - Szótár - - - - - Bevezetés - - A Szótár alkalmazással szavakat és kifejezéseket kereshet egy szótárforrásban. - - - - - - Kezdő lépések - - - - A Szótár indítása - - A Szótárat a következő módokon lehet elindítani: - - - - Alkalmazások menü - - Válassza ki a Kellékek Szótár menüelemet. - - - - Parancssor - - Futtassa a következő parancsot: mate-dictionary - - - - - Ha elindította, akkor megjelenik a Szótár ablak: - -
- Szótár ablak - - A Szótár főablakát mutatja. - -
- -
- -
- - - - Használat - - - Egy szó keresése - - Egy szó kereséséhez írjon bele a bemeneti mezőbe és nyomja meg az Enter gombot. - - Ha megtalálta a szó definícióját, akkor megjelenik a fő ablakterületen: - -
- Szótár ablak - - Egy definíciót mutat a Szótár főablakában. - -
- - Egyébként egy hiba párbeszédablak jelenik meg egy üzenettel, ami a hiba természetét magyarázza el. - -
- - - Keresési találatok mentése - - A keresés eredményének mentéséhez válassza a FájlMásolat mentése lehetőséget. Adjon meg egy nevet a Másolat mentése párbeszédablakon, és kattintson a Mentés gombra. - - - - - Keresési találatok nyomtatása - - A keresés eredményének mentéséhez válassza a FájlNyomtatás lehetőséget. - - A Nyomtatás párbeszédablakon kiválaszthatja a használandó nyomtatót, papírformátumok és a másolatok számát. - - A nyomtatás előnézetének megtekintéséhez kattintson az Előnézet gombra. - - A nyomtatáshoz kattintson a Nyomtatás gombra. - - - - - Szöveg keresése - -
- Szótár ablak - - A Szótár keresési paneljét mutatja a főablakon belül. - -
- - - A keresési találaton belüli szöveges kereséshez végezze el a következő lépéseket: - - - Válassza a Szerkesztés Keresés menüelemet a Keresés panel megjelenítéséhez. - Írja be a keresendő szöveget a Keresés bemeneti mezőbe. - A szöveg következő előfordulásának megkereséséhez kattintson a Következő gombra. A szöveg előző előfordulásának megkereséséhez kattintson az Előző gombra. - - -
- -
- - - - Beállítások - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Szótárforrások - -
- Szótár ablak - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Új forrás hozzáadása - -
- Szótár ablak - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Átvitel - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Nyomtatási beállítások - -
- Szótár ablak - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - A kívánt betű stílusának és méretének kiválasztása - KattintsonRendben - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Beállítások - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/hu/legal.xml mate-utils-1.26.1/mate-dictionary/help/hu/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/hu/legal.xml 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/hu/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Jelen dokumentum szabadon másolható, terjeszthető és/vagy módosítható a GNU Free Documentation License (GFDL) 1.1-es verziója vagy a Free Software Foundation által kiadott ennél frissebb verziója alatt, a "Nem változtatható szakaszok", "Címlapszövegek" és a "Hátlapszövegek" kivételével. A GFDL leírása ezzel a hivatkozással érhető el, vagy a jelen dokumentációban található COPYING-DOCS fájlban. - Ez a kézikönyv része a GFDL alatt megjelenő MATE dokumentációk gyűjteményének. A kézikönyv a gyűjteménytől függetlenül szabadon terjeszthető, a licenc másolatát mellékelve a 6. szakaszban leírtaknak megfelelően. - - A cégek különböző, védjegy alá tartozó elnevezéseket használnak termékeik és szolgáltatásuk megkülönböztetéséhez. Ahol ezek a nevek megjelennek bármelyik MATE dokumentációban és a MATE dokumentációs projekt tagjainak tudomásuk van a védjegyről, abban az esetben ezek az elnevezések teljes egészében vagy kezdőbetűik nagybetűsek. - - A DOKUMENTUM ÉS A DOKUMENTUM MÓDOSÍTOTT VERZIÓI A GNU FREE DOCUMENTATION LICENSE FELTÉTELEI SZERINT KERÜLNEK KÖZREADÁSRA, A TOVÁBBIAK ISMERETÉBEN: - - A DOKUMENTUM „JELEN ÁLLAPOTÁBAN” KERÜL KIADÁSRA MINDENFÉLE GARANCIAVÁLLALÁS NÉLKÜL, LEGYEN AZ KIFEJEZETT VAGY BELEÉRTETT, BELEÉRTVE, DE NEM KIZÁRÓLAGOSAN A FORGALOMBA HOZHATÓSÁGRA VAGY ALKALMAZHATÓSÁGRA, A JELEN DOKUMENTUMNAK VAGY ANNAK MÓDOSÍTOTT VERZIÓJÁNAK HIBAMENTESSÉGÉRE VONATKOZÓ GARANCIÁKAT. A DOKUMENTUM VAGY ANNAK MÓDOSÍTOTT VÁLTOZATÁNAK MINŐSÉGÉBŐL ÉS FELHASZNÁLHATÓSÁGÁBÓL FAKADÓ ÖSSZES KOCKÁZAT A FELHASZNÁLÓT TERHELI. HA A DOKUMENTUM BIZONYÍTOTTAN HIBÁS, A FELHASZNÁLÓNAK MAGÁNAK (NEM A DOKUMENTUM ÍRÓJÁNAK, KIADÓJÁNAK VAGY BÁRMELY KÖZREMŰKÖDŐNEK) KELL VÁLLALNIA A JAVÍTÁSHOZ SZÜKSÉGES MINDEN KÖLTSÉGET. A JELEN GARANCIAELUTASÍTÁS A JELEN LICENC LÉNYEGI RÉSZE. A LEFEDETT DOKUMENTUM VAGY ANNAK MÓDOSÍTOTT VERZIÓJÁNAK HASZNÁLATA CSAK A JELEN ELUTASÍTÁSSAL EGYÜTT ENGEDÉLYEZETT, ÉS - - - SEMMILYEN KÖRÜLMÉNYEK KÖZÖTT ÉS SEMMILYEN JOGI MEGFONTOLÁSBÓL, LEGYEN AZ MAGÁNJOGI VÉTKES CSELEKMÉNY (BELEÉRTVE A HANYAGSÁGOT), SZERZŐDÉS VAGY BÁRMELY MÁS DOLOG, NEM FELELŐS ÖN, A LEFEDETT KÓD ELSŐ FEJLESZTŐJE ÉS TÖBBI KÖZREMŰKÖDŐJE VAGY EZEK BÁRMELY SZÁLLÍTÓJA SEMMILYEN MÁS SZEMÉLY FELÉ SEMMILYEN FAJTA KÖZVETLEN, SPECIÁLIS, VÉLETLEN VAGY KÖVETKEZMÉNYES KÁRÉRT, BELEÉRTVE DE NEM KIZÁRÓLAG A HÍRNÉV ELVESZTÉSÉBŐL, MUNKA LEÁLLÁSÁBÓL, SZÁMÍTÓGÉP MEGHIBÁSODÁSÁBÓL VAGY HELYTELEN MŰKÖDÉSÉBŐL SZÁRMAZÓ, VAGY BÁRMELY EGYÉB KERESKEDELMI KÁROKAT ÉS VESZTESÉGEKET, MÉG AKKOR IS, HA AZ ILYEN FÉL INFORMÁLVA LETT AZ ILYEN KÁROK ELŐFORDULÁSÁNAK LEHETŐSÉGÉRŐL. A FELELŐSSÉG EZEN KORLÁTOZÁSA NEM ALKALMAZHATÓ ABBAN AZ ESETBEN, HA HALÁL VAGY SZEMÉLYI SÉRÜLÉS TÖRTÉNT A FÉL HANYAGSÁGÁBÓL KIFOLYÓLAG, OLYAN MÉRTÉKBEN, AMENNYIRE AZ ALKALMAZHATÓ TÖRVÉNYEK MEGTILTJÁK AZ ILYEN KORLÁTOZÁSOKAT. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/hy/hy.po mate-utils-1.26.1/mate-dictionary/help/hy/hy.po --- mate-utils-1.26.0/mate-dictionary/help/hy/hy.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/hy/hy.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Siranush , 2018 -# Avag Sayan , 2020 +# Stefano Karapetsas , 2021 +# Siranush , 2021 +# Avag Sayan , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Avag Sayan , 2020\n" -"Language-Team: Armenian (https://www.transifex.com/mate/teams/13566/hy/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Avag Sayan , 2021\n" +"Language-Team: Armenian (https://app.transifex.com/mate/teams/13566/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,7 +20,7 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "թարգմանչի կրեդիտներ" +msgstr "թարգմանչի երախտիք" #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -673,8 +673,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/hy/index.docbook mate-utils-1.26.1/mate-dictionary/help/hy/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/hy/index.docbook 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/hy/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE փաստաթղթավորման նախագիծ - - - GNOME փաստաթղթավորման նախագիծ - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Արձագանք - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Հրամանի տող - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Օգտագործում - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Հատկություններ - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Բառարանի Աղբյուրներ - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Տրանսպորտ - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Հատկություններ - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/hy/legal.xml mate-utils-1.26.1/mate-dictionary/help/hy/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/hy/legal.xml 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/hy/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ia/ia.po mate-utils-1.26.1/mate-dictionary/help/ia/ia.po --- mate-utils-1.26.0/mate-dictionary/help/ia/ia.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ia/ia.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Tea Coba , 2018 -# SoftInterlingua <>, 2020 +# SoftInterlingua <>, 2021 +# Tea Coba , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: SoftInterlingua <>, 2020\n" -"Language-Team: Interlingua (https://www.transifex.com/mate/teams/13566/ia/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Tea Coba , 2021\n" +"Language-Team: Interlingua (https://app.transifex.com/mate/teams/13566/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -672,8 +672,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ia/index.docbook mate-utils-1.26.1/mate-dictionary/help/ia/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ia/index.docbook 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ia/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferentias - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferentias - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ia/legal.xml mate-utils-1.26.1/mate-dictionary/help/ia/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ia/legal.xml 2021-08-05 19:47:30.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ia/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/id/id.po mate-utils-1.26.1/mate-dictionary/help/id/id.po --- mate-utils-1.26.0/mate-dictionary/help/id/id.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/id/id.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,18 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Willy Sudiarto Raharjo , 2018 -# Wolfgang Ulbrich , 2018 -# Kukuh Syafaat , 2018 -# Chotibul Studio , 2020 -# Andika Triwidada , 2021 +# Stefano Karapetsas , 2021 +# Willy Sudiarto Raharjo , 2021 +# Aril Apria Susanto , 2021 +# Wolfgang Ulbrich , 2021 +# Andika Triwidada , 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Andika Triwidada , 2021\n" -"Language-Team: Indonesian (https://www.transifex.com/mate/teams/13566/id/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Andika Triwidada , 2022\n" +"Language-Team: Indonesian (https://app.transifex.com/mate/teams/13566/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -28,19 +27,21 @@ "Ahmad Riza H Nst \n" "Dirgita \n" "Tim MATE Indonesia \n" -"Kukuh Syafaat , 2017." +"Kukuh Syafaat , 2017.\n" +"Andika Triwidada , 2020-2022.\n" +"Triyan W. Nugroho , 2021." #. (itstool) path: articleinfo/title #: C/index.docbook:24 msgid "Dictionary Manual" -msgstr "" +msgstr "Manual Kamus" #. (itstool) path: abstract/para #: C/index.docbook:27 msgid "" "Dictionary enables you to look up definitions and correct spellings of " "words." -msgstr "" +msgstr "Kamus memungkinkan Anda mencari definisi dan memperbaiki ejaan kata." #. (itstool) path: articleinfo/copyright #: C/index.docbook:33 @@ -50,7 +51,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:37 msgid "2005 Emmanuele Bassi" -msgstr "" +msgstr "2005 Emmanuele Bassi" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -79,6 +80,8 @@ "Emmanuele Bassi " "
ebassi@gmail.com
" msgstr "" +"Emmanuele Bassi " +"
ebassi@gmail.com
" #. (itstool) path: revdescription/para #: C/index.docbook:94 @@ -91,16 +94,18 @@ "Dictionary Manual V1.10.0 July 2015 " "<_:revdescription-1/>" msgstr "" +"Manual Kamus V1.10.0 Juli 2015 " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:103 msgid "Emmanuele Bassi" -msgstr "" +msgstr "Emmanuele Bassi" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:109 msgid "This manual describes version 1.10 of Dictionary." -msgstr "" +msgstr "Manual ini menjelaskan versi 1.10 dari Kamus." #. (itstool) path: legalnotice/title #: C/index.docbook:111 @@ -114,11 +119,14 @@ " this manual, follow the directions in the MATE Feedback Page." msgstr "" +"Untuk melaporkan bug atau membuat saran mengenai aplikasi Kamus atau manual " +"ini, ikuti petunjuk di Halaman Umpan Balik MATE." #. (itstool) path: article/indexterm #: C/index.docbook:121 msgid "Dictionary" -msgstr "" +msgstr "Kamus" #. (itstool) path: sect1/title #: C/index.docbook:128 @@ -131,22 +139,26 @@ "The Dictionary application enables you to search " "words and terms on a dictionary source." msgstr "" +"Aplikasi Kamus memungkinkan Anda mencari kata dan" +" istilah pada suatu sumber kamus." #. (itstool) path: sect1/title #: C/index.docbook:137 msgid "Getting Started" -msgstr "Mulai" +msgstr "Memulai" #. (itstool) path: sect2/title #: C/index.docbook:141 msgid "To Start Dictionary" -msgstr "" +msgstr "Untuk Memulai Kamus" #. (itstool) path: sect2/para #: C/index.docbook:143 msgid "" "You can start Dictionary in the following ways:" msgstr "" +"Anda dapat memulai Kamus dengan cara-cara " +"berikut:" #. (itstool) path: varlistentry/term #: C/index.docbook:148 @@ -159,6 +171,8 @@ "Choose Accessories " "Dictionary." msgstr "" +"Pilih Aksesori " +"Kamus." #. (itstool) path: varlistentry/term #: C/index.docbook:156 @@ -168,19 +182,19 @@ #. (itstool) path: listitem/para #: C/index.docbook:158 msgid "Execute the following command: mate-dictionary" -msgstr "" +msgstr "Jalankan perintah berikut: mate-dictionary" #. (itstool) path: sect2/para #: C/index.docbook:163 msgid "" "Once started, the Dictionary window is displayed:" -msgstr "" +msgstr "Sekali dimulai, jendela Kamus ditampilkan:" #. (itstool) path: figure/title #: C/index.docbook:167 C/index.docbook:196 C/index.docbook:238 #: C/index.docbook:279 C/index.docbook:299 C/index.docbook:368 msgid "Dictionary Window" -msgstr "" +msgstr "Jendela Kamus" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -193,6 +207,8 @@ "external ref='figures/mate-dictionary-application.png' " "md5='fb48a9e5863bfb2b3811df2e28489eb7'" msgstr "" +"external ref='figures/mate-dictionary-application.png' " +"md5='fb48a9e5863bfb2b3811df2e28489eb7'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:169 @@ -201,6 +217,9 @@ " format=\"PNG\"/> Shows Dictionary main " "window." msgstr "" +" Menampilkan jendela " +"utama Kamus." #. (itstool) path: sect1/title #: C/index.docbook:184 @@ -210,7 +229,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:187 msgid "Looking up a word" -msgstr "" +msgstr "Mencari suatu kata" #. (itstool) path: sect2/para #: C/index.docbook:189 @@ -218,6 +237,8 @@ "To look up a word, type it into the entry field and " "press Enter." msgstr "" +"Untuk mencari suatu kata, ketikkan saja ke dalam ruas " +"entri dan tekan Enter." #. (itstool) path: sect2/para #: C/index.docbook:192 @@ -225,6 +246,8 @@ "If some definition for the word is found, it will appear inside the main " "window area:" msgstr "" +"Bila beberapa definisi bagi kata tersebut ditemukan, itu akan muncul di " +"dalam area jendela utama:" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -237,6 +260,8 @@ "external ref='figures/mate-dictionary-lookup.png' " "md5='c41c96af4de54f457a2081aad009a8d0'" msgstr "" +"external ref='figures/mate-dictionary-lookup.png' " +"md5='c41c96af4de54f457a2081aad009a8d0'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:198 @@ -245,6 +270,9 @@ "format=\"PNG\"/> Shows a definition " "inside the Dictionary main window." msgstr "" +" Menampilkan suatu " +"definisi di dalam jendela utama Kamus." #. (itstool) path: sect2/para #: C/index.docbook:207 @@ -252,11 +280,13 @@ "Otherwise, an error dialog will appear, with a message explaining the nature" " of the error." msgstr "" +"Bila tidak, suatu dialog galat akan muncul, dengan sebuah pesan yang " +"menjelaskan keadaan galat." #. (itstool) path: sect2/title #: C/index.docbook:213 msgid "Save look up results" -msgstr "" +msgstr "Menyimpan hasil pencarian" #. (itstool) path: sect2/para #: C/index.docbook:215 @@ -267,11 +297,16 @@ "Save a Copy dialog, then click " "Save." msgstr "" +"Untuk menyimpan hasil suatu pencarian, pilih " +"BerkasSimpan suatu " +"Salinan. Masukkan sebuah nama untuk berkas dalam " +"dialog Simpan suatu Salinan, lalu klik " +"Simpan." #. (itstool) path: sect2/title #: C/index.docbook:220 msgid "Print look up results" -msgstr "" +msgstr "Mencetak hasil pencarian" #. (itstool) path: sect2/para #: C/index.docbook:222 @@ -279,6 +314,8 @@ "To print the results of a look up, choose " "FilePrint." msgstr "" +"Untuk mencetak hasil dari sebuah pencarian, pilih " +"BerkasCetak." #. (itstool) path: sect2/para #: C/index.docbook:224 @@ -286,6 +323,8 @@ "Inside the Print dialog you can select the printer to " "use, the paper format, the number of copies." msgstr "" +"Di dalam dialog Cetak Anda bisa memilih pencetak yang " +"akan dipakai, format kertas, cacah salinan." #. (itstool) path: sect2/para #: C/index.docbook:227 @@ -293,16 +332,18 @@ "To see a preview of what will be printed, click " "Preview." msgstr "" +"Untuk melihat suatu pratinjau dari apa yang akan dicetak, klik " +"Pratinjau." #. (itstool) path: sect2/para #: C/index.docbook:230 msgid "To print, click Print." -msgstr "" +msgstr "Untuk mencetak, klik Cetak." #. (itstool) path: sect2/title #: C/index.docbook:235 msgid "Find Text" -msgstr "" +msgstr "Mencari Teks" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -315,6 +356,8 @@ "external ref='figures/mate-dictionary-find.png' " "md5='d8bf0677084e2d9998a7942faaab5379'" msgstr "" +"external ref='figures/mate-dictionary-find.png' " +"md5='d8bf0677084e2d9998a7942faaab5379'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:240 @@ -323,12 +366,17 @@ "format=\"PNG\"/> Shows the Dictionary " "Find pane inside the main window." msgstr "" +" Memperlihatkan panel " +"Cari Kamus di dalam jendela utama." #. (itstool) path: sect2/para #: C/index.docbook:250 msgid "" "To find text inside the results of a look up, perform the following steps:" msgstr "" +"Untuk menemukan teks di dalam hasil pencarian, lakukan langkah-langkah " +"berikut:" #. (itstool) path: listitem/para #: C/index.docbook:254 @@ -336,12 +384,17 @@ "Choose Edit Find " " to display the Find pane." msgstr "" +"Pilih Sunting " +"Cari untuk menampilkan panel " +"Cari." #. (itstool) path: listitem/para #: C/index.docbook:256 msgid "" "Type the text you want to find inside the Search entry." msgstr "" +"Ketikkan teks yang ingin Anda temukan di dalam entri " +"Pencarian." #. (itstool) path: listitem/para #: C/index.docbook:258 @@ -350,6 +403,9 @@ "To find the previous occurrence of the text, click " "Previous." msgstr "" +"Untuk menemukan kemunculan berikutkan dari teks tersebut, klik " +"Selanjutnya. Untuk menemukan kemunculan sebelumnya " +"dari teks tersebut, klik Sebelumnya." #. (itstool) path: sect1/title #. (itstool) path: sect2/title @@ -364,6 +420,8 @@ " choose " "EditPreferences." msgstr "" +"Untuk mengubah preferensi aplikasi Kamus, pilih " +"SuntingPreferensi." #. (itstool) path: sect2/title #: C/index.docbook:276 @@ -381,6 +439,8 @@ "external ref='figures/mate-dictionary-preferences-source.png' " "md5='5470b15e64e66924477f150c4f47e96d'" msgstr "" +"external ref='figures/mate-dictionary-preferences-source.png' " +"md5='5470b15e64e66924477f150c4f47e96d'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:281 @@ -389,6 +449,9 @@ "source.png\" format=\"PNG\"/> Shows the " "Source tab of the Preferences dialog." msgstr "" +" Menunjukkan" +" tab Sumber dari dialog Preferensi." #. (itstool) path: sect2/para #: C/index.docbook:290 @@ -396,11 +459,13 @@ "To change the dictionary source used to look up words, select the desired " "source from the list." msgstr "" +"Untuk mengubah sumber kamus yang dipakai untuk mencari kata, pilih sumber " +"yang diinginkan dari daftar." #. (itstool) path: sect2/title #: C/index.docbook:296 msgid "Adding a new source" -msgstr "" +msgstr "Menambahkan suatu sumber baru" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -413,6 +478,8 @@ "external ref='figures/mate-dictionary-add-source.png' " "md5='d059507fee77bb176fce53373951756b'" msgstr "" +"external ref='figures/mate-dictionary-add-source.png' " +"md5='d059507fee77bb176fce53373951756b'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:301 @@ -421,16 +488,20 @@ "format=\"PNG\"/> Shows the Add Source " "dialog." msgstr "" +" Menampilkan dialog " +"Tambah Sumber." #. (itstool) path: sect2/para #: C/index.docbook:310 msgid "To add a new dictionary source, perform the following steps:" msgstr "" +"Untuk menambahkan suatu sumber kamus, lakukan langkah-langkah berikut:" #. (itstool) path: listitem/para #: C/index.docbook:313 msgid "Click on the Add button" -msgstr "" +msgstr "Klik pada tombol Tambah" #. (itstool) path: listitem/para #: C/index.docbook:314 @@ -438,6 +509,7 @@ "Edit the name of the new source inside the Description " "entry" msgstr "" +"Sunting nama sumber baru di dalam entri Deskripsi" #. (itstool) path: listitem/para #: C/index.docbook:315 @@ -445,16 +517,18 @@ "Change the transport type of the new source using the " "Transport combo box" msgstr "" +"Ubah tipe transport dari sumber baru memakai kotak kombo " +"Transport" #. (itstool) path: listitem/para #: C/index.docbook:316 msgid "Edit the attributes of the new source" -msgstr "" +msgstr "Sunting atribut dari sumber baru" #. (itstool) path: listitem/para #: C/index.docbook:317 msgid "Click Add" -msgstr "" +msgstr "Klik Tambah" #. (itstool) path: sect2/para #: C/index.docbook:320 @@ -462,6 +536,8 @@ "Different source transport types uses different attributes. This is the list" " of available attributes per transport type:" msgstr "" +"Tipe transport sumber yang berbeda memakai atribut yang berlainan. Ini " +"adalah daftar dari atribut yang tersedia per tipe transport:" #. (itstool) path: entry/para #: C/index.docbook:327 @@ -471,42 +547,42 @@ #. (itstool) path: entry/para #: C/index.docbook:328 msgid "Attributes" -msgstr "" +msgstr "Atribut" #. (itstool) path: entry/para #: C/index.docbook:333 msgid "Dictionary Server" -msgstr "" +msgstr "Server Kamus" #. (itstool) path: entry/para #: C/index.docbook:335 msgid "Hostname: the hostname of the dictionary server" -msgstr "" +msgstr "Nama host: nama host dari server kamus" #. (itstool) path: entry/para #: C/index.docbook:336 msgid "Port: the port of the dictionary server" -msgstr "" +msgstr "Port: port dari server kamus" #. (itstool) path: sect2/title #: C/index.docbook:347 msgid "Removing a source" -msgstr "" +msgstr "Menghapus suatu sumber" #. (itstool) path: sect2/para #: C/index.docbook:349 msgid "To remove a dictionary source, perform the following steps:" -msgstr "" +msgstr "Untuk menghapus suatu sumber kamus, lakukan langkah-langkah berikut:" #. (itstool) path: listitem/para #: C/index.docbook:352 msgid "Select the source you wish to remove" -msgstr "" +msgstr "Pilih sumber yang hendak Anda hapus" #. (itstool) path: listitem/para #: C/index.docbook:353 msgid "Click the Remove button" -msgstr "" +msgstr "Klik tombol Hapus" #. (itstool) path: warning/para #: C/index.docbook:356 @@ -516,11 +592,15 @@ "wide you may actually not be able to remove them unless you have the right " "ownership privileges." msgstr "" +"Bila Anda menghapus suatu sumber kamus itu akan dihapus secara permanen dari" +" daftar sumber yang tersedia. Juga, karena beberapa sumber mungkin " +"didefinisikan pada seluruh sistem Anda mungkin sebenarnya tidak bisa " +"menghapus mereka kecuali Anda memiliki hak kepemilikan yang tepat." #. (itstool) path: sect2/title #: C/index.docbook:365 msgid "Print Options" -msgstr "" +msgstr "Opsi Cetak" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -533,6 +613,8 @@ "external ref='figures/mate-dictionary-preferences-print.png' " "md5='12a65f07cb333db4c7ba743d1d12a00f'" msgstr "" +"external ref='figures/mate-dictionary-preferences-print.png' " +"md5='12a65f07cb333db4c7ba743d1d12a00f'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:370 @@ -541,6 +623,9 @@ "print.png\" format=\"PNG\"/> Shows the " "Print tab inside the Preferences dialog." msgstr "" +" Menampilkan " +"tab Cetak di dalam dialog Preferensi." #. (itstool) path: sect2/para #: C/index.docbook:379 @@ -548,26 +633,28 @@ "If you want to change the font name and size used when printing, perform the" " following steps:" msgstr "" +"Bila Anda ingin mengubah nama dan ukuran fonta yang dipakai ketika mencetak," +" lakukan langkah-langkah berikut:" #. (itstool) path: listitem/para #: C/index.docbook:383 msgid "Click on the Print Font button" -msgstr "" +msgstr "Klik pada tombol Fonta Cetak" #. (itstool) path: listitem/para #: C/index.docbook:384 msgid "Select the font and size you wish to use" -msgstr "" +msgstr "Pilih fonta dan ukuran yang hendak Anda gunakan" #. (itstool) path: listitem/para #: C/index.docbook:385 msgid "Click Ok" -msgstr "" +msgstr "Klik Ok" #. (itstool) path: sect1/title #: C/index.docbook:394 msgid "The Dictionary Applet" -msgstr "" +msgstr "Aplet Kamus" #. (itstool) path: sect1/para #: C/index.docbook:396 @@ -577,11 +664,15 @@ "Dictionary Applet applet to a panel and look up " "words in dictionaries." msgstr "" +"Aplikasi Kamus datang dengan suatu aplet panel, " +"Aplet Kamus. Anda dapat menambahkan aplet " +"Aplet Kamus ke suatu panel dan mencari kata dalam" +" kamus-kamus." #. (itstool) path: figure/title #: C/index.docbook:402 C/index.docbook:438 msgid "Dictionary Applet Window" -msgstr "" +msgstr "Jendela Apet Kamus" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -594,6 +685,8 @@ "external ref='figures/mate-dictionary-applet.png' " "md5='538c7fa191540f99dd964963a1079677'" msgstr "" +"external ref='figures/mate-dictionary-applet.png' " +"md5='538c7fa191540f99dd964963a1079677'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:404 @@ -602,11 +695,14 @@ "format=\"PNG\"/> Shows Dictionary " "Applet." msgstr "" +" Menunjukkan Aplet " +"Kamus." #. (itstool) path: sect2/title #: C/index.docbook:416 msgid "To Start Dictionary Applet" -msgstr "" +msgstr "Untuk Memulai Aplet Kamus" #. (itstool) path: sect2/para #: C/index.docbook:418 @@ -616,11 +712,15 @@ "Dictionary Applet in the Add to the panel dialog," " then click OK." msgstr "" +"Untuk menambahkan Aplet Kamus ke suatu panel, " +"klik kanan pada panel, lalu pilih Tambahkan ke " +"Panel. Pilih Aplet Kamus dalam dialog Tambah ke " +"panel, lalu klik Ok." #. (itstool) path: sect2/title #: C/index.docbook:427 msgid "Using the Dictionary Applet" -msgstr "" +msgstr "Memakai Aplet Kamus" #. (itstool) path: sect2/para #: C/index.docbook:429 @@ -629,6 +729,9 @@ "press Enter or right-click on the dictionary icon and then " "choose Look up." msgstr "" +"Untuk mencari suatu kata, ketikkan itu ke dalam ruas " +"entri, dan tekan Enter atau klik kanan pada ikon" +" kamus dan pilih Cari." #. (itstool) path: sect2/para #: C/index.docbook:434 @@ -636,6 +739,8 @@ "If some definition for the word was found, a window will appear, with the " "text of the definitions:" msgstr "" +"Bila beberapa definisi bagi kata ditemukan, suatu jendela akan muncul, " +"dengan teks definisi:" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -648,6 +753,8 @@ "external ref='figures/mate-dictionary-applet-window.png' " "md5='e26ac4847d2e7b53c6bba7d8e1a519c4'" msgstr "" +"external ref='figures/mate-dictionary-applet-window.png' " +"md5='e26ac4847d2e7b53c6bba7d8e1a519c4'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:440 @@ -656,6 +763,9 @@ "window.png\" format=\"PNG\"/> Shows " "Dictionary Applet main window." msgstr "" +" Menunjukkan" +" jendela utama Aplet Kamus." #. (itstool) path: sect2/para #: C/index.docbook:449 @@ -664,6 +774,9 @@ "Click Print to print the definitions. Click " "Clear to clear the definitions." msgstr "" +"Klik Simpan untuk menyimpan definisi ke sebuah berkas" +" teks. Klik Cetak untuk mencetak definisi. Klik " +"Bersihkan untuk membersihkan definisi." #. (itstool) path: sect2/para #: C/index.docbook:453 @@ -671,6 +784,8 @@ "You can make the window disappear by left-clicking on the dictionary icon or" " by pressing Esc." msgstr "" +"Anda dapat membuat jendela menghilang dengan mengklik kiri pada ikon kamus " +"atau dengan menekan Esc." #. (itstool) path: sect2/para #: C/index.docbook:461 @@ -678,19 +793,24 @@ "To configure the Dictionary Applet, right-click " "on the dictionary icon, then choose Preferences." msgstr "" +"Untuk mengonfigurasi Aplet Kamus, klik kanan pada" +" ikon kamus, lalu pilih Preferensi." #. (itstool) path: sect2/para #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" +"Dialog Preferensi tersebut sama dengan yang dipakai " +"oleh aplikasi Kamus, jadi silakan lihat " #. (itstool) path: para/ulink #: C/legal.xml:9 msgid "link" -msgstr "taut" +msgstr "tautan" #. (itstool) path: legalnotice/para #: C/legal.xml:2 @@ -753,17 +873,17 @@ "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 LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " -"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" +"DOKUMEN DISEDIAKAN \"SEBAGAIMANA ADANYA\", TANPA JAMINAN APA PUN, BAIK " +"TERSURAT MAUPUN TERSIRAT, TERMASUK, TANPA BATASAN, JAMINAN BAHWA DOKUMEN " +"ATAU VERSI MODIFIKASI DOKUMEN BEBAS DARI CACAT DAPAT DIPERDAGANGKAN ATAU " +"TIDAK UNTUK TUJUAN TERTENTU -INFRINGING. SELURUH RISIKO TERKAIT KUALITAS, " +"AKURASI, DAN KINERJA DOKUMEN ATAU VERSI MODIFIKASI DOKUMEN ADALAH PADA ANDA." +" SEHARUSNYA DOKUMEN ATAU VERSI YANG DIMODIFIKASI TERBUKTI CACAT DALAM HAL " +"APA PUN, ANDA (BUKAN PENULIS AWAL, PENGARANG ATAU KONTRIBUTOR APA PUN) " +"BERTANGGUNG JAWAB BIAYA PELAYANAN, PERBAIKAN, ATAU KOREKSI YANG DIPERLUKAN. " +"PENAFIAN JAMINAN INI MENJADI BAGIAN PENTING LISENSI INI. TIDAK ADA " +"PENGGUNAAN DOKUMEN ATAU VERSI MODIFIKASI DOKUMEN YANG DIIZINKAN DI SINI " +"KECUALI BERDASARKAN PENAFIAN INI; DAN" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -779,16 +899,17 @@ "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." +"DALAM KEADAAN APA PUN DAN DALAM TEORI HUKUM, BAIK DALAM TOR (TERMASUK " +"KELALAIAN), KONTRAK, ATAU LAINNYA, PENULIS, PENULIS AWAL, KONTRIBUTOR APA " +"PUN, ATAU DISTRIBUTOR DOKUMEN ATAU VERSI YANG DIMODIFIKASI DARI DOKUMEN APA " +"PUN, ATAU VERSI YANG DIMODIFIKASI DARI DOKUMEN APA PUN, ATAU DARI PIHAK " +"TERSEBUT, BERTANGGUNG JAWAB KEPADA SIAPAPUN ATAS KERUSAKAN LANGSUNG, TIDAK " +"LANGSUNG, KHUSUS, INSIDENTAL, ATAU KONSEKUENSIAL DARI SETIAP KARAKTER " +"TERMASUK, TANPA BATASAN, KERUSAKAN ATAS KEHILANGAN NAMA BAIK, PENGHENTIAN " +"KERJA, KEGAGALAN KOMPUTER ATAU KESALAHAN LAINNYA, ATAU KERUSAKAN APA PUN DAN" +" SEMUA KERUSAKAN ATAU KERUGIAN YANG TIMBUL KARENA ATAU TERKAIT DENGAN " +"PENGGUNAAN DOKUMEN DAN VERSI YANG DIUBAH DARI DOKUMEN, MESKIPUN PIHAK " +"TERSEBUT TELAH DIBERITAHU TENTANG KEMUNGKINAN KERUSAKAN TERSEBUT." #. (itstool) path: legalnotice/para #: C/legal.xml:28 @@ -797,6 +918,6 @@ "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 LICENSE WITH THE FURTHER UNDERSTANDING THAT: " +"DOKUMEN DAN VERSI MODIFIKASI DOKUMEN DIBERIKAN BERDASARKAN PERSYARATAN " +"LISENSI DOKUMENTASI GRATIS GNU DENGAN PEMAHAMAN LEBIH LANJUT BAHWA: " "<_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/mate-dictionary/help/id/index.docbook mate-utils-1.26.1/mate-dictionary/help/id/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/id/index.docbook 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/id/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,477 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - 2015-2021 Projek Dokumentasi MATE - - 2005 - Emmanuele Bassi - - - - - - Projek Dokumentasi MATE - - - Projek Dokumentasi GNOME - - - - - Tim Dokumentasi MATE Desktop Mate - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Umpan balik - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - - - - - Kukuh Syafaat - - syafaatkukuh@gmail.com - - - - 2017. - - Kukuh Syafaat - -
- - - Dictionary - - - - - - Pengantar - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Mulai - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Menu Aplikasi - - Choose Accessories - Dictionary. - - - - - Baris perintah - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Cara pakai - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferensi - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Sumber Kamus - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferensi - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/id/legal.xml mate-utils-1.26.1/mate-dictionary/help/id/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/id/legal.xml 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/id/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Hak diberikan untuk menyalin, mendistribusikan, dan/atau mengubah dokumen ini di bawah persyaratan GNU Free Documentation License (GFDL, Lisensi Dokumentasi Bebas GNU), Versi 1.1 atau sebarang versi setelahnya yang dipublikasikan oleh Free Software Foundation tanpa Invariant Section, tanpa Front-Cover Texts, dan tanpa Back-Cover Texts. Anda dapat menemukan salinan dari GFDL pada taut atau di dalam berkas COPYING-DOCS yang didistribusikan bersama manual ini. - Manual ini adalah bagian dari suatu koleksi manual MATE yang disebarkan di bawah GDFL. Bila Anda ingin menyebarkan manual ini secara terpisah dari koleksi, Anda dapat melakukannya dengan menambahkan salinan lisensi ke manual, sebagaimana dijelaskan di bagian 6 dari lisensi. - - Banyak nama yang dipakai oleh perusahaan-perusahaan untuk membedakan produk dan layanan mereka diklaim sebagai merek dagang. Ketika nama-nama tersebut muncul di dalam sebarang dokumentasi MATE, and anggota Projek Dokumentasi MATE disadarkan atas merek dagang tersebut, maka nama-nama akan ditulis dalam huruf besar atau huruf awal huruf besar. - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ie/ie.po mate-utils-1.26.1/mate-dictionary/help/ie/ie.po --- mate-utils-1.26.0/mate-dictionary/help/ie/ie.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ie/ie.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Caarmi, 2019 +# Caarmi, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Caarmi, 2019\n" -"Language-Team: Interlingue (https://www.transifex.com/mate/teams/13566/ie/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Caarmi, 2021\n" +"Language-Team: Interlingue (https://app.transifex.com/mate/teams/13566/ie/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -18,7 +18,7 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "OIS , 2019" +msgstr "OIS , 2020" #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ie/index.docbook mate-utils-1.26.1/mate-dictionary/help/ie/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ie/index.docbook 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ie/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,485 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - - - - - OIS - - mistresssilvara@hotmail.com - - - - 2019 - - OIS - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferenties - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Fontes de dictionarium - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transporte - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferenties - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ie/legal.xml mate-utils-1.26.1/mate-dictionary/help/ie/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ie/legal.xml 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ie/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ig/ig.po mate-utils-1.26.1/mate-dictionary/help/ig/ig.po --- mate-utils-1.26.0/mate-dictionary/help/ig/ig.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ig/ig.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Igbo (https://www.transifex.com/mate/teams/13566/ig/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Igbo (https://app.transifex.com/mate/teams/13566/ig/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ig/index.docbook mate-utils-1.26.1/mate-dictionary/help/ig/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ig/index.docbook 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ig/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Nkarachọ - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Nkarachọ - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ig/legal.xml mate-utils-1.26.1/mate-dictionary/help/ig/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ig/legal.xml 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ig/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/is/index.docbook mate-utils-1.26.1/mate-dictionary/help/is/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/is/index.docbook 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/is/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,498 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - - - - - Samúel Jón Gunnarsson - - sammi@techattack.nu - - - - 2003 - - Samúel Jón Gunnarsson - - - - - Sveinn í Felli - - sv1@fellsnet.is - - - - 2012-2016 - - Sveinn í Felli - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Skipanalína - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Kjörstillingar - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Kjörstillingar - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/is/is.po mate-utils-1.26.1/mate-dictionary/help/is/is.po --- mate-utils-1.26.0/mate-dictionary/help/is/is.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/is/is.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Sveinn í Felli , 2018 -# Stefano Karapetsas , 2018 +# Sveinn í Felli , 2021 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Icelandic (https://www.transifex.com/mate/teams/13566/is/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Icelandic (https://app.transifex.com/mate/teams/13566/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -675,8 +675,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/is/legal.xml mate-utils-1.26.1/mate-dictionary/help/is/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/is/legal.xml 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/is/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/it/index.docbook mate-utils-1.26.1/mate-dictionary/help/it/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/it/index.docbook 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/it/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,360 +0,0 @@ - - - - - - - -]> - - - -
- - - - Manuale di Dizionario - - - Dizionario permette di controllare le definizioni delle parole e la loro scrittura corretta. - - - 2015-2021 Progetto Documentazione di MATE - 2005 Emmanuele Bassi - - - - - Progetto Documentazione di MATE - - - Progetto Documentazione di GNOME - - - - - Team Documentazione di MATE Mate desktop - Emmanuele Bassi
ebassi@gmail.com
- - - -
- - - Manuale di Dizionario V1.10.0 Luglio 2015 - Wolfgang Ulbrich - Progetto Documentazione di MATE - - Manuale di Dizionario V1.10.0 Luglio 2015 - Emmanuele Bassi - Progetto Documentazione di GNOME - - - - Questo manuale si riferisce alla versione 1.10 di Dizionario - - Commenti - Per segnalare un malfunzionamento o un suggerimento per Dizionario o su questo manuale, seguire le indicazioni nella Pagina di feedback di MATE. - - - -
- - Dizionario - - - - - Introduzione - - L'applicazione Dizionario permette di cercare parole e termini in un dizionario. - - - - - - Introduzione - - - - Avviare Dizionario - - Si può avviare Dizionario nei seguenti modi: - - - - menù Applicazioni - - Selezionare Accessori Dizionario di MATE . - - - - Riga di comando - - Eseguire il comando: mate-dictionary - - - - - Quando avvii il Dizionario, viene mostrata la seguente finestra: - -
- Finestra di Dizionario - - Mostra la finestra principale di Dizionario. - -
- -
- -
- - - - Uso - - - Cercare una parola - - Per cercare una parola, scriverla nel campoCerca e premere Invio. - - Se viene trovata una definizione, questa apparirà all'interno dell'area principale della finestra: - -
- Finestra di Dizionario - - Mostra una definizione nella finestra di Dizionario. - -
- - Altrimenti viene mostrato un messaggio di errore che spiega il motivo dell'errore. - -
- - - Salvare i risultati - - Per salvare i risultati, selezionare FileSalva una copia.... Assegnare un nome nella finestra Salva una copia e premere Salva. - - - - - Stampare un risultato - - Per stampare un risultato, selezionare FileStampa. - - Nella finestra Stampa è possibile selezionare la stampante da usare, il formato della carta e il numero di copie. - - Per vedere un'anteprima di ciò che verrà stampato, selezionare Anteprima. - - Per stampare, premere Stampa. - - - - - Trova testo - -
- Finestra di Dizionario - - Mostra il pannello di ricerca del testo nella finestra principale. - -
- - - Per trovare del testo all'interno dei risultati di una ricerca, procedere come segue: - - - Selezionare Modifica Trova per mostrare il pannello Trova. - Digitare il testo all'interno del campo Trova. - Per trovare il risultato successivo fare clic su Successivo. Per trovare il risultato successivo fare clic isu Precedente. - - -
- -
- - - - Preferenze - - Per modificare le preferenze di Dizionario, selezionare ModificaPreferenze. - - - - Sorgenti del dizionario - -
- Finestra di Dizionario - - Mostra la scheda Sorgente della finestra Preferenze. - -
- - Per modificare la fonte utilizzata per le definizioni, selezionarla dall'elenco. -
- - - - Aggiungere una sorgente - -
- Finestra di Dizionario - - Mostra la finestra di dialogo Aggiungi sorgente - -
- - Per aggiungere una nuova sorgente, procedi come segue: - - - Fare clic sul pulsante Aggiungi - Modificare il nome della nuova sorgente all'interno della voce Descrizione - Modificare il tipo di trasporto della nuova sorgente utilizzando il comandoTransporto - Modificare gli attributi della nuova sorgente - Fare clic su Aggiungi - - - Differenti tipi di trasporto utilizzano attributi diversi. Gli attributi disponibili per tipo di trasporto sono: - - - - - - Trasporto - Attributi - - - - - Server del dizionario - - Nome host: il nome host del server del dizionario - Porta: porta del server del dizionario - - - - - - -
- - - - Rimuovere una sorgente - - Per rimuovere una sorgente, procedi come segue: - - - Selezionare la sorgente che si desidera rimuovere - Fare clic sul pulsante Rimuovi - - - Se si rimuove una sorgente del dizionario, essa verrà eliminata definitivamente dall'elenco delle fonti disponibili. Inoltre, poiché alcune fonti potrebbero essere definite a livello di sistema, si potrebbe non essere in grado di rimuoverle a meno che non si abbiano i giusti privilegi. - - - - - - Opzioni di stampa - -
- Finestra di Dizionario - - Mostra la scheda di Stampa nella finestra di dialogo Preferenze. - -
- - Se si desidera modificare il nome e le dimensioni dei caratteri di stampa, seguire queste operazioni: - - - Fare clic sul tasto Carattere per stampa - Selezionare il carattere e la dimensione da utilizzare - Fare clic su Ok - - -
- -
- - - - L'applet Dizionario - - L'applicazione Dizionario viene fornita assieme ad una applet, la Applet dizionario. È possibile aggiungere l'Applet dizionario ad un pannello per cercare le parole nei dizionari. - -
- Finestra applet dizionario - - Mostra l'applet dizionario. - -
- - - - - Avviare l'applet Dizionario - - Per aggiungere l'Applet dizionario ad un pannello, fare clic col pulsante destro del mouse sul pannello e selezionare Aggiungi al pannello. Scegliere l'Applet Dizionario nella finestra Aggiungi al pannello e fare clic su OK. - - - - - - Usare l'Applet Dizionario - - Per cercare una parola, digitarla nel campo di inserimento testo e premere Invio o fare clic col pulsante destro del mouse sull'icona del dizionario e selezionare Cerca. - - Se viene trovata una definizione della parola digitata, apparirà una finestra con le definizioni: - -
- Finestra applet dizionario - - Mostra la finestra principale dell'Applet Dizionario - -
- - Fare clic su Salva per salvare la definizione in un file di testo. Sceliere Stampa per stampare le definizioni. Fare clic su Pulisci per ripulire le definizioni. - - È possibile far scomparire la finestra facendo clic con il tasto sinistro del mouse sull'icona del dizionario o premendo il tasto Esc. - -
- - - Preferenze - - Per configurare l'Applet Dizionario, fare clic col tasto destro del mouse sull'icona del dizionario e selezionare Preferenze. - - La finestra Preferenze è uguale a quella dell'applicazione Dizionario quindi fare riferimento a - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/it/it.po mate-utils-1.26.1/mate-dictionary/help/it/it.po --- mate-utils-1.26.0/mate-dictionary/help/it/it.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/it/it.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,31 +1,30 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Marco Z. , 2018 -# Giuseppe Pignataro , 2019 -# Enrico B. , 2019 -# Alessandro Volturno , 2021 +# Stefano Karapetsas , 2021 +# Giuseppe Pignataro , 2021 +# Wolfgang Ulbrich , 2021 +# Enrico B. , 2021 +# Marco Z. , 2021 +# 6d1bb5d393520b00f70a137a58397ea1_b5ba1e2 <22cc5e560e0d5b6554809bfb51b90403_882095>, 2021 +# Alessandro Volturno , 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Alessandro Volturno , 2021\n" -"Language-Team: Italian (https://www.transifex.com/mate/teams/13566/it/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Alessandro Volturno , 2022\n" +"Language-Team: Italian (https://app.transifex.com/mate/teams/13566/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "" -"Enrico Bella, 2019\n" -"Alessandro Volturno, 2020" +msgstr "Alessandro Volturno, 2021" #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -56,13 +55,13 @@ #. (itstool) path: revdescription/para #: C/index.docbook:52 C/index.docbook:96 msgid "MATE Documentation Project" -msgstr "Progetto Documentazione di MATE" +msgstr "Progetto della documentazione MATE" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:55 C/index.docbook:104 msgid "GNOME Documentation Project" -msgstr "Progetto Documentazione di GNOME" +msgstr "Progetto Documentazione di GNOME " #. (itstool) path: authorgroup/author #: C/index.docbook:60 @@ -144,7 +143,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:137 msgid "Getting Started" -msgstr "Introduzione" +msgstr "Per Iniziare" #. (itstool) path: sect2/title #: C/index.docbook:141 @@ -161,7 +160,7 @@ #. (itstool) path: varlistentry/term #: C/index.docbook:148 msgid "Applications menu" -msgstr "menù Applicazioni" +msgstr "menu Applicazioni" #. (itstool) path: listitem/para #: C/index.docbook:150 @@ -224,7 +223,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:184 msgid "Usage" -msgstr "Uso" +msgstr "Utilizzo" #. (itstool) path: sect2/title #: C/index.docbook:187 @@ -401,8 +400,8 @@ "Previous." msgstr "" "Per trovare il risultato successivo fare clic su " -"Successivo. Per trovare il risultato successivo fare " -"clic isu Precedente." +"Successivo. Per trovare il risultato precedente fare " +"clic su Precedente." #. (itstool) path: sect1/title #. (itstool) path: sect2/title @@ -803,8 +802,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" "La finestra Preferenze è uguale a quella " "dell'applicazione Dizionario quindi fare " @@ -826,10 +825,10 @@ "with this manual." msgstr "" "È concesso il permesso di copiare, distribuire e/o modificare questo " -"documento secondo i termini della GNU Free Documentation License (GFDL), " +"documento in base ai termini della GNU Free Documentation License (GFDL), " "Versione 1.1 o qualsiasi versione successiva pubblicata dalla Free Software " -"Foundation senza sezioni invarianti, senza testi di copertina e nessun testo" -" di retro copertina. Puoi trovare una copia del GFDL qui <_:ulink-1/> o nel " +"Foundation senza sezioni invarianti, senza testi di copertina e senza testi " +"di frontespizio. Potete trovare una copia del GFDL qui <_:ulink-1/> o nel " "file COPYING-DOCS distribuito con questo manuale." #. (itstool) path: legalnotice/para @@ -840,7 +839,7 @@ "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" -"Questo manuale fa parte di una raccolta di manuali MATE distribuita in " +"Questo manuale fa parte di una raccolta di manuali di MATE distribuita in " "conformità con la GFDL. Per poter distribuire questo manuale separatamente, " "è necessario inserirvi una copia della licenza, come descritto nella sezione" " 6 della licenza." @@ -856,9 +855,9 @@ msgstr "" "Molti dei nomi usati dalle aziende per distinguere i propri prodotti e " "servizi sono rivendicati come marchi. Quando questi nomi compaiono nella " -"documentazione di MATE, e i partecipanti al MATE Documentation Project sono " -"consapevoli del loro utilizzo, essi vengono scritti in lettere maiuscole o " -"con l'iniziale maiuscola." +"documentazione di MATE, e i partecipanti al progetto di documentazione MATE " +"sono consapevoli del loro utilizzo, essi vengono scritti in lettere " +"maiuscole o con l'iniziale maiuscola." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -875,19 +874,20 @@ "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 "" -"IL DOCUMENTO VIENE FORNITO SENZA GARANZIE DI ALCUN TIPO, ESPLICITE O " -"IMPLICITE, INCLUSE, MA SENZA LIMITAZIONE, LE GARANZIE ATTESTANTI CHE IL " -"DOCUMENTO O LE SUE VERSIONI MODIFICATE SIANO PRIVI DI DIFETTI, " -"COMMERCIALIZZABILI, IDONEI A UN DETERMINATO SCOPO O CHE NON VIOLINO DIRITTI " -"DI TERZI. SI DECLINA QUALUNQUE RESPONSABILITÀ RIGUARDO AI RISCHI INERENTI LA" -" QUALITÀ, L'ACCURATEZZA E LE PRESTAZIONI DEL DOCUMENTO O DI UNA SUA VERSIONE" -" MODIFICATA. QUALORA UN DOCUMENTO O UNA SUA VERSIONE MODIFICATA DOVESSERO " -"PRESENTARE QUALUNQUE TIPO DI DIFETTO, IL COSTO DI EVENTUALI INTERVENTI DI " -"ASSISTENZA, RIPARAZIONE O CORREZIONE SARÀ A CARICO DELL'UTENTE (NON DEL " -"REDATTORE INIZIALE, DELL'AUTORE O DI ALTRI COLLABORATORI). QUESTA " -"LIMITAZIONE DELLA GARANZIA COSTITUISCE PARTE ESSENZIALE DELLA LICENZA. L'USO" -" DEL DOCUMENTO O DELLE SUE VERSIONI MODIFICATE È CONSENTITO SOLO ENTRO I " -"TERMINI DI QUESTA LIMITAZIONE DELLA GARANZIA;" +"IL DOCUMENTO VIENE FORNITO SULLA BASE DEL \"COME È\", SENZA GARANZIE DI " +"ALCUN TIPO, ESPLICITE O IMPLICITE, INCLUSE, MA SENZA LIMITAZIONE, LE " +"GARANZIE ATTESTANTI CHE IL DOCUMENTO O LE SUE VERSIONI MODIFICATE SIANO " +"PRIVI DI DIFETTI, COMMERCIALIZZABILI, IDONEI A UN DETERMINATO SCOPO O CHE " +"NON VIOLINO DIRITTI DI TERZI. SI DECLINA QUALUNQUE RESPONSABILITÀ RIGUARDO " +"AI RISCHI INERENTI LA QUALITÀ, L'ACCURATEZZA E LE PRESTAZIONI DEL DOCUMENTO " +"O DI UNA SUA VERSIONE MODIFICATA. QUALORA UN DOCUMENTO O UNA SUA VERSIONE " +"MODIFICATA DOVESSERO PRESENTARE QUALUNQUE TIPO DI DIFETTO, IL COSTO DI " +"EVENTUALI INTERVENTI DI ASSISTENZA, RIPARAZIONE O CORREZIONE SARÀ A CARICO " +"DELL'UTENTE (NON DEL REDATTORE INIZIALE, DELL'AUTORE O DI ALTRI " +"COLLABORATORI). QUESTA LIMITAZIONE DELLA GARANZIA COSTITUISCE PARTE " +"ESSENZIALE DELLA LICENZA. L'USO DEL DOCUMENTO O DELLE SUE VERSIONI " +"MODIFICATE È CONSENTITO SOLO ENTRO I TERMINI DI QUESTA LIMITAZIONE DELLA " +"GARANZIA;" #. (itstool) path: listitem/para #: C/legal.xml:55 diff -Nru mate-utils-1.26.0/mate-dictionary/help/it/legal.xml mate-utils-1.26.1/mate-dictionary/help/it/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/it/legal.xml 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/it/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - È concesso il permesso di copiare, distribuire e/o modificare questo documento secondo i termini della GNU Free Documentation License (GFDL), Versione 1.1 o qualsiasi versione successiva pubblicata dalla Free Software Foundation senza sezioni invarianti, senza testi di copertina e nessun testo di retro copertina. Puoi trovare una copia del GFDL qui collegamento o nel file COPYING-DOCS distribuito con questo manuale. - Questo manuale fa parte di una raccolta di manuali MATE distribuita in conformità con la GFDL. Per poter distribuire questo manuale separatamente, è necessario inserirvi una copia della licenza, come descritto nella sezione 6 della licenza. - - Molti dei nomi usati dalle aziende per distinguere i propri prodotti e servizi sono rivendicati come marchi. Quando questi nomi compaiono nella documentazione di MATE, e i partecipanti al MATE Documentation Project sono consapevoli del loro utilizzo, essi vengono scritti in lettere maiuscole o con l'iniziale maiuscola. - - IL DOCUMENTO E LE VERSIONI MODIFICATE DEL DOCUMENTO VENGONO RILASCIATE SECONDO I TERMINI DELLA GNU FREE DOCUMENTATION LICENSE TENENDO PRESENTE CHE: - - IL DOCUMENTO VIENE FORNITO SENZA GARANZIE DI ALCUN TIPO, ESPLICITE O IMPLICITE, INCLUSE, MA SENZA LIMITAZIONE, LE GARANZIE ATTESTANTI CHE IL DOCUMENTO O LE SUE VERSIONI MODIFICATE SIANO PRIVI DI DIFETTI, COMMERCIALIZZABILI, IDONEI A UN DETERMINATO SCOPO O CHE NON VIOLINO DIRITTI DI TERZI. SI DECLINA QUALUNQUE RESPONSABILITÀ RIGUARDO AI RISCHI INERENTI LA QUALITÀ, L'ACCURATEZZA E LE PRESTAZIONI DEL DOCUMENTO O DI UNA SUA VERSIONE MODIFICATA. QUALORA UN DOCUMENTO O UNA SUA VERSIONE MODIFICATA DOVESSERO PRESENTARE QUALUNQUE TIPO DI DIFETTO, IL COSTO DI EVENTUALI INTERVENTI DI ASSISTENZA, RIPARAZIONE O CORREZIONE SARÀ A CARICO DELL'UTENTE (NON DEL REDATTORE INIZIALE, DELL'AUTORE O DI ALTRI COLLABORATORI). QUESTA LIMITAZIONE DELLA GARANZIA COSTITUISCE PARTE ESSENZIALE DELLA LICENZA. L'USO DEL DOCUMENTO O DELLE SUE VERSIONI MODIFICATE È CONSENTITO SOLO ENTRO I TERMINI DI QUESTA LIMITAZIONE DELLA GARANZIA; - - - IN NESSUNA CIRCOSTANZA E PER NESSUNA RAGIONE LEGALE, INCLUSI I PRINCIPI DI COLPA (INCLUSA LA NEGLIGENZA), ACCORDO CONTRATTUALE O ALTRO, SARÀ POSSIBILE CONSIDERARE L'AUTORE, IL REDATTORE INIZIALE, GLI ALTRI COLLABORATORI, QUALUNQUE DISTRIBUTORE DEL DOCUMENTO O DI UNA SUA VERSIONE MODIFICATA O QUALUNQUE FORNITORE DELLE PERSONE CITATE, RESPONSABILE NEI CONFRONTI DI QUALUNQUE PERSONA PER DANNI DIRETTI, INDIRETTI, SPECIALI, INCIDENTALI O CONSEGUENTI DI QUALUNQUE NATURA, INCLUSI, MA SENZA LIMITAZIONE, I DANNI PER PERDITA DI AVVIAMENTO, INTERRUZIONE DEL LAVORO, GUASTO O MALFUNZIONAMENTO DEL COMPUTER O QUALUNQUE ALTRO DANNO O PERDITA DERIVANTE O CORRELATA ALL'USO DEL DOCUMENTO O DI UNA SUA VERSIONE MODIFICATA, ANCHE QUALORA LE PERSONE CITATE FOSSERO STATE INFORMATE DELLA POSSIBILITÀ DI TALI DANNI. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ja/index.docbook mate-utils-1.26.1/mate-dictionary/help/ja/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ja/index.docbook 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ja/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,360 +0,0 @@ - - - - - - - -]> - - - -
- - - - 辞書マニュアル - - - 辞書で単語の定義や正しいつづりを調べることができます。 - - - 2015年-2021年 MATE 文書化プロジェクト - 2005年 Emmanuele Bassi - - - - - MATE 文書化プロジェクト - - - GNOME 文書化プロジェクト - - - - - MATE 文書化チーム MATE デスクトップ - Emmanuele Bassi
ebassi@gmail.com
- - - -
- - - 辞書マニュアル 1.10.0 版 2015年7月 - Wolfgang Ulbrich - MATE 文書化プロジェクト - - 辞書マニュアル 1.10.0 版 2015年7月 - Emmanuele Bassi - GNOME 文書化プロジェクト - - - - 本マニュアルは、辞書 1.10 版について説明しています。 - - フィードバック - この辞書アプリケーションやこのマニュアルに関する不具合や提案を報告するには、MATE フィードバック・ページの方法に従ってください。 - - - -
- - 辞書 - - - - - はじめに - - この辞書アプリケーションは、辞書ソースより単語や用語を検索することができます。 - - - - - - はじめましょう - - - - 辞書を開くには - - 次の方法で辞書 開くことができます。 - - - - アプリケーション・メニュー - - アクセサリー 辞書 を選択します。 - - - - コマンドライン - - 次のコマンドを実行してください。mate-dictionary - - - - - このアプリが起動すると、辞書のウィンドウが表示されます。 - -
- 辞書のウィンドウ - - は辞書のメインウィンドウを表示します。 - -
- -
- -
- - - - 使い方 - - - 単語を調べるには - - 単語を調べるには、入力欄に単語を入力して Enter を押します。 - - もし単語の定義が見つかった場合は、メインウィンドウの中に表示されます。 - -
- 辞書のウィンドウ - - は、辞書のメインウィンドウに定義を表示します。 - -
- - そうでない場合にはエラーダイアログが現れて、エラーの内容を説明するメッセージが表示されます。 - -
- - - 調べた結果を保存する - - 調べた結果を保存するには、ファイル検索結果の保存を選択します。検索結果の保存ダイアログにファイル名を入力し、保存をクリックします。 - - - - - 調べた結果を印刷する - - 調べた結果を印刷するには、 ファイル 印刷 を選択します。 - - 印刷ダイアログでは、使用するプリンタ、用紙の種類、コピーの枚数などが選択できます。 - - 印刷する内容のプレビューを見るには、印刷プレビューをクリックします。 - - 印刷するには印刷をクリックします。 - - - - - テキストを検索する - -
- 辞書のウィンドウ - - メインウィンドウ内に辞書検索ペインを表示します。 - -
- - - 検索結果の中にあるテキストを見つけるには、次の手順を実行します。 - - - 編集 検索 を選択して、検索ペインを表示します。 - 検索したい文字列を検索欄に入力してください。 - 次に出てくる文字列を探すには、次を検索をクリックします。前に出てきた文字列を探すには、前を検索をクリックします。 - - -
- -
- - - - 設定 - - この辞書アプリケーションの設定を変更するには、編集設定を選択します。 - - - - 辞書のソース - -
- 辞書のウィンドウ - - 設定ダイアログのソースタブを表示します。 - -
- - 単語を調べるのに使う辞書ソースを変更するには、リストからご希望のソースを選択してください。 -
- - - - 新しいソースを追加する - -
- 辞書のウィンドウ - - ソースの追加ダイアログを表示します。 - -
- - 辞書の新しいソースを追加するには、次の手順を実行してください: - - - 追加ボタンを押します。 - 説明欄に新しいソースの名前を入力します。 - 変換方法のコンボボックスを使って、新しいソースの変換方法を変更します。 - 新しいソースの属性を編集します。 - 追加をクリックします。 - - - ソースの変換方法によって、使用する属性が異なります。これは、変換方法別に利用可能な属性を示した一覧です。 - - - - - - 変換方法 - 属性 - - - - - 辞書サーバ - - ホスト名:辞書サーバのホスト名です - ポート:辞書サーバのポート番号です - - - - - - -
- - - - ソースを削除する - - 辞書のソースを削除するには、次の手順を実行してください: - - - 削除したいソースを選択します。 - 削除ボタンをクリックします。 - - - 辞書ソースを削除すると、利用可能なソースのリストから永久に削除されます。また、ソースの中にはシステム全体で定義されているものもあるので、正当な管理者権限を持っていない限り、実際には削除できないかもしれません。 - - - - - - 印刷のオプション - -
- 辞書のウィンドウ - - 設定ダイアログ内の印刷タブを表示します。 - -
- - 印刷時に使用するフォントの字体や大きさを変更したい場合は、次の手順で行います。 - - - 印刷時のフォントボタンをクリックします。 - 使用したいフォントの種類と大きさを選択選択します。 - 選択をクリックします。 - - -
- -
- - - - 辞書アプレット - - 辞書アプリケーションには、パネルアプレットである辞書検索が付属しています。パネルに辞書検索アプレットを追加し、単語を調べることができます。 - -
- 辞書検索のウィンドウ - - 辞書検索を表示します。 - -
- - - - - 辞書アプレットを起動するには - - 辞書検索をパネルに追加するには、パネルを右クリックして、パネルに追加を選択します。パネルに追加ダイアログで「辞書検索」を選択し、追加をクリックします。 - - - - - - 辞書検索を使うには - - 単語を調べるには、入力欄に単語を入力して Enter キーを押すか、または辞書のアイコンを右クリックして検索を選択します。 - - もし単語の定義が見つかった場合は、ウィンドウが現れて定義を示すテキストが表示されます。 - -
- 辞書検索のウィンドウ - - 辞書検索のメインウィンドウを表示します。 - -
- - 保存をクリックすると、定義をテキストファイルに保存できます。印刷をクリックすると印刷できます。クリアをクリックすると消去されます。 - - 辞書のアイコンを左クリックするか、または Esc キーを押すことで、ウィンドウを消すことができます。 - -
- - - 設定 - - 辞書検索アプレットの設定を行うには、このアイコンを右クリックして設定を選択します。 - - 設定ダイアログは MATE 辞書で使うものと同じなので、を参照してください。 - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ja/ja.po mate-utils-1.26.1/mate-dictionary/help/ja/ja.po --- mate-utils-1.26.0/mate-dictionary/help/ja/ja.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ja/ja.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# ABE Tsunehiko, 2018 -# Green, 2021 +# Stefano Karapetsas , 2021 +# ABE Tsunehiko, 2021 # Wolfgang Ulbrich , 2021 +# Green , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Wolfgang Ulbrich , 2021\n" -"Language-Team: Japanese (https://www.transifex.com/mate/teams/13566/ja/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Green , 2021\n" +"Language-Team: Japanese (https://app.transifex.com/mate/teams/13566/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -32,8 +32,8 @@ "やまね ひでき \n" "草野 貴之 \n" "松澤 二郎 \n" -"Green, alias usergreen\n" -"日本GNOMEユーザー会 http://www.gnome.gr.jp/\n" +"Green, alias usergreen \n" +"日本GNOMEユーザー会 http://www.gnome.gr.jp/ \n" "MATE 文書化チーム https://www.transifex.com/mate/ " #. (itstool) path: articleinfo/title @@ -51,7 +51,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:33 msgid "2015-2021 MATE Documentation Project" -msgstr "2015年-2021年 MATE 文書化プロジェクト" +msgstr "2015-2021 MATE 文書化プロジェクト" #. (itstool) path: articleinfo/copyright #: C/index.docbook:37 @@ -147,7 +147,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:137 msgid "Getting Started" -msgstr "はじめましょう" +msgstr "使ってみましょう" #. (itstool) path: sect2/title #: C/index.docbook:141 @@ -177,7 +177,7 @@ #. (itstool) path: varlistentry/term #: C/index.docbook:156 msgid "Command line" -msgstr "コマンドライン" +msgstr "コマンドラインから" #. (itstool) path: listitem/para #: C/index.docbook:158 @@ -390,7 +390,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:269 C/index.docbook:459 msgid "Preferences" -msgstr "設定" +msgstr "各種設定" #. (itstool) path: sect1/para #: C/index.docbook:271 @@ -751,8 +751,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" "設定ダイアログは MATE " "辞書で使うものと同じなので、" msgstr "" -"この文書およびその修正版は、以下の点を理解したという前提で、GNU 自由文書ライセンス " +"この文書およびその修正版は、以下の点を了解しているという前提で、GNU 自由文書ライセンス " "の条件の下で配布されています:<_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/mate-dictionary/help/ja/legal.xml mate-utils-1.26.1/mate-dictionary/help/ja/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ja/legal.xml 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ja/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - この文書をフリーソフトウェア財団発行の GNU 自由文書ライセンス(第 1.1 版かそれ以降から1つを選択)が定める条件の下で複製、頒布、あるいは改変することを許可します。変更不可部分、表カバーテキスト、裏カバーテキストは存在しません。このライセンスの複製物はリンク、またはこの文書と共に配布されている COPYING-DOCS というファイルに中に記載されています。 - 本文書は GFDL の下で配布されているその他の MATE マニュアル集の一部です。これらのマニュアルとは別に本文書を別個に配布する場合は、GFDL の第6節で説明しているように、そのマニュアル集に対してライセンスの複製を添付してください。 - - 企業が自らの製品とサービスを区別する目的で使用する名称の多くは、登録商標であると主張しています。こうした名称が MATE の文書の中に記載されていて、この登録商標が MATE 文書化プロジェクトのメンバーによって了解されている箇所については、名称を大文字または頭文字を大文字で表示しています。 - - この文書およびその修正版は、以下の点を理解したという前提で、GNU 自由文書ライセンス の条件の下で配布されています: - - 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 - - - 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. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/jv/index.docbook mate-utils-1.26.1/mate-dictionary/help/jv/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/jv/index.docbook 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/jv/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Paling disenengi - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Paling disenengi - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/jv/legal.xml mate-utils-1.26.1/mate-dictionary/help/jv/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/jv/legal.xml 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/jv/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ka/index.docbook mate-utils-1.26.1/mate-dictionary/help/ka/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ka/index.docbook 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ka/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - შესავალი - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - ბრძანების ველი: - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - პარამეტრები - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - ტრანსპორტი - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - პარამეტრები - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ka/ka.po mate-utils-1.26.1/mate-dictionary/help/ka/ka.po --- mate-utils-1.26.0/mate-dictionary/help/ka/ka.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ka/ka.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Georgian (https://www.transifex.com/mate/teams/13566/ka/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Georgian (https://app.transifex.com/mate/teams/13566/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ka/legal.xml mate-utils-1.26.1/mate-dictionary/help/ka/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ka/legal.xml 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ka/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/kab/index.docbook mate-utils-1.26.1/mate-dictionary/help/kab/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/kab/index.docbook 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/kab/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - Asenfaṛ n tsemlit n MATE - - - Asenfaṛ n tsemlit n GNOME - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Tazwart - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Ismenyifen - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Ismenyifen - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/kab/kab.po mate-utils-1.26.1/mate-dictionary/help/kab/kab.po --- mate-utils-1.26.0/mate-dictionary/help/kab/kab.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/kab/kab.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Slimane Selyan AMIRI , 2020 +# Slimane Selyan AMIRI , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Slimane Selyan AMIRI , 2020\n" -"Language-Team: Kabyle (https://www.transifex.com/mate/teams/13566/kab/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Slimane Selyan AMIRI , 2021\n" +"Language-Team: Kabyle (https://app.transifex.com/mate/teams/13566/kab/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -674,8 +674,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/kab/legal.xml mate-utils-1.26.1/mate-dictionary/help/kab/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/kab/legal.xml 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/kab/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/kk/index.docbook mate-utils-1.26.1/mate-dictionary/help/kk/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/kk/index.docbook 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/kk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Басы - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Командалық жол - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Қолданылуы - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Баптаулар - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Сөздіктер қайнар көздері - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Транспорт: - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Баптаулар - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/kk/kk.po mate-utils-1.26.1/mate-dictionary/help/kk/kk.po --- mate-utils-1.26.0/mate-dictionary/help/kk/kk.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/kk/kk.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Baurzhan Muftakhidinov , 2018 -# Stefano Karapetsas , 2018 +# Baurzhan Muftakhidinov , 2021 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Kazakh (https://www.transifex.com/mate/teams/13566/kk/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Kazakh (https://app.transifex.com/mate/teams/13566/kk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -672,8 +672,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/kk/legal.xml mate-utils-1.26.1/mate-dictionary/help/kk/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/kk/legal.xml 2021-08-05 19:47:31.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/kk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/km/index.docbook mate-utils-1.26.1/mate-dictionary/help/km/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/km/index.docbook 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/km/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - ចំណូល​ចិត្ត - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - ចំណូល​ចិត្ត - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/km/legal.xml mate-utils-1.26.1/mate-dictionary/help/km/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/km/legal.xml 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/km/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/kn/index.docbook mate-utils-1.26.1/mate-dictionary/help/kn/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/kn/index.docbook 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/kn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - ಪರಿಚಯ - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - ಆಜ್ಞಾ ಸಾಲು - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - ಬಳಕೆ - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - ಆದ್ಯತೆಗಳು - - To change the Dictionary application - preferences, choose EditPreferences. - - - - ಶಬ್ಧಕೋಶದ ಮೂಲಗಳು - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - ವರ್ಗಾವಣೆ - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - ಆದ್ಯತೆಗಳು - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/kn/kn.po mate-utils-1.26.1/mate-dictionary/help/kn/kn.po --- mate-utils-1.26.0/mate-dictionary/help/kn/kn.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/kn/kn.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Yogesh K S , 2018 -# karthik holla , 2018 +# Stefano Karapetsas , 2021 +# Sai Vinoba , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: karthik holla , 2018\n" -"Language-Team: Kannada (https://www.transifex.com/mate/teams/13566/kn/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Sai Vinoba , 2021\n" +"Language-Team: Kannada (https://app.transifex.com/mate/teams/13566/kn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -21,7 +20,8 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"ಶಂಕರ್ ಪ್ರಸಾದ್ ,ಕಾರ್ತಿಕ ಹೊಳ್ಳ " +"ಶಂಕರ್ ಪ್ರಸಾದ್ ,ಕಾರ್ತಿಕ ಹೊಳ್ಳ " +",ಸಾಯಿ ವಿನೋಬ" #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -346,7 +346,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:269 C/index.docbook:459 msgid "Preferences" -msgstr "ಆದ್ಯತೆಗಳು" +msgstr "ಒಲವುಗಳು" #. (itstool) path: sect1/para #: C/index.docbook:271 @@ -674,8 +674,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/kn/legal.xml mate-utils-1.26.1/mate-dictionary/help/kn/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/kn/legal.xml 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/kn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ko/index.docbook mate-utils-1.26.1/mate-dictionary/help/ko/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ko/index.docbook 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ko/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,408 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - 2015-2021 MATE 문서화 프로젝트 - - 2005 - Emmanuele Bassi - - - - - - MATE 문서화 프로젝트 - - - GNOME 문서화 프로젝트 - - - - - MATE 문서화 팀 Mate 데스크톱 - Emmanuele Bassi
ebassi@gmail.com
- - - -
- - - 사전 설명서 V1.10.0 2015년 7월 - Wolfgang Ulbrich - - MATE 문서화 프로젝트 - - 사전 설명서 V1.10.0 2015년 7월 - Emmanuele Bassi - GNOME 문서화 프로젝트 - - - - This manual describes version 1.10 of Dictionary. - - 피드백 - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - 사전 - - - - - 소개 - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - 시작하기 - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - 프로그램 메뉴 - - Choose Accessories - Dictionary. - - - - - 명령 행 - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - 사전 기본 창 표시하기. - -
- -
- -
- - - - 사용법 - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - 사전 기본 창에 정의를 표시합니다. - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - 기본 창 안에 사전 찾기 창을 표시합니다. - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - 기본 설정 - - To change the Dictionary application - preferences, choose EditPreferences. - - - - 사전 소스 - -
- Dictionary Window - - 기본 설정 대화상자의 소스 탭을 표시합니다. - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - 소스 추가 대화 상자를 표시합니다. - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - 전송 - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - 기본 설정 대화 상자 안에 인쇄 탭을 표시합니다. - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - 사전 애플릿을 표시합니다. - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - 사전 애플릿 기본 창을 표시합니다. - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - 기본 설정 - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ko/ko.po mate-utils-1.26.1/mate-dictionary/help/ko/ko.po --- mate-utils-1.26.0/mate-dictionary/help/ko/ko.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ko/ko.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Seong-ho Cho , 2018 -# Stefano Karapetsas , 2018 -# 박정규(Jung-Kyu Park) , 2018 -# Wolfgang Ulbrich , 2018 -# HanSol Park , 2018 -# JungHee Lee , 2021 +# Seong-ho Cho , 2021 +# Stefano Karapetsas , 2021 +# 1763f4a4329a2376c933c5e919a36cbc_341ca53 <1f851310383599d03339229d772e1290_119292>, 2021 +# Wolfgang Ulbrich , 2021 +# HanSol Park , 2021 +# Junghee Lee , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: JungHee Lee , 2021\n" -"Language-Team: Korean (https://www.transifex.com/mate/teams/13566/ko/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Junghee Lee , 2021\n" +"Language-Team: Korean (https://app.transifex.com/mate/teams/13566/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -209,9 +209,9 @@ " format=\"PNG\"/> Shows Dictionary main " "window." msgstr "" -" 사전 기본 창 " -"표시하기." +" 사전 애플릿 기본 창을 " +"표시합니다." #. (itstool) path: sect1/title #: C/index.docbook:184 @@ -729,8 +729,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink @@ -748,9 +748,9 @@ " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" -"GNU 자유 문서화 사용 허가서(GFDL), 버전 1.1 또는 자유 소프트웨어 재단에서 게시한 모든 이후 버전의 조건에 따라 이 문서를 " -"복사, 배포 및/또는 수정할 수 있는 권한이 부여됩니다. 뒷 표지 텍스트 없음. GFDL의 사본은 여기 또는 이 설명서와 함께 배포된 " -"COPYING-DOCS 파일에서 찾을 수 있습니다." +"GNU 자유 문서화 사용 허가서(GFDL), 버전 1.1 또는 그 이후의 버전의 조건에 따라 이 문서를 복사, 배포 및/또는 수정할 수 " +"있는 권한이 부여되며, 불변 섹션, 전면 커버 텍스트 및 백커버 텍스트가 없습니다. 뒷 표지 텍스트 없음. GFDL의 복사본은 이 " +"<_:ulink-1/>나 이 설명서와 함께 배포된 COPYING-DOCs 파일에서 찾을 수 있습니다." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -821,5 +821,5 @@ "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" -"문서의 문서 및 수정된 버전은 gnu 자유 문서 라이센스의 조건에 따라 제공되며, 다음 사항을 더 잘 이해하고 있습니다: " +"문서 및 문서의 수정된 버전은 GNU 자유 문서화 라이센스의 조건에 따라 제공되며, 다음 사항을 더 잘 이해하고 있습니다: " "<_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/mate-dictionary/help/ko/legal.xml mate-utils-1.26.1/mate-dictionary/help/ko/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ko/legal.xml 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ko/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - GNU 자유 문서화 사용 허가서(GFDL), 버전 1.1 또는 자유 소프트웨어 재단에서 게시한 모든 이후 버전의 조건에 따라 이 문서를 복사, 배포 및/또는 수정할 수 있는 권한이 부여됩니다. 뒷 표지 텍스트 없음. GFDL의 사본은 여기 또는 이 설명서와 함께 배포된 COPYING-DOCS 파일에서 찾을 수 있습니다. - 본 설명서는 GFDL에 따라 배포된 MATE 설명서 컬렉션의 일부입니다. 본 설명서를 컬렉션과 별도로 배포하려는 경우에는 라이센스 조항 6에 따라 라이센스 사본을 설명서에 추가하면 됩니다. - - 기업의 제품과 서비스를 식별하기 위해 사용된 많은 이름은 상표로 간주됩니다. MATE 문서에 사용된 이름과 MATE 문서화 프로젝트의 구성원은 해당 상표로, 모두 대문자로 표시되거나 첫 글자가 대문자로 표시되어 있습니다. - - 문서의 문서 및 수정된 버전은 gnu 자유 문서 라이센스의 조건에 따라 제공되며, 다음 사항을 더 잘 이해하고 있습니다: - - 문서는 "있는 그대로"로 제공되며 상품성, 특정 목적에의 적합성 또는 준수에 대한 보증을 비롯한 일체의 명시적 또는 암시적인 보증을 제한 없이 부인합니다. 문서 및 수정판의 품질, 정확성 및 성능에 대한 책임은 전적으로 사용자에게 있습니다. 문서 또는 수정판에 대한 오류를 입증하려면 사용자(원저작자, 저작자 또는 배포자 아님)는 필요한 서비스, 수리 및 수정 비용을 부담해야 합니다. 본 보증 부인은 라이센스의 필수 부분에 해당합니다. 본 보증 부인을 따르지 않는 모든 문서나 수정판은 사용할 수 없습니다. - - - 또한 불법 행위(부주의 포함), 계약 또는 직접, 간접, 특별, 부수적 및 파생적인 모든 손해(영업권 손실, 작업 중지, 컴퓨터 오류 및 고장 또는 본 문서나 수정판의 사용으로 인해 발생하거나 관련된 기타 모든 손실 및 이러한 손실 가능성에 대해 미리 공지한 경우에도 제한되지 않음)에 대해서는 어떠한 상황이나 법률적인 이론 하에서도 본 문서 또는 수정판의 저작자, 원저자, 모든 배포자 또는 공급자는 책임을 지지 않습니다. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ku/index.docbook mate-utils-1.26.1/mate-dictionary/help/ku/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ku/index.docbook 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ku/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Rêzika Fermanan - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Vebijêrk - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Gihandin - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Vebijêrk - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ku/ku.po mate-utils-1.26.1/mate-dictionary/help/ku/ku.po --- mate-utils-1.26.0/mate-dictionary/help/ku/ku.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ku/ku.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Kurdish (https://www.transifex.com/mate/teams/13566/ku/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Kurdish (https://app.transifex.com/mate/teams/13566/ku/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ku/legal.xml mate-utils-1.26.1/mate-dictionary/help/ku/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ku/legal.xml 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ku/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ku_IQ/index.docbook mate-utils-1.26.1/mate-dictionary/help/ku_IQ/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ku_IQ/index.docbook 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ku_IQ/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - دۆزینەوەی دەق - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - هەڵبژاردنەکان - - To change the Dictionary application - preferences, choose EditPreferences. - - - - سەرچاوەکانی فەرهەنگ - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - زیادکردنی سەرچاوەیەکی نوێ - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - کرتە بکە لەسەر دوگمەی زیادکردن - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - چاپکردنی بژاردەکان - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - هەڵبژاردنەکان - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ku_IQ/ku_IQ.po mate-utils-1.26.1/mate-dictionary/help/ku_IQ/ku_IQ.po --- mate-utils-1.26.0/mate-dictionary/help/ku_IQ/ku_IQ.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ku_IQ/ku_IQ.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Rasti K5 , 2018 +# Rasti K5 , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Rasti K5 , 2018\n" -"Language-Team: Kurdish (Iraq) (https://www.transifex.com/mate/teams/13566/ku_IQ/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Rasti K5 , 2021\n" +"Language-Team: Kurdish (Iraq) (https://app.transifex.com/mate/teams/13566/ku_IQ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ku_IQ/legal.xml mate-utils-1.26.1/mate-dictionary/help/ku_IQ/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ku_IQ/legal.xml 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ku_IQ/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ky/index.docbook mate-utils-1.26.1/mate-dictionary/help/ky/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ky/index.docbook 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ky/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Командалык сап - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Колдонлушу - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Ырастоолор - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Сөздүк булактары - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Ырастоолор - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ky/ky.po mate-utils-1.26.1/mate-dictionary/help/ky/ky.po --- mate-utils-1.26.0/mate-dictionary/help/ky/ky.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ky/ky.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2018 +# 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2018\n" -"Language-Team: Kyrgyz (https://www.transifex.com/mate/teams/13566/ky/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2021\n" +"Language-Team: Kyrgyz (https://app.transifex.com/mate/teams/13566/ky/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ky/legal.xml mate-utils-1.26.1/mate-dictionary/help/ky/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ky/legal.xml 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ky/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/la/index.docbook mate-utils-1.26.1/mate-dictionary/help/la/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/la/index.docbook 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/la/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Praeferentiae - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Praeferentiae - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/la/legal.xml mate-utils-1.26.1/mate-dictionary/help/la/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/la/legal.xml 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/la/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/lt/index.docbook mate-utils-1.26.1/mate-dictionary/help/lt/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/lt/index.docbook 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/lt/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,368 +0,0 @@ - - - - - - - -]> - - - -
- - - - Žodyno vadovas - - - Žodynas leidžia jums ieškoti žodžių apibrėžimų ir teisingos rašybos. - - - - 2015-2021 - MATE Documentation Project - - 2005 Emmanuele Bassi - - - - - MATE dokumentacijos projektas - - - GNOME dokumentacijos projektas - - - - - - MATE Documentation Team - - Mate desktop - - - Emmanuele Bassi
ebassi@gmail.com
- - - -
- - - Žodyno vadovas V1.10.0 2015 liepa - Wolfgang Ulbrich - MATE dokumentacijos projektas - - Žodyno vadovas V1.10.0 2015 liepa - Emmanuele Bassi - GNOME dokumentacijos projektas - - - - Šis vadovas aprašo Žodyno versiją 1.10. - - Atsiliepimai - Pranešimui apie programos klaidą arba pasiūlymams dėl Žodyno programos ar šio žinyno, sekite nuorodas MATE atsako puslapyje. - - - -
- - Žodynas - - - - - Įžanga - - Žodyno programa leidžia jums žodyno ištekliuose ieškoti žodžių ir terminų. - - - - - - Darbo pradžia - - - - Norėdami paleisti žodyną - - Žodyną galite paleisti šiais būdais: - - - - Programų meniu - - Pasirinkite Reikmenys MATE žodynas. - - - - Komandinė eilutė - - Įvykdykite šią komandą: mate-dictionary - - - - - Paleidus, yra rodomas Žodyno langas: - -
- Žodyno langas - - Rodo pagrindinį Žodyno langą. - -
- -
- -
- - - - Naudojimas - - - Žodžio paieška - - Norėdami surasti žodį, įrašykite jį į įvedimo lauką ir paspauskite Enter. - - Jeigu bus rastas koks nors žodžio apibrėžimas, jis atsiras pagrindinio lango srityje: - -
- Žodyno langas - - Rodo apibrėžimą pagrindinio Žodyno lango srityje. - -
- - Priešingu atveju, atsiras klaidos dialogas su klaidos pobūdį paaiškinančiu pranešimu. - -
- - - Paieškos rezultatų įrašymas - - Norėdami įrašyti paieškos rezultatus, pasirinkite FailasĮrašyti kopiją. Įrašyti kopiją dialoge įveskite failo pavadinimą, o tuomet spustelėkite Įrašyti. - - - - - Paieškos rezultatų spausdinimas - - Norėdami spausdinti paieškos rezultatus, pasirinkite FailasSpausdinti. - - Spausdinimo dialoge, pasirinkite norimą naudoti spausdintuvą, popieriaus formatą, kopijų skaičių. - - Kad pamatytumėte spaudinio peržiūrą, spauskite Peržiūra. - - Spausdinimui spauskite Spausdinti. - - - - - Ieškoti teksto - -
- Žodyno langas - - Pagrindiniame lange rodo žodyno paieškos polangį. - -
- - - Kad surastumėte tekstą tarp paieškos rezultatų, atlikite šiuos žingsnius: - - - Pasirinkite Taisa Rasti , kad matytumėte polangį Rasti. - Į Ieškoti įveskite tekstą, kurį norite surasti. - Spauskite Kitas, kad rastumėte kitą pasikartojimą tekste. Kad rastumėte ankstesnį pasikartojimą tekste, spauskite Ankstesnis. - - -
- -
- - - - Nustatymai - - Norėdami pakeisti Žodyno programos nuostatas, pasirinkite Taisa Nustatymai. - - - - Žodyno šaltiniai - -
- Žodyno langas - - Rodo Šaltinio kortelę Nustatymų dialoge. - -
- - Kad pakeistumėte žodyno šaltinį, pasirinkite pageidaujamą iš sąrašo. -
- - - - Naujo šaltinio pridėjimas - -
- Žodyno langas - - Rodo žodyno šaltinio pridėjimo dialogą. - -
- - Kad pridėtumėte naują žodyno šaltinį, atlikite šiuos žingsnius: - - - Spauskite mygtuką Pridėti - Pakeiskite naujojo šaltinio pavadinimą Aprašymo eilutėje - Pakeiskite naujojo šaltinio transporto tipą Transporto jungtiniame langelyje. - Pakeiskite kitas naujojo šaltinio savybes - Paspauskite Pridėti - - - Skirtingo šaltinio transporto tipai turi skirtingus požymius. Čia yra galimų transporto požymių sąrašas: - - - - - - Transportas - Požymiai - - - - - Dictionary Server - - Kompiuterio vardas: serverio, kuriame laikomas žodynas, vardas - Prievadas: šio serverio prievadas - - - - - - -
- - - - Šaltinio pašalinimas - - Kad pašalintumėte žodyno šaltinį, atlikite šiuos žingsnius: - - - Pasirinkite šalintiną šaltinį - Spauskite mygtuką Pašalinti - - - Jei pašalinate žodyno šaltinį, jis visam laikui ištrinamas iš šaltinių sąrašo. Taip pat, kadangi kai kurie šaltiniai gali būti sistemos lygmens, jums gali būti neleista juos pašalinti, nebent turėtumėte reikalingas savininko privilegijas. - - - - - - Spausdinimo nuostatos - -
- Žodyno langas - - Rodoma nustatymų dialogo kortelė „Spausdinti“. - -
- - Jei norite pakeisti spausdinimo šriftą ir jo dydį, atlikite šiuos žingsnius: - - - Spauskite mygtuką Spausdinimo šriftas - Pasirinkite pageidaujamą šriftą ir jo dydį - Spauskite Pasirinkti - - -
- -
- - - - Žodyno įtaisas - - Žodyno programa pateikiama su skydelio Žodyno įtaisu. Galite jį įdėti į skydelį ir ieškoti žodžių greičiau. - -
- Žodyno įtaiso langas - - Rodomas Žodyno įtaisas. - -
- - - - - Žodyno įtaiso paleidimas - - Kad pridėtumėte Žodyno įtaisą į skydelį, spustelėkite jį dešiniu pelės klavišu, tada pasirinkite Įdėti į skydelį, Pasirinkite „Paieška žodyne“ įtaisų įdėjimo dialoge ir paspauskite Užverti., - - - - - - Paieškos žodyne įtaiso naudojimas - - Norėdami surasti žodį, įveskite jį į įvedimo lauką ir paspauskite klavišą Įvesti arba žodyno piktogramą paspauskite dešiniu pelės klavišu ir pasirinkite Ieškoti pažymėto teksto. - - Jeigu bus rastas koks nors žodžio apibrėžimas, jis atsiras pagrindinio lango srityje: - -
- Žodyno įtaiso langas - - Rodo pagrindinį Paieškos žodyne įtaiso langą. - -
- - Spaukite Įrašyti, kad išsaugotumėte apibrėžimus į tekstinį failą. Spauskite Spausdinti, kad apibrėžimus atspausdintumėte. Spauskite Išvalyti, kad pašalintumėte apibrėžimus. - - Galite paslėpti langą, kairiuoju pelės klavišu spustelėdami ant žodyno piktogramos arba paspaudami Gr klaviatūroje. - -
- - - Nustatymai - - Kad sukonfigūruotumėte Paieškos žodyne įtaisą, dešiniu pelės klavišu paspauskite ant žodyno piktogramos, tada pasirinkite Nustatymai. - - Nustatymų dialogas yra toks pat, kaip ir Žodyno programoje, todėl žr. - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/lt/legal.xml mate-utils-1.26.1/mate-dictionary/help/lt/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/lt/legal.xml 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/lt/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Suteikiamas leidimas kopijuoti, platinti ir/arba modifikuoti šį dokumentą pagal GNU laisvosios dokumentacijos licenciją (GFDL), versiją 1.1 arba bet kurią kitą vėlesnę, publikuotą Laisvosios programinės įrangos fondo (FSF), be invariantinių skyrių, priekinių ir galinių viršelių tekstų. Galite perskaityti GFDL čia nuoroda arba COPYING-DOCS faile, pridėtame prie šio žinyno. - Šis žinynas yra MATE žinynų rinkinio, platinamo GFDL sąlygomis, dalis. Jeigu norite dalintis šiuo žinynu atskirai nuo šio rinkinio, galite tą daryti pridėdami šios licencijos kopiją, kaip nurodyta 6 šios licencijos dalyje. - - Nemažai įmonių, jų produktų ir paslaugų pavadinimai laikomi prekės ženklais. Kuomet šie pavadinimai pasirodo bet kur MATE dokumentacijoje, ir MATE dokumentacijos projekto nariai atkreipia į juos dėmesį, šie pavadinimai radomi didžiosiomis raidėmis arba pradedami didžiąja raide. - - DOKUMENTAS IR MODIFIKUOTOS JO VERSIJOS PATEIKIAMOS GNU LAISVOSIOS DOKUMENTACIJOS LICENCIJOS SĄLYGOMIS SU TOLESNIU SUPRATIMU, KAD: - - DOKUMENTAS PATEIKIAMAS TOKS, KOKS YRA, BE BET KOKIOS RŪŠIES GARANTIJŲ, IŠREIKŠTŲ AR PAREIKŠTŲ, NERIBOTAI LAIKANT, KAD DOKUMENTAS AR JO MODIFIKUOTA VERSIJA YRA BE KLAIDŲ, TINKAMA KONKREČIAI PASKIRČIAI ARBA NEPAŽEIDŽIANTI TAM TIKRŲ TEISIŲ. VISA ŠIO DOKUMENTO AR JO MODIFIKUOTOS VERSIJOS KOKYBĖS, TIKSLUMO IR VEIKIMO PRIKLAUSO JUMS. ESANT BET KOKIAM ŠIO DOKUMENTO AR JO MODIFIKUOTOS VERSIJOS TRŪKUMUI, JŪS (NE PIRMINIS RAŠYTOJAS, AUTORIUS AR KITAS PAGALBININKAS) PRISIIMATE REIKIAMO APTARNAVIMO, REMONTO AR TAISYMO IŠLAIDAS. ŠIS ATSAKOMYBĖS ATSISAKYMAS YRA ESMINĖ ŠIOS LICENCIJOS DALIS. TOLIAU NELEIDŽIAMAS JOKS ŠIO DOKUMENTO AR MODIFIKUOTOS VERSIJOS NAUDOJIMAS, IŠSKYRUS PAGAL ŠĮ ATSAKOMYBĖS ATSISAKYMĄ; IR - - - ESANT JOKIOMS APLINKYMBĖMS IR JOKIAI TEISINEI TEORIJAI AR DELIKTUI (ĮSKAITANT APLAIDUMĄ), SUTARČIAI AR KITAIS ATŽVILGIAIS, ŠIO DOKUMETNO AR JO MODIFIKUOTOS VERSIJOS AUTORIUS, PRADINIS RAŠYTOJAS, BET KURIS PAGALBININKAS ARBA BET KURIS PLATINTOJAS NĖRA ATSAKINGAS BET KURIAM ASMENIUI UŽ BET KOKIUS TIESIOGINIUS, NETIESIOGINIUS, YPATINGUS, ATSITIKTINIUS AR PASEKMINIUS NUOSTOLIUS, ĮSKAITANT DARBO SUSTOJIMĄ, KOMPIUTERIO GEDIMUS AR BET KURIUOS KITUS NUOSTOLIUS ARBA PRARADIMUS, KYLANČIUS IŠ ARBA SUSIJUSIUS SU ŠIO DOKUMENTO AR JO MODIFIKUOTŲ VERSIJŲ NAUDOJIMU, NET JEI IR VIENA IŠ PUSIŲ YRA INFORMUOTA APIE TOKIŲ NUOSTOLIŲ GALIMYBĘ. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/lt/lt.po mate-utils-1.26.1/mate-dictionary/help/lt/lt.po --- mate-utils-1.26.0/mate-dictionary/help/lt/lt.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/lt/lt.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,18 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Moo, 2018 -# Džiugas Grėbliūnas , 2020 +# Robert Antoni Buj i Gelonch , 2021 +# Stefano Karapetsas , 2021 +# Džiugas Grėbliūnas , 2021 # Wolfgang Ulbrich , 2021 +# Moo, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Wolfgang Ulbrich , 2021\n" -"Language-Team: Lithuanian (https://www.transifex.com/mate/teams/13566/lt/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Moo, 2021\n" +"Language-Team: Lithuanian (https://app.transifex.com/mate/teams/13566/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -32,7 +33,7 @@ "Tomas Kuliavas \n" "Gediminas Paulauskas \n" "Moo\n" -"Džiugas Grėbliūnas " +"Džiugas Grėbliūnas " #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -49,7 +50,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:33 msgid "2015-2021 MATE Documentation Project" -msgstr "" +msgstr "2015-2021 MATE dokumentacijos projektas" #. (itstool) path: articleinfo/copyright #: C/index.docbook:37 @@ -518,7 +519,7 @@ #. (itstool) path: listitem/para #: C/index.docbook:316 msgid "Edit the attributes of the new source" -msgstr "Pakeiskite kitas naujojo šaltinio savybes" +msgstr "Pakeiskite kitus naujojo šaltinio požymius" #. (itstool) path: listitem/para #: C/index.docbook:317 @@ -648,7 +649,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:394 msgid "The Dictionary Applet" -msgstr "Žodyno įtaisas" +msgstr "Paieškos žodyne įtaisas" #. (itstool) path: sect1/para #: C/index.docbook:396 @@ -659,13 +660,13 @@ "words in dictionaries." msgstr "" "Žodyno programa pateikiama su skydelio " -"Žodyno įtaisu. Galite jį įdėti į skydelį ir " -"ieškoti žodžių greičiau. " +"Paieškos žodyne įtaisu. Galite jį įdėti į " +"skydelį ir ieškoti žodžių greičiau. " #. (itstool) path: figure/title #: C/index.docbook:402 C/index.docbook:438 msgid "Dictionary Applet Window" -msgstr "Žodyno įtaiso langas" +msgstr "Paieškos žodyne įtaiso langas" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -689,13 +690,13 @@ "Applet." msgstr "" "Rodomas Žodyno " +"format=\"PNG\"/>Rodomas Paieškos žodyne " "įtaisas." #. (itstool) path: sect2/title #: C/index.docbook:416 msgid "To Start Dictionary Applet" -msgstr "Žodyno įtaiso paleidimas" +msgstr "Paieškos žodyne įtaiso paleidimas" #. (itstool) path: sect2/para #: C/index.docbook:418 @@ -705,10 +706,10 @@ "Dictionary Applet in the Add to the panel dialog," " then click OK." msgstr "" -"Kad pridėtumėte Žodyno įtaisą į skydelį, " -"spustelėkite jį dešiniu pelės klavišu, tada pasirinkite Įdėti į" -" skydelį, Pasirinkite „Paieška žodyne“ įtaisų įdėjimo dialoge" -" ir paspauskite Užverti.," +"Kad pridėtumėte Paieškos žodyne įtaisą į skydelį," +" spustelėkite jį dešiniu pelės klavišu, tada pasirinkite Įdėti " +"į skydelį, Pasirinkite „Paieška žodyne“ įtaisų įdėjimo " +"dialoge ir paspauskite Užverti.," #. (itstool) path: sect2/title #: C/index.docbook:427 @@ -796,12 +797,12 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" "Nustatymų dialogas yra toks pat, kaip ir " -"Žodyno programoje, todėl žr. " +"Žodyno programoje, todėl žr. " #. (itstool) path: para/ulink #: C/legal.xml:9 diff -Nru mate-utils-1.26.0/mate-dictionary/help/lv/index.docbook mate-utils-1.26.1/mate-dictionary/help/lv/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/lv/index.docbook 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/lv/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Ievads - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Komandrinda - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Izmantojums - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Iestatījumi - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Vārdnīcas avoti - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transports - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Iestatījumi - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/lv/legal.xml mate-utils-1.26.1/mate-dictionary/help/lv/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/lv/legal.xml 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/lv/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/lv/lv.po mate-utils-1.26.1/mate-dictionary/help/lv/lv.po --- mate-utils-1.26.0/mate-dictionary/help/lv/lv.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/lv/lv.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# duck , 2018 +# Stefano Karapetsas , 2021 +# duck , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: duck , 2018\n" -"Language-Team: Latvian (https://www.transifex.com/mate/teams/13566/lv/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: duck , 2021\n" +"Language-Team: Latvian (https://app.transifex.com/mate/teams/13566/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -674,8 +674,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/mai/index.docbook mate-utils-1.26.1/mate-dictionary/help/mai/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/mai/index.docbook 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mai/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - परिचय - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - कमांड लाइन - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - प्रयोग - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - वरीयतासभ - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - परिवहन - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - वरीयतासभ - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/mai/legal.xml mate-utils-1.26.1/mate-dictionary/help/mai/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/mai/legal.xml 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mai/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/mai/mai.po mate-utils-1.26.1/mate-dictionary/help/mai/mai.po --- mate-utils-1.26.0/mate-dictionary/help/mai/mai.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mai/mai.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Maithili (https://www.transifex.com/mate/teams/13566/mai/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Maithili (https://app.transifex.com/mate/teams/13566/mai/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/Makefile.in mate-utils-1.26.1/mate-dictionary/help/Makefile.in --- mate-utils-1.26.0/mate-dictionary/help/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,568 +0,0 @@ -# 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 . -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 = mate-dictionary/help -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 = -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__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.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@ -HELP_ID = mate-dictionary -HELP_FILES = index.docbook legal.xml -HELP_MEDIA = \ - figures/mate-dictionary-add-source.png \ - figures/mate-dictionary-applet.png \ - figures/mate-dictionary-applet-window.png \ - figures/mate-dictionary-application.png \ - figures/mate-dictionary-find.png \ - figures/mate-dictionary-lookup.png \ - figures/mate-dictionary-preferences-print.png \ - figures/mate-dictionary-preferences-source.png - - -# Add linguas to be ignored, e.g. IGNORE_HELP_LINGUAS = ca de es fr -@USE_NLS_TRUE@IGNORE_HELP_LINGUAS = -@USE_NLS_FALSE@HELP_LINGUAS = -@USE_NLS_TRUE@HELP_LINGUAS = $(if $(IGNORE_HELP_LINGUAS), \ -@USE_NLS_TRUE@ $(filter-out $(IGNORE_HELP_LINGUAS),$(subst /,,$(dir $(wildcard */*.po)))), \ -@USE_NLS_TRUE@ $(subst /,,$(dir $(wildcard */*.po))) ) - -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 mate-dictionary/help/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign mate-dictionary/help/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): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -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 -installdirs: -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: - -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-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-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: - -.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-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-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 - -.PRECIOUS: Makefile - - -@YELP_HELP_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 -Nru mate-utils-1.26.0/mate-dictionary/help/mate-dictionary.omf.in mate-utils-1.26.1/mate-dictionary/help/mate-dictionary.omf.in --- mate-utils-1.26.0/mate-dictionary/help/mate-dictionary.omf.in 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mate-dictionary.omf.in 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + user's manual + + + + diff -Nru mate-utils-1.26.0/mate-dictionary/help/mg/index.docbook mate-utils-1.26.1/mate-dictionary/help/mg/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/mg/index.docbook 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mg/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Lazam-baiko - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Safidy - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Fitaterana - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Safidy - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/mg/legal.xml mate-utils-1.26.1/mate-dictionary/help/mg/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/mg/legal.xml 2021-08-05 19:47:32.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mg/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/mg/mg.po mate-utils-1.26.1/mate-dictionary/help/mg/mg.po --- mate-utils-1.26.0/mate-dictionary/help/mg/mg.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mg/mg.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Malagasy (https://www.transifex.com/mate/teams/13566/mg/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Malagasy (https://app.transifex.com/mate/teams/13566/mg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/mi/index.docbook mate-utils-1.26.1/mate-dictionary/help/mi/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/mi/index.docbook 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mi/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Ngā tina hiahia - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Ngā tina hiahia - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/mi/legal.xml mate-utils-1.26.1/mate-dictionary/help/mi/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/mi/legal.xml 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mi/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/mk/index.docbook mate-utils-1.26.1/mate-dictionary/help/mk/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/mk/index.docbook 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Претставување - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Командна линија - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Употреба - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Параметри - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Извори на речници - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Транспорт - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Параметри - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/mk/legal.xml mate-utils-1.26.1/mate-dictionary/help/mk/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/mk/legal.xml 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/mk/mk.po mate-utils-1.26.1/mate-dictionary/help/mk/mk.po --- mate-utils-1.26.0/mate-dictionary/help/mk/mk.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mk/mk.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# exoos , 2018 +# Stefano Karapetsas , 2021 +# exoos , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: exoos , 2018\n" -"Language-Team: Macedonian (https://www.transifex.com/mate/teams/13566/mk/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: exoos , 2021\n" +"Language-Team: Macedonian (https://app.transifex.com/mate/teams/13566/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -672,8 +672,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ml/index.docbook mate-utils-1.26.1/mate-dictionary/help/ml/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ml/index.docbook 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ml/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - അവതരണം - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - ആജ്ഞാ സ്ഥാനം - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - ഉപയോഗം - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - മുന്‍ഗണനകള്‍ - - To change the Dictionary application - preferences, choose EditPreferences. - - - - നിഘണ്ടുവിന്‍റെ ഉറവിടം - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - ഗതാഗതം - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - മുന്‍ഗണനകള്‍ - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ml/legal.xml mate-utils-1.26.1/mate-dictionary/help/ml/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ml/legal.xml 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ml/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ml/ml.po mate-utils-1.26.1/mate-dictionary/help/ml/ml.po --- mate-utils-1.26.0/mate-dictionary/help/ml/ml.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ml/ml.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Malayalam (https://www.transifex.com/mate/teams/13566/ml/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Malayalam (https://app.transifex.com/mate/teams/13566/ml/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -673,8 +673,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/mn/index.docbook mate-utils-1.26.1/mate-dictionary/help/mn/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/mn/index.docbook 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Тушаалын мөр - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Тохиргоо - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Тохиргоо - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/mn/legal.xml mate-utils-1.26.1/mate-dictionary/help/mn/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/mn/legal.xml 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/mn/mn.po mate-utils-1.26.1/mate-dictionary/help/mn/mn.po --- mate-utils-1.26.0/mate-dictionary/help/mn/mn.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mn/mn.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Mongolian (https://www.transifex.com/mate/teams/13566/mn/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Mongolian (https://app.transifex.com/mate/teams/13566/mn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -673,8 +673,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/mr/index.docbook mate-utils-1.26.1/mate-dictionary/help/mr/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/mr/index.docbook 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - परिचय - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - आदेश पंक्ती - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - वापर - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - प्राधान्यक्रम - - To change the Dictionary application - preferences, choose EditPreferences. - - - - शब्दकोश स्त्रोत - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - स्थानांतरन - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - प्राधान्यक्रम - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/mr/legal.xml mate-utils-1.26.1/mate-dictionary/help/mr/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/mr/legal.xml 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/mr/mr.po mate-utils-1.26.1/mate-dictionary/help/mr/mr.po --- mate-utils-1.26.0/mate-dictionary/help/mr/mr.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/mr/mr.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Vaibhav S Dalvi , 2018 +# Stefano Karapetsas , 2021 +# Vaibhav S Dalvi , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Vaibhav S Dalvi , 2018\n" -"Language-Team: Marathi (https://www.transifex.com/mate/teams/13566/mr/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Vaibhav S Dalvi , 2021\n" +"Language-Team: Marathi (https://app.transifex.com/mate/teams/13566/mr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -672,8 +672,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ms/index.docbook mate-utils-1.26.1/mate-dictionary/help/ms/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ms/index.docbook 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ms/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,360 +0,0 @@ - - - - - - - -]> - - - -
- - - - Panduan Kamus - - - Kamus membolehkan anda cari takrifan dan ejaan perkataan yang betul. - - - 2015-2021 Projek Dokumentasi MATE - 2005 Emmanuele Bassi - - - - - Projek Dokumentasi MATE - - - Projek Dokumentasi GNOME - - - - - Pasukan Pendokumenan MATE Atas Meja MATE - Emmanuele Bassi
ebassi@gmail.com
- - - -
- - - Manual Kamus V1.10.0 Julai 2015 - Wolfgang Ulbrich - Projek Dokumentasi MATE - - Manual Kamus V1.10.0 Julai 2015 - Emmanuele Bassi - Projek Dokumentasi GNOME - - - - Panduan ini menerangkan versi 1.10 bagi Kamus. - - Maklumbalas - Untuk melaporkan pepijat atau membuat saranan berkenaan aplikasi Kamus atau panduan ini, ikuti arahan di dalam Halaman Maklumbalas MATE. - - - -
- - Kamus - - - - - Pengenalan - - Aplikasi Kamus membolehkan anda gelintar perkataan dan istilah dalam sumber kamus. - - - - - - Membiasakan Diri - - - - Memulakan Kamus - - Anda boleh memulakan Kamus dengan cara berikut: - - - - Menu Aplikasi - - Pilih Aksesori Kamus . - - - - Baris perintah - - Lakukan perintah berikut: mate-dictionary - - - - - Setelah mula, tetingkap Kamus dipaparkan: - -
- Tetingkap Kamus - - Tunjuk tetingkap utama Kamus. - -
- -
- -
- - - - Penggunaan - - - Mencari perkataan - - Untuk mencari perkataan, taip dalam medan masukan dan ketik Enter. - - Jika sesetengah takrifan untuk perkataan ditemui, ia akan muncul di dalam kawasan tetingkap utama: - -
- Tetingkap Kamus - - Menunjukkan satu takrifan di dalam tetingkap utama Kamus. - -
- - Sebaliknya, satu ralat dialog akan muncul, dengan mesej yang menjelaskan sebab ralat itu berlaku. - -
- - - Menyimpan hasil carian - - Untuk menyimpan keputusan carian, pilih Fail Simpan satu Salinan. Masukkan nama untuk fail dalam dialog Simpan satu Salinan, kemudian klik Simpan. - - - - - Cetak hasil carian - - Untuk mencetak hasil carian, pilih FailCetak. - - Dalam dialog Cetak anda boleh pilih perintah yang dikehendaki, format kertas, bilangan salinan. - - Untuk melihat pratonton cetakan, klik Pratonton. - - Untuk mencetak, klik Cetak. - - - - - Cari Teks - -
- Tetingkap Kamus - - Menunjukkan anak tetingkap Cari Kamus di dalam tetingkap utama. - -
- - - Untuk mencari teks dalan hasil carian, buat langkah-langkah berikut: - - - Pilih SuntingCari untuk paparkan anak tetingkap Cari. - Taip teks yang mahu dicari dalam masukan Gelintar. - Untuk mencari teks berikutnya, klik Berikutnya. Untuk mencari teks terdahulu, klik Terdahulu. - - -
- -
- - - - Keutamaan - - Untuk mengubah keutamaan aplikasi Kamus, pilih SuntingKeutamaan. - - - - Sumber Kamus - -
- Tetingkap Kamus - - Menunjukkan tab Sumber dalam dialog Keutamaan. - -
- - Untuk mengubah sumber kamus yang hendak digunakan, pilih sumber dikehendaki melalui senarai. -
- - - - Menambah sumber baharu - -
- Tetingkap Kamus - - Menunjukkan dialog Tambah Sumber. - -
- - Untuk menambah sumber kamus baharu, buat langkah-langkah berikut: - - - Klik pada butang Tambah - Sunting nama sumber baharu di dalam masukan Keterangan - Ubah jenis angkutan bagi sumber baharu menggunakan kotak kombo Angkutan - Sunting atribut sumber baharu - Klik Tambah - - - Jenis angkutan sumber berlainan menggunaakn atribut yang berbeza. Di bawah merupakan senarai atribut per jenis angkutan yang tersedia: - - - - - - Angkutan - Atribut - - - - - Pelayan Kamus - - Namahos: namahos bagi pelayan kamus - Port: port bagi pelayan kamus - - - - - - -
- - - - Membuang sumber - - Untuk membuang sumber, buat langkah-langkah berikut: - - - Pilih sumber yang mahu dibuang - Klik butang Buang - - - Jika anda membuang sumber kamus, ia akan dipadam secara kekal dari senarai sumber sedia ada. Oleh kerana beberapa sumber mungkin ditakrif menyeluruhi-sistem anda mungkin tidak dapat membuangnya melainkan anda ada kelayakan pemilik. - - - - - - Pilihan Cetak - -
- Tetingkap Kamus - - Tunjuk tab Cetak di dalam dialog Keutamaan. - -
- - Jika anda mahu mengubah nama dan saiz fon yang digunakan ketika mencetak, buat langkah-langkah berikut: - - - Klik pada butang Fon Cetak - Pilih fon dan saiz yang mahu digunakan - Klik Ok - - -
- -
- - - - Aplet Kamus - - Aplikasi Kamus disertakan dengan aplet panel, Aplet Kamus. Anda boleh menambah Aplet Kamus ke dalam panel dan mencari perkataan di dalam kamus. - -
- Tetingkap Aplet Kamus - - Menunjukkan Aplet Kamus. - -
- - - - - Memulakan Aplet Kamus - - Untuk menambah Aplet Kamus ke dalam panel, klik-kanan pada panel, kemudian pilih Tambah dalam Panel. Pilih Aplet Kamus dalam dialog Tambah dalam panel, kemudian klik OK. - - - - - - Menggunakan Aplet Kamus - - Untuk mencari perkataan, taip dalam medan masukan dan ketik Enter atau klik-kanan pada ikon kamus dan kemudian pilih Cari. - - Jika sesetengah takrifan untuk perkataan ditemui, satu tetingkap akan muncul, dengan teks takrifannya: - -
- Tetingkap Aplet Kamus - - Menunjukkan tetingkap utama Aplet Kamus. - -
- - Klik Simpan untuk menyimpan takrifan ke dalam fail teks. Klik Cetak untuk mencetak takrifan. Klik Kosongkan untuk mengosongkan takrifan sedia ada. - - Anda juga boleh hilangkan tetingkap dengan mengklik-kiri pada ikon kamus atau menekan Esc. - -
- - - Keutamaan - - Untuk konfigur Aplet Kamus, klik-kanan pada ikon kamus, kemudian pilih Keutamaan. - - Dialog Keutamaan juga digunakan oleh aplikasi Kamus, sila rujuk - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ms/legal.xml mate-utils-1.26.1/mate-dictionary/help/ms/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ms/legal.xml 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ms/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Keizinan diberi untuk menyalin, mengedar dan/atau mengubahsuai dokumen ini bawah terma Lesen Dokumentasi Bebas GNU (GDFL), bagi Versi 1.1 atau mana-mana versi terkemudian yang telah diterbitkan oleh Free Software Foundation tanpa Seksyen Tak Varian, tanpa Teks Muka-Hadapan, dan tanpa Teks Muka Belakang. Anda boleh temui satu salinan GFDL di dalam pautan atau di dalam fail COPYING-DOCS yang disertakan bersama-sama panduan ini. - Panduan ini adalah sebahagian dari koleksi panduan MATE yang diedar bawah GFDL. Jika anda mahu edar panduan ini secara berasingan dari koleksi asalnya, anda boleh membuat sedemikian dengan menambah satu salinan lesen ke dalam panduan sepertimana yang dijelaskan dalam seksyen 6 lesen tersebut. - - Kebanyakan nama digunakan oleh syarikat untuk membezakan produk dan perkhidmatan mereka dituntut sebagai tanda dagangan. Jika nama tersebut ada di dalam dokumentasi MATE, dan ahli-ahli Projek Dokumentasi MATE sedar akan tanda dagangan tersebut, kerana nama-nama tersebut telah di huruf besarkan atau huruf awalnya telah dihuruf besarkan. - - DOKUMEN DAN VERSI UBAHSUAI DOKUMEN DISEDIAKAN BAWAH TERMA LESEN DOKUMENTASI BEBAS GNU DENGAN PERKARA BERIKUT: - - DOKUMEN DISEDIAKAN SEBAGAI DASAR "SEBAGAIMANA ADANYA", TANPA JAMINAN ATAS APA JUA, SAMA ADA DIUNGKAP ATAU DILAKSANA, TERMASUKLAH, TANPA HAD, JAMINAN TERHADAP DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN ADALAH BEBAS MASALAH KEBOLEHNIAGAAN. SESUAI ATAS TUJUAN TERTENTU ATAU BUKAN-PELANGGARAN. KESELURUHAN RISIKO ATAS KUALITI, KETEPATAN, DAN PRESTASI DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN TERLETAK PADA DIRI ANDA. SEKIRANYA TERDAPAT MANA-MANA DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN YANG BERMASALAH DALAM APA JUA BENTUK, ANDA (BUKAN PENULIS, PENGARANG ATAU MANA-MANA PENYUMBANG ASAL) MENANGGUNG KOS APA JUA PERKHIDMATAN, PEMBAIKAN ATAU PEMBETULAN YANG DIPERLUKAN. PENAFIAN JAMINAN INI TERBENTUK SEBAGAI BAHAGIAN PENTING LESEN INI. MAKA TIDAK PENGGUNAAN MANA-MANA DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN DIIZINKAN KECUALI TERTAKLUK DI BAWAH PENAFIAN INI; DAN - - - TANPA DI BAWAH APA-APA KEADAAN DAN TEORI PERUNDANGAN, SAMA ADA DALAM TORT (TERMASUKLAH KECUAIAN), KONTRAK, ATAU SEUMPAMA DENGANNYA, SI PENGARANG, PENULIS ASAL, MANA-MANA PENYUMBANG, ATAU MANA-MANA PENGEDAR DOKUMEN ATAU VERSI UBAHSUAI DOKUMEN, ATAU MANA-MANA PEMBEKAL ATAS APA JUA KUMPULAN, JUGA PADA MANA-MANA INDIVIDU ATAS KEROSAKAN SECARA LANGSUNG ATAU TIDAK LANGSUNG, SECARA KHUSUS, TIDAK SENGAJA ATAU, KEROSAKAN LANJUTAN TERHADAP SESIAPA SAHAJA, TERMASUKLAH TANPA HAD BAGI KEROSAKAN NAMA BAIK, GANGGUAN KERJA, KEGAGALAN ATAU KEROSAKAN KOMPUTER, ATAU MANA-MANA MAHUPUN SEMUA KEROSAKAN LAIN BERKAITAN PENGGUNAAN DOKUMEN DAN VERSI UBAHSUAI DOKUMEN, WALAUPUN PIHAK TERSEBUT TELAH DIMAKLUMKAN ADANYA KEBARANGKALIAN KEROSAKAN SEBEGITU BOLEH BERLAKU. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ms/ms.po mate-utils-1.26.1/mate-dictionary/help/ms/ms.po --- mate-utils-1.26.0/mate-dictionary/help/ms/ms.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ms/ms.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Robert Antoni Buj i Gelonch , 2019 +# Robert Antoni Buj i Gelonch , 2021 # abuyop , 2021 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: abuyop , 2021\n" -"Language-Team: Malay (https://www.transifex.com/mate/teams/13566/ms/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Malay (https://app.transifex.com/mate/teams/13566/ms/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -782,8 +782,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" "Dialog Keutamaan juga digunakan oleh aplikasi " "Kamus, sila rujuk - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - 2005 Emmanuele Bassi - - - - - MATE dokumentasjonsprosjekt - - - GNOME dokumentasjonsprosjekt - - - - - - MATE Documentation Team - - Mate desktop - - - Emmanuele Bassi
ebassi@gmail.com
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Tilbakemelding - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduksjon - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Kom i gang - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Kommandolinje - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Bruk - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Innstillinger - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Ordbokkilder - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Klikk Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Innstillinger - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/nb/legal.xml mate-utils-1.26.1/mate-dictionary/help/nb/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/nb/legal.xml 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/nb/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/nb/nb.po mate-utils-1.26.1/mate-dictionary/help/nb/nb.po --- mate-utils-1.26.0/mate-dictionary/help/nb/nb.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/nb/nb.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Allan Nordhøy , 2018 -# Imre Kristoffer Eilertsen , 2018 +# Stefano Karapetsas , 2021 +# Allan Nordhøy , 2021 +# Imre Kristoffer Eilertsen , 2021 # Jan Sherdahl, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" "Last-Translator: Jan Sherdahl, 2021\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/mate/teams/13566/nb/)\n" +"Language-Team: Norwegian Bokmål (https://app.transifex.com/mate/teams/13566/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -686,8 +686,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/nds/index.docbook mate-utils-1.26.1/mate-dictionary/help/nds/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/nds/index.docbook 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/nds/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - gebruk - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Instellens - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Instellens - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/nds/legal.xml mate-utils-1.26.1/mate-dictionary/help/nds/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/nds/legal.xml 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/nds/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/nds/nds.po mate-utils-1.26.1/mate-dictionary/help/nds/nds.po --- mate-utils-1.26.0/mate-dictionary/help/nds/nds.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/nds/nds.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Low German (https://www.transifex.com/mate/teams/13566/nds/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Low German (https://app.transifex.com/mate/teams/13566/nds/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -674,8 +674,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ne/index.docbook mate-utils-1.26.1/mate-dictionary/help/ne/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ne/index.docbook 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ne/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - परिचय - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - आदेश रेखा - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - प्रयोग - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - प्राथमिकताहरू - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - सवारी - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - प्राथमिकताहरू - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ne/legal.xml mate-utils-1.26.1/mate-dictionary/help/ne/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ne/legal.xml 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ne/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ne/ne.po mate-utils-1.26.1/mate-dictionary/help/ne/ne.po --- mate-utils-1.26.0/mate-dictionary/help/ne/ne.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ne/ne.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Sven Keeter , 2018 -# chautari , 2018 +# Stefano Karapetsas , 2021 +# Sven Keeter , 2021 +# chautari , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: chautari , 2018\n" -"Language-Team: Nepali (https://www.transifex.com/mate/teams/13566/ne/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: chautari , 2021\n" +"Language-Team: Nepali (https://app.transifex.com/mate/teams/13566/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -675,8 +675,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/nl/index.docbook mate-utils-1.26.1/mate-dictionary/help/nl/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/nl/index.docbook 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/nl/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,461 +0,0 @@ - - - - - - - -]> - - - -
- - - - Handleiding voor het Woordenboek - - - Het woordenboek helpt u de betekenis en juiste spelling van woorden op te zoeken. - - - - 2015-2021 - MATE Documentation Project - - 2005 Emmanuele Bassi - - - - - MATE Documentatie Project - - - GNOME Documentatie Project - - - - - MATE Documentatie Team Mate bureaublad - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Terukoppeling - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introductie - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Opdrachtregel - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Gebruik - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Voorkeuren - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Woordenboekbronnen - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Voorkeuren - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/nl/legal.xml mate-utils-1.26.1/mate-dictionary/help/nl/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/nl/legal.xml 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/nl/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - Deze handleiding maakt deel uit van een verzameling MATE handleidingen onder de GFDL. Als u deze handleiding afzonderlijk wil verspreiden, dan kan u dit door een kopie van de licentie van de handleiding toe te voegen, zoals beschreven in hoofdstuk 6 van de licentie. - - Vele van de namen zoals gebruikt bij bedrijven om hun producten en services te onderscheiden zijn geclaimd als handelsmerken. Wanneer deze namen voorkomen in enige MATE documentatie, en de leden van het MATE Documentatie Project hiervan bewust zijn gemaakt, dan zullen deze namen in hoofdletters zijn of beginnen met hoofdletters. - - HET DOCUMENT EEN AANGEPASTE VERSIES VAN HET DOCUMENT WORDEN AANGEBODEN ONDER DE VOORWAARDEN VAN DE GNU FREE DOCUMENTATION LICENTIE MET HET BEGRIP DAT: - - HET DOCUMENT IS AANGEBODEN OP EEN "ZOALS HET IS" BASIS, ZONDER ENIGE VORM VAN GARANTIE, ZOWEL UITGESPROKEN ALS GEÏMPLICEERD, INCLUSIEF, ZONDER BEPERKINGEN, GARANTIES DAT HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET DOCUMENT VRIJ VERHANDELBARE GEBREKEN OF GESCHIKT IS VOOR EEN BEPAALD DOEL IS, OF GEEN INBREUK MAAKT. HET VOLLEDIGE RISICO BETREFFEND DE KWALITEIT, ACCURAATHEID, EN PRESTATIES VAN HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET DOCUMENT LIGT BIJ U. INDIEN HET DOCUMENT DEFECT BLIJKT TE ZIJN IN ENIGE VORM, U (NIET DE INITIËLE SCHRIJVER, AUTEUR OF ENIGE BIJDRAGER) ZAL DE KOSTEN KOSTEN VOOR ENIGE NODIGE SERVICE, REPARATIE OF CORRECTIE OP ZICH NEMEN. DEZE DISCLAIMER BETREFT DE GARANTIE IS EEN ESSENTIEEL ONDERDEEL VAN DEZE LICENTIE. GEEN ENKEL GEBRUIK VAN DIT DOCUMENT OF AANGEPASTE VERSIE VAN HET DOCUMENT IS TOEGESTAAN ALS VOLGT ZONDER DEZE DISCLAIMER; EN - - - 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. - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/nl/nl.po mate-utils-1.26.1/mate-dictionary/help/nl/nl.po --- mate-utils-1.26.0/mate-dictionary/help/nl/nl.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/nl/nl.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Pjotr , 2018 -# dragnadh, 2018 -# Ronald van Zuijlen, 2018 -# Benji Leenders, 2020 +# Stefano Karapetsas , 2021 +# Pjotr , 2021 +# dragnadh, 2021 # b9b0d258fa591da5350b6e67cf68cd68_9fecbb4 <28506b9ff23f99a34b566250ce31bbad_250479>, 2021 +# Ronald van Zuijlen, 2021 +# kaasknak, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: b9b0d258fa591da5350b6e67cf68cd68_9fecbb4 <28506b9ff23f99a34b566250ce31bbad_250479>, 2021\n" -"Language-Team: Dutch (https://www.transifex.com/mate/teams/13566/nl/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: kaasknak, 2021\n" +"Language-Team: Dutch (https://app.transifex.com/mate/teams/13566/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,18 +23,7 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "" -"Launchpad-bijdragers:\n" -" Daniël H. https://launchpad.net/~daan-is-here\n" -" Mark Cilissen https://launchpad.net/~pixlism\n" -" Peter van der Does https://launchpad.net/~pdoes\n" -" Tom Louwrier https://launchpad.net/~tom-louwrier\n" -" Twan Coenraad https://launchpad.net/~t.coenraad\n" -" cumulus007 https://launchpad.net/~cumulus-007\n" -" kactusrvm https://launchpad.net/~kactusrvm\n" -" kriekske https://launchpad.net/~kriekenbuik-gmail\n" -"Andere bijdragers:\n" -"Pjotr" +msgstr "Pjotr (pjotrvertaalt@gmail.com)" #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -691,8 +680,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink @@ -720,9 +709,9 @@ " section 6 of the license." msgstr "" "Deze handleiding maakt deel uit van een verzameling MATE handleidingen onder" -" de GFDL. Als u deze handleiding afzonderlijk wil verspreiden, dan kan u dit" -" door een kopie van de licentie van de handleiding toe te voegen, zoals " -"beschreven in hoofdstuk 6 van de licentie." +" de GFDL. Als u deze handleiding afzonderlijk wilt verspreiden, dan kan u " +"dit doen door een kopie van de licentie aan de handleiding toe te voegen, " +"zoals beschreven in hoofdstuk 6 van de licentie." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -733,11 +722,11 @@ "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" -"Vele van de namen zoals gebruikt bij bedrijven om hun producten en services " -"te onderscheiden zijn geclaimd als handelsmerken. Wanneer deze namen " -"voorkomen in enige MATE documentatie, en de leden van het MATE Documentatie " -"Project hiervan bewust zijn gemaakt, dan zullen deze namen in hoofdletters " -"zijn of beginnen met hoofdletters." +"Vele van de namen die worden gebruikt door bedrijven om hun producten en " +"diensten te onderscheiden zijn vastgelegd als handelsmerken. Wanneer deze " +"namen voorkomen in enige MATE documentatie, en wanneer de leden van het MATE" +" Documentatie Project hierop attent zijn gemaakt, zullen deze namen in " +"hoofdletters zijn of beginnen met hoofdletters." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -754,18 +743,18 @@ "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 "" -"HET DOCUMENT IS AANGEBODEN OP EEN \"ZOALS HET IS\" BASIS, ZONDER ENIGE VORM " -"VAN GARANTIE, ZOWEL UITGESPROKEN ALS GEÏMPLICEERD, INCLUSIEF, ZONDER " +"HET DOCUMENT WORDT AANGEBODEN OP EEN \"ZOALS HET IS\" BASIS, ZONDER ENIGE " +"VORM VAN GARANTIE, ZOWEL UITGESPROKEN ALS GEÏMPLICEERD, INCLUSIEF, ZONDER " "BEPERKINGEN, GARANTIES DAT HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET " -"DOCUMENT VRIJ VERHANDELBARE GEBREKEN OF GESCHIKT IS VOOR EEN BEPAALD DOEL " -"IS, OF GEEN INBREUK MAAKT. HET VOLLEDIGE RISICO BETREFFEND DE KWALITEIT, " -"ACCURAATHEID, EN PRESTATIES VAN HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET" -" DOCUMENT LIGT BIJ U. INDIEN HET DOCUMENT DEFECT BLIJKT TE ZIJN IN ENIGE " -"VORM, U (NIET DE INITIËLE SCHRIJVER, AUTEUR OF ENIGE BIJDRAGER) ZAL DE " -"KOSTEN KOSTEN VOOR ENIGE NODIGE SERVICE, REPARATIE OF CORRECTIE OP ZICH " -"NEMEN. DEZE DISCLAIMER BETREFT DE GARANTIE IS EEN ESSENTIEEL ONDERDEEL VAN " +"DOCUMENT VRIJ IS VAN VERHANDELBARE GEBREKEN OF GESCHIKT IS VOOR EEN BEPAALD " +"DOEL IS, OF GEEN INBREUK MAAKT. HET VOLLEDIGE RISICO BETREFFENDE DE " +"KWALITEIT, ACCURAATHEID, EN PRESTATIES VAN HET DOCUMENT OF DE AANGEPASTE " +"VERSIE VAN HET DOCUMENT LIGT BIJ U. INDIEN HET DOCUMENT DEFECT BLIJKT TE " +"ZIJN IN ENIGE VORM, ZAL U (NIET DE INITIËLE SCHRIJVER, AUTEUR OF ENIGE " +"BIJDRAGER) DE KOSTEN VOOR BENODIGD ONDERHOUD, REPARATIE OF CORRECTIE OP ZICH" +" NEMEN. DEZE AANSPRAKELIJKHEIDSUITSLUITING IS EEN WEZENLIJK ONDERDEEL VAN " "DEZE LICENTIE. GEEN ENKEL GEBRUIK VAN DIT DOCUMENT OF AANGEPASTE VERSIE VAN " -"HET DOCUMENT IS TOEGESTAAN ALS VOLGT ZONDER DEZE DISCLAIMER; EN" +"HET DOCUMENT IS TOEGESTAAN ZONDER DEZE UITSLUITING VAN AANSPRAKELIJKHEID; EN" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -781,6 +770,17 @@ "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" +"ONDER GEEN ENKELE OMSTANDIGHEDEN EN ONDER GEEN JURIDISCHE THEORIE, ZIJ HET " +"WETTELIJK (INCLUSIEF NALATIGHEID), CONTRACT, OF ANDERZIJDS ZAL DE AUTEUR, " +"INITIËLE AUTEUR, ENIGE BIJDRAGER VAN HET DOCUMENT OF DE AANGEPASTE VERSIE " +"VAN HET DOCUMENT, NOCH ENIGE LEVERANCIER VAN EEN VAN DEZE PARTIJEN, " +"AANSPRAKELIJK GEHOUDEN WORDEN DOOR ENIG PERSOON VOOR ENIGE DIRECTE, " +"INDIRECTE, SPECIALE, INCIDENTELE, OF GEVOLG SCHADE IN ELKE VORM INCLUSIEF, " +"ZONDER BEPERKING, SCHADE DOOR VERLIES VAN GOEDE WIL, WERK ONDERBREKING, " +"COMPUTER FALEN OF STORING, OF ENIGE ANDERE VORM VAN SCHADE OF VERLIES ALS " +"GEVOLGEN VAN HET GEBRUIKT VAN HET DOCUMENT EN DE AANGEPASTE VERSIES VAN HET " +"DOCUMENT, ZELFS ALS ZO EEN PARTIJ GEÏNFORMEERD ZOU ZIJN OVER DE MOGELIJKHEID" +" VAN ZULKE SCHADES." #. (itstool) path: legalnotice/para #: C/legal.xml:28 @@ -789,6 +789,6 @@ "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" -"HET DOCUMENT EEN AANGEPASTE VERSIES VAN HET DOCUMENT WORDEN AANGEBODEN ONDER" -" DE VOORWAARDEN VAN DE GNU FREE DOCUMENTATION LICENTIE MET HET BEGRIP DAT: " -"<_:orderedlist-1/>" +"HET DOCUMENT EN AANGEPASTE VERSIES VAN HET DOCUMENT WORDEN BESCHIKBAAR " +"GESTELD ONDER DE VOORWAARDEN VAN DE GNU FREE DOCUMENTATION LICENTIE WAARBIJ " +"BUITENDIEN GELDT DAT: <_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/mate-dictionary/help/nn/index.docbook mate-utils-1.26.1/mate-dictionary/help/nn/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/nn/index.docbook 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/nn/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Dokumentasjonsprosjekt - - - GNOME Dokumentasjonsprosjekt - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Tilbakemelding - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Innføring - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Kommandolinje - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Bruk - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Innstillingar - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Ordbokkjelder - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Innstillingar - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/nn/legal.xml mate-utils-1.26.1/mate-dictionary/help/nn/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/nn/legal.xml 2021-08-05 19:47:33.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/nn/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/nn/nn.po mate-utils-1.26.1/mate-dictionary/help/nn/nn.po --- mate-utils-1.26.0/mate-dictionary/help/nn/nn.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/nn/nn.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Øystein Steffensen-Alværvik, 2018 -# Andrew Rabbitt , 2020 +# Stefano Karapetsas , 2021 +# Øystein Steffensen-Alværvik, 2021 +# Andrew Rabbitt , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Andrew Rabbitt , 2020\n" -"Language-Team: Norwegian Nynorsk (https://www.transifex.com/mate/teams/13566/nn/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Andrew Rabbitt , 2021\n" +"Language-Team: Norwegian Nynorsk (https://app.transifex.com/mate/teams/13566/nn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,7 +22,8 @@ msgid "translator-credits" msgstr "" "Åsmund Skjæveland \n" -"Eskild Hustvedt " +"Eskild Hustvedt \n" +"Andrew J Rabbitt " #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -675,8 +676,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/nso/index.docbook mate-utils-1.26.1/mate-dictionary/help/nso/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/nso/index.docbook 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/nso/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferences - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferences - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/nso/legal.xml mate-utils-1.26.1/mate-dictionary/help/nso/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/nso/legal.xml 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/nso/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/oc/index.docbook mate-utils-1.26.1/mate-dictionary/help/oc/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/oc/index.docbook 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/oc/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,438 +0,0 @@ - - - - - - - -]> - - - -
- - - - Manual del Diccionari - - - Lo diccionari vos permet de cercar de definicions e l'ortografia d'un mot. - - - 2015-2021 MATE Documentation Project - 2005 Emmanuele Bassi - - - - - Projècte de documentacion de MATE - - - GNOME Documentation Project - - - - - MATE Documentation Team Mate desktop - Emmanuele Bassi
ebassi@gmail.com
- - - -
- - - Dictionary Manual V1.10.0 Julhet de 2015 - Wolfgang Ulbrich - Projècte de documentacion de MATE - - Dictionary Manual V1.10.0 Julhet de 2015 - Emmanuele Bassi - GNOME Documentation Project - - - - This manual describes version 1.10 of Dictionary. - - Comentaris - Per senhalar una avaria o per formular una suggestion a prepaus de l’aplicacion Diccionari o aqueste manual, seguissètz las instruccions dins la pagina de comentaris de MATE. - - - -
- - Diccionari - - - - - Introduccion - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Començar - - - - Per aviar lo Diccionari - - You can start Dictionary in the following - ways: - - - - Menú Aplicacions - - Choose Accessories - Dictionary. - - - - - Linha de comanda - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Utilizacion - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Imprimir los resultats - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - Per imprimir, clicatz Imprimir. - - - - - Trobar lo tèxt - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferéncias - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Servidor de diccionari - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Apondre una font novèla - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Clicatz Apondre - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transpòrt - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Opcions d’impression - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferéncias - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/oc/legal.xml mate-utils-1.26.1/mate-dictionary/help/oc/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/oc/legal.xml 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/oc/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Autorizacion vos es donada de copiar, distribuir e/o modificar aqueste document segon los tèrmes de la Licéncia GNU Free Documentation License (GFDL), Version 1.1 o ulteriora publicada per la Free Software Foundation sens seccion inalterabla, sens tèxt de primièra pagina de cubèrta ni tèxt de darrièra pagina de cubèrta. Trobaretz un exemplari de la GFDL en seguissent aqueste ligam o dins lo fichièr COPYING-DOCS provesit amb lo present manual. - Aqueste manual fa part de la colleccion de manuals de MATE distribuits jols tèrmes de la licéncia de documentacion liura GNU. Se volètz distribuir aqueste document a despart de la colleccion, o podètz far en ajustant un exemplar de la licéncia al manual, coma indicat a la seccion 6 de la licéncia. - - La màger part dels noms utilizats per las entrepresas per distinguir lors produches e servicis son de marcas depausadas. Quand aqueles noms apareisson dins la documentacion MATE e que los membres del projècte de Documentacion MATE son informats de l’existéncia d’aquelas marcas depausadas, siá aqueles noms entièrs, siá lor primièra letra es en majuscula. - - LOS DOCUMENTS E LAS VERSIONS MODIFICADAS D’AQUESTE DOCUMENT SON FORNITS JOLS TÈRMES DE LA LICÉNCIA DE DOCUMENTACION LIURA GNU ESTANT QUE : - - LO DOCUMENT ES PROVESIT « TAL COMA ES » SENS CAP DE GARANTIDA DE QUIN TIPE QUE SIÁ, EXPLICITA O IMPLICADA, AQUÒ INCLUTZ, SENS CAP DE LIMIT, LAS GARANTIDAS QUE LO DOCUMENT O UNA VERSION MODIFICADA NON AJA PAS CAP DE DEFAUT, QUE SIÁ COMERCIABLE, QUE SIÁ ADAPTAT PER UN USATGE PARTICULAR O QUE ENFRANGA PAS LA LEI. TOT LO RISC RESPÈCTE A LA QUALITAT, L’EXACTITUD O LAS QUALITATS TECNICAS DEL DOCUMENT O DE SAS VERSIONS MODIFICADAS ES VÒSTRE. SE PER CAS LO DOCUMENT O UNA VERSION MODIFICADA S’AVERÈSSE DEFECTUÓS AL RESPÈCTE DE QUIN ASPÈCTE QUE SIÁ, VOSAUTRES (NON PAS LO REDACTOR INICIAL, L’AUTOR O QUIN CONTRIBUIDOR QUE SIÁ) ASSUMISSÈTZ LO CÒST DE TOTA MANTENENÇA, REPARACION O CORRECCION NECESSÀRIA. AQUESTA DESCARGA DE GARANTIDA CONSTITUÍS UNA PART ESSENCIALA D’AQUESTA LICÉNCIA. CAP D’UTILIZACION D’AQUESTE DOCUMENT O VERSION MODIFICADA ES AUTORIZADA LEVAT JOS AQUESTA DESCARGA DE GARANTIDA E - - - EN CAP DE CIRCONSTÀNCIA E JOS CAP D’INTERPRETACION LEGALA, QUE SIÁ DE RESPONSABILITAT CIVILA (NEGLIGÉNCIA INCLUSA), CONTRACTUALA O AUTRA, L’AUTOR, LO REDACTOR INICIAL, TOT CONTRIBUIDOR E TOT DISTRIBUIDOR D’AQUESTE DOCUMENT O DE SA VERSION MODIFICADA NI CAP DE PROVESIDOR D’AQUESTES PARTS SERÀN PAS RESPONSABLES AL RESPÈCTE DE QUIN DAMATGE DIRÈCTE, INDIRÈCTE, ESPECIAL O ACCIDENTAL QUE SIÁ DE TOT TIPE E TANBEN, SENS LIMITACION, LOS DAMATGES LIGATS A LA PÈRDA DE CLIENTÈLA, LAS INTERRUPCIONS DE TRABALH, ALS DEFALHIMENTS E DISFONCIONAMENTS INFORMATICS O TOTA AUTRA PÈRDA LIGADA A L’UTILIZACION DEL DOCUMENT E DE SAS VERSIONS MODIFICADAS, ATAL METEIS S’AQUESTES PART ÈRAN AVISATS DE LA POSSIBILITAT D’AQUESTES DAMATGES. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/oc/oc.po mate-utils-1.26.1/mate-dictionary/help/oc/oc.po --- mate-utils-1.26.0/mate-dictionary/help/oc/oc.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/oc/oc.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,18 +1,18 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Cédric Valmary , 2018 -# Wolfgang Ulbrich , 2018 -# 48c2de07903ce5a77a8e90265f95c4c2_8909374 <837c8d0ab97b27e737893c19f79bd4de_348476>, 2018 +# Stefano Karapetsas , 2021 +# Cédric Valmary , 2021 # Quentin PAGÈS, 2021 +# Wolfgang Ulbrich , 2021 +# 48c2de07903ce5a77a8e90265f95c4c2_8909374 <837c8d0ab97b27e737893c19f79bd4de_348476>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Quentin PAGÈS, 2021\n" -"Language-Team: Occitan (post 1500) (https://www.transifex.com/mate/teams/13566/oc/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: 48c2de07903ce5a77a8e90265f95c4c2_8909374 <837c8d0ab97b27e737893c19f79bd4de_348476>, 2021\n" +"Language-Team: Occitan (post 1500) (https://app.transifex.com/mate/teams/13566/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,8 +23,8 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"Yannig Marchegay (Kokoyaya) & Cédric Valmary " -"(totenoc.eu) " +"Yannig Marchegay (Kokoyaya) , Cédric Valmary " +"(totenoc.eu) , Quentin Pagès" #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -704,8 +704,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/or/index.docbook mate-utils-1.26.1/mate-dictionary/help/or/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/or/index.docbook 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/or/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - ପରିଚୟ - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - ଆଦେଶ ରେଖା - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - ବ୍ୟବହାର ବିଧି - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - ପସନ୍ଦ - - To change the Dictionary application - preferences, choose EditPreferences. - - - - ଅଭିଧାନ ଉତ୍ସଗୁଡିକ - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - ପରିବହନ - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - ପସନ୍ଦ - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/or/legal.xml mate-utils-1.26.1/mate-dictionary/help/or/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/or/legal.xml 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/or/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/or/or.po mate-utils-1.26.1/mate-dictionary/help/or/or.po --- mate-utils-1.26.0/mate-dictionary/help/or/or.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/or/or.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Oriya (https://www.transifex.com/mate/teams/13566/or/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Odia (https://app.transifex.com/mate/teams/13566/or/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/pa/index.docbook mate-utils-1.26.1/mate-dictionary/help/pa/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/pa/index.docbook 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/pa/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - ਗਨੋਮ ਦਸਤਾਵੇਜ਼ ਪ੍ਰੋਜੈਕਟ - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - ਸੁਝਾਅ - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - ਜਾਣ ਪਛਾਣ - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - ਕਾਰਜ ਮੇਨੂ - - Choose Accessories - Dictionary. - - - - - ਕਮਾਂਡ ਲਾਈਨ - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - ਵਰਤੋਂ - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - ਮੇਰੀ ਪਸੰਦ - - To change the Dictionary application - preferences, choose EditPreferences. - - - - ਡਿਕਸ਼ਨਰੀ ਸਰੋਤ - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - ਟਰਾਂਸਪੋਰਟ - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - ਮੇਰੀ ਪਸੰਦ - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/pa/legal.xml mate-utils-1.26.1/mate-dictionary/help/pa/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/pa/legal.xml 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/pa/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - ਇਹ ਦਸਤਾਵੇਜ਼ ਗਨੋਮ ਦਸਤਾਵੇਜ਼ ਭੰਡਾਰ ਦਾ ਭਾਗ ਹੈ, ਜੋ ਕਿ GFDL ਦੇ ਅਧੀਨ ਜਾਰੀ ਕੀਤਾ ਗਿਆ ਹੈ। ਜੇ ਤੁਸੀਂ ਇਹ ਦਸਤਾਵੇਜ਼ ਨੂੰ ਭੰਡਾਰ ਤੋਂ ਬਿਨਾਂ ਵੰਡਣਾ ਚਾਹੁੰਦੇ ਹੋ ਤਾਂ ਤੁਸੀਂ ਇਹ ਲਾਈਸੈਂਸ ਦੇ ਭਾਗ 6 ਵਿੱਚ ਦੱਸੇ ਮੁਤਾਬਕ ਦਸਤਾਵੇਜ਼ ਨਾਲ ਲਾਈਸੈਂਸ ਦੀ ਇੱਕ ਨਕਲ ਜੋੜ ਕੇ ਕਰ ਸਕਦੇ ਹੋ। - - ਕੰਪਨੀਆਂ ਵਲੋਂ ਆਪਣੇ ਉਤਪਾਦਾਂ ਅਤੇ ਸੇਵਾਵਾਂ ਲਈ ਵਰਤੇ ਗਏ ਕਈ ਨਾਂ ਮਾਰਕੇ ਹਨ। ਜਦੋਂ ਵੀ ਉਹ ਨਾਂ ਕਿਸੇ ਗਨੋਮ ਦਸਤਾਵੇਜ਼ ਪ੍ਰੋਜੈਕਟ ਵਿੱਚ ਆਉਦੇ ਹਨ ਅਤੇ ਗਨੋਮ ਦਸਤਾਵੇਜ਼ ਪ੍ਰੋਜੈਕਟ ਦੇ ਮੈਂਬਰ ਹਨ ਤਾਂ ਉਨ੍ਹਾਂ ਮਾਰਕਿਆਂ ਬਾਰੇ ਜਾਣਕਾਰੀ ਦੇਣ ਲਈ, ਉਹਨਾਂ ਨੇ ਦੇ ਨਾਂ ਵੱਡੇ ਅੱਖਰਾਂ ਵਿੱਚ ਜਾਂ ਪਹਿਲੇਂ ਅੱਖਰ ਵੱਡੇ ਰੱਖੇ ਗਏ ਹਨ। - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/pa/pa.po mate-utils-1.26.1/mate-dictionary/help/pa/pa.po --- mate-utils-1.26.0/mate-dictionary/help/pa/pa.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/pa/pa.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Wolfgang Ulbrich , 2018\n" -"Language-Team: Panjabi (Punjabi) (https://www.transifex.com/mate/teams/13566/pa/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Wolfgang Ulbrich , 2021\n" +"Language-Team: Panjabi (Punjabi) (https://app.transifex.com/mate/teams/13566/pa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -676,8 +676,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/pl/index.docbook mate-utils-1.26.1/mate-dictionary/help/pl/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/pl/index.docbook 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/pl/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,456 +0,0 @@ - - - - - - - -]> - - - -
- - - - Instrukcja obsługi słownika - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - 2015-2021 dokumentacja projektu MATE - 2005 Emmanuele Bassi - - - - - Projekt dokumentacji MATE - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - Emmanuele Bassi
ebassi@gmail.com
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Opinia - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - Słownik - - - - - Wprowadzenie - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Wybierz Akcesoria Słownik . - - - - Wiersz poleceń - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Okno słownika - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Użycie - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Okno słownika - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - Aby wydrukować naciśnij Drukuj - - - - - Znajdź tekst - -
- Okno słownika - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferencje - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Źródła słownika - -
- Okno słownika - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Okno słownika - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Naciśnij Dodaj - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Usuwanie źródła - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Naciśnij przycisk Usuń - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Opcje wydruku - -
- Okno słownika - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Naciśnij Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferencje - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/pl/legal.xml mate-utils-1.26.1/mate-dictionary/help/pl/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/pl/legal.xml 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/pl/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Udziela się zgody na kopiowanie, dystrybucję i/lub modyfikację tego tekstu na warunkach licencji GNU Free Documentation License (GFDL) w wersji 1.1 lub nowszej, opublikowanej przez Free Software Foundation bez Sekcji Niezmiennych, bez Strony Tytułowej i bez Treści Okładki. Kopia tekstu licencji GFDL umieszczona została pod tym odnośnik lub w pliku COPYING-DOCS rozpowszechnianym razem z tą instrukcją. - Ten podręcznik jest częścią zestawu podręczników MATE rozpowszechnianych na licencji GFDL. Jeżeli chcesz rozpowszechnić tą instrukcję osobno od zestawu, możesz to zrobić dodając kopię licencji do podręcznika, jak opisano w dziale 6 tej licencji. - - Wiele nazw używanych przez firmy do rozróżnienia ich produktów i usług jest zgłoszonych jako znaki towarowe. W przypadku pojawienia się tych nazw w dowolnej dokumentacji MATE, a członkowie Projektu Dokumentacji MATE są świadomi tych znaków towarowych, wówczas nazwy są pisane wielkimi literami lub pierwszymi wielkimi literami. - - DOKUMENT I ZMODYFIKOWANE WERSJE DOKUMENTU SĄ DOSTARCZANE NA WARUNKACH LICENCJI WOLNEJ DOKUMENTACJI GNU Z DALSZYM ZROZUMIENIEM, ŻE: - - DOKUMENT JEST DOSTARCZANY W STANIE „TAK JAK JEST”, BEZ JAKIEGOKOLWIEK WYRAŻENIA, DOMNIEMANIA GWARANCJI, W TYM MIĘDZY INNYMI GWARANCJI, ŻE DOKUMENT LUB ZMODYFIKOWANA WERSJA DOKUMENTU JEST WOLNA OD WAD HANDLOWYCH LUB DO OKREŚLONEGO CELU -NARUSZENIE. CAŁKOWITE RYZYKO DOTYCZĄCE JAKOŚCI, DOKŁADNOŚCI I WYDAJNOŚCI DOKUMENTU LUB ZMODYFIKOWANEJ WERSJI DOKUMENTU SPOCZYWA NA UŻYTKOWNIKU. JEŻELI JAKIKOLWIEK DOKUMENT LUB ZMODYFIKOWANA WERSJA OKAŻE SIĘ WADLIWA POD JAKIMKOLWIEK WZGLĘGEM, UŻYTKOWNIK (NIE WSTĘPNY PISARZ, AUTOR CZY ŻADEN WSPÓŁPRACOWNIK) PONOSI KOSZTY WSZELKICH NIEZBĘDNYCH SERWISÓW, NAPRAW LUB POPRAWEK. NINIEJSZE WYŁĄCZENIE GWARANCJI STANOWI ISTOTNĄ CZĘŚĆ LICENCJI. ZGODNIE Z NINIEJSZYM WYŁĄCZENIEM ODPOWIEDZIALNOŚCI NIE JEST ZEZWOLONE NA KORZYSTANIE Z JAKICHKOLWIEK DOKUMENTÓW LUB ZMODYFIKOWANYCH WERSJI DOKUMENTU; ORAZ - - - W ŻADNYM PRZYPADKU I W ŻADNEJ TEORII PRAWNEJ, CZY W DZIAŁANIU CZYNNYM (W TYM ZANIEDBANIA), UMOWY LUB W INNY SPOSÓB, AUTOR, PISARZ WSTĘPNY, WSPÓŁPRACOWNIK ANI DYSTRYBUTOR DOKUMENTU LUB ZMODYFIKOWANA WERSJA DOKUMENTU TAKICH STRON NIE PONOSI ODPOWIEDZIALNOŚCI WOBEC JAKICHKOLWIEK OSÓB ZA JAKIEKOLWIEK BEZPOŚREDNIE, POŚREDNIE, SZCZEGÓLNE, PRZYPADKOWE LUB WTÓRNE SZKODY JAKIEGOKOLWIEK CHARAKTERU, W TYM MIĘDZY INNYMI USZKODZENIA ZA UTRATĘ WŁAŚCIWOŚCI, PRZERWY W PRACY, AWARIE LUB INNE USZKODZENIA KOMPUTERA LUB STRATY WYNIKAJĄCE Z KORZYSTANIA Z DOKUMENTU I ZMODYFIKOWANYCH WERSJI DOKUMENTU, NAWET JEŚLI STRONA ZOSTAŁA POINFORMOWANA O MOŻLIWOŚCI WYSTĄPIENIA TAKICH SZKÓD. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/pl/pl.po mate-utils-1.26.1/mate-dictionary/help/pl/pl.po --- mate-utils-1.26.0/mate-dictionary/help/pl/pl.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/pl/pl.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,23 +1,24 @@ # # Translators: -# Piotr Drąg , 2018 -# Piotr Strębski , 2018 -# Stefano Karapetsas , 2018 -# Marcin GTriderXC , 2018 -# pietrasagh , 2018 -# Przemek P , 2018 -# Sir Polskacafe, 2018 -# Dominik Adrian Grzywak, 2018 -# Szymon Blaut , 2021 +# Piotr Drąg , 2021 +# Piotr Strębski , 2021 +# Stefano Karapetsas , 2021 +# clefebvre , 2021 +# Dominik Adrian Grzywak, 2021 +# Marcin GTriderXC , 2021 +# Sir Polskacafe, 2021 +# Przemek P , 2021 # Daniel Tokarzewski , 2021 +# Szymon Blaut , 2021 +# pietrasagh , 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Daniel Tokarzewski , 2021\n" -"Language-Team: Polish (https://www.transifex.com/mate/teams/13566/pl/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: pietrasagh , 2022\n" +"Language-Team: Polish (https://app.transifex.com/mate/teams/13566/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -28,10 +29,16 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"Tłumacze środowiska MATE, 2013-2014, 2016-2018\n" +"Tłumacze środowiska MATE, 2014-2020\n" "\n" -"Tomasz Bielecki, 2005\n" -"Paweł Marciniak, 2007" +"Zbigniew Chyla, 2002-2003\n" +"Artur Flinta, 2003-2005\n" +"Wadim Dziedzic, 2007-2009\n" +"Tomasz Dominikowski, 2008-2009\n" +"Joanna Mazgaj, 2009\n" +"Piotr Drąg, 2010\n" +"Aviary.pl, 2007-2010\n" +"Daniel Tokarzewski, 2020" #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -65,7 +72,7 @@ #. (itstool) path: revdescription/para #: C/index.docbook:55 C/index.docbook:104 msgid "GNOME Documentation Project" -msgstr "GNOME Documentation Project" +msgstr "Dokumentacja projektu GNOME" #. (itstool) path: authorgroup/author #: C/index.docbook:60 @@ -138,7 +145,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:137 msgid "Getting Started" -msgstr "" +msgstr "Pierwsze kroki" #. (itstool) path: sect2/title #: C/index.docbook:141 @@ -688,14 +695,14 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink #: C/legal.xml:9 msgid "link" -msgstr "odnośnik" +msgstr "dowiązanie" #. (itstool) path: legalnotice/para #: C/legal.xml:2 diff -Nru mate-utils-1.26.0/mate-dictionary/help/ps/index.docbook mate-utils-1.26.1/mate-dictionary/help/ps/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ps/index.docbook 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ps/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - بولۍ ليکه - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - کارونه - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - غوراوي - - To change the Dictionary application - preferences, choose EditPreferences. - - - - ويېپانګه سرچينې - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - غوراوي - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ps/legal.xml mate-utils-1.26.1/mate-dictionary/help/ps/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ps/legal.xml 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ps/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ps/ps.po mate-utils-1.26.1/mate-dictionary/help/ps/ps.po --- mate-utils-1.26.0/mate-dictionary/help/ps/ps.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ps/ps.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Pushto (https://www.transifex.com/mate/teams/13566/ps/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Pashto (https://app.transifex.com/mate/teams/13566/ps/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -673,8 +673,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/pt/index.docbook mate-utils-1.26.1/mate-dictionary/help/pt/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/pt/index.docbook 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/pt/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,373 +0,0 @@ - - - - - - - -]> - - - -
- - - - Manual do Dicionário - - - O dicionário permite-lhe procurar por definições e corrigir ortografias de palavras. - - - 2015-2021 Projecto de Documentação do MATE - 2005 Emmanuele Bassi - - - - - Projeto de Documentação do MATE - - - Projeto de Documentação do GNOME - - - - - Equipa de Documentação do MATE MATE Desktop - Emmanuele Bassi
ebassi@gmail.com
- - - -
- - - Manual do Dicionário V1.10.0 Julho de 2015 - Wolfgang Ulbrich - Projeto de Documentação do MATE - - Manual do Dicionário V1.10.0 Julho de 2015 - Emmanuele Bassi - Projeto de Documentação do GNOME - - - - Este manual descreve a versão 1.10 do Dicionário. - - Enviar Opiniões - Para reportar um erro ou fazer uma sugestão sobre a aplicação Dicionário deste manual, siga as indicações na Página de Opiniões do MATE. - - - - - - - Hugo Carvalho - - hugokarvalho@gmail.com - - - - 2018 - - Hugo Carvalho - -
- - Dicionário - - - - - Introdução - - A aplicação Dicionário permite procurar por palavras e termos num dicionário fonte. - - - - - - Iniciação - - - - Para Iniciar o Dicionário - - Pode iniciar o Dicionário das seguintes maneiras: - - - - Menu de Aplicações - - Escolha Acessórios Dicionário. - - - - Linha de comando - - Execute o seguinte comando: mate-dictionary - - - - - Uma vez iniciado, a janela do Dicionário é mostrada: - -
- Janela do Dicionário - - Mostra a janela principal do Dictionary. - -
- -
- -
- - - - Utilização - - - Procurar por uma palavra - - Para procurar por uma palavra, escreva no campo de texto e prima a tecla Enter. - - Se for encontrada uma definição da palavra, será mostrada dentro da janela principal: - -
- Janela do Dicionário - - Mostra uma definição dentro da janela principal do Dicionário. - -
- - Caso contrário, irá aparecer uma janela de diálogo com a mensagem a explicar a natureza do erro. - -
- - - Guardar resultados de pesquisas - - Para guardar os resultados de pesquisas, escolha FicheiroGuardar uma Cópia. Introduza um nome para o ficheiro na janela de Guardar uma Cópia e depois clique em Guardar. - - - - - Imprimir resultados de pesquisas - - Para imprimir os resultados de uma pesquisa, escolha FicheiroImprimir. - - Dentro da janela de Imprimir pode selecionar a impressora a utilizar, o formato de papel e o número de cópias. - - Para ver uma previsão do que será impresso, clique em Antevisão. - - Para imprimir, clique em Imprimir. - - - - - Encontrar Texto - -
- Janela do Dicionário - - Mostra o painel de Pesquisa no Dicionário dentro da janela principal. - -
- - - Para encontrar texto dentro dos resultados de uma pesquisa, realize os seguintes passos: - - - Escolha Editar Procurar para mostrar o painel Procurar. - Escreva o texto que quer procurar dentro do campo Procurar. - Para encontrar a próxima ocorrência, clique em Seguinte. Para encontrar a ocorrência anterior, clique em Anterior. - - -
- -
- - - - Preferências - - Para alterar as preferências da aplicação Dictionary, escolha EditarPreferências. - - - - Fontes de Dicionários - -
- Janela do Dicionário - - Mostra o separador Fonte da janela de Preferências. - -
- - Para alterar a fonte do Dicionário usada para procurar por palavras, selecione a fonte a partir da lista. -
- - - - Adicionar uma nova fonte - -
- Janela do Dicionário - - Mostra a janela de 'Adicionar Fonte'. - -
- - Para adicionar uma nova fonte do dicionário, realize os seguintes passos: - - - Clique no botão Adicionar - Edite o nome da nova fonte dentro do campo Descrição - Altere o tipo de transporte da nova fonte utilizando a caixa de combinação Transporte - Edite os atributos da nova fonte - Clique Adicionar - - - Os tipos diferentes de fontes utilizam atributos diferentes. Isto é a lista dos atributos disponíveis por tipo de transporte: - - - - - - Transporte - Atributos - - - - - Servidor do Dicionário - - Nome do servidor: o nome da máquina do servidor do dicionário - Porta: a porta do servidor do dicionário - - - - - - -
- - - - Remover uma fonte - - Para remover uma fonte do dicionário, realize os seguintes passos: - - - Selecione a fonte que deseja remover - Clique no botão Remover - - - Se remover uma fonte de dicionário, esta será eliminada permanentemente da lista de fontes disponíveis. Para além disso, como as fontes podem ser definidas e utilizadas pelo sistema operativo ou outros programas, pode não conseguir removê-la a não ser que tenha os privilégios de propriedade. - - - - - - Opções de Impressão - -
- Janela do Dicionário - - Mostra o separador de Imprimir dentro da janela das Preferências. - -
- - Se quiser alterar o nome da fonte e o tamanho utilizado ao imprimir, realize os seguintes passos: - - - Clique no botão Letra da Impressão - Selecione a fonte e o tamanho que deseja utilizar - Clique em Ok - - -
- -
- - - - A Mini-Aplicação Dicionário - - A aplicação Dicionário tem uma mini-aplicação num painel, a Mini-Aplicação Dicionário. Pode adicionar Mini-Aplicação Dicionário a um painel e procurar por palavras em dicionários. - -
- Janela da Mini-Aplicação Dicionário - - Mostra a Mini-Aplicação Dicionário. - -
- - - - - Para Iniciar a Mini-Aplicação Dicionário - - Para adicionar a Mini-Aplicação Dicionário a um painel, clique com o botão direito do rato no painel e depois escolha Adicionar ao Painel. Selecione Mini-Aplicação Dicionário na janela Adicionar ao painel e depois clique em OK. - - - - - - Utilizar a Mini-Aplicação Dicionário - - Para procurar por uma palavra, escreva no campo, e pressione a tecla Enter ou clique com o botão direito do rato no ícone do dicionário e escolha Procurar. - - Se for encontrada alguma definição da palavra, irá aparecer uma janela com o texto da definição: - -
- Janela da Mini-Aplicação Dicionário - - Mostra a janela principal da Mini-Aplicação Dicionário. - -
- - Clique em Guardar para guardar as definições num ficheiro de texto. Clique em Imprimir para imprimir as definições. Clique em Limpar para remover as definições. - - Pode fazer desaparecer a janela clicando com o botão esquerdo do rato no ícone do dicionário ou premindo a tecla Esc. - -
- - - Preferências - - Para configurar a Mini-Aplicação Dicionário, clique com o botão direito do rato no ícone do dicionário e escolha o item Preferências. - - A janela de Preferências é a mesma que é utilizada pela aplicação Dicionário, por isso veja - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/pt/legal.xml mate-utils-1.26.1/mate-dictionary/help/pt/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/pt/legal.xml 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/pt/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - É dada permissão para copiar, distribuir e/ou alterar este documento sob os termos da Licença de Documentação Livre GNU (GFDL), Versão 1.1 ou qualquer outra posteriormente publicada pela Free Software Foundation sem quaisquer Secções Invariantes, Textos de Capa ou Prefácios, e sem Textos Finais ou Posfácios. Poderá encontrar uma cópia da GFDL neste atalho ou no ficheiro COPYING-DOCS distribuído com este manual. - Este manual é parte de uma coleção de manuais MATE distribuídos sob a GFDL. Se desejar distribuir este manual separadamente da coleção, poderá fazê-lo desde que lhe adicione uma cópia da licença, tal como descrito na secção 6 desta licença. - - Muitos dos nomes utilizados pelas empresas para distinguir os seus produtos e serviços são reclamados como marcas registadas. Onde esses nomes surgirem em qualquer documentação MATE, e aos membros do Projeto de Documentação do MATE for dado conhecimento dessas marcas registadas, estes nomes estarão todos em maiúsculas ou com a primeira letra de cada palavra em maiúscula. - - O DOCUMENTO E VERSÕES MODIFICADAS DO DOCUMENTO SÃO DISPONIBILIZADAS NOS TERMOS DA LICENÇA DE DOCUMENTAÇÃO LIVRE GNU (GNU FREE DOCUMENTATION LICENSE) COM O SUBSEQUENTE ENTENDIMENTO DE QUE: - - ESTE DOCUMENTO É DISPONIBILIZADO NUMA BASE "TAL COMO ESTÁ", SEM QUALQUER GARANTIA DE QUALQUER TIPO, NEM EXPRESSA NEM IMPLÍCITA, INCLUINDO, MAS SEM LIMITAR, GARANTIAS DE QUE O DOCUMENTO OU VERSÃO ALTERADA DO DOCUMENTO SE ENCONTRA LIVRE DE DEFEITOS PARA COMERCIALIZAÇÃO, ADEQUADO A UM PROPÓSITO ESPECÍFICO OU QUE NÃO INFRINJA. A TOTALIDADE DO RISCO DE QUALIDADE, PORMENORIZAÇÃO, E DESEMPENHO DO DOCUMENTO OU VERSÃO ALTERADA DO DOCUMENTO É SUA. CASO ALGUM DOCUMENTO OU VERSÃO ALTERADA SE DEMONSTRE DEFICIENTE EM QUALQUER ASPETO, O LEITOR (E NÃO O AUTOR INICIAR, OU QUALQUER CONTRIBUINTE POSTERIOR) ASSUME O CUSTO DE TODO O SERVIÇO DE REPARAÇÃO, ASSISTÊNCIA OU CORREÇÃO QUE POSSE SER NECESSÁRIO. ESTA DESRESPONSABILIZAÇÃO DE GARANTIA CONSTITUI UMA PARTE ESSENCIAL DESTA LICENÇA. NENHUMA UTILIZAÇÃO DE QUALQUER DOCUMENTO OU VERSÃO ALTERADO DO DOCUMENTO SE ENCONTRA AUTORIZADA EXCETO SE SUJEITA A ESTA DESRESPONSABILIZAÇÃO; E - - - SOB QUAISQUER CIRCUNSTÂNCIAS E TEORIA LEGAL, QUER SEJA POR ERRO (INCLUINDO NEGLIGÊNCIA), CONTRATO, OU QUALQUER OUTRO MOTIVO, PODERÁ O AUTOR, ESCRITOR INICIAL, QUALQUER CONTRIBUINTE, OU QUALQUER DISTRIBUIDOR DO DOCUMENTO OU VERSÃO ALTERADA DO DOCUMENTO, OU QUALQUER FORNECEDOR DE UMA DESSAS PARTES, SER RESPONSÁVEL PERANTE QUALQUER PESSOA POR QUAISQUER DANOS DIRETOS, INDIRETOS, ESPECIAIS, ACIDENTAIS OU CONSEQUENCIAIS DE QUALQUER TIPO INCLUINDO, SEM LIMITAR, DANOS POR PERCA DE BOM NOME (GOODWILL), PARAGENS DE TRABALHO, FALHA OU MAU FUNCIONAMENTO INFORMÁTICO, OU QUALQUER E TODOS OS OUTROS DANOS OU PERCAS DECORRENTES OU RELACIONADAS COM A UTILIZAÇÃO DO DOCUMENTO E VERSÕES ALTERADAS DO DOCUMENTO, MESMO QUE TAL PARTE TENHA SIDO INFORMADA DA POSSIBILIDADE DE OCORREREM TAIS DANOS. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/pt/pt.po mate-utils-1.26.1/mate-dictionary/help/pt/pt.po --- mate-utils-1.26.0/mate-dictionary/help/pt/pt.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/pt/pt.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,32 +1,33 @@ # # Translators: -# Sérgio Marques , 2018 -# Carlos Moreira, 2018 -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Manuela Silva , 2018 -# Robert Antoni Buj i Gelonch , 2019 -# Hugo Carvalho , 2020 +# Sérgio Marques , 2021 +# Robert Antoni Buj i Gelonch , 2021 +# Carlos Moreira, 2021 +# clefebvre , 2021 +# Wolfgang Ulbrich , 2021 # Rui , 2021 +# Manuela Silva , 2021 # José Vieira , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" "Last-Translator: José Vieira , 2021\n" -"Language-Team: Portuguese (https://www.transifex.com/mate/teams/13566/pt/)\n" +"Language-Team: Portuguese (https://app.transifex.com/mate/teams/13566/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Hugo Carvalho , 2018" +msgstr "" +"Hugo Carvalho , 2018\n" +"José Vieira , 2021" #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -63,7 +64,7 @@ #. (itstool) path: revdescription/para #: C/index.docbook:55 C/index.docbook:104 msgid "GNOME Documentation Project" -msgstr "Projeto de Documentação do GNOME" +msgstr "Projecto de Documentação do GNOME" #. (itstool) path: authorgroup/author #: C/index.docbook:60 @@ -110,7 +111,7 @@ #. (itstool) path: legalnotice/title #: C/index.docbook:111 msgid "Feedback" -msgstr "Enviar Opiniões" +msgstr "Opinião" #. (itstool) path: legalnotice/para #: C/index.docbook:112 @@ -428,7 +429,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:276 msgid "Dictionary Sources" -msgstr "Fontes de Dicionários" +msgstr "Fontes do Dictionary" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -806,8 +807,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" "A janela de Preferências é a mesma que é utilizada pela" " aplicação Dicionário, por isso veja - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - 2005 Emmanuele Bassi - - - - - Projeto de Documentação do MATE - - - Projeto de Documentação do GNOME - - - - - - MATE Documentation Team - - Mate desktop - - - Emmanuele Bassi
ebassi@gmail.com
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Retorno - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - Dicionário - - - - - Introdução - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Começando - - - - Para iniciar o dicionário - - You can start Dictionary in the following - ways: - - - - Menu Aplicativos - - Choose Accessories - Dictionary. - - - - - Linha de comando - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Uso - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferências - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Fontes de dicionário - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transporte - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferências - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/pt_BR/legal.xml mate-utils-1.26.1/mate-dictionary/help/pt_BR/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/pt_BR/legal.xml 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/pt_BR/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - É concedida permissão para copiar, distribuir e / ou modificar este documento sob os termos da Licença de Documentação Livre GNU (GFDL), Versão 1.1 ou qualquer versão posterior publicada pela Free Software Foundation sem Seções Invariantes, sem Textos de Capa Frontal e sem textos de contracapa. Você pode encontrar uma cópia da GFDL no link ou no arquivo COPYING-DOCS distribuído com este manual. - Esse manual é parte de uma coleção de manuais do MATE distribuída sob a GFDL. Se você quiser distribuir essa manual separado da coleção, pode fazê-lo adicionando uma cópia da licença ao manual, como descrito na seção 6 da licença. - - Muitos dos nomes usados por companhias para distinguir seus produtos e serviços são marcas registradas. Quando esses nomes ocorrem em alguma parte da documentação do MATE, e os membros do Projeto de documentação do MATE estiverem cientes de serem marcas registradas, esses nomes estarão maiúsculas ou com as iniciais em maiúsculas. - - O DOCUMENTO E AS VERSÕES MODIFICADAS DO DOCUMENTO SÃO FORNECIDOS DE ACORDO COM OS TERMOS DA LICENÇA DE DOCUMENTAÇÃO GRATUITA DA GNU COM O ENTENDIMENTO COMPREENDIDO DE QUE: - - O DOCUMENTO É FORNECIDO COMO UMA BASE "COMO ESTÁ", SEM GARANTIAS DE QUALQUER TIPO, TANTO EXPRESSA OU IMPLÍCITA, INCLUINDO, SEM LIMITAÇÃO, GARANTIAS DE QUE O DOCUMENTO OU VERSÃO MODIFICADA DO DOCUMENTO É COMERCIALIZÁVEL, LIVRE DE DEFEITOS, PRÓPRIO PARA UM PROPÓSITO ESPECÍFICO OU SEM INFRAÇÕES. TODO O RISCO A RESPEITO DA QUALIDADE, EXATIDÃO, E DESEMPENHO DO DOCUMENTO OU VERSÕES MODIFICADAS DO DOCUMENTO É SEU. SE ALGUM DOCUMENTO OU VERSÃO MODIFICADA SE PROVAR DEFEITUOSO EM QUALQUER ASPECTO, VOCÊ (NÃO O ESCRITOR INICIAL, AUTOR OU QUALQUER CONTRIBUIDOR) ASSUME O CUSTO DE QUALQUER SERVIÇO NECESSÁRIO, REPARO OU CORREÇÃO. ESTA RENÚNCIA DE GARANTIAS CONSTITUI UMA PARTE ESSENCIAL DESTA LICENÇA. NENHUM USO DESTE DOCUMENTO OU VERSÃO MODIFICADA DESTE DOCUMENTO É AUTORIZADO SE NÃO FOR SOB ESTA RENÚNCIA; E - - - SOB NENHUM CIRCUNSTÂNCIA E SOB NENHUMA TEORIA LEGAL, TANTO EM DADO (INCLUINDO NEGLIGÊNCIA), CONTRATO, OU OUTROS, DEVEM O AUTOR, ESCRITOR INICIAL, QUALQUER CONTRIBUIDOR, OU QUALQUER DISTRIBUIDOR DO DOCUMENTO OU VERSÃO MODIFICADA DO DOCUMENTO, OU QUALQUER FORNECEDOR DE ALGUMA DESSAS PARTES, SER CONSIDERADOS RESPONSÁVEIS A QUALQUER PESSOA POR QUALQUER DANO, SEJA DIRETO, INDIRETO, ESPECIAL, ACIDENTAL OU CONSEQÜENCIAL DE QUALQUER INDIVÍDUO, INCLUINDO, SEM LIMITAÇÃO, DANOS POR PERDA DE BOA VONTADE, TRABALHO PARADO, FALHA NO COMPUTADOR OU MAL FUNCIONAMENTO, OU QUALQUER E TODOS OS OUTROS DANOS OU PERDAS RESULTANTES OU RELACIONADAS AO USO DO DOCUMENTO E VERSÕES MODIFICADAS, MESMO QUE TAL PARTE TENHA SIDO INFORMADA DA POSSIBILIDADE DE TAIS DANOS. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/pt_BR/pt_BR.po mate-utils-1.26.1/mate-dictionary/help/pt_BR/pt_BR.po --- mate-utils-1.26.0/mate-dictionary/help/pt_BR/pt_BR.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/pt_BR/pt_BR.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,27 +1,28 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Aldo Oliveira , 2018 -# Marcelo Ghelman , 2018 -# Victor Gonçalves , 2018 -# Wolfgang Ulbrich , 2018 -# b36c7cf4cf669a51ae00d04c19629819, 2018 -# Italo Penaforte , 2018 -# Robert Antoni Buj i Gelonch , 2019 -# George Silva , 2019 +# Robert Antoni Buj i Gelonch , 2021 +# Stefano Karapetsas , 2021 +# Marcelo Ghelman , 2021 +# Victor Gonçalves , 2021 +# Wolfgang Ulbrich , 2021 +# Italo Penaforte , 2021 +# b36c7cf4cf669a51ae00d04c19629819, 2021 +# George Silva , 2021 +# Josué Teodoro Moreira , 2021 +# Luciano Luck, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: George Silva , 2019\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mate/teams/13566/pt_BR/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Luciano Luck, 2022\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/mate/teams/13566/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" @@ -30,7 +31,6 @@ "Equipe de tradução no Transifex:\n" "Fabrizzio Alphonsus Soares https://www.transifex.com/accounts/profile/fabrizzio\n" "Alberto Federman Neto https://www.transifex.com/accounts/profile/albfneto\n" -"Aldo Oliveira https://www.transifex.com/user/profile/AldoBR/\n" "Appes https://www.transifex.com/accounts/profile/apps\n" "arm332 https://www.transifex.com/accounts/profile/arm332\n" "augusteiner https://www.transifex.com/accounts/profile/augusteiner\n" @@ -48,7 +48,10 @@ "Matheus Martins https://www.transifex.com/accounts/profile/Matheus_Martins\n" "Michele dos Santos da Silva https://www.transifex.com/accounts/profile/mchelem\n" "Thiago Cangussu https://www.transifex.com/accounts/profile/cangussu.thg\n" -"vitorgatti https://www.transifex.com/accounts/profile/vitorgatti" +"vitorgatti https://www.transifex.com/accounts/profile/vitorgatti\n" +"Ítalo Rangel Penaforte https://www.transifex.com/accounts/profile/italo.penaforte\n" +"George Salu da Silva https://www.transifex.com/user/profile/George_salu_da_silva/\n" +"Josué Teodoro Moreira https://www.transifex.com/user/profile/J0sueTM/" #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -66,6 +69,7 @@ #: C/index.docbook:33 msgid "2015-2021 MATE Documentation Project" msgstr "" +"2015-2021 Projecto de Documentação do MATE" #. (itstool) path: articleinfo/copyright #: C/index.docbook:37 @@ -719,8 +723,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ro/index.docbook mate-utils-1.26.1/mate-dictionary/help/ro/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ro/index.docbook 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ro/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introducere - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Linie de comandă - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Utilizare - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferințe - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Surse dicționar - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferințe - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ro/legal.xml mate-utils-1.26.1/mate-dictionary/help/ro/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ro/legal.xml 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ro/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ro/ro.po mate-utils-1.26.1/mate-dictionary/help/ro/ro.po --- mate-utils-1.26.0/mate-dictionary/help/ro/ro.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ro/ro.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Daniel , 2018 +# Stefano Karapetsas , 2021 +# Daniel , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Daniel , 2018\n" -"Language-Team: Romanian (https://www.transifex.com/mate/teams/13566/ro/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Daniel , 2021\n" +"Language-Team: Romanian (https://app.transifex.com/mate/teams/13566/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -672,8 +672,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ru/index.docbook mate-utils-1.26.1/mate-dictionary/help/ru/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ru/index.docbook 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ru/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - Проект документирования MATE - - - Проект документирования GNOME - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Обратная связь - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Введение - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Начало работы - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - меню Приложения - - Choose Accessories - Dictionary. - - - - - Командная строка - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Использование - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Параметры - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Источники словарей - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Транспорт - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Параметры - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ru/legal.xml mate-utils-1.26.1/mate-dictionary/help/ru/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ru/legal.xml 2021-08-05 19:47:34.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ru/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Разрешается копировать, распространять и / или изменять этот документ в соответствии с условиями лицензии GNU Free Documentation License (GFDL), версии 1.1 или любой более поздней версии, опубликованной Фондом свободного программного обеспечения без каких-либо инвариантных разделов, без добавления текста в начале или в конце. Вы можете найти копию GFDL здесь ссылка или в файле COPYING-DOCS, распространяемом вместе с этим руководством. - Этот документ является частью документации MATE, распространяемой на условиях лицензии GFDL. Если вы хотите распространять этот документ отдельно от общей документации, вы должны приложить копию лицензии к документу, как написано в части 6 лицензии. - - Некоторые имена и марки используются компаниями для обозначения их продуктов и услуг и являются торговыми марками. Там, где эти имена присутствуют в документации и где участники проекта документирования MATE знают об этом, имена выделяются заглавными буквами или начальной заглавной буквой. - - ДОКУМЕНТ И ИЗМЕНЁННЫЕ ВЕРСИИ ДОКУМЕНТА ПРЕДОСТАВЛЯЮТСЯ ПРЕДОСТАВЛЯЮТСЯ ПО УСЛОВИЯМ ЛИЦЕНЗИИ БЕСПЛАТНОЙ ДОКУМЕНТАЦИИ GNU С ПОНИМАНИЕМ ЧТО: - - ДОКУМЕНТ РАСПРОСТРАНЯЕТСЯ «КАК ЕСТЬ», БЕЗ ВСЯКИХ ГАРАНТИЙ, ЯВНЫХ ИЛИ НЕЯВНЫХ, ВКЛЮЧАЯ, БЕЗ ОГРАНИЧЕНИЙ, ГАРАНТИИ ТОГО, ЧТО ДОКУМЕНТ ИЛИ ИЗМЕНЁННАЯ ВЕРСИЯ ДОКУМЕНТА СВОБОДНА ОТ ДЕФЕКТОВ, ПРИГОДНА К ПРОДАЖЕ, ПРИГОДНА К ИСПОЛЬЗОВАНИЮ В ОПРЕДЕЛЁННЫХ ЦЕЛЯХ ИЛИ НЕ НАРУШАЕТ ЗАКОНЫ. ВЕСЬ РИСК, КАСАЮЩИЙСЯ КАЧЕСТВА, ТОЧНОСТИ ИЛИ ПРАВИЛЬНОСТИ ДОКУМЕНТА ИЛИ ИЗМЕНЁННЫХ ВЕРСИЙ ДОКУМЕНТА, ЛЕЖИТ НА ВАС. ЕСЛИ ДОКУМЕНТ ИЛИ ИЗМЕНЁННАЯ ВЕРСИЯ ДОКУМЕНТА ИМЕЕТ НЕДОСТАТКИ, ВЫ (А НЕ АВТОР ДОКУМЕНТА ИЛИ ЕГО ПОМОЩНИК) БЕРЁТЕ НА СЕБЯ СТОИМОСТЬ ЛЮБОЙ НЕОБХОДИМОЙ ДОРАБОТКИ, КОРРЕКЦИИ ИЛИ ВОССТАНОВЛЕНИЯ. ЭТОТ ОТКАЗ ОТ ГАРАНТИЙ СОСТАВЛЯЕТ ВАЖНУЮ ЧАСТЬ ЛИЦЕНЗИИ. НИКАКОЕ ИСПОЛЬЗОВАНИЕ ДОКУМЕНТА ИЛИ ИЗМЕНЁННОЙ ВЕРСИИ ДОКУМЕНТА НЕ ДОПУСКАЕТСЯ БЕЗ ДАННОГО ПРЕДУПРЕЖДЕНИЯ И - - - НИ ПРИ КАКИХ ОБСТОЯТЕЛЬСТВАХ И НИ ПРИ КАКОМ ЗАКОННОМ СПОСОБЕ, НИ ПО КАКОМУ СОГЛАШЕНИЮ ИЛИ ДРУГОЙ ПРИЧИНЕ, АВТОР, СОЗДАТЕЛЬ, ПОМОЩНИКИ ИЛИ РАСПРОСТРАНИТЕЛИ ДОКУМЕНТА НЕ НЕСУТ ОТВЕТСТВЕННОСТЬ ЗА ПРЯМОЙ, КОСВЕННЫЙ, СПЕЦИАЛЬНЫЙ, СЛУЧАЙНЫЙ ИЛИ ПРЕДНАМЕРЕННЫЙ УЩЕРБ ЛЮБОГО СВОЙСТВА, ВКЛЮЧАЯ, БЕЗ ОГРАНИЧЕНИЯ, ПОТЕРЮ ЖЕЛАНИЯ, РАБОТОСПОСОБНОСТИ, КОМПЬЮТЕРНЫЕ СБОИ ИЛИ ПОЛОМКИ, ИЛИ ЛЮБОЙ ДРУГОЙ УЩЕРБ ИЛИ ПОТЕРИ, ВОЗНИКАЮЩИЕ ВСЛЕДСТВИЕ ИЛИ СВЯЗАННЫЕ С ИСПОЛЬЗОВАНИЕМ ДОКУМЕНТА ИЛИ ИЗМЕНЁННЫХ ВЕРСИЙ ДОКУМЕНТА, ДАЖЕ ЕСЛИ СТОРОНА БЫЛА УВЕДОМЛЕНА О ВОЗМОЖНОСТИ ТАКОГО УЩЕРБА. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ru/ru.po mate-utils-1.26.1/mate-dictionary/help/ru/ru.po --- mate-utils-1.26.0/mate-dictionary/help/ru/ru.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ru/ru.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,22 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Дмитрий Михирев, 2018 -# Aleksey Kabanov , 2018 -# AlexL , 2018 -# Wolfgang Ulbrich , 2018 -# Михаил Ильинский , 2018 -# Alex Putz, 2018 +# Stefano Karapetsas , 2021 +# Aleksey Kabanov , 2021 +# AlexL , 2021 +# Wolfgang Ulbrich , 2021 +# Михаил Ильинский , 2021 +# Alex Puts, 2021 +# Olesya Gerasimenko , 2021 +# Alexey Rodionov , 2021 +# Sergej A. , 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Alex Putz, 2018\n" -"Language-Team: Russian (https://www.transifex.com/mate/teams/13566/ru/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Sergej A. , 2022\n" +"Language-Team: Russian (https://app.transifex.com/mate/teams/13566/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -29,6 +31,7 @@ "Александр Сигачёв \n" "Александр Соколов\n" "Александр Хромин\n" +"Алексей Родионов \n" "Алексей Рочев \n" "Алексей Сорокин \n" "Андрей Иванков\n" @@ -60,24 +63,24 @@ #. (itstool) path: articleinfo/title #: C/index.docbook:24 msgid "Dictionary Manual" -msgstr "" +msgstr "Руководство по приложению «Словарь»" #. (itstool) path: abstract/para #: C/index.docbook:27 msgid "" "Dictionary enables you to look up definitions and correct spellings of " "words." -msgstr "" +msgstr "Словарь позволяет искать определения слов и правильное их написание." #. (itstool) path: articleinfo/copyright #: C/index.docbook:33 msgid "2015-2021 MATE Documentation Project" -msgstr "" +msgstr "2015-2021 Проект документирования MATE" #. (itstool) path: articleinfo/copyright #: C/index.docbook:37 msgid "2005 Emmanuele Bassi" -msgstr "" +msgstr "2005 Эммануэль Басси" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -97,6 +100,8 @@ "MATE Documentation Team Mate " "desktop " msgstr "" +"Группа документирования MATE Mate " +"desktop " #. (itstool) path: authorgroup/author #: C/index.docbook:66 @@ -104,11 +109,13 @@ "Emmanuele Bassi " "
ebassi@gmail.com
" msgstr "" +"Эммануэль Басси " +"
ebassi@gmail.com
" #. (itstool) path: revdescription/para #: C/index.docbook:94 msgid "Wolfgang Ulbrich" -msgstr "Вольфганг Ульбрих" +msgstr "Вольфганг Ульрих" #. (itstool) path: revhistory/revision #: C/index.docbook:90 C/index.docbook:99 @@ -116,16 +123,18 @@ "Dictionary Manual V1.10.0 July 2015 " "<_:revdescription-1/>" msgstr "" +"Руководство по приложению «Словарь» V1.10.0 " +"Июль 2015 <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:103 msgid "Emmanuele Bassi" -msgstr "" +msgstr "Эммануэль Басси" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:109 msgid "This manual describes version 1.10 of Dictionary." -msgstr "" +msgstr "В этом руководстве описывается версия 1.10.2 приложения «Словарь»." #. (itstool) path: legalnotice/title #: C/index.docbook:111 @@ -139,11 +148,15 @@ " this manual, follow the directions in the MATE Feedback Page." msgstr "" +"Чтобы сообщить об ошибке и внести предложение относительно приложения " +"«Словарь» или этого руководства, следуйте инструкциям на странице обратной связи " +"MATE." #. (itstool) path: article/indexterm #: C/index.docbook:121 msgid "Dictionary" -msgstr "" +msgstr "Словарь" #. (itstool) path: sect1/title #: C/index.docbook:128 @@ -156,6 +169,8 @@ "The Dictionary application enables you to search " "words and terms on a dictionary source." msgstr "" +"Приложение Словарь позволяет искать слова и " +"термины в словарных источниках." #. (itstool) path: sect1/title #: C/index.docbook:137 @@ -165,18 +180,19 @@ #. (itstool) path: sect2/title #: C/index.docbook:141 msgid "To Start Dictionary" -msgstr "" +msgstr "Запуск «Словаря»" #. (itstool) path: sect2/para #: C/index.docbook:143 msgid "" "You can start Dictionary in the following ways:" msgstr "" +"Вы можете запустить Словарь следующими способами:" #. (itstool) path: varlistentry/term #: C/index.docbook:148 msgid "Applications menu" -msgstr "меню Приложения" +msgstr "В меню Приложения" #. (itstool) path: listitem/para #: C/index.docbook:150 @@ -184,28 +200,30 @@ "Choose Accessories " "Dictionary." msgstr "" +"Выберите Стандартные " +"Словарь." #. (itstool) path: varlistentry/term #: C/index.docbook:156 msgid "Command line" -msgstr "Командная строка" +msgstr "Из командной строки" #. (itstool) path: listitem/para #: C/index.docbook:158 msgid "Execute the following command: mate-dictionary" -msgstr "" +msgstr "Выполните следующую команду: mate-dictionary" #. (itstool) path: sect2/para #: C/index.docbook:163 msgid "" "Once started, the Dictionary window is displayed:" -msgstr "" +msgstr "После запуска появляется окно Словаря:" #. (itstool) path: figure/title #: C/index.docbook:167 C/index.docbook:196 C/index.docbook:238 #: C/index.docbook:279 C/index.docbook:299 C/index.docbook:368 msgid "Dictionary Window" -msgstr "" +msgstr "Окно «Словаря»" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -218,6 +236,8 @@ "external ref='figures/mate-dictionary-application.png' " "md5='fb48a9e5863bfb2b3811df2e28489eb7'" msgstr "" +"external ref='figures/mate-dictionary-application.png' " +"md5='fb48a9e5863bfb2b3811df2e28489eb7'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:169 @@ -226,6 +246,9 @@ " format=\"PNG\"/> Shows Dictionary main " "window." msgstr "" +" Показано главное окно " +"«Словаря»." #. (itstool) path: sect1/title #: C/index.docbook:184 @@ -235,7 +258,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:187 msgid "Looking up a word" -msgstr "" +msgstr "Поиск слова" #. (itstool) path: sect2/para #: C/index.docbook:189 @@ -243,6 +266,8 @@ "To look up a word, type it into the entry field and " "press Enter." msgstr "" +"Чтобы найти слово, напечатайте его в поле ввода и " +"нажмите Enter." #. (itstool) path: sect2/para #: C/index.docbook:192 @@ -250,6 +275,8 @@ "If some definition for the word is found, it will appear inside the main " "window area:" msgstr "" +"Если будет найдено какое-либо определение для слова, оно появится в основной" +" области окна:" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -262,6 +289,8 @@ "external ref='figures/mate-dictionary-lookup.png' " "md5='c41c96af4de54f457a2081aad009a8d0'" msgstr "" +"external ref='figures/mate-dictionary-lookup.png' " +"md5='c41c96af4de54f457a2081aad009a8d0'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:198 @@ -270,6 +299,9 @@ "format=\"PNG\"/> Shows a definition " "inside the Dictionary main window." msgstr "" +" Показано определение в " +"главном окне «Словаря»." #. (itstool) path: sect2/para #: C/index.docbook:207 @@ -277,11 +309,13 @@ "Otherwise, an error dialog will appear, with a message explaining the nature" " of the error." msgstr "" +"В противном случае появится диалоговое окно с сообщением, объясняющим " +"причину ошибки." #. (itstool) path: sect2/title #: C/index.docbook:213 msgid "Save look up results" -msgstr "" +msgstr "Сохранение результатов поиска" #. (itstool) path: sect2/para #: C/index.docbook:215 @@ -292,11 +326,16 @@ "Save a Copy dialog, then click " "Save." msgstr "" +"Чтобы сохранить результаты поиска, выберите " +"ФайлСохранить " +"копию. Введите название файла в диалоговом окне " +"Сохранить копию, затем щёлкните кнопку " +"Сохранить." #. (itstool) path: sect2/title #: C/index.docbook:220 msgid "Print look up results" -msgstr "" +msgstr "Печать результатов поиска" #. (itstool) path: sect2/para #: C/index.docbook:222 @@ -304,6 +343,8 @@ "To print the results of a look up, choose " "FilePrint." msgstr "" +"Чтобы распечатать найденные результаты, выберите " +"ФайлНапечатать." #. (itstool) path: sect2/para #: C/index.docbook:224 @@ -311,6 +352,8 @@ "Inside the Print dialog you can select the printer to " "use, the paper format, the number of copies." msgstr "" +"В диалоговом окне Печать вы можете выбрать необходимый " +"принтер, формат бумаги и количество копий." #. (itstool) path: sect2/para #: C/index.docbook:227 @@ -318,16 +361,18 @@ "To see a preview of what will be printed, click " "Preview." msgstr "" +"Чтобы предварительно просмотреть документ перед печатью, щёлкните кнопку " +"Образец." #. (itstool) path: sect2/para #: C/index.docbook:230 msgid "To print, click Print." -msgstr "" +msgstr "Чтобы распечатать, щёлкните кнопку Печать." #. (itstool) path: sect2/title #: C/index.docbook:235 msgid "Find Text" -msgstr "" +msgstr "Поиск текст" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -340,6 +385,8 @@ "external ref='figures/mate-dictionary-find.png' " "md5='d8bf0677084e2d9998a7942faaab5379'" msgstr "" +"external ref='figures/mate-dictionary-find.png' " +"md5='d8bf0677084e2d9998a7942faaab5379'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:240 @@ -348,12 +395,15 @@ "format=\"PNG\"/> Shows the Dictionary " "Find pane inside the main window." msgstr "" +" Показана панель поиска " +"по словарю в главном окне." #. (itstool) path: sect2/para #: C/index.docbook:250 msgid "" "To find text inside the results of a look up, perform the following steps:" -msgstr "" +msgstr "Чтобы найти текст в результатах поиска, выполните следующие действия:" #. (itstool) path: listitem/para #: C/index.docbook:254 @@ -361,12 +411,17 @@ "Choose Edit Find " " to display the Find pane." msgstr "" +"Выберите Правка " +"Найти , чтобы открыть панель " +"Поиска." #. (itstool) path: listitem/para #: C/index.docbook:256 msgid "" "Type the text you want to find inside the Search entry." msgstr "" +"Напечатайте в строке поиска текст, который необходимо " +"найти." #. (itstool) path: listitem/para #: C/index.docbook:258 @@ -375,6 +430,9 @@ "To find the previous occurrence of the text, click " "Previous." msgstr "" +"Чтобы найти следующее вхождение текста, щёлкните Найти " +"следующее. Чтобы найти предыдущее вхождение текста, щёлкните " +"Найти предыдущее." #. (itstool) path: sect1/title #. (itstool) path: sect2/title @@ -389,6 +447,9 @@ " choose " "EditPreferences." msgstr "" +"Чтобы изменить настройки приложения Словарь, " +"выберите " +"ПравкаНастройка." #. (itstool) path: sect2/title #: C/index.docbook:276 @@ -406,6 +467,8 @@ "external ref='figures/mate-dictionary-preferences-source.png' " "md5='5470b15e64e66924477f150c4f47e96d'" msgstr "" +"external ref='figures/mate-dictionary-preferences-source.png' " +"md5='5470b15e64e66924477f150c4f47e96d'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:281 @@ -414,6 +477,10 @@ "source.png\" format=\"PNG\"/> Shows the " "Source tab of the Preferences dialog." msgstr "" +" Показана " +"вкладка «Источники» диалогового окна «Параметры " +"словаря»." #. (itstool) path: sect2/para #: C/index.docbook:290 @@ -421,11 +488,13 @@ "To change the dictionary source used to look up words, select the desired " "source from the list." msgstr "" +"Чтобы изменить источник словаря, используемый для поиска слов, отметьте " +"необходимый в списке." #. (itstool) path: sect2/title #: C/index.docbook:296 msgid "Adding a new source" -msgstr "" +msgstr "Добавление нового источника" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -438,6 +507,8 @@ "external ref='figures/mate-dictionary-add-source.png' " "md5='d059507fee77bb176fce53373951756b'" msgstr "" +"external ref='figures/mate-dictionary-add-source.png' " +"md5='d059507fee77bb176fce53373951756b'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:301 @@ -446,16 +517,20 @@ "format=\"PNG\"/> Shows the Add Source " "dialog." msgstr "" +" Показано диалоговое окно" +" «Добавить источник словарей." #. (itstool) path: sect2/para #: C/index.docbook:310 msgid "To add a new dictionary source, perform the following steps:" msgstr "" +"Для добавления нового источника словаря, выполните следующие действия:" #. (itstool) path: listitem/para #: C/index.docbook:313 msgid "Click on the Add button" -msgstr "" +msgstr "Щёлкните кнопку Добавить" #. (itstool) path: listitem/para #: C/index.docbook:314 @@ -463,6 +538,8 @@ "Edit the name of the new source inside the Description " "entry" msgstr "" +"Отредактируйте название нового источника в строке " +"Описание" #. (itstool) path: listitem/para #: C/index.docbook:315 @@ -470,16 +547,18 @@ "Change the transport type of the new source using the " "Transport combo box" msgstr "" +"Измените тип транспорта нового источника, используя для этого поле со " +"списком Транспорт" #. (itstool) path: listitem/para #: C/index.docbook:316 msgid "Edit the attributes of the new source" -msgstr "" +msgstr "Отредактируйте характеристики нового источника" #. (itstool) path: listitem/para #: C/index.docbook:317 msgid "Click Add" -msgstr "" +msgstr "Щёлкните Добавить" #. (itstool) path: sect2/para #: C/index.docbook:320 @@ -487,6 +566,8 @@ "Different source transport types uses different attributes. This is the list" " of available attributes per transport type:" msgstr "" +"Различные типы транспорта источника используют разные характеристики. Ниже " +"представлен список доступных характеристик для каждого типа транспорта:" #. (itstool) path: entry/para #: C/index.docbook:327 @@ -496,42 +577,42 @@ #. (itstool) path: entry/para #: C/index.docbook:328 msgid "Attributes" -msgstr "" +msgstr "Характеристика" #. (itstool) path: entry/para #: C/index.docbook:333 msgid "Dictionary Server" -msgstr "" +msgstr "Сервер словаря" #. (itstool) path: entry/para #: C/index.docbook:335 msgid "Hostname: the hostname of the dictionary server" -msgstr "" +msgstr "Узел: название узла сервера словаря" #. (itstool) path: entry/para #: C/index.docbook:336 msgid "Port: the port of the dictionary server" -msgstr "" +msgstr "Порт: порт сервера словаря" #. (itstool) path: sect2/title #: C/index.docbook:347 msgid "Removing a source" -msgstr "" +msgstr "Удаление источника" #. (itstool) path: sect2/para #: C/index.docbook:349 msgid "To remove a dictionary source, perform the following steps:" -msgstr "" +msgstr "Для удаления нового источника словаря, выполните следующие действия:" #. (itstool) path: listitem/para #: C/index.docbook:352 msgid "Select the source you wish to remove" -msgstr "" +msgstr "Выберите источник, который вы хотите удалить" #. (itstool) path: listitem/para #: C/index.docbook:353 msgid "Click the Remove button" -msgstr "" +msgstr "Щёлкните кнопку Удалить" #. (itstool) path: warning/para #: C/index.docbook:356 @@ -541,11 +622,15 @@ "wide you may actually not be able to remove them unless you have the right " "ownership privileges." msgstr "" +"Если вы удалите источник словаря, он будет навсегда удален из списка " +"доступных источников. Кроме того, поскольку некоторые источники могут быть " +"определены для всей системы, вы не сможете удалить их, если у вас нет " +"соответствующих прав." #. (itstool) path: sect2/title #: C/index.docbook:365 msgid "Print Options" -msgstr "" +msgstr "Настройки печати" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -558,6 +643,8 @@ "external ref='figures/mate-dictionary-preferences-print.png' " "md5='12a65f07cb333db4c7ba743d1d12a00f'" msgstr "" +"external ref='figures/mate-dictionary-preferences-print.png' " +"md5='12a65f07cb333db4c7ba743d1d12a00f'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:370 @@ -566,6 +653,10 @@ "print.png\" format=\"PNG\"/> Shows the " "Print tab inside the Preferences dialog." msgstr "" +" Показана " +"вкладка «Напечатать» диалогового окна «Параметры " +"словаря»." #. (itstool) path: sect2/para #: C/index.docbook:379 @@ -573,26 +664,28 @@ "If you want to change the font name and size used when printing, perform the" " following steps:" msgstr "" +"Если вы хотите изменить название и размер шрифта, используемого при печати, " +"выполните следующие действия:" #. (itstool) path: listitem/para #: C/index.docbook:383 msgid "Click on the Print Font button" -msgstr "" +msgstr "Щёлкните кнопку Шрифт печати" #. (itstool) path: listitem/para #: C/index.docbook:384 msgid "Select the font and size you wish to use" -msgstr "" +msgstr "Выберите шрифт и размер, который вы хотите использовать" #. (itstool) path: listitem/para #: C/index.docbook:385 msgid "Click Ok" -msgstr "" +msgstr "Щёлкните Ok" #. (itstool) path: sect1/title #: C/index.docbook:394 msgid "The Dictionary Applet" -msgstr "" +msgstr "Апплет «Поиск в словаре»" #. (itstool) path: sect1/para #: C/index.docbook:396 @@ -602,11 +695,15 @@ "Dictionary Applet applet to a panel and look up " "words in dictionaries." msgstr "" +"Приложение Словарь поставляется с апплетом панели" +" Поиск в словаре. Вы можете добавить апплет " +"Поиск в словаре на панель и пользоваться им для " +"поиска слов в словарях." #. (itstool) path: figure/title #: C/index.docbook:402 C/index.docbook:438 msgid "Dictionary Applet Window" -msgstr "" +msgstr "Окно апплета «Поиск в словаре»" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -619,6 +716,8 @@ "external ref='figures/mate-dictionary-applet.png' " "md5='538c7fa191540f99dd964963a1079677'" msgstr "" +"external ref='figures/mate-dictionary-applet.png' " +"md5='538c7fa191540f99dd964963a1079677'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:404 @@ -627,11 +726,14 @@ "format=\"PNG\"/> Shows Dictionary " "Applet." msgstr "" +" Показан апплет «Поиск в " +"словаре»." #. (itstool) path: sect2/title #: C/index.docbook:416 msgid "To Start Dictionary Applet" -msgstr "" +msgstr "Запуск апплета «Поиск в словаре»" #. (itstool) path: sect2/para #: C/index.docbook:418 @@ -641,11 +743,16 @@ "Dictionary Applet in the Add to the panel dialog," " then click OK." msgstr "" +"Чтобы добавить апплет «Поиск в словаре» на " +"панель, щёлкните на панели правой кнопкой мыши, затем выберите " +"Добавить на панель. Выберите " +"Словарь в диалоговом окнеДобавить на" +" панель и нажмитеOK." #. (itstool) path: sect2/title #: C/index.docbook:427 msgid "Using the Dictionary Applet" -msgstr "" +msgstr "Использование апплета «Поиск в словаре»" #. (itstool) path: sect2/para #: C/index.docbook:429 @@ -654,6 +761,9 @@ "press Enter or right-click on the dictionary icon and then " "choose Look up." msgstr "" +"Чтобы найти слово, напечатайте его в поле ввода и " +"нажмите Enter или щёлкните правой кнопкой мыши по значку " +"словаря и выберите Искать выделенный текст." #. (itstool) path: sect2/para #: C/index.docbook:434 @@ -661,6 +771,8 @@ "If some definition for the word was found, a window will appear, with the " "text of the definitions:" msgstr "" +"Если будет найдено какое-либо определение для слова, появится, показанное " +"ниже, окно с текстом:" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -673,6 +785,8 @@ "external ref='figures/mate-dictionary-applet-window.png' " "md5='e26ac4847d2e7b53c6bba7d8e1a519c4'" msgstr "" +"external ref='figures/mate-dictionary-applet-window.png' " +"md5='e26ac4847d2e7b53c6bba7d8e1a519c4'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:440 @@ -681,6 +795,9 @@ "window.png\" format=\"PNG\"/> Shows " "Dictionary Applet main window." msgstr "" +" Показано главное окно " +"апплета «Поиск в словаре»." #. (itstool) path: sect2/para #: C/index.docbook:449 @@ -689,6 +806,10 @@ "Click Print to print the definitions. Click " "Clear to clear the definitions." msgstr "" +"Щёлкните Сохранить, чтобы сохранить найденное " +"определение в текстовый файл; Печать, чтобы " +"распечатать определение; Очистить, чтобы очистить " +"результаты поиска. " #. (itstool) path: sect2/para #: C/index.docbook:453 @@ -696,6 +817,8 @@ "You can make the window disappear by left-clicking on the dictionary icon or" " by pressing Esc." msgstr "" +"Вы можете сделать так, чтобы окно с результатами поиска закрылось, щёлкнув " +"левой кнопкой мыши по значку словаря или нажав клавишу Esc." #. (itstool) path: sect2/para #: C/index.docbook:461 @@ -703,14 +826,20 @@ "To configure the Dictionary Applet, right-click " "on the dictionary icon, then choose Preferences." msgstr "" +"Чтобы настроить апплет Поиск в словаре, правой " +"кнопкой мыши щёлкните по значку словаря, затем в выпадающем меню выберите " +"Параметры." #. (itstool) path: sect2/para #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" +"Диалоговое окно Параметры является общим с приложением " +"Словарь, поэтому обратитесь к разделу " #. (itstool) path: para/ulink #: C/legal.xml:9 @@ -785,8 +914,8 @@ "ИЗМЕНЁННЫХ ВЕРСИЙ ДОКУМЕНТА, ЛЕЖИТ НА ВАС. ЕСЛИ ДОКУМЕНТ ИЛИ ИЗМЕНЁННАЯ " "ВЕРСИЯ ДОКУМЕНТА ИМЕЕТ НЕДОСТАТКИ, ВЫ (А НЕ АВТОР ДОКУМЕНТА ИЛИ ЕГО " "ПОМОЩНИК) БЕРЁТЕ НА СЕБЯ СТОИМОСТЬ ЛЮБОЙ НЕОБХОДИМОЙ ДОРАБОТКИ, КОРРЕКЦИИ " -"ИЛИ ВОССТАНОВЛЕНИЯ. ЭТОТ ОТКАЗ ОТ ГАРАНТИЙ СОСТАВЛЯЕТ ВАЖНУЮ ЧАСТЬ ЛИЦЕНЗИИ." -" НИКАКОЕ ИСПОЛЬЗОВАНИЕ ДОКУМЕНТА ИЛИ ИЗМЕНЁННОЙ ВЕРСИИ ДОКУМЕНТА НЕ " +"ИЛИ ВОССТАНОВЛЕНИЯ. ЭТОТ ОТКАЗ ОТ ГАРАНТИЙ СОСТАВЛЯЕТ ВАЖНУЮ ЧАСТЬ " +"ЛИЦЕНЗИИ.НИКАКОЕ ИСПОЛЬЗОВАНИЕ ДОКУМЕНТА ИЛИ ИЗМЕНЁННОЙ ВЕРСИИ ДОКУМЕНТА НЕ " "ДОПУСКАЕТСЯ БЕЗ ДАННОГО ПРЕДУПРЕЖДЕНИЯ И" #. (itstool) path: listitem/para @@ -807,7 +936,7 @@ "СОГЛАШЕНИЮ ИЛИ ДРУГОЙ ПРИЧИНЕ, АВТОР, СОЗДАТЕЛЬ, ПОМОЩНИКИ ИЛИ " "РАСПРОСТРАНИТЕЛИ ДОКУМЕНТА НЕ НЕСУТ ОТВЕТСТВЕННОСТЬ ЗА ПРЯМОЙ, КОСВЕННЫЙ, " "СПЕЦИАЛЬНЫЙ, СЛУЧАЙНЫЙ ИЛИ ПРЕДНАМЕРЕННЫЙ УЩЕРБ ЛЮБОГО СВОЙСТВА, ВКЛЮЧАЯ, " -"БЕЗ ОГРАНИЧЕНИЯ, ПОТЕРЮ ЖЕЛАНИЯ, РАБОТОСПОСОБНОСТИ, КОМПЬЮТЕРНЫЕ СБОИ ИЛИ " +"БЕЗ ОГРАНИЧЕНИЯ, ПОТЕРЮ РЕПУТАЦИИ, РАБОТОСПОСОБНОСТИ, КОМПЬЮТЕРНЫЕ СБОИ ИЛИ " "ПОЛОМКИ, ИЛИ ЛЮБОЙ ДРУГОЙ УЩЕРБ ИЛИ ПОТЕРИ, ВОЗНИКАЮЩИЕ ВСЛЕДСТВИЕ ИЛИ " "СВЯЗАННЫЕ С ИСПОЛЬЗОВАНИЕМ ДОКУМЕНТА ИЛИ ИЗМЕНЁННЫХ ВЕРСИЙ ДОКУМЕНТА, ДАЖЕ " "ЕСЛИ СТОРОНА БЫЛА УВЕДОМЛЕНА О ВОЗМОЖНОСТИ ТАКОГО УЩЕРБА." @@ -819,6 +948,5 @@ "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" -"ДОКУМЕНТ И ИЗМЕНЁННЫЕ ВЕРСИИ ДОКУМЕНТА ПРЕДОСТАВЛЯЮТСЯ ПРЕДОСТАВЛЯЮТСЯ ПО " -"УСЛОВИЯМ ЛИЦЕНЗИИ БЕСПЛАТНОЙ ДОКУМЕНТАЦИИ GNU С ПОНИМАНИЕМ ЧТО: " -"<_:orderedlist-1/>" +"ДОКУМЕНТ И ИЗМЕНЁННЫЕ ВЕРСИИ ДОКУМЕНТА ПРЕДОСТАВЛЯЮТСЯ ПО УСЛОВИЯМ ЛИЦЕНЗИИ " +"БЕСПЛАТНОЙ ДОКУМЕНТАЦИИ GNU С ПОНИМАНИЕМ, ЧТО: <_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/mate-dictionary/help/si/index.docbook mate-utils-1.26.1/mate-dictionary/help/si/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/si/index.docbook 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/si/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - රේඛීය විධාන - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - භාවිතය - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - අභිප්‍රේත - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - ප්‍රවාහනය - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - අභිප්‍රේත - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/si/legal.xml mate-utils-1.26.1/mate-dictionary/help/si/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/si/legal.xml 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/si/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/si/si.po mate-utils-1.26.1/mate-dictionary/help/si/si.po --- mate-utils-1.26.0/mate-dictionary/help/si/si.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/si/si.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Sinhala (https://www.transifex.com/mate/teams/13566/si/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Sinhala (https://app.transifex.com/mate/teams/13566/si/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/sk/index.docbook mate-utils-1.26.1/mate-dictionary/help/sk/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/sk/index.docbook 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,449 +0,0 @@ - - - - - - - -]> - - - -
- - - - Manuál Slovníka - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - 2005 Emmanuele Bassi - - - - - MATE Dokumentačný projekt - - - GNOME Dokumentačný projekt - - - - - - MATE Documentation Team - - Mate desktop - - - Emmanuele Bassi
ebassi@gmail.com
- - - -
- - - Manuál Slovníka V1.10.0 Júl 2015 - Wolfgang Ulbrich - MATE Dokumentačný projekt - - Manuál Slovníka V1.10.0 Júl 2015 - Emmanuele Bassi - GNOME Dokumentačný projekt - - - - Tento manuál popisuje verziu 1.10 Slovníka - - Reakcia - Ak by ste chceli nahlásiť chybu alebo poslať nejaký nápad ku Slovníku, postupujte prosím podľa MATE Feedback Page. - - - -
- - Slovník - - - - - Úvod - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Začíname - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Príkazový riadok - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Využitie - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Nastavenia - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Zdroje slovníkov - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Nastavenia - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/sk/legal.xml mate-utils-1.26.1/mate-dictionary/help/sk/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/sk/legal.xml 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Je povolené kopírovať, šíriť a upravovať tento dokument pod podmienkami GNU Free Documentation License(GFDL), verzie 1.1 alebo akýchkoľvek ďaľších verzí poublikovaných Free Softvare Foundation s Nemennými sekciami, bez vrchných a bez spodných textov. Kópiu GFDL môžete nájsť na na odkaz alebo v súbore COPYING-DOCS ktorý je distribuovaný spolu s týmto manuálom. - Tento manuál je časť s kolekcie MATE manuálov ktoré sú distribuované pod GFDL. Ak chcete distribuovať tento manuál bez celej kolekcie, môžete to spraviť ak ku nemu pridáte kópiu licencie, ako je to vysvetlené v sekcií 6 v licencí. - - Veľa z mien používaných spoločnosťami sú ich ochranné známky. V MATE dokumentácií sa používajú mnohé ochranné známky a členovia MATE Dokumentačného projektu ich preto odlišujú začiatočnými písmenami. - - DOKUMENT A ZMENENÉ VERZIE TOHTO DOKUMENTU SA POSKYTUJÚ ZA ĎAĽŠÍCH PODMIENOK GNU FREE DOCUMENTATION LICENSE S POCHOPENÍM TOHTO: - - DOKUMNET SA POSKYTUJE "TAK AKO JE", BEZ ZÁRUKY AKÉHOKOĽVEK DRUHU, ČI UŽ VÝSLOVNÉHO, VYPLÝVAJÚCEHO, A BEZ ZÁRUKY ŽE TENTO DOKUMENT JE BEZ AKÝCHKOĽVEK CHÝB, ALEBO VHODNÝ PRE KONKRÉTNY ÚČEL ALEBO OPRÁVNENIE. VŠETKA ZODPOVEDNOSŤ ZA KVALITU, PRESNOSŤ A ÚČINNOSŤ DOKUMENTU JE NA VÁS. AK SA DOKUMENT ALEBO JEHO MODIFIKÁCIA UKÁŽE PREUKÁZATEĽNE VADNÁ, MÔŽETE(ALE NIE AK STE POČIATOČNÝ AUTOR, AUTOR ALEBO AKÝKOĽVEK PRISPIEVATEĽ) PREVZIAŤ NÁKLADY NA UDRŽIAVANIE, OPRAVOVANIE A OPRAVU. TOTO VYHLÁSENIE SA POKLADÁ ZA NEODDELITELNÚ SÚČASŤ LICENCIE. NA POUŽÍVANIE DOKUMENTOV ALEBO ICH ZMENENÝCH VERZÍ SA VZŤAHUJE TÁTO LICENCIA OKREM TOHTO VYLÚČENIA ZODPOVEDNOSTI; A - - - V ŽIADNOM PRÍPADE A ZA ŽIADNYCH PRÁVNYCH TEÓRIÍ, ČI ÚMYSELNÉ UBLÍŽENIE (AJ Z NEDBANLIVOSTI), ZMLUVOU, ALEBO INAK SA AUTOR, POČIATOČNÝ SPISOVATEĽ, VŠETCI PRISPIEVATELIA, DISTRIBÚTOR DOKUMENTU ALEBO JEHO MODIFIKOVANEJ VERZIE, ALEBO DODÁVATEĽ AKEJKOĽVEK STRANY, NEZODPOVEDÁ ŽIADNEJ OSOBE ZA AKÉKOĽVEK PRIAME, NEPRIAME, ZVLÁŠTNE, NÁHODNÉ, ALEBO VYPLÝVAJÚCE ŠKODY AKÉHOKOĽVEK CHARAKTERU, AKO OBMEDZENIA, STRATA DOBRÉHO MENA, PRERUŠENIE PRÁCE, ZLYHANIE POČÍTAČA ČI PORUCHY, ALEBO AKÉKOĽVEK INÉ ŠKODY A STRATY KTORÉ VZNIKNÚ, ALEBO SA BUDÚ VZŤAHOVAŤ NA POUŽÍVANIE TOHOTO DOKUMENTU ČI ZMENENÝCH VERZIÍ TOHTO DOKUMENTU AJ KEĎ STRANA BOLA INFORMOVANÁ O MOŽNOSTI TAKÝCHTO ŠKÔD. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/sk/sk.po mate-utils-1.26.1/mate-dictionary/help/sk/sk.po --- mate-utils-1.26.0/mate-dictionary/help/sk/sk.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sk/sk.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,17 @@ # # Translators: -# Dušan Kazik , 2018 -# Stefano Karapetsas , 2018 -# Vendelín Slezák , 2018 -# Ján Ďanovský , 2020 +# Ján Ďanovský , 2021 +# Dušan Kazik , 2021 +# Stefano Karapetsas , 2021 +# Vendelín Slezák , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Ján Ďanovský , 2020\n" -"Language-Team: Slovak (https://www.transifex.com/mate/teams/13566/sk/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Vendelín Slezák , 2021\n" +"Language-Team: Slovak (https://app.transifex.com/mate/teams/13566/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -686,8 +686,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/sl/index.docbook mate-utils-1.26.1/mate-dictionary/help/sl/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/sl/index.docbook 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sl/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Projektna dokumentacija - - - GNOME Projektna dokumentacija - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Odziv - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Uvod - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Ukazna vrstica - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Uporaba - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Možnosti - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Viri slovarja - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Prenos - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Možnosti - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/sl/legal.xml mate-utils-1.26.1/mate-dictionary/help/sl/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/sl/legal.xml 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sl/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/sl/sl.po mate-utils-1.26.1/mate-dictionary/help/sl/sl.po --- mate-utils-1.26.0/mate-dictionary/help/sl/sl.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sl/sl.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,18 +1,18 @@ # # Translators: -# Stefano Karapetsas , 2018 -# jetomit , 2018 -# Damir Mevkić , 2019 -# Helena S , 2020 -# Arnold Marko , 2020 +# Stefano Karapetsas , 2021 +# Damir Mevkić 52K , 2021 +# Helena S , 2021 +# jetomit , 2021 +# Arnold Marko , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Arnold Marko , 2020\n" -"Language-Team: Slovenian (https://www.transifex.com/mate/teams/13566/sl/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Arnold Marko , 2021\n" +"Language-Team: Slovenian (https://app.transifex.com/mate/teams/13566/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -50,13 +50,13 @@ #. (itstool) path: revdescription/para #: C/index.docbook:52 C/index.docbook:96 msgid "MATE Documentation Project" -msgstr "MATE Projektna dokumentacija" +msgstr "MATE projekt dokumentacije" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:55 C/index.docbook:104 msgid "GNOME Documentation Project" -msgstr "GNOME Projektna dokumentacija" +msgstr "GNOME Projekt dokumentacije" #. (itstool) path: authorgroup/author #: C/index.docbook:60 @@ -675,8 +675,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/sq/index.docbook mate-utils-1.26.1/mate-dictionary/help/sq/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/sq/index.docbook 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sq/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - Dokumentimi Projektit MATE - - - Dokumentimi Projektit GNOME - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Sugjerime - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - paraqitje - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Rreshti i komandës - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Përdorimi - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Parapëlqimet - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Parapëlqimet - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/sq/legal.xml mate-utils-1.26.1/mate-dictionary/help/sq/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/sq/legal.xml 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sq/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,70 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - Ky manual është pjesë e një koleksioni të manualeve të MATE të shpërndara nën GFDL. Nëse dëshironi ta shpërndani këtë manual veçmas nga koleksioni, mund ta bëni duke shtuar një kopje të licencës në manual, siç përshkruhet në seksionin 6 të licencës. - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/sq/sq.po mate-utils-1.26.1/mate-dictionary/help/sq/sq.po --- mate-utils-1.26.0/mate-dictionary/help/sq/sq.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sq/sq.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Alban , 2018 -# Indrit Bashkimi , 2018 +# Stefano Karapetsas , 2021 +# Alban , 2021 # Ardit Dani , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" "Last-Translator: Ardit Dani , 2021\n" -"Language-Team: Albanian (https://www.transifex.com/mate/teams/13566/sq/)\n" +"Language-Team: Albanian (https://app.transifex.com/mate/teams/13566/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,6 +21,7 @@ msgctxt "_" msgid "translator-credits" msgstr "" +"Ardit Dani \n" "Elian Myftiu \n" "Indrit Bashkimi \n" "Laurent Dhima " @@ -52,7 +52,7 @@ #. (itstool) path: revdescription/para #: C/index.docbook:52 C/index.docbook:96 msgid "MATE Documentation Project" -msgstr "Dokumentimi Projektit MATE" +msgstr "Dokumentacion Projekti MATE" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -349,7 +349,7 @@ #. (itstool) path: sect2/title #: C/index.docbook:269 C/index.docbook:459 msgid "Preferences" -msgstr "Parapëlqimet" +msgstr "Preferencë" #. (itstool) path: sect1/para #: C/index.docbook:271 @@ -677,8 +677,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/sr/index.docbook mate-utils-1.26.1/mate-dictionary/help/sr/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/sr/index.docbook 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,360 +0,0 @@ - - - - - - - -]> - - - -
- - - - Упутство за речник - - - Речник вам омогућава да тражите дефиниције и да исправите писање речи. - - - 2015-2021 Пројекат Мејтове документације - 2005 Емануеле Баси - - - - - Пројекат Мејтове документације - - - Пројекат Гномове документације - - - - - Тим Мејтове документације Мејтова радна површ - Емануеле Баси
ebassi@gmail.com
- - - -
- - - Упутство за речник И1.10.0 Јул 2015. - Волфганг Улбрих - Пројекат Мејтове документације - - Упутство за речник И1.10.0 Јул 2015. - Емануеле Баси - Пројекат Гномове документације - - - - Ово упутство је написано за Речник 1.10. - - Примедбе - Да бисте пријавили грешку или дали предлог у вези програма Речник или у вези овог упутства, пратите смернице на Мејтовој страници повратних одговора. - - - -
- - Речник - - - - - Увод - - Програм Речник вам омогућава да тражите речи и термине на извору речника. - - - - - - Први кораци - - - - Покретање Речника - - Можете покренути Речник на следеће начине: - - - - Изборник „Програми“ - - Изаберите Алатке Речник. - - - - Наредба - - Извршите следећу наредбу: mate-dictionary - - - - - Када се покрене, приказује се прозор Речника: - -
- Прозор речника - - Приказује главни прозор Речника. - -
- -
- -
- - - - Употреба - - - Тражење речи - - Да потражите реч, упишите је у поље уноса и притисните Унеси. - - Ако се нађе нека дефиниција речи, појавиће се у области главног прозора: - -
- Прозор речника - - Приказује дефиницију у главном прозору Речника. - -
- - У супротном, појавиће се прозорче грешке, са поруком која објашњава природу грешке. - -
- - - Чување резултата претраге - - Да сачувате резултате претраге, изаберите ДатотекаСачувај умножак. Упишите назив за датотеку у прозорчету Сачувај умножак, затим кликните Сачувај. - - - - - Штампање резултата претраге - - Да штампате резултате претраге, изаберите ДатотекаШтампај. - - У прозорчету Штампај можете изабрати штампач за коришћење, формат папира, број примерака. - - Да видите преглед пре штампе, кликните на Преглед пре штампе. - - Да штампате, кликните Штампај. - - - - - Налажење текста - -
- Прозор речника - - Приказује окно налажења у главном прозору. - -
- - - Да нађете текст унутар резултата претраге, урадите следеће кораке: - - - Изаберите Уређивање Нађи да прикажете окно Нађи. - Упишите текст који желите да нађете унутар уноса Тражи. - Да нађете следеће појављивање текста, кликните Следеће. Да нађете претходно појављивање текста, кликните Претходно. - - -
- -
- - - - Поставке - - Да измените поставке програма Речник, изаберите УређивањеПоставке. - - - - Извори речника - -
- Прозор речника - - Приказује језичак Извора прозорчета Поставки. - -
- - Да измените извор речника коришћен за тражење речи, изаберите жељени извор са списка. -
- - - - Додавање новог извора - -
- Прозор речника - - Приказује прозорче Додај извор. - -
- - Да додате нови извор речника, извршите следеће кораке: - - - Кликните на дигме Додај - Уредите назив новог извора у уносу Опис - Измените врсту преноса новог извора користећи комбо кућицу Пренос - Уредите атрибуте новог извора - Кликните Додај - - - Различите врсте извора транспорта користе различите атрибуте. Ово је списак доступних атрибута за врсту транспорта: - - - - - - Пренос - Особине - - - - - Сервер речника - - Домаћин: домаћин сервера речника - Прикључник: прикључник сервера речника - - - - - - -
- - - - Уклањање извора - - Да уклоните извор речника, извршите следеће кораке: - - - Изаберите извор који желите да уклоните - Кликните на дигме Уклони - - - Ако уклоните извор речника исти ће бити трајно обрисан са списка доступних извора. Такође, као што неки извори могу бити дефинисани свеопште системски можда заправо нећете бити у могућности да их уклоните осим ако имате права овлашћења власништва. - - - - - - Опције штампе - -
- Прозор речника - - Приказује језичак штампања у прозорчету Поставке. - -
- - Ако желите да измените назив словног лика и величину коришћену приликом штампања, урадите следеће: - - - Кликните на дугме Словни лик штампања - Изаберите словни лик и величину коју желите да користите - Кликните У реду - - -
- -
- - - - Програмче речника - - Програм Речник долази са програмчетом за панел, Програмче речника. Можете додати Програмче речника на панел и да тражите речи у речнику. - -
- Прозор програмчета речника - - Приказује програмче речника. - -
- - - - - Покретање програмчета Речника - - Да додате Програмче речника на панел, кликните десним тастером миша на панел, затим изаберите Додај на панел. Изаберите Програмче речника у прозорчету Додај на панел, затим кликните У реду. - - - - - - Коришћење програмчета речника - - Да потражите реч, упишите је у поље уноса, и притисните Унеси или кликните десним тастером на иконицу речника и затим изаберите Потражи. - - Ако се нађе нека дефиниција за реч, појавиће се прозор, са текстом дефиниције: - -
- Прозор програмчета речника - - Приказује главни прозор Програмчета речника. - -
- - Кликните Сачувај да сачувате дефиниције у текстуалну датотеку. Кликните Штампај да штампате дефиницију. Кликните Очисти да очистите дефиниције. - - Можете да учините да прозор нестане левим кликом на иконицу речника или да притиснете Esc. - -
- - - Поставке - - Да подесите Програмче речника, кликните десним тастером на иконицу речника, затим изаберите Поставке. - - Прозорче Поставке је исто оно које користи програм Речник, зато погледајте - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/sr/legal.xml mate-utils-1.26.1/mate-dictionary/help/sr/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/sr/legal.xml 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Дозвољено је умножавање, расподела, вршење измена овог документа под условима Гну-ове Лиценце Слободне Документације (ГЛСД), верзије 1.1 или било које касније верзије без непромењивих одељака, текста на насловној и последњој страни, а коју је објавила Задужбина Слободног Софтвера. Примерак ГЛСД можете пронаћи на овој веза или у датотеци „COPYING-DOCS“ која је приложена уз ово упутство. - Ово упутство је део скупа Мејтових докумената објављених под GFDL. Уколико желите да расподељујете ово упутство одвојено од скупа, то можете урадити додавањем примерка лиценце документу, како је описано у одељку 6 саме лиценце. - - Многи називи које компаније користе у циљу препознатљивости својих производа и услуга представљају робне марке. Када (уколико) се такви називи појављују(спомињу) у било којем Мејтовом документу, а чланови Мејтовог документационог пројекта имају сазнања о томе, тада су називи исписани великим словима или са великим почетним словима. - - OVAJ DOKUMENT I NJEGOVE IZMENJENE VERZIJE SU DOSTUPNE POD USLOVIMA GNU-OVE SLOBODNE DOKUMENTACIONE DOZVOLE UZ DODATNU SAGLASNOST DA: - - ДОКУМЕНТ ЈЕ ДОСТУПАН СА СВИМ СВОЈИМ ДОБРИМ И ЛОШИМ СТРАНАМА БЕЗ БИЛО КАКВОГ ЈАМСТВА, БИЛО ОНО ИЗРЕЧЕНО ИЛИ НЕ, УКЉУЧУЈУЋИ БЕЗ ОГРАНИЧЕЊА, ЈАМСТВО ДА ЈЕ ОВАЈ ДОКУМЕНТ ИЛИ ЊЕГОВА ИЗМЕЊЕНА ВЕРЗИЈА БЕЗ НЕДОСТАТАКА, СПРЕМАН ЗА ТРЖИШТЕ, СВРСИСХОДАН И НЕ НАРУШАВА ЗАКОНСКЕ НОРМЕ. ЦЕЛОКУПАН РИЗИК КОЈИ СЕ ОДНОСИ НА КВАЛИТЕТ, ТАЧНОСТ И ДОМЕТ (УЧИНАК) ДОКУМЕНТА ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ СНОСИ КОРИСНИК. УКОЛИКО СЕ У БИЛО КОЈЕМ ДОКУМЕНТУ ИЛИ ЊЕГОВОЈ ИЗМЕЊЕНОЈ ВЕРЗИЈИ ПОЈАВИ НЕДОСТАТАК (ГРЕШКА) БИЛО КОЈЕ ВРСТЕ, КОРИСНИК (А НЕ АУТОР ИЗВОРНЕ ВЕРЗИЈЕ, БИЛО КОЈИ ДРУГИ АУТОР ИЛИ САРАДНИК) СНОСИ СВЕ ТРОШКОВЕ НЕОПХОДНОГ СЕРВИСИРАЊА, ПОПРАВКЕ ИЛИ ИСПРАВКЕ. ОВО ОГРАНИЧЕЊЕ ЈАМСТВА ПРЕДСТАВЉА САСТАВНИ ДЕО ОВЕ ДОЗВОЛЕ. УПОТРЕБА БИЛО КОЈЕГ ДОКУМЕНТА ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ НИЈЕ ДОЗВОЉЕНА ОСИМ ПОД УСЛОВИМА ОВОГ ОГРАНИЧЕЊА ЈАМСТВА. - - - НИ ПОД КАКВИМ ОКОЛНОСТИМА ИЛИ ЗАКОНУ, БИЛО ЗБОГ КРШЕЊА (ИЛИ НЕМАРА) УГОВОРА, ИЛИ НА БИЛО КОЈИ ДРУГИ НАЧИН, АУТОР (ПРВОБИТНЕ ВЕРЗИЈЕ), САРАДНИК ИЛИ ИСПОРУЧИВАЛАЦ ДОКУМЕНТА ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ, НИТИ ДОБАВЉАЧ БИЛО КОЈЕ ОД НАВЕДЕНИХ СТРАНА НЕЋЕ СНОСИТИ МАТЕРИЈАЛНУ ОДГОВОРНОСТ ЗА НАСТАЛА ДИРЕКТНА, ИНДИРЕКТНА, ПОСЕБНА, СЛУЧАЈНА ИЛИ ТИМЕ НАСТАЛА ОШТЕЋЕЊА БИЛО КОЈЕ ВРСТЕ УКЉУЧУЈУЋИ, БЕЗ ОГРАНИЧЕЊА, ШТЕТУ НАНЕСЕНУ УГЛЕДУ ФИРМЕ, ПРЕСТАНКУ ПРОИЗВОДЊЕ, ОТКАЗИВАЊЕ РАДА РАЧУНАРА ИЛИ КВАРА КАО И ЗА СВЕ ОСТАЛЕ ШТЕТЕ ИЛИ ГУБИТКЕ НАСТАЛЕ УСЛЕД КОРИШЋЕЊА ДОКУМЕНТА И ЊЕГОВИХ ИЗМЕЊЕНИХ ВЕРЗИЈА ЧАК И АКО ЈЕ ОШТЕЋЕНА СТРАНА БИЛА ОБАВЕШТЕНА О МОГУЋНОСТИ НАСТАНКА ТЕ ШТЕТЕ. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/sr/sr.po mate-utils-1.26.1/mate-dictionary/help/sr/sr.po --- mate-utils-1.26.0/mate-dictionary/help/sr/sr.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sr/sr.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 # Мирослав Николић , 2021 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Мирослав Николић , 2021\n" -"Language-Team: Serbian (https://www.transifex.com/mate/teams/13566/sr/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Serbian (https://app.transifex.com/mate/teams/13566/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,7 +19,10 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Мирослав Николић " +msgstr "" +"Мирослав Николић ; 2012—2021.\n" +"\n" +"http://prevod.org — превод на српски језик." #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -154,7 +157,7 @@ #. (itstool) path: varlistentry/term #: C/index.docbook:148 msgid "Applications menu" -msgstr "Изборник „Програми“" +msgstr "Изборник „Програми“" #. (itstool) path: listitem/para #: C/index.docbook:150 @@ -168,7 +171,7 @@ #. (itstool) path: varlistentry/term #: C/index.docbook:156 msgid "Command line" -msgstr "Наредба" +msgstr "Терминал" #. (itstool) path: listitem/para #: C/index.docbook:158 @@ -216,7 +219,7 @@ #. (itstool) path: sect1/title #: C/index.docbook:184 msgid "Usage" -msgstr "Употреба" +msgstr "Коришћење" #. (itstool) path: sect2/title #: C/index.docbook:187 @@ -788,8 +791,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" "Прозорче Поставке је исто оно које користи програм " "Речник, зато погледајте или у датотеци „COPYING-DOCS“ која " "је приложена уз ово упутство." @@ -825,7 +828,7 @@ "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" -"Ово упутство је део скупа Мејтових докумената објављених под GFDL. Уколико " +"Ово упутство је део скупа Мејтових докумената објављених под ГСДД. Уколико " "желите да расподељујете ово упутство одвојено од скупа, то можете урадити " "додавањем примерка лиценце документу, како је описано у одељку 6 саме " "лиценце." @@ -840,8 +843,8 @@ "capital letters." msgstr "" "Многи називи које компаније користе у циљу препознатљивости својих производа" -" и услуга представљају робне марке. Када (уколико) се такви називи " -"појављују(спомињу) у било којем Мејтовом документу, а чланови Мејтовог " +" и услуга представљају робне марке. Када (уколико) се такви називи појављују" +" (спомињу) у било којем Мејтовом документу, а чланови Мејтовог " "документационог пројекта имају сазнања о томе, тада су називи исписани " "великим словима или са великим почетним словима." @@ -871,7 +874,7 @@ "ТРОШКОВЕ НЕОПХОДНОГ СЕРВИСИРАЊА, ПОПРАВКЕ ИЛИ ИСПРАВКЕ. ОВО ОГРАНИЧЕЊЕ " "ЈАМСТВА ПРЕДСТАВЉА САСТАВНИ ДЕО ОВЕ ДОЗВОЛЕ. УПОТРЕБА БИЛО КОЈЕГ ДОКУМЕНТА " "ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ НИЈЕ ДОЗВОЉЕНА ОСИМ ПОД УСЛОВИМА ОВОГ ОГРАНИЧЕЊА" -" ЈАМСТВА." +" ЈАМСТВА; И" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -904,5 +907,5 @@ "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" -"OVAJ DOKUMENT I NJEGOVE IZMENJENE VERZIJE SU DOSTUPNE POD USLOVIMA GNU-OVE " -"SLOBODNE DOKUMENTACIONE DOZVOLE UZ DODATNU SAGLASNOST DA: <_:orderedlist-1/>" +"ОВАЈ ДОКУМЕНТ И ЊЕГОВА ИЗМЕЊЕНА ИЗДАЊА ЈЕ ДОСТУПАН ПОД УСЛОВИМА ГНУОВЕ " +"СЛОБОДНЕ ДОКУМЕНТАЦИОНЕ ДОЗВОЛЕ УЗ ДОДАТНУ САГЛАСНОСТ ДА: <_:orderedlist-1/>" diff -Nru mate-utils-1.26.0/mate-dictionary/help/sr@latin/index.docbook mate-utils-1.26.1/mate-dictionary/help/sr@latin/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/sr@latin/index.docbook 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sr@latin/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Uvod - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Naredba - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Upotreba - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Postavke - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Izvori rečnika - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Prenosni mehanizam - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Postavke - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/sr@latin/legal.xml mate-utils-1.26.1/mate-dictionary/help/sr@latin/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/sr@latin/legal.xml 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sr@latin/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/sr@latin/sr@latin.po mate-utils-1.26.1/mate-dictionary/help/sr@latin/sr@latin.po --- mate-utils-1.26.0/mate-dictionary/help/sr@latin/sr@latin.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sr@latin/sr@latin.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Ivan Pejić , 2018 +# Stefano Karapetsas , 2021 +# Ivan Pejić , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Ivan Pejić , 2018\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/mate/teams/13566/sr@latin/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Ivan Pejić , 2021\n" +"Language-Team: Serbian (Latin) (https://app.transifex.com/mate/teams/13566/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -675,8 +675,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/sv/index.docbook mate-utils-1.26.1/mate-dictionary/help/sv/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/sv/index.docbook 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sv/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,467 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - 2005 Emmanuele Bassi - - - - - Dokumentationsprojekt för MATE - - - Dokumentationsprojekt för GNOME - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Återkoppling - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - Ordbok - - - - - Introduktion - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Program-menyn - - Choose Accessories - Dictionary. - - - - - Kommandorad - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Användning - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Hitta text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Inställningar - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Ordbokskällor - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attribut - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Klicka på Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Inställningar - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/sv/legal.xml mate-utils-1.26.1/mate-dictionary/help/sv/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/sv/legal.xml 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sv/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - Denna handbok utgör en av flera MATE-handböcker som distribueras under villkoren i GFDL. Om du vill distribuera denna handbok separat från övriga handböcker kan du göra detta genom att lägga till en kopia av licensavtalet i handboken enligt instruktionerna i avsnitt 6 i licensavtalet. - - Flera namn på produkter och tjänster är registrerade varumärken. I de fall dessa namn förekommer i MATE-dokumentation - och medlemmarna i MATE-dokumentationsprojektet är medvetna om dessa varumärken - är de skrivna med versaler eller med inledande versal. - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/sv/sv.po mate-utils-1.26.1/mate-dictionary/help/sv/sv.po --- mate-utils-1.26.0/mate-dictionary/help/sv/sv.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/sv/sv.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,20 @@ # # Translators: -# Kristoffer Grundström , 2018 -# Stefano Karapetsas , 2018 -# Henrik Mattsson-Mårn , 2018 -# Wolfgang Ulbrich , 2018 -# Daniel Gullbransen, 2018 -# crash , 2019 +# Kristoffer Grundström , 2021 # Luna Jernberg , 2021 +# Stefano Karapetsas , 2021 +# Henrik Mattsson-Mårn , 2021 +# crash , 2021 +# Wolfgang Ulbrich , 2021 +# Daniel Gullbransen, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Luna Jernberg , 2021\n" -"Language-Team: Swedish (https://www.transifex.com/mate/teams/13566/sv/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Daniel Gullbransen, 2021\n" +"Language-Team: Swedish (https://app.transifex.com/mate/teams/13566/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,7 +24,7 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Kristoffer Grundström " +msgstr "Kristoffer Grundström " #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -693,8 +693,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ta/index.docbook mate-utils-1.26.1/mate-dictionary/help/ta/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ta/index.docbook 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ta/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - அறிமுகம் - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - கட்டளை வரி - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - பயன்பாடு - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - விருப்ப தேர்வுகள் - - To change the Dictionary application - preferences, choose EditPreferences. - - - - அகராதி வளங்கள் - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - போக்குவரத்து - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - விருப்ப தேர்வுகள் - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ta/legal.xml mate-utils-1.26.1/mate-dictionary/help/ta/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ta/legal.xml 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ta/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ta/ta.po mate-utils-1.26.1/mate-dictionary/help/ta/ta.po --- mate-utils-1.26.0/mate-dictionary/help/ta/ta.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ta/ta.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Mooglie , 2018 +# Stefano Karapetsas , 2021 +# Mooglie , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Mooglie , 2018\n" -"Language-Team: Tamil (https://www.transifex.com/mate/teams/13566/ta/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Mooglie , 2021\n" +"Language-Team: Tamil (https://app.transifex.com/mate/teams/13566/ta/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -675,8 +675,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/te/index.docbook mate-utils-1.26.1/mate-dictionary/help/te/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/te/index.docbook 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/te/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,485 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - - - - - Praveen Illa - - mail2ipn@gmail.com - - - - 2014 - - Praveen Illa - -
- - - Dictionary - - - - - - ఉపోద్ఘాతము - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - ఆదేశ పంక్తి - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - వినిమయం - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - అభిరుచులు - - To change the Dictionary application - preferences, choose EditPreferences. - - - - నిఘంటువు వనరులు - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - బదిలి - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - అభిరుచులు - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/te/legal.xml mate-utils-1.26.1/mate-dictionary/help/te/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/te/legal.xml 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/te/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/te/te.po mate-utils-1.26.1/mate-dictionary/help/te/te.po --- mate-utils-1.26.0/mate-dictionary/help/te/te.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/te/te.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# ప్రవీణ్ ఇళ్ళ , 2018 -# Stefano Karapetsas , 2018 +# ప్రవీణ్ ఇళ్ళ , 2021 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Telugu (https://www.transifex.com/mate/teams/13566/te/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Telugu (https://app.transifex.com/mate/teams/13566/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -672,8 +672,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/th/index.docbook mate-utils-1.26.1/mate-dictionary/help/th/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/th/index.docbook 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/th/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,485 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - โครงการเอกสาร MATE - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - ร่วมเสนอแนะ - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - - - - - Akom Chotiphantawanon - - knight2000@gmail.com - - - - 2016 - - Akom Chotiphantawanon - -
- - - Dictionary - - - - - - เกริ่นนำ - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - เมนู โปรแกรม - - Choose Accessories - Dictionary. - - - - - บรรทัดคำสั่ง - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - วิธีใช้ - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - การปรับแต่ง - - To change the Dictionary application - preferences, choose EditPreferences. - - - - แหล่งพจนานุกรม - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - การส่งข้อมูล - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - การปรับแต่ง - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/th/legal.xml mate-utils-1.26.1/mate-dictionary/help/th/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/th/legal.xml 2021-08-05 19:47:35.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/th/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - คู่มือนี้ เป็นส่วนหนึ่งของชุดคู่มือ MATE ที่เผยแพร่ภายใต้ GFDL ถ้าคุณต้องการเผยแพร่คู่มือนี้แยกต่างหากจากชุด คุณสามารถทำได้โดยเพิ่มสำเนาของสัญญาอนุญาตไปกับคู่มือ ตามที่อธิบายในข้อ 6 ของสัญญาอนุญาต - - มีชื่อหลายชื่อที่บริษัทต่างๆ ใช้แยกความแตกต่างของผลิตภัณฑ์และบริการของตนจากบริษัทอื่น และอ้างเป็นเครื่องหมายการค้า ที่ใดก็ตามที่ชื่อเหล่านั้นปรากฏในเอกสารของ MATE และสมาชิกโครงการเอกสาร MATE ได้รับทราบเกี่ยวกับเครื่องหมายการค้าเหล่านั้น ชื่อเหล่านั้นจะเขียนด้วยตัวพิมพ์ใหญ่ หรือขึ้นต้นด้วยตัวพิมพ์ใหญ่ - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/th/th.po mate-utils-1.26.1/mate-dictionary/help/th/th.po --- mate-utils-1.26.0/mate-dictionary/help/th/th.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/th/th.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Akom , 2018 +# Stefano Karapetsas , 2021 +# Wolfgang Ulbrich , 2021 +# Akom , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Akom , 2018\n" -"Language-Team: Thai (https://www.transifex.com/mate/teams/13566/th/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Akom , 2021\n" +"Language-Team: Thai (https://app.transifex.com/mate/teams/13566/th/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,7 +20,7 @@ #. Put one translator per line, in the form NAME , YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Akom Chotiphantawanon , 2016" +msgstr "Akom Chotiphantawanon " #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -673,8 +673,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/tk/index.docbook mate-utils-1.26.1/mate-dictionary/help/tk/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/tk/index.docbook 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/tk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Seçenekler - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Seçenekler - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/tk/legal.xml mate-utils-1.26.1/mate-dictionary/help/tk/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/tk/legal.xml 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/tk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/tr/index.docbook mate-utils-1.26.1/mate-dictionary/help/tr/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/tr/index.docbook 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/tr/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,555 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - 2005 Emmanuele Bassi - - - - - MATE Belgelendirme Projesi - - - GNOME Belgelendirme Projesi - - - - - - MATE Documentation Team - - Mate desktop - - - Emmanuele Bassi
ebassi@gmail.com
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Geri bildirim - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - - - - - Fatih Demir - - kabalak@kabalak.net - - - - 2000. - - Fatih Demir - - - - - Görkem Çetin - - gorkem@gelecek.com.tr - - - - 2002/2003. - - Görkem Çetin - - - - - Barış Çicek - - baris@teamforce.name.tr - - - - 2004 - - 2008 - - 2009. - - Barış Çicek - - - - - Muhammet Kara - - muhammet.k@gmail.com - - - - 2011. - - Muhammet Kara - - - - - hsngrms - - dead-bodies-everywhere@hotmail.com - - - - 2012 - - hsngrms - - - - - Atilla Öntaş - - tarakbumba@gmail.com - - - - 2014 - - Atilla Öntaş - - - - - Emre FIRAT - - emrefirat93@gmail.com - - - - 2013 - - 2014 - - 2015 - - Emre FIRAT - -
- - Sözlük - - - - - Başlangıç - - Sözlük uygulaması bir sözlük kaynağından kelimelerin ve terimlerin aramanıza olanak verir. - - - - - - Başlangıç - - - - Sözlük'ü Başlatmak İçin - - Sözlük'ü şu yollarla başlatabilirsiniz: - - - - Uygulamalar menüsü - - DonatılarSözlükkısmından seçerek. - - - - Komut satırı - - Şu komutu yazarak: mate-dictionary - - - - - Başladığı zaman, Sözlük penceresi görünecektir: - -
- Sözlük Penceresi - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Kullanım - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Sözlük Penceresi - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Sözlük Penceresi - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Tercihler - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Sözlük Kaynakları - -
- Sözlük Penceresi - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Sözlük Penceresi - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Taşıma - Attributes - - - - - Sözlük Sunucusu - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Kaynak kaldırılıyor - - To remove a dictionary source, perform the following steps: - - - Kaldırmak istediğiniz kaynağı seçin - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Yazdırma Seçenekleri - -
- Sözlük Penceresi - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Tercihler - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/tr/legal.xml mate-utils-1.26.1/mate-dictionary/help/tr/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/tr/legal.xml 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/tr/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Bu belgeyi kopyalama, dağıtma ve/veya değiştirme izni, değişmez bölümsüz, ön kapak metinsiz ve arka kapak metinsiz şekilde GNU Free Documentation License (GNU Özgür Belgeleme Lisansı, GFDL), sürüm 1.1 ya da Free Software Foundation tarafından yayınlanan daha yeni bir sürüm kapsamında verilmiştir. GFDL'in bir kopyasını bu bağlantı ya da bu kılavuzla dağıtılan COPYING-DOCS dosyasında bulabilirsiniz. - Bu kılavuz, GFDL (GNU Özgür Belgelendirme Lisansı) kapsamında yayınlanan MATE kılavuzları koleksiyonunun bir parçasıdır. Bu kılavuzu koleksiyondan ayrı bir biçimde dağıtmak istiyorsanız, lisansın 6. bölümünde açıklandığı gibi kılavuza lisansın bir kopyasını ilave ederek yapabilirsiniz. - - Firmalar tarafından ürün ve hizmetlerinin ayırt edilmeleri için kullandıkları isimlerin birçoğu tescilli marka olarak ayrılmıştır. Bu isimlerin MATE belgelendirilmesinde yer alması ve MATE Belgelendirme Projesi mensupları bu tescilli markalardan haberdar edildikleri durumda, isimlerin ilk harfi ya da tamamı büyük harflerle yazılır. - - BELGE VE BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİ GNU FREE DOCUMENTATION LICENSE (YANİ GNU ÖZGÜR BELGE LİSANSI) KAPSAMINDA, ŞU KONULARDA ANLAŞMAYLA SUNULMUŞTUR: - - BELGE OLDUĞU GİBİ, AÇIK VEYA ZIMNİ HİÇBİR TÜRLÜ GARANTİ OLMADAN SUNULMUŞTUR, Kİ BUNA SINIRLAMA OLMAKSIZIN BELGE VEYA BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİNİN BELLİ BİR AMACA UYGUN OLMALARI, KUSURDAN ARINMIŞ OLMALARI VEYA HAK İHLALİNDE BULUNMAMALARI GARANTİLERİ OLMAMASI DA DAHİLDİR. BELGE VE BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİNİN KALİTESİ, DOĞRULUĞU VE PERFORMANSINA İLİŞKİN TÜM RİSK SİZE AİTTİR. HERHANGİ BİR BELGE VEYA BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMÜNÜN KUSURLU OLMASI HALİNDE, GEREKLİ SERVİS, ONARIM VE DÜZELTMENİN ÜCRETİNİ SİZ ÜSTLENİRSİNİZ (İLK YAZAR, HAZIRLAYAN VEYA HERHANGİ BİR KATILIMCI DEĞİL). BU GARANTİ REDDİ BU LİSANSIN TEMEL BİR PARÇASINI OLUŞTURMAKTADIR. HERHANGİ BİR BELGENİN VEYA BELGENİN DEĞİŞTİRİLMİŞ BİR SÜRÜMÜNÜN KULLANIMINA SADECE BU GARANTİ REDDİ ALTINDA İZİN VERİLMİŞTİR; VE - - - HİÇBİR KOŞULDA VE HİÇBİR YASAL TEORİDE, Kİ BU TAZMİNAT YÜKÜMLÜLÜĞÜ (İHMAK DE DAHİL), KONTRATO VEYA BAŞKA BİR ŞEKİLİ DE İÇERİR, BELGEYİ VE BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİNİ İLK YAZAN, YAZAR, HERHANGİ BİR KATKIDA BULUNAN, DAĞITAN VEYA BU TARAFLARIN HERHANGİ BİR TEDARİKÇİSİ HERHANGİ DOĞRUDAN, DOLAYLI, ÖZEL, ARIZİ ZARARLARDAN HERHANGİ BİR KİŞİ SORUMLU DEĞİLDİR, Kİ BUNA BU TÜR KAYIPLAR HAKKINDA BU TARFAFIN BİLGİLENDİRİLMİŞ OLMASI GEREKSE BİLE SINIRLANMAMIŞ OLMAK ÜZERE ŞEREFİYE KAYBI, İŞ DURMASI, BİLGİSAYAR BOZULMASI VE YANLIŞ ÇALIŞMASI VEYA BELGENİN VE BELGENİN DEĞİŞTİRİLMİŞ SÜRÜMLERİNİN KULLANIMINDAN VEYA KULLANIMIYLA İLİŞKİLİ TÜM KAYIPLAR DAHİLDİR. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/tr/tr.po mate-utils-1.26.1/mate-dictionary/help/tr/tr.po --- mate-utils-1.26.0/mate-dictionary/help/tr/tr.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/tr/tr.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,20 +1,22 @@ # # Translators: -# mauron, 2018 -# Stefano Karapetsas , 2018 -# Butterfly , 2018 -# Murat Servan Kahraman, 2018 -# Yaşar Çiv , 2018 -# 0d1bdb3b9a0d4e8f77bc854af8bf3dfc_e6913f4, 2019 -# Sabri Ünal , 2019 +# mauron, 2021 +# Stefano Karapetsas , 2021 +# Butterfly , 2021 +# Murat Servan Kahraman, 2021 +# Yaşar Çiv , 2021 +# 0d1bdb3b9a0d4e8f77bc854af8bf3dfc_e6913f4, 2021 +# hilalis , 2021 +# Gurbuzguven <6mehmet6@gmail.com>, 2021 +# Sabri Ünal , 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Sabri Ünal , 2019\n" -"Language-Team: Turkish (https://www.transifex.com/mate/teams/13566/tr/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Sabri Ünal , 2022\n" +"Language-Team: Turkish (https://app.transifex.com/mate/teams/13566/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +36,8 @@ "hsngrms , 2012\n" "mauron, 2012, 2013, 2014, 2015, 2016, 2017, 2018\n" "Atilla Öntaş , 2014\n" -"Emre FIRAT , 2013, 2014, 2015" +"Emre FIRAT , 2013, 2014, 2015\n" +"Hilalis BIRDS , 2021" #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -51,7 +54,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:33 msgid "2015-2021 MATE Documentation Project" -msgstr "" +msgstr "2015-2021MATE Belgelendirme Projesi" #. (itstool) path: articleinfo/copyright #: C/index.docbook:37 @@ -527,7 +530,7 @@ #. (itstool) path: listitem/para #: C/index.docbook:353 msgid "Click the Remove button" -msgstr "" +msgstr "Kaldır düğmesine tıklayın" #. (itstool) path: warning/para #: C/index.docbook:356 @@ -710,8 +713,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/ug/index.docbook mate-utils-1.26.1/mate-dictionary/help/ug/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ug/index.docbook 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ug/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - تونۇشتۇرۇش - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - بۇيرۇق قۇرى - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - ئىشلىتىلىشى - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - مايىللىق - - To change the Dictionary application - preferences, choose EditPreferences. - - - - لۇغەت مەنبەسى - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - يوللاش - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - مايىللىق - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ug/legal.xml mate-utils-1.26.1/mate-dictionary/help/ug/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ug/legal.xml 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ug/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ug/ug.po mate-utils-1.26.1/mate-dictionary/help/ug/ug.po --- mate-utils-1.26.0/mate-dictionary/help/ug/ug.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ug/ug.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Uyghur (https://www.transifex.com/mate/teams/13566/ug/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Uyghur (https://app.transifex.com/mate/teams/13566/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -680,8 +680,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/uk/index.docbook mate-utils-1.26.1/mate-dictionary/help/uk/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/uk/index.docbook 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/uk/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,437 +0,0 @@ - - - - - - - -]> - - - -
- - - - Керівництво по словнику - - - Словник дозволяє шукати визначення та виправляти написання слів. - - - - 2015-2021 - MATE Documentation Project - - 2005 Еммануеле Бассі - - - - - Проєкт документування MATE - - - Проєкт документації GNOME - - - - - Команда документування MATE Оточення стільниці Mate - Еммануеле Бассі
ebassi@gmail.com
- - - -
- - - Керівництво по словнику V1.10.0 Липень 2015 - Вольфґанґ Ульбріх - Проєкт документування MATE - - Керівництво по словнику V1.10.0 Липень 2015 - Еммануеле Бассі - Проєкт документації GNOME - - - - Цей посібник надає опис версії 1.10 Словника. - - Зворотній зв'язок - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - Словник - - - - - Вступ - - Додаток Словник дозволяє вести пошук слів і термінів у джерелі словника. - - - - - - Початок роботи - - - - Щоб запустити словник - - Ви можете запустити Словник у такий спосіб: - - - - Меню Програми - - Choose Accessories - Dictionary. - - - - - Командний рядок - - Виконайте таку команду: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Вікно словника - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Використання - - - Шукати слово - - To look up a word, type it into the entry field - and press Enter. - - Якщо знайдено певне визначення слова, воно з'явиться в області головного вікна: - -
- Вікно словника - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Інакше з'явиться діялоґове вікно помилки з повідомленням, що пояснює природу помилки. - -
- - - Зберегти результати пошуку - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Роздрукувати результати пошуку - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Знайти текст - -
- Вікно словника - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - Щоб знайти текст у результатах пошуку, виконайте такі дії: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Параметри - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Додати джерела - -
- Вікно словника - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - Щоб змінити джерело словника, який використовується для пошуку слів, виберіть потрібне джерело з переліку. -
- - - - Додавання нового джерела - -
- Вікно словника - - - - - - Shows the Add Source dialog. - - -
- - Щоб додати нове джерело словника, виконайте такі дії: - - - Клацніть кнопку Додати - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Редагувати атрибути нового джерела - Клацніть Додати - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Транспорт - Атрибути - - - - - Словниковий сервер - - Ім'я хосту: ім'я хосту сервера словників - Порт: порт словникового серверу - - - - - - -
- - - - Видалення джерела - - Для видалення словникового джерела, виконайте наступні кроки: - - - Виберіть джерело, яке ви бажаєте видалити - Натисніть на кнопку Вилучити - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Опції друку - -
- Вікно словника - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - Якщо ви бажаєте змінити ім'я та розмір шрифту, які використовуються під час друку, виконайте такі дії: - - - Click on the Print Font button - Виберіть шрифт і розмір, який ви бажаєте використовувати - Натисніть Так - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Параметри - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/uk/legal.xml mate-utils-1.26.1/mate-dictionary/help/uk/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/uk/legal.xml 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/uk/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - Дозволяється копіювати, розповсюджувати і / або змінювати цей документ у відповідности з умовами ліцензії GNU Free Documentation License (GFDL), версії 1.1 або будь-якої пізнішої версії, оголошеній Фундацією вільного програмного забезпечення без будь-яких інваріянтних розділів, без додавання тексту на початку або в кінці. Ви можете знайти копію GFDL тут посилання або у файлі COPYING-DOCS, розповсюджуваному разом з цим керівництвом. - Цей посібник є частиною збірки документації MATE, яка розповсюджується на умовах ліцензії GFDL. Якщо ви бажаєте розповсюджувати цей посібник окремо від збірки, можете це зробити додавши до нього копію ліцензії, як описано в пункті 6 ліцензії. - - Деякі назви, які використовуються компаніями для розповсюдження своїх продуктів та послуг є торговими марками. Якщо такі назви зустрічаються в документації MATE і учасникам проєкту документування MATE відомо, що вони є торговими марками, тоді ці назви виділяться великими літерами або починаються з великої літери. - - ДОКУМЕНТ Й ЗМІНЕНІ ВЕРСІЇ ДОКУМЕНТУ НАДАЮТЬСЯ ЗА УМОВАМИ ЛІЦЕНЗІЇ БЕЗКОШТОВНОЇ ДОКУМЕНТАЦІЇ GNU З РОЗУМІННЯМ ЩО: - - ДОКУМЕНТ НАДАЄТЬСЯ \"ЯК Є\", БЕЗ БУДЬ-ЯКИХ ГАРАНТІЇ, ЯВНИХ ЧИ НЕЯВНИХ, ВКЛЮЧАЮЧИ, АЛЕ НЕ ОБМЕЖУЮЧИСЬ, ГАРАНТІЙ ЩО ЦЕЙ ДОКУМЕНТ ЧИ ЗМІНЕНА ВЕРСІЯ ДОКУМЕНТА ВІЛЬНІ ВІД ДЕФЕКТІВ, ПРИДАТНІ ДО ПРОДАЖУ, ВІДПОВІДАЮТЬ ПЕВНІЙ МЕТІ АБО НЕ ПОРУШУЮТЬ ЧИЇСЬ ПРАВА. ВЕСЬ РИЗИК ЗА ЯКІСТЬ, ТОЧНІСТЬ, ТА ЧИННІСТЬ ЦЬОГО ДОКУМЕНТУ АБО ЙОГО ЗМІНЕНИХ ВЕРСІЙ ЛЕЖИТЬ НА ВАС. ЯКЩО БУДЬ-ЯКИЙ ДОКУМЕНТ ЧИ ЗМІНЕНА ВЕРСІЯ БУДУТЬ ВИЗНАНІ ДЕФЕКТНИМИ У БУДЬ-ЯКОМУ ВІДНОШЕННІ, ВИ (НЕ ПОЧАТКОВИЙ УКЛАДАЧ, АВТОР АБО БУДЬ-ЯКИЙ СПІВАВТОР) БЕРЕТЕ НА СЕБЕ ВИТРАТИ ЗА БУДЬ-ЯКЕ НЕОБХІДНЕ ОБСЛУГОВУВАННЯ, РЕМОНТ ЧИ ВИПРАВЛЕННЯ. ЦЯ ВІДМОВА ВІД ГАРАНТІЙ СКЛАДАЄ ВАЖЛИВУ ЧАСТИНУ ЦІЄЇ ЛІЦЕНЗІЇ. НЕ ДОПУСКАЄТЬСЯ ВИКОРИСТАННЯ ЦЬОГО ДОКУМЕНТУ АБО ЙОГО ЗМІНЕНОЇ ВЕРСІЇ БЕЗ ПРИЙНЯТТЯ ЦІЄЇ ВІДМОВИ; ТА - - - НІ ЗА ЯКИХ ОБСТАВИН ТА ЗА БУДЬ-ЯКОГО ЗАКОНОДАВСТВА, ЧИ ТО ГРОМАДЯНСЬКОЇ ВІДПОВІДАЛЬНОСТІ (ВКЛЮЧАЮЧИ ХАЛАТНІСТЬ), ДОГОВОРУ, ЧИ ЧОГОСЬ ІНШОГО, АВТОР, ПОЧАТКОВИЙ УКЛАДАЧ, БУДЬ-ЯКИЙ СПІВАВТОР, АБО ДИСТРИБ'ЮТОР ДОКУМЕНТУ ЧИ ЗМІНЕНОЇ ВЕРСІЇ ДОКУМЕНТУ, АБО БУДЬ-ЯКИЙ ПОСТАЧАЛЬНИК БУДЬ-ЯКОЇ З ЦИХ СТОРІН, НЕ НЕСЕ ВІДПОВІДАЛЬНІСТЬ ПЕРЕД БУДЬ-ЯКОЮ ОСОБОЮ ЗА БУДЬ-ЯКІ ПРЯМІ, НЕПРЯМІ, ОСОБЛИВІ, ВИПАДКОВІ, АБО ІСТОТНІ ЗБИТКИ БУДЬ-ЯКОГО ХАРАКТЕРУ ВКЛЮЧАЮЧИ, АЛЕ НЕ ОБМЕЖУЮЧИСЬ, ЗБИТКАМИ ВІД ВТРАТИ ПРЕСТИЖУ, ЗУПИНКИ РОБОТИ, ЗБОЇВ АБО НЕСПРАВНОСТЕЙ КОМП'ЮТЕРА, АБО БУДЬ-ЯКІ ІНШІ ЗБИТКИ АБО ВТРАТИ ЩО ВИНИКЛИ БЕЗВІДНОСНО АБО ВНАСЛІДОК ВИКОРИСТАННЯ ЦЬОГО ДОКУМЕНТУ ТА ЗМІНЕНИХ ВЕРСІЙ ЦЬОГО ДОКУМЕНТУ, НАВІТЬ ЯКЩО ЦІ СТОРОНИ, МОЖЛИВО, БУЛИ ПРОІНФОРМОВАНІ ПРО МОЖЛИВІСТЬ ТАКИХ ЗБИТКІВ. - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/uk/uk.po mate-utils-1.26.1/mate-dictionary/help/uk/uk.po --- mate-utils-1.26.0/mate-dictionary/help/uk/uk.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/uk/uk.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,17 +1,19 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Wolfgang Ulbrich , 2018 -# Vlad - , 2019 +# Stefano Karapetsas , 2021 # Микола Ткач , 2021 +# Wolfgang Ulbrich , 2021 +# Vlad - , 2021 +# Юрій Яновський , 2021 +# Sergiy , 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Микола Ткач , 2021\n" -"Language-Team: Ukrainian (https://www.transifex.com/mate/teams/13566/uk/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Sergiy , 2022\n" +"Language-Team: Ukrainian (https://app.transifex.com/mate/teams/13566/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,8 +25,9 @@ msgid "translator-credits" msgstr "" "Yarema aka Knedlyk ,\n" -"Микола Ткач ,\n" -"Oleh Tsyupka " +"Микола Ткач ,\n" +"Oleh Tsyupka \n" +"Юрій Яновський " #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -41,7 +44,7 @@ #. (itstool) path: articleinfo/copyright #: C/index.docbook:33 msgid "2015-2021 MATE Documentation Project" -msgstr "" +msgstr "2015-2021 Проект документування MATE" #. (itstool) path: articleinfo/copyright #: C/index.docbook:37 @@ -58,7 +61,7 @@ #. (itstool) path: revdescription/para #: C/index.docbook:55 C/index.docbook:104 msgid "GNOME Documentation Project" -msgstr "Проєкт документації GNOME" +msgstr "Проєкт документування GNOME" #. (itstool) path: authorgroup/author #: C/index.docbook:60 @@ -710,8 +713,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink @@ -729,12 +732,12 @@ " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" -"Дозволяється копіювати, розповсюджувати і / або змінювати цей документ у " -"відповідности з умовами ліцензії GNU Free Documentation License (GFDL), " -"версії 1.1 або будь-якої пізнішої версії, оголошеній Фундацією вільного " -"програмного забезпечення без будь-яких інваріянтних розділів, без додавання " -"тексту на початку або в кінці. Ви можете знайти копію GFDL тут <_:ulink-1/> " -"або у файлі COPYING-DOCS, розповсюджуваному разом з цим керівництвом." +"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-1/> or in the file COPYING-DOCS distributed " +"with this manual." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -744,8 +747,8 @@ "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. Якщо ви бажаєте розповсюджувати цей посібник окремо " +"Цей посібник є частиною збірки документації MATE, яка розповсюджується за " +"умовами ліцензії GFDL. Якщо ви бажаєте розповсюджувати цей посібник окремо " "від збірки, можете це зробити додавши до нього копію ліцензії, як описано в " "пункті 6 ліцензії." diff -Nru mate-utils-1.26.0/mate-dictionary/help/ur/index.docbook mate-utils-1.26.1/mate-dictionary/help/ur/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/ur/index.docbook 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ur/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - تعارف - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - کمانڈ لائن - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - استعمال - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - ترجیحات - - To change the Dictionary application - preferences, choose EditPreferences. - - - - لغت کے مصادر - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - ٹرانسپورٹ - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - ترجیحات - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/ur/legal.xml mate-utils-1.26.1/mate-dictionary/help/ur/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/ur/legal.xml 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ur/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/ur/ur.po mate-utils-1.26.1/mate-dictionary/help/ur/ur.po --- mate-utils-1.26.0/mate-dictionary/help/ur/ur.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/ur/ur.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# mauron, 2018 +# mauron, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: mauron, 2018\n" -"Language-Team: Urdu (https://www.transifex.com/mate/teams/13566/ur/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: mauron, 2021\n" +"Language-Team: Urdu (https://app.transifex.com/mate/teams/13566/ur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -677,8 +677,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/uz/index.docbook mate-utils-1.26.1/mate-dictionary/help/uz/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/uz/index.docbook 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/uz/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Ishlatilishi - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Parametrlar - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Parametrlar - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/uz/legal.xml mate-utils-1.26.1/mate-dictionary/help/uz/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/uz/legal.xml 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/uz/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/uz/uz.po mate-utils-1.26.1/mate-dictionary/help/uz/uz.po --- mate-utils-1.26.0/mate-dictionary/help/uz/uz.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/uz/uz.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Muzaffar Habibullayev , 2018 +# Stefano Karapetsas , 2021 +# Muzaffar Habibullayev , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Muzaffar Habibullayev , 2018\n" -"Language-Team: Uzbek (https://www.transifex.com/mate/teams/13566/uz/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Muzaffar Habibullayev , 2021\n" +"Language-Team: Uzbek (https://app.transifex.com/mate/teams/13566/uz/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -672,8 +672,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/vi/index.docbook mate-utils-1.26.1/mate-dictionary/help/vi/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/vi/index.docbook 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/vi/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Giới thiệu - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Dòng lệnh - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Sử dụng - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Tùy chỉnh - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Nguồn từ điển - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Chuyên chở - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Tùy chỉnh - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/vi/legal.xml mate-utils-1.26.1/mate-dictionary/help/vi/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/vi/legal.xml 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/vi/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/vi/vi.po mate-utils-1.26.1/mate-dictionary/help/vi/vi.po --- mate-utils-1.26.0/mate-dictionary/help/vi/vi.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/vi/vi.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,16 +1,16 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Duy Truong Nguyen , 2018 -# Horazone Detex , 2018 +# Stefano Karapetsas , 2021 +# Duy Truong Nguyen , 2021 +# Horazone Detex , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Horazone Detex , 2018\n" -"Language-Team: Vietnamese (https://www.transifex.com/mate/teams/13566/vi/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Horazone Detex , 2021\n" +"Language-Team: Vietnamese (https://app.transifex.com/mate/teams/13566/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -673,8 +673,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/wa/index.docbook mate-utils-1.26.1/mate-dictionary/help/wa/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/wa/index.docbook 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/wa/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Roye di comande - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferinces - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferinces - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/wa/legal.xml mate-utils-1.26.1/mate-dictionary/help/wa/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/wa/legal.xml 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/wa/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/wa/wa.po mate-utils-1.26.1/mate-dictionary/help/wa/wa.po --- mate-utils-1.26.0/mate-dictionary/help/wa/wa.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/wa/wa.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Walloon (https://www.transifex.com/mate/teams/13566/wa/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Walloon (https://app.transifex.com/mate/teams/13566/wa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/xh/index.docbook mate-utils-1.26.1/mate-dictionary/help/xh/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/xh/index.docbook 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/xh/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Umgca woMyalelo - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Uluhlu lwezinto ezikhethwayo - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Uluhlu lwezinto ezikhethwayo - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/xh/legal.xml mate-utils-1.26.1/mate-dictionary/help/xh/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/xh/legal.xml 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/xh/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/xh/xh.po mate-utils-1.26.1/mate-dictionary/help/xh/xh.po --- mate-utils-1.26.0/mate-dictionary/help/xh/xh.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/xh/xh.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Xhosa (https://www.transifex.com/mate/teams/13566/xh/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Xhosa (https://app.transifex.com/mate/teams/13566/xh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/yo/index.docbook mate-utils-1.26.1/mate-dictionary/help/yo/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/yo/index.docbook 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/yo/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Àwọn ìkúndùn - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Àwọn ìkúndùn - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/yo/legal.xml mate-utils-1.26.1/mate-dictionary/help/yo/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/yo/legal.xml 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/yo/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/yo/yo.po mate-utils-1.26.1/mate-dictionary/help/yo/yo.po --- mate-utils-1.26.0/mate-dictionary/help/yo/yo.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/yo/yo.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,14 +1,14 @@ # # Translators: -# Stefano Karapetsas , 2018 +# Stefano Karapetsas , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Yoruba (https://www.transifex.com/mate/teams/13566/yo/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Yoruba (https://app.transifex.com/mate/teams/13566/yo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -671,8 +671,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/zh_CN/index.docbook mate-utils-1.26.1/mate-dictionary/help/zh_CN/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/zh_CN/index.docbook 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/zh_CN/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,599 +0,0 @@ - - - - - - - -]> - - - -
- - - - 词典手册 - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - 2015-2021 MATE 文档团队 - - 2005 - Emmanuele Bassi - - - - - - MATE 文档项目 - - - GNOME 文档项目 - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - 反馈 - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - - - - - Christopher Meng - - i@cicku.me - - - - 2012-2013 - - Christopher Meng - - - - - ravix - - dr.neemous@gmail.com - - - - 2013 - - ravix - - - - - Dianjin Wang - - 1132321739qq@gmail.com - - - - 2012 - - Dianjin Wang - - - - - Cravix - - dr.neemous@gmail.com - - - - 2013 - - Cravix - - - - - nyanyh - - rebuilty@gmail.com - - - - 2013 - - nyanyh - - - - - liulitchi - - xingzuo88@qq.com - - - - 2013 - - liulitchi - - - - - 玉堂白鹤 - - yjwork@qq.com - - - - 2015 - - 玉堂白鹤 - - - - - Mingye Wang - - arthur200126@gmail.com - - - - 2015-2016 - - Mingye Wang - - - - - 白铭骢 - - jeffbai@aosc.xyz - - - - 2015-2016 - - 白铭骢 - - - - - 刘子兴 - - liushuyu@aosc.xyz - - - - 2015-2016 - - 刘子兴 - -
- - - Dictionary - - - - - - 介绍 - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - 入门 - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - 应用程序菜单 - - Choose Accessories - Dictionary. - - - - - 命令行 - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - 用法 - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - 点击打印来打印 - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - 首选项 - - To change the Dictionary application - preferences, choose EditPreferences. - - - - 字典源 - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - 传送 - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - 首选项 - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/zh_CN/legal.xml mate-utils-1.26.1/mate-dictionary/help/zh_CN/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/zh_CN/legal.xml 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/zh_CN/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - 对于本文档的复制、分发和/或修改必须遵循自由软件基金会 (Free Software Foundation) 发布的 GNU 自由文档许可证 (GFDL) 版本 1.1 或更高版本,该许可证没有固定的部分、没有封面和背页文本。您可以在此 链接 或者随本文档一并发行的 COPYING-DOCS 中找到 GFDL 的副本。 - 本手册是在 GFDL 许可之下分发的 MATE 手册集合的一部分。如果想要单独分发此手册,可以在手册中添加该许可证的一份副本然后分发,如该许可证的第 6 部分所述。 - - 各个公司使用的许多用于区别它们产品和服务的名称都声明为商标。在所有的 MATE 文档以及 MATE 文档项目的成员中,这些名称都是以全大写字母或首字母大写显示,从而表明它们是商标。 - - 本文档和文档是根据 GNU 免费文档许可协议的条款提供的,并且还有进一步的阐述: - - 文档按“原样”提供,不提供任何明示或暗示的保证,包括但不限于:文档或文档的修改版本没有适销性方面的缺陷、适合特定目的的适用性,以及没有侵权行为。您将自行承担本文档以及文档修改版本的质量、准确性以及性能方面的风险。如果任何文档或文档修改版本存在缺陷,您(而不是最初的编写者、作者或撰写人)将承担所有必需的服务、维修或更正的费用。此免责声明是本许可证的重要组成部分。如果不接受此免责声明,那么您就没有权利使用任何文档或文档的修改版本;并且 - - - 无论在任何情况以及在任何法律理论下,本文档或文档修改版本的作者、最初的编写者、任何撰写人或任何分发者,或者任意这些方的任何提供者都不对任何人由于使用本文档或文档修改版本引起或带来的任何直接的、间接的、特殊的、偶然的或继发的损失承担任何民事(包括疏忽)、合同或其它方面的责任,这些损失包括但不限于信誉损失、工作停止、计算机失败或故障,或任何以及所有其它损失或由此引发的或与之相关的损失,即使这些方已被告知存在出现此类损失的可能性时也是如此。 - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/zh_CN/zh_CN.po mate-utils-1.26.1/mate-dictionary/help/zh_CN/zh_CN.po --- mate-utils-1.26.0/mate-dictionary/help/zh_CN/zh_CN.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/zh_CN/zh_CN.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,21 +1,21 @@ # # Translators: -# Stefano Karapetsas , 2018 -# Mingcong Bai , 2018 -# shuyu liu , 2018 -# Wolfgang Ulbrich , 2018 -# biqiu-ssw , 2018 -# zhineng404 , 2019 -# a73a47e368cc011d8f94528bd9d5d3f1_91fccdf <1b07f49e2a323989c85dd26d526f7bb9_871526>, 2020 +# Stefano Karapetsas , 2021 +# Mingcong Bai , 2021 +# shuyu liu , 2021 +# Wolfgang Ulbrich , 2021 +# biqiu-ssw , 2021 +# zhineng404 , 2021 +# a73a47e368cc011d8f94528bd9d5d3f1_91fccdf <1b07f49e2a323989c85dd26d526f7bb9_871526>, 2021 # OkayPJ <1535253694@qq.com>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" "Last-Translator: OkayPJ <1535253694@qq.com>, 2021\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mate/teams/13566/zh_CN/)\n" +"Language-Team: Chinese (China) (https://app.transifex.com/mate/teams/13566/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -26,17 +26,18 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"Christopher Meng , 2012-2013\n" -"ravix , 2013\n" +"Christopher Meng , 2012-2013\n" +"ravix , 2013\n" "Dianjin Wang <1132321739qq@gmail.com>, 2012\n" -"Cravix , 2013\n" -"nyanyh , 2013\n" -"liulitchi , 2013\n" -"玉堂白鹤 , 2015\n" -"Mingye Wang , 2015-2016\n" -"白铭骢 , 2015-2016\n" -"刘子兴 , 2015-2016\n" -"比丘,2018-2019" +"Cravix , 2013\n" +"nyanyh , 2013\n" +"liulitchi , 2013\n" +"玉堂白鹤 , 2015\n" +"Mingye Wang , 2015-2016\n" +"白铭骢 , 2015-2016\n" +"刘子兴 , 2015-2016\n" +"比丘 , 2018-2019\n" +"OkayPJ , 2020" #. (itstool) path: articleinfo/title #: C/index.docbook:24 @@ -689,8 +690,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/zh-Hans/zh-Hans.po mate-utils-1.26.1/mate-dictionary/help/zh-Hans/zh-Hans.po --- mate-utils-1.26.0/mate-dictionary/help/zh-Hans/zh-Hans.po 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/zh-Hans/zh-Hans.po 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,751 @@ +# +# Translators: +# Xiaoyuan Chen , 2021 +# 敏超 马 , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2021-06-04 20:34+0200\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: 敏超 马 , 2021\n" +"Language-Team: Chinese Simplified (https://app.transifex.com/mate/teams/13566/zh-Hans/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh-Hans\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Put one translator per line, in the form NAME , YEAR1, YEAR2 +msgctxt "_" +msgid "translator-credits" +msgstr "翻译人员-致谢" + +#. (itstool) path: articleinfo/title +#: C/index.docbook:24 +msgid "Dictionary Manual" +msgstr "" + +#. (itstool) path: abstract/para +#: C/index.docbook:27 +msgid "" +"Dictionary enables you to look up definitions and correct spellings of " +"words." +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:33 +msgid "2015-2021 MATE Documentation Project" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:37 +msgid "2005 Emmanuele Bassi" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:52 C/index.docbook:96 +msgid "MATE Documentation Project" +msgstr "MATE 文档项目" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:55 C/index.docbook:104 +msgid "GNOME Documentation Project" +msgstr "GNOME 文档项目" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:60 +msgid "" +"MATE Documentation Team Mate " +"desktop " +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:66 +msgid "" +"Emmanuele Bassi " +"
ebassi@gmail.com
" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:94 +msgid "Wolfgang Ulbrich" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:90 C/index.docbook:99 +msgid "" +"Dictionary Manual V1.10.0 July 2015 " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:103 +msgid "Emmanuele Bassi" +msgstr "" + +#. (itstool) path: articleinfo/releaseinfo +#: C/index.docbook:109 +msgid "This manual describes version 1.10 of Dictionary." +msgstr "" + +#. (itstool) path: legalnotice/title +#: C/index.docbook:111 +msgid "Feedback" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/index.docbook:112 +msgid "" +"To report a bug or make a suggestion regarding the Dictionary application or" +" this manual, follow the directions in the MATE Feedback Page." +msgstr "" + +#. (itstool) path: article/indexterm +#: C/index.docbook:121 +msgid "Dictionary" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:128 +msgid "Introduction" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:130 +msgid "" +"The Dictionary application enables you to search " +"words and terms on a dictionary source." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:137 +msgid "Getting Started" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:141 +msgid "To Start Dictionary" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:143 +msgid "" +"You can start Dictionary in the following ways:" +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:148 +msgid "Applications menu" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:150 +msgid "" +"Choose Accessories " +"Dictionary." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:156 +msgid "Command line" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:158 +msgid "Execute the following command: mate-dictionary" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:163 +msgid "" +"Once started, the Dictionary window is displayed:" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:167 C/index.docbook:196 C/index.docbook:238 +#: C/index.docbook:279 C/index.docbook:299 C/index.docbook:368 +msgid "Dictionary Window" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:171 +msgctxt "_" +msgid "" +"external ref='figures/mate-dictionary-application.png' " +"md5='fb48a9e5863bfb2b3811df2e28489eb7'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:169 +msgid "" +" Shows Dictionary main " +"window." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:184 +msgid "Usage" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:187 +msgid "Looking up a word" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:189 +msgid "" +"To look up a word, type it into the entry field and " +"press Enter." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:192 +msgid "" +"If some definition for the word is found, it will appear inside the main " +"window area:" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:200 +msgctxt "_" +msgid "" +"external ref='figures/mate-dictionary-lookup.png' " +"md5='c41c96af4de54f457a2081aad009a8d0'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:198 +msgid "" +" Shows a definition " +"inside the Dictionary main window." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:207 +msgid "" +"Otherwise, an error dialog will appear, with a message explaining the nature" +" of the error." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:213 +msgid "Save look up results" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:215 +msgid "" +"To save the results of a look up, choose " +"FileSave a " +"Copy. Enter a name for the file in the " +"Save a Copy dialog, then click " +"Save." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:220 +msgid "Print look up results" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:222 +msgid "" +"To print the results of a look up, choose " +"FilePrint." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:224 +msgid "" +"Inside the Print dialog you can select the printer to " +"use, the paper format, the number of copies." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:227 +msgid "" +"To see a preview of what will be printed, click " +"Preview." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:230 +msgid "To print, click Print." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:235 +msgid "Find Text" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:242 +msgctxt "_" +msgid "" +"external ref='figures/mate-dictionary-find.png' " +"md5='d8bf0677084e2d9998a7942faaab5379'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:240 +msgid "" +" Shows the Dictionary " +"Find pane inside the main window." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:250 +msgid "" +"To find text inside the results of a look up, perform the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:254 +msgid "" +"Choose Edit Find " +" to display the Find pane." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:256 +msgid "" +"Type the text you want to find inside the Search entry." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:258 +msgid "" +"To find the next occurrence of the text, click Next. " +"To find the previous occurrence of the text, click " +"Previous." +msgstr "" + +#. (itstool) path: sect1/title +#. (itstool) path: sect2/title +#: C/index.docbook:269 C/index.docbook:459 +msgid "Preferences" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:271 +msgid "" +"To change the Dictionary application preferences," +" choose " +"EditPreferences." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:276 +msgid "Dictionary Sources" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:283 +msgctxt "_" +msgid "" +"external ref='figures/mate-dictionary-preferences-source.png' " +"md5='5470b15e64e66924477f150c4f47e96d'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:281 +msgid "" +" Shows the " +"Source tab of the Preferences dialog." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:290 +msgid "" +"To change the dictionary source used to look up words, select the desired " +"source from the list." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:296 +msgid "Adding a new source" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:303 +msgctxt "_" +msgid "" +"external ref='figures/mate-dictionary-add-source.png' " +"md5='d059507fee77bb176fce53373951756b'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:301 +msgid "" +" Shows the Add Source " +"dialog." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:310 +msgid "To add a new dictionary source, perform the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:313 +msgid "Click on the Add button" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:314 +msgid "" +"Edit the name of the new source inside the Description " +"entry" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:315 +msgid "" +"Change the transport type of the new source using the " +"Transport combo box" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:316 +msgid "Edit the attributes of the new source" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:317 +msgid "Click Add" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:320 +msgid "" +"Different source transport types uses different attributes. This is the list" +" of available attributes per transport type:" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:327 +msgid "Transport" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:328 +msgid "Attributes" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:333 +msgid "Dictionary Server" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:335 +msgid "Hostname: the hostname of the dictionary server" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:336 +msgid "Port: the port of the dictionary server" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:347 +msgid "Removing a source" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:349 +msgid "To remove a dictionary source, perform the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:352 +msgid "Select the source you wish to remove" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:353 +msgid "Click the Remove button" +msgstr "" + +#. (itstool) path: warning/para +#: C/index.docbook:356 +msgid "" +"If you remove a dictionary source it will be permanently deleted from the " +"list of available sources. Also, as some sources might be defined system-" +"wide you may actually not be able to remove them unless you have the right " +"ownership privileges." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:365 +msgid "Print Options" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:372 +msgctxt "_" +msgid "" +"external ref='figures/mate-dictionary-preferences-print.png' " +"md5='12a65f07cb333db4c7ba743d1d12a00f'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:370 +msgid "" +" Shows the " +"Print tab inside the Preferences dialog." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:379 +msgid "" +"If you want to change the font name and size used when printing, perform the" +" following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:383 +msgid "Click on the Print Font button" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:384 +msgid "Select the font and size you wish to use" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:385 +msgid "Click Ok" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:394 +msgid "The Dictionary Applet" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:396 +msgid "" +"The Dictionary application comes with a panel " +"applet, the Dictionary Applet. You can add the " +"Dictionary Applet applet to a panel and look up " +"words in dictionaries." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:402 C/index.docbook:438 +msgid "Dictionary Applet Window" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:406 +msgctxt "_" +msgid "" +"external ref='figures/mate-dictionary-applet.png' " +"md5='538c7fa191540f99dd964963a1079677'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:404 +msgid "" +" Shows Dictionary " +"Applet." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:416 +msgid "To Start Dictionary Applet" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:418 +msgid "" +"To add Dictionary Applet to a panel, right-click " +"on the panel, then choose Add to Panel. Select " +"Dictionary Applet in the Add to the panel dialog," +" then click OK." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:427 +msgid "Using the Dictionary Applet" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:429 +msgid "" +"To look up a word, type it into the entry field, and " +"press Enter or right-click on the dictionary icon and then " +"choose Look up." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:434 +msgid "" +"If some definition for the word was found, a window will appear, with the " +"text of the definitions:" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:442 +msgctxt "_" +msgid "" +"external ref='figures/mate-dictionary-applet-window.png' " +"md5='e26ac4847d2e7b53c6bba7d8e1a519c4'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:440 +msgid "" +" Shows " +"Dictionary Applet main window." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:449 +msgid "" +"Click Save to save the definitions to a text file. " +"Click Print to print the definitions. Click " +"Clear to clear the definitions." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:453 +msgid "" +"You can make the window disappear by left-clicking on the dictionary icon or" +" by pressing Esc." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:461 +msgid "" +"To configure the Dictionary Applet, right-click " +"on the dictionary icon, then choose Preferences." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:464 +msgid "" +"The Preferences dialog is the same used by the " +"Dictionary application, so refer to " +msgstr "" + +#. (itstool) path: para/ulink +#: C/legal.xml:9 +msgid "link" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml: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-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 -Nru mate-utils-1.26.0/mate-dictionary/help/zh_HK/index.docbook mate-utils-1.26.1/mate-dictionary/help/zh_HK/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/zh_HK/index.docbook 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/zh_HK/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - 導覽 - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - 命令列 - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - 用量 - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - 偏好設定 - - To change the Dictionary application - preferences, choose EditPreferences. - - - - 字典來源 - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - 傳送 - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - 偏好設定 - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/zh_HK/legal.xml mate-utils-1.26.1/mate-dictionary/help/zh_HK/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/zh_HK/legal.xml 2021-08-05 19:47:36.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/zh_HK/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/zh_HK/zh_HK.po mate-utils-1.26.1/mate-dictionary/help/zh_HK/zh_HK.po --- mate-utils-1.26.0/mate-dictionary/help/zh_HK/zh_HK.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/zh_HK/zh_HK.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,15 +1,15 @@ # # Translators: -# Stefano Karapetsas , 2018 -# tomoe_musashi , 2018 +# Stefano Karapetsas , 2021 +# tomoe_musashi , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: tomoe_musashi , 2018\n" -"Language-Team: Chinese (Hong Kong) (https://www.transifex.com/mate/teams/13566/zh_HK/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: tomoe_musashi , 2021\n" +"Language-Team: Chinese (Hong Kong) (https://app.transifex.com/mate/teams/13566/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -675,8 +675,8 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink diff -Nru mate-utils-1.26.0/mate-dictionary/help/zh_TW/index.docbook mate-utils-1.26.1/mate-dictionary/help/zh_TW/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/zh_TW/index.docbook 2021-08-05 19:47:37.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/zh_TW/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,485 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE文件專案 - - - GNOME文件專案 - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - 回饋 - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - - - - - Walter Cheuk - - wwycheuk@gmail.com - - - - 2016. - - Walter Cheuk - -
- - - Dictionary - - - - - - 導覽 - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - 命令列 - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - 用量 - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - 偏好設定 - - To change the Dictionary application - preferences, choose EditPreferences. - - - - 字典來源 - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - 傳送 - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - 偏好設定 - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/zh_TW/legal.xml mate-utils-1.26.1/mate-dictionary/help/zh_TW/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/zh_TW/legal.xml 2021-08-05 19:47:37.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/zh_TW/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/help/zh_TW/zh_TW.po mate-utils-1.26.1/mate-dictionary/help/zh_TW/zh_TW.po --- mate-utils-1.26.0/mate-dictionary/help/zh_TW/zh_TW.po 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/zh_TW/zh_TW.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,19 +1,17 @@ # # Translators: -# Walter Cheuk , 2018 -# Stefano Karapetsas , 2018 -# 趙惟倫 , 2018 -# 黃柏諺 , 2018 -# lin feather , 2018 -# Woodman Tuen , 2018 +# Stefano Karapetsas , 2021 +# 黃柏諺 , 2021 +# lin feather , 2021 +# Woodman Tuen , 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-06-04 20:34+0200\n" -"PO-Revision-Date: 2018-09-13 10:55+0000\n" -"Last-Translator: Woodman Tuen , 2018\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mate/teams/13566/zh_TW/)\n" +"PO-Revision-Date: 2021-09-21 19:10+0000\n" +"Last-Translator: Woodman Tuen , 2021\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/mate/teams/13566/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,7 +22,7 @@ msgctxt "_" msgid "translator-credits" msgstr "" -"黃柏諺 ,2013-14\n" +"Jeff Huang ,2013-2021\n" "Launchpad 貢獻者:\n" " Jose Sun https://launchpad.net/~josesun\n" " Toomore https://launchpad.net/~toomore\n" @@ -682,14 +680,14 @@ #: C/index.docbook:464 msgid "" "The Preferences dialog is the same used by the " -"Dictionary application, so refer to " +"Dictionary application, so refer to " msgstr "" #. (itstool) path: para/ulink #: C/legal.xml:9 msgid "link" -msgstr "鏈結" +msgstr "連結" #. (itstool) path: legalnotice/para #: C/legal.xml:2 diff -Nru mate-utils-1.26.0/mate-dictionary/help/zu/index.docbook mate-utils-1.26.1/mate-dictionary/help/zu/index.docbook --- mate-utils-1.26.0/mate-dictionary/help/zu/index.docbook 2021-08-05 19:47:37.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/zu/index.docbook 1970-01-01 00:00:00.000000000 +0000 @@ -1,472 +0,0 @@ - - - - - - - -]> - - - -
- - - - Dictionary Manual - - - - Dictionary enables you to look up definitions and correct spellings - of words. - - - - - 2015-2021 - MATE Documentation Project - - - 2005 - Emmanuele Bassi - - - - - - MATE Documentation Project - - - GNOME Documentation Project - - - - - - MATE Documentation Team - - Mate desktop - - - - Emmanuele - Bassi - -
ebassi@gmail.com
-
-
- - - -
- - - - Dictionary Manual V1.10.0 - July 2015 - - Wolfgang Ulbrich - - MATE Documentation Project - - - - Dictionary Manual V1.10.0 - July 2015 - - Emmanuele Bassi - GNOME Documentation Project - - - - - This manual describes version 1.10 of Dictionary. - - Feedback - To report a bug or make a suggestion regarding the Dictionary - application or this manual, follow the directions in the - MATE Feedback - Page. - - - -
- - - Dictionary - - - - - - Introduction - - The Dictionary application enables you to - search words and terms on a dictionary source. - - - - - - Getting Started - - - - To Start Dictionary - - You can start Dictionary in the following - ways: - - - - Applications menu - - Choose Accessories - Dictionary. - - - - - Command line - - Execute the following command: mate-dictionary - - - - - Once started, the Dictionary window is - displayed: - -
- Dictionary Window - - - - - - Shows Dictionary main window. - - -
- -
- -
- - - - Usage - - - Looking up a word - - To look up a word, type it into the entry field - and press Enter. - - If some definition for the word is found, it will appear inside - the main window area: - -
- Dictionary Window - - - - - - Shows a definition inside the Dictionary main window. - - -
- - Otherwise, an error dialog will appear, with a message explaining the - nature of the error. - -
- - - Save look up results - - To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save. - - - - - Print look up results - - To print the results of a look up, choose FilePrint. - - Inside the Print dialog you can select the - printer to use, the paper format, the number of copies. - - To see a preview of what will be printed, click - Preview. - - To print, click Print. - - - - - Find Text - -
- Dictionary Window - - - - - - Shows the Dictionary Find pane inside the main window. - - -
- - - To find text inside the results of a look up, perform the following - steps: - - - Choose Edit Find - to display the Find pane. - Type the text you want to find inside the Search - entry. - To find the next occurrence of the text, click Next. - To find the previous occurrence of the text, click - Previous. - - -
- -
- - - - Preferences - - To change the Dictionary application - preferences, choose EditPreferences. - - - - Dictionary Sources - -
- Dictionary Window - - - - - - Shows the Source tab of the Preferences dialog. - - -
- - To change the dictionary source used to look up words, select - the desired source from the list. -
- - - - Adding a new source - -
- Dictionary Window - - - - - - Shows the Add Source dialog. - - -
- - To add a new dictionary source, perform the following steps: - - - Click on the Add button - Edit the name of the new source inside the Description entry - Change the transport type of the new source using the Transport combo box - Edit the attributes of the new source - Click Add - - - Different source transport types uses different attributes. This - is the list of available attributes per transport type: - - - - - - Transport - Attributes - - - - - Dictionary Server - - Hostname: the hostname of the dictionary server - Port: the port of the dictionary server - - - - - - -
- - - - Removing a source - - To remove a dictionary source, perform the following steps: - - - Select the source you wish to remove - Click the Remove button - - - If you remove a dictionary source it will be permanently - deleted from the list of available sources. Also, as some sources might - be defined system-wide you may actually not be able to remove - them unless you have the right ownership privileges. - - - - - - Print Options - -
- Dictionary Window - - - - - - Shows the Print tab inside the Preferences dialog. - - -
- - If you want to change the font name and size used when printing, - perform the following steps: - - - Click on the Print Font button - Select the font and size you wish to use - Click Ok - - -
- -
- - - - The Dictionary Applet - - The Dictionary application comes with a - panel applet, the Dictionary Applet. You can add - the Dictionary Applet applet to a panel and look - up words in dictionaries. - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet. - - -
- - - - - To Start Dictionary Applet - - To add Dictionary Applet to a panel, right-click - on the panel, then choose Add to Panel. - Select Dictionary Applet in the Add to the panel - dialog, then click OK. - - - - - - Using the Dictionary Applet - - To look up a word, type it into the entry field, - and press Enter or right-click on the dictionary icon - and then choose Look up. - - - If some definition for the word was found, a window will appear, - with the text of the definitions: - -
- Dictionary Applet Window - - - - - - Shows Dictionary Applet main window. - - -
- - Click Save to save the definitions to a - text file. Click Print to print the definitions. - Click Clear to clear the definitions. - - You can make the window disappear by left-clicking on the dictionary - icon or by pressing Esc. - -
- - - Preferences - - To configure the Dictionary Applet, right-click on - the dictionary icon, then choose Preferences. - - The Preferences dialog is the same used by - the Dictionary application, so refer to - - - - -
- -
diff -Nru mate-utils-1.26.0/mate-dictionary/help/zu/legal.xml mate-utils-1.26.1/mate-dictionary/help/zu/legal.xml --- mate-utils-1.26.0/mate-dictionary/help/zu/legal.xml 2021-08-05 19:47:37.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/help/zu/legal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - 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 link or in the file COPYING-DOCS - distributed with this manual. - - 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. - - - - 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. - - - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: - - - - 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 - - - - 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. - - - - - diff -Nru mate-utils-1.26.0/mate-dictionary/libgdict/gdict-defbox.c mate-utils-1.26.1/mate-dictionary/libgdict/gdict-defbox.c --- mate-utils-1.26.0/mate-dictionary/libgdict/gdict-defbox.c 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/libgdict/gdict-defbox.c 2023-05-09 13:31:58.000000000 +0000 @@ -200,6 +200,8 @@ priv->regular_cursor = NULL; } + g_clear_pointer (&priv->word, g_free); + G_OBJECT_CLASS (gdict_defbox_parent_class)->dispose (gobject); } @@ -2548,6 +2550,7 @@ G_CALLBACK (error_cb), defbox); + g_free (priv->word); priv->word = g_strdup (word); g_object_notify (G_OBJECT (defbox), "word"); diff -Nru mate-utils-1.26.0/mate-dictionary/libgdict/gdict-enum-types.c mate-utils-1.26.1/mate-dictionary/libgdict/gdict-enum-types.c --- mate-utils-1.26.0/mate-dictionary/libgdict/gdict-enum-types.c 2021-08-05 19:46:27.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/libgdict/gdict-enum-types.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,149 +0,0 @@ - -/* This file is generated by glib-mkenums, do not modify it. This code is licensed under the same license as the containing project. Note that it links to GLib, so must comply with the LGPL linking clauses. */ - -#include "gdict-enum-types.h" -/* enumerations from "./gdict-client-context.h" */ -#include "./gdict-client-context.h" -GType -gdict_client_context_error_get_type (void) -{ - static GType g_enum_type_id = 0; - if (G_UNLIKELY (g_enum_type_id == 0)) - { - static const GEnumValue values[] = { - { GDICT_CLIENT_CONTEXT_ERROR_SOCKET, "GDICT_CLIENT_CONTEXT_ERROR_SOCKET", "socket" }, - { GDICT_CLIENT_CONTEXT_ERROR_LOOKUP, "GDICT_CLIENT_CONTEXT_ERROR_LOOKUP", "lookup" }, - { GDICT_CLIENT_CONTEXT_ERROR_NO_CONNECTION, "GDICT_CLIENT_CONTEXT_ERROR_NO_CONNECTION", "no-connection" }, - { GDICT_CLIENT_CONTEXT_ERROR_SERVER_DOWN, "GDICT_CLIENT_CONTEXT_ERROR_SERVER_DOWN", "server-down" }, - { 0, NULL, NULL } - }; - g_enum_type_id = g_enum_register_static("GdictClientContextError", values); - } - - return g_enum_type_id; -} -/* enumerations from "./gdict-context.h" */ -#include "./gdict-context.h" -GType -gdict_context_error_get_type (void) -{ - static GType g_enum_type_id = 0; - if (G_UNLIKELY (g_enum_type_id == 0)) - { - static const GEnumValue values[] = { - { GDICT_CONTEXT_ERROR_PARSE, "GDICT_CONTEXT_ERROR_PARSE", "parse" }, - { GDICT_CONTEXT_ERROR_NOT_IMPLEMENTED, "GDICT_CONTEXT_ERROR_NOT_IMPLEMENTED", "not-implemented" }, - { GDICT_CONTEXT_ERROR_INVALID_DATABASE, "GDICT_CONTEXT_ERROR_INVALID_DATABASE", "invalid-database" }, - { GDICT_CONTEXT_ERROR_INVALID_STRATEGY, "GDICT_CONTEXT_ERROR_INVALID_STRATEGY", "invalid-strategy" }, - { GDICT_CONTEXT_ERROR_INVALID_COMMAND, "GDICT_CONTEXT_ERROR_INVALID_COMMAND", "invalid-command" }, - { GDICT_CONTEXT_ERROR_NO_MATCH, "GDICT_CONTEXT_ERROR_NO_MATCH", "no-match" }, - { GDICT_CONTEXT_ERROR_NO_DATABASES, "GDICT_CONTEXT_ERROR_NO_DATABASES", "no-databases" }, - { GDICT_CONTEXT_ERROR_NO_STRATEGIES, "GDICT_CONTEXT_ERROR_NO_STRATEGIES", "no-strategies" }, - { 0, NULL, NULL } - }; - g_enum_type_id = g_enum_register_static("GdictContextError", values); - } - - return g_enum_type_id; -} -/* enumerations from "./gdict-source.h" */ -#include "./gdict-source.h" -GType -gdict_source_transport_get_type (void) -{ - static GType g_enum_type_id = 0; - if (G_UNLIKELY (g_enum_type_id == 0)) - { - static const GEnumValue values[] = { - { GDICT_SOURCE_TRANSPORT_DICTD, "GDICT_SOURCE_TRANSPORT_DICTD", "dictd" }, - { GDICT_SOURCE_TRANSPORT_INVALID, "GDICT_SOURCE_TRANSPORT_INVALID", "invalid" }, - { 0, NULL, NULL } - }; - g_enum_type_id = g_enum_register_static("GdictSourceTransport", values); - } - - return g_enum_type_id; -} -GType -gdict_source_error_get_type (void) -{ - static GType g_enum_type_id = 0; - if (G_UNLIKELY (g_enum_type_id == 0)) - { - static const GEnumValue values[] = { - { GDICT_SOURCE_ERROR_PARSE, "GDICT_SOURCE_ERROR_PARSE", "parse" }, - { GDICT_SOURCE_ERROR_INVALID_NAME, "GDICT_SOURCE_ERROR_INVALID_NAME", "invalid-name" }, - { GDICT_SOURCE_ERROR_INVALID_TRANSPORT, "GDICT_SOURCE_ERROR_INVALID_TRANSPORT", "invalid-transport" }, - { GDICT_SOURCE_ERROR_INVALID_BAD_PARAMETER, "GDICT_SOURCE_ERROR_INVALID_BAD_PARAMETER", "invalid-bad-parameter" }, - { 0, NULL, NULL } - }; - g_enum_type_id = g_enum_register_static("GdictSourceError", values); - } - - return g_enum_type_id; -} -/* enumerations from "./gdict-utils.h" */ -#include "./gdict-utils.h" -GType -gdict_context_prop_get_type (void) -{ - static GType g_enum_type_id = 0; - if (G_UNLIKELY (g_enum_type_id == 0)) - { - static const GEnumValue values[] = { - { GDICT_CONTEXT_PROP_FIRST, "GDICT_CONTEXT_PROP_FIRST", "first" }, - { GDICT_CONTEXT_PROP_LOCAL_ONLY, "GDICT_CONTEXT_PROP_LOCAL_ONLY", "local-only" }, - { GDICT_CONTEXT_PROP_LAST, "GDICT_CONTEXT_PROP_LAST", "last" }, - { 0, NULL, NULL } - }; - g_enum_type_id = g_enum_register_static("GdictContextProp", values); - } - - return g_enum_type_id; -} -GType -gdict_status_code_get_type (void) -{ - static GType g_enum_type_id = 0; - if (G_UNLIKELY (g_enum_type_id == 0)) - { - static const GEnumValue values[] = { - { GDICT_STATUS_INVALID, "GDICT_STATUS_INVALID", "invalid" }, - { GDICT_STATUS_N_DATABASES_PRESENT, "GDICT_STATUS_N_DATABASES_PRESENT", "n-databases-present" }, - { GDICT_STATUS_N_STRATEGIES_PRESENT, "GDICT_STATUS_N_STRATEGIES_PRESENT", "n-strategies-present" }, - { GDICT_STATUS_DATABASE_INFO, "GDICT_STATUS_DATABASE_INFO", "database-info" }, - { GDICT_STATUS_HELP_TEXT, "GDICT_STATUS_HELP_TEXT", "help-text" }, - { GDICT_STATUS_SERVER_INFO, "GDICT_STATUS_SERVER_INFO", "server-info" }, - { GDICT_STATUS_CHALLENGE, "GDICT_STATUS_CHALLENGE", "challenge" }, - { GDICT_STATUS_N_DEFINITIONS_RETRIEVED, "GDICT_STATUS_N_DEFINITIONS_RETRIEVED", "n-definitions-retrieved" }, - { GDICT_STATUS_WORD_DB_NAME, "GDICT_STATUS_WORD_DB_NAME", "word-db-name" }, - { GDICT_STATUS_N_MATCHES_FOUND, "GDICT_STATUS_N_MATCHES_FOUND", "n-matches-found" }, - { GDICT_STATUS_CONNECT, "GDICT_STATUS_CONNECT", "connect" }, - { GDICT_STATUS_QUIT, "GDICT_STATUS_QUIT", "quit" }, - { GDICT_STATUS_AUTH_OK, "GDICT_STATUS_AUTH_OK", "auth-ok" }, - { GDICT_STATUS_OK, "GDICT_STATUS_OK", "ok" }, - { GDICT_STATUS_SEND_RESPONSE, "GDICT_STATUS_SEND_RESPONSE", "send-response" }, - { GDICT_STATUS_SERVER_DOWN, "GDICT_STATUS_SERVER_DOWN", "server-down" }, - { GDICT_STATUS_SHUTDOWN, "GDICT_STATUS_SHUTDOWN", "shutdown" }, - { GDICT_STATUS_BAD_COMMAND, "GDICT_STATUS_BAD_COMMAND", "bad-command" }, - { GDICT_STATUS_BAD_PARAMETERS, "GDICT_STATUS_BAD_PARAMETERS", "bad-parameters" }, - { GDICT_STATUS_COMMAND_NOT_IMPLEMENTED, "GDICT_STATUS_COMMAND_NOT_IMPLEMENTED", "command-not-implemented" }, - { GDICT_STATUS_PARAMETER_NOT_IMPLEMENTED, "GDICT_STATUS_PARAMETER_NOT_IMPLEMENTED", "parameter-not-implemented" }, - { GDICT_STATUS_NO_ACCESS, "GDICT_STATUS_NO_ACCESS", "no-access" }, - { GDICT_STATUS_USE_SHOW_INFO, "GDICT_STATUS_USE_SHOW_INFO", "use-show-info" }, - { GDICT_STATUS_UNKNOWN_MECHANISM, "GDICT_STATUS_UNKNOWN_MECHANISM", "unknown-mechanism" }, - { GDICT_STATUS_BAD_DATABASE, "GDICT_STATUS_BAD_DATABASE", "bad-database" }, - { GDICT_STATUS_BAD_STRATEGY, "GDICT_STATUS_BAD_STRATEGY", "bad-strategy" }, - { GDICT_STATUS_NO_MATCH, "GDICT_STATUS_NO_MATCH", "no-match" }, - { GDICT_STATUS_NO_DATABASES_PRESENT, "GDICT_STATUS_NO_DATABASES_PRESENT", "no-databases-present" }, - { GDICT_STATUS_NO_STRATEGIES_PRESENT, "GDICT_STATUS_NO_STRATEGIES_PRESENT", "no-strategies-present" }, - { 0, NULL, NULL } - }; - g_enum_type_id = g_enum_register_static("GdictStatusCode", values); - } - - return g_enum_type_id; -} - -/* Generated data ends here */ - diff -Nru mate-utils-1.26.0/mate-dictionary/libgdict/gdict-enum-types.h mate-utils-1.26.1/mate-dictionary/libgdict/gdict-enum-types.h --- mate-utils-1.26.0/mate-dictionary/libgdict/gdict-enum-types.h 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/libgdict/gdict-enum-types.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ - -/* This file is generated by glib-mkenums, do not modify it. This code is licensed under the same license as the containing project. Note that it links to GLib, so must comply with the LGPL linking clauses. */ - -#ifndef __GDICT_ENUM_TYPES_H__ -#define __GDICT_ENUM_TYPES_H__ - -#include - -G_BEGIN_DECLS -/* enumerations from "./gdict-client-context.h" */ -GType gdict_client_context_error_get_type (void) G_GNUC_CONST; -#define GDICT_TYPE_CLIENT_CONTEXT_ERROR (gdict_client_context_error_get_type()) -/* enumerations from "./gdict-context.h" */ -GType gdict_context_error_get_type (void) G_GNUC_CONST; -#define GDICT_TYPE_CONTEXT_ERROR (gdict_context_error_get_type()) -/* enumerations from "./gdict-source.h" */ -GType gdict_source_transport_get_type (void) G_GNUC_CONST; -#define GDICT_TYPE_SOURCE_TRANSPORT (gdict_source_transport_get_type()) -GType gdict_source_error_get_type (void) G_GNUC_CONST; -#define GDICT_TYPE_SOURCE_ERROR (gdict_source_error_get_type()) -/* enumerations from "./gdict-utils.h" */ -GType gdict_context_prop_get_type (void) G_GNUC_CONST; -#define GDICT_TYPE_CONTEXT_PROP (gdict_context_prop_get_type()) -GType gdict_status_code_get_type (void) G_GNUC_CONST; -#define GDICT_TYPE_STATUS_CODE (gdict_status_code_get_type()) -G_END_DECLS - -#endif /* !__GDICT_ENUM_TYPES_H__ */ - -/* Generated data ends here */ - diff -Nru mate-utils-1.26.0/mate-dictionary/libgdict/gdict-marshal.c mate-utils-1.26.1/mate-dictionary/libgdict/gdict-marshal.c --- mate-utils-1.26.0/mate-dictionary/libgdict/gdict-marshal.c 2021-08-05 19:46:26.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/libgdict/gdict-marshal.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,125 +0,0 @@ -#include "gdict-marshal.h" - -/* This file is generated by glib-genmarshal, do not modify it. This code is licensed under the same license as the containing project. Note that it links to GLib, so must comply with the LGPL linking clauses. */ -#include - -#ifdef G_ENABLE_DEBUG -#define g_marshal_value_peek_boolean(v) g_value_get_boolean (v) -#define g_marshal_value_peek_char(v) g_value_get_schar (v) -#define g_marshal_value_peek_uchar(v) g_value_get_uchar (v) -#define g_marshal_value_peek_int(v) g_value_get_int (v) -#define g_marshal_value_peek_uint(v) g_value_get_uint (v) -#define g_marshal_value_peek_long(v) g_value_get_long (v) -#define g_marshal_value_peek_ulong(v) g_value_get_ulong (v) -#define g_marshal_value_peek_int64(v) g_value_get_int64 (v) -#define g_marshal_value_peek_uint64(v) g_value_get_uint64 (v) -#define g_marshal_value_peek_enum(v) g_value_get_enum (v) -#define g_marshal_value_peek_flags(v) g_value_get_flags (v) -#define g_marshal_value_peek_float(v) g_value_get_float (v) -#define g_marshal_value_peek_double(v) g_value_get_double (v) -#define g_marshal_value_peek_string(v) (char*) g_value_get_string (v) -#define g_marshal_value_peek_param(v) g_value_get_param (v) -#define g_marshal_value_peek_boxed(v) g_value_get_boxed (v) -#define g_marshal_value_peek_pointer(v) g_value_get_pointer (v) -#define g_marshal_value_peek_object(v) g_value_get_object (v) -#define g_marshal_value_peek_variant(v) g_value_get_variant (v) -#else /* !G_ENABLE_DEBUG */ -/* WARNING: This code accesses GValues directly, which is UNSUPPORTED API. - * Do not access GValues directly in your code. Instead, use the - * g_value_get_*() functions - */ -#define g_marshal_value_peek_boolean(v) (v)->data[0].v_int -#define g_marshal_value_peek_char(v) (v)->data[0].v_int -#define g_marshal_value_peek_uchar(v) (v)->data[0].v_uint -#define g_marshal_value_peek_int(v) (v)->data[0].v_int -#define g_marshal_value_peek_uint(v) (v)->data[0].v_uint -#define g_marshal_value_peek_long(v) (v)->data[0].v_long -#define g_marshal_value_peek_ulong(v) (v)->data[0].v_ulong -#define g_marshal_value_peek_int64(v) (v)->data[0].v_int64 -#define g_marshal_value_peek_uint64(v) (v)->data[0].v_uint64 -#define g_marshal_value_peek_enum(v) (v)->data[0].v_long -#define g_marshal_value_peek_flags(v) (v)->data[0].v_ulong -#define g_marshal_value_peek_float(v) (v)->data[0].v_float -#define g_marshal_value_peek_double(v) (v)->data[0].v_double -#define g_marshal_value_peek_string(v) (v)->data[0].v_pointer -#define g_marshal_value_peek_param(v) (v)->data[0].v_pointer -#define g_marshal_value_peek_boxed(v) (v)->data[0].v_pointer -#define g_marshal_value_peek_pointer(v) (v)->data[0].v_pointer -#define g_marshal_value_peek_object(v) (v)->data[0].v_pointer -#define g_marshal_value_peek_variant(v) (v)->data[0].v_pointer -#endif /* !G_ENABLE_DEBUG */ - -/* VOID:STRING,STRING (gdict-marshal.list:6) */ -void -gdict_marshal_VOID__STRING_STRING (GClosure *closure, - GValue *return_value G_GNUC_UNUSED, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint G_GNUC_UNUSED, - gpointer marshal_data) -{ - typedef void (*GMarshalFunc_VOID__STRING_STRING) (gpointer data1, - gpointer arg1, - gpointer arg2, - gpointer data2); - GCClosure *cc = (GCClosure *) closure; - gpointer data1, data2; - GMarshalFunc_VOID__STRING_STRING callback; - - g_return_if_fail (n_param_values == 3); - - if (G_CCLOSURE_SWAP_DATA (closure)) - { - data1 = closure->data; - data2 = g_value_peek_pointer (param_values + 0); - } - else - { - data1 = g_value_peek_pointer (param_values + 0); - data2 = closure->data; - } - callback = (GMarshalFunc_VOID__STRING_STRING) (marshal_data ? marshal_data : cc->callback); - - callback (data1, - g_marshal_value_peek_string (param_values + 1), - g_marshal_value_peek_string (param_values + 2), - data2); -} - -/* VOID:STRING,OBJECT (gdict-marshal.list:7) */ -void -gdict_marshal_VOID__STRING_OBJECT (GClosure *closure, - GValue *return_value G_GNUC_UNUSED, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint G_GNUC_UNUSED, - gpointer marshal_data) -{ - typedef void (*GMarshalFunc_VOID__STRING_OBJECT) (gpointer data1, - gpointer arg1, - gpointer arg2, - gpointer data2); - GCClosure *cc = (GCClosure *) closure; - gpointer data1, data2; - GMarshalFunc_VOID__STRING_OBJECT callback; - - g_return_if_fail (n_param_values == 3); - - if (G_CCLOSURE_SWAP_DATA (closure)) - { - data1 = closure->data; - data2 = g_value_peek_pointer (param_values + 0); - } - else - { - data1 = g_value_peek_pointer (param_values + 0); - data2 = closure->data; - } - callback = (GMarshalFunc_VOID__STRING_OBJECT) (marshal_data ? marshal_data : cc->callback); - - callback (data1, - g_marshal_value_peek_string (param_values + 1), - g_marshal_value_peek_object (param_values + 2), - data2); -} - diff -Nru mate-utils-1.26.0/mate-dictionary/libgdict/gdict-version.h mate-utils-1.26.1/mate-dictionary/libgdict/gdict-version.h --- mate-utils-1.26.0/mate-dictionary/libgdict/gdict-version.h 2021-08-05 19:45:45.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/libgdict/gdict-version.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,92 +0,0 @@ -/* Copyright (C) 2005 Paolo Borelli - * Copyright (C) 2012-2021 MATE Developers - * - * 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 . - */ - -#ifndef __GDICT_VERSION_H__ -#define __GDICT_VERSION_H__ - -#include - -G_BEGIN_DECLS - -/** - * GDICT_MAJOR_VERSION: - * - * FIXME - */ -#define GDICT_MAJOR_VERSION (1) - -/** - * GDICT_MINOR_VERSION: - * - * FIXME - */ -#define GDICT_MINOR_VERSION (1) - -/** - * GDICT_MICRO_VERSION: - * - * FIXME - */ -#define GDICT_MICRO_VERSION (0) - -/** - * GDICT_VERSION: - * - * FIXME - * - * Since: 0.11 - */ -#define GDICT_VERSION (1.1.0) - -/** - * GDICT_VERSION_S: - * - * FIXME - * - * Since: 0.11 - */ -#define GDICT_VERSION_S "1.1.0" - -/** - * GDICT_VERSION_HEX: - * - * FIXME - * - * Since: 0.11 - */ -#define GDICT_VERSION_HEX (GDICT_MAJOR_VERSION << 24 | \ - GDICT_MINOR_VERSION << 16 | \ - GDICT_MICRO_VERSION << 8) - -#define GDICT_CHECK_VERSION(major,minor,micro) \ - (((major) >= GDICT_MAJOR_VERSION) || \ - (((major) == GDICT_MAJOR_VERSION) && ((minor) >= GDICT_MINOR_VERSION)) || \ - (((major) == GDICT_MAJOR_VERSION) && ((minor) == GDICT_MINOR_VERSION) && ((micro) >= GDICT_MICRO_VERSION))) - -extern guint gdict_major; -extern guint gdict_minor; -extern guint gdict_micro; - -gboolean gdict_check_version (guint required_major, - guint required_minor, - guint required_micro); - -G_END_DECLS - -#endif /* __GDICT_VERSION_H__ */ diff -Nru mate-utils-1.26.0/mate-dictionary/libgdict/Makefile.in mate-utils-1.26.1/mate-dictionary/libgdict/Makefile.in --- mate-utils-1.26.0/mate-dictionary/libgdict/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/libgdict/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,1094 +0,0 @@ -# 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 . - - - -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 = mate-dictionary/libgdict -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 $(libgdict_include_HEADERS) \ - $(am__DIST_COMMON) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = gdict-version.h mate-dict.pc -CONFIG_CLEAN_VPATH_FILES = -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; }; \ - } -am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \ - "$(DESTDIR)$(libgdict_includedir)" -LTLIBRARIES = $(lib_LTLIBRARIES) -am__DEPENDENCIES_1 = -libmatedict_la_DEPENDENCIES = $(am__DEPENDENCIES_1) -am__objects_1 = -am__objects_2 = $(am__objects_1) -am__objects_3 = libmatedict_la-gdict-context.lo \ - libmatedict_la-gdict-client-context.lo \ - libmatedict_la-gdict-database-chooser.lo \ - libmatedict_la-gdict-defbox.lo \ - libmatedict_la-gdict-enum-types.lo \ - libmatedict_la-gdict-marshal.lo \ - libmatedict_la-gdict-source-chooser.lo \ - libmatedict_la-gdict-source-loader.lo \ - libmatedict_la-gdict-source.lo libmatedict_la-gdict-speller.lo \ - libmatedict_la-gdict-strategy-chooser.lo \ - libmatedict_la-gdict-utils.lo $(am__objects_1) -am_libmatedict_la_OBJECTS = $(am__objects_2) $(am__objects_2) \ - $(am__objects_3) -libmatedict_la_OBJECTS = $(am_libmatedict_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) -am__v_lt_0 = --silent -am__v_lt_1 = -libmatedict_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) $(libmatedict_la_LDFLAGS) $(LDFLAGS) -o \ - $@ -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 = -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__maybe_remake_depfiles = depfiles -am__depfiles_remade = \ - ./$(DEPDIR)/libmatedict_la-gdict-client-context.Plo \ - ./$(DEPDIR)/libmatedict_la-gdict-context.Plo \ - ./$(DEPDIR)/libmatedict_la-gdict-database-chooser.Plo \ - ./$(DEPDIR)/libmatedict_la-gdict-defbox.Plo \ - ./$(DEPDIR)/libmatedict_la-gdict-enum-types.Plo \ - ./$(DEPDIR)/libmatedict_la-gdict-marshal.Plo \ - ./$(DEPDIR)/libmatedict_la-gdict-source-chooser.Plo \ - ./$(DEPDIR)/libmatedict_la-gdict-source-loader.Plo \ - ./$(DEPDIR)/libmatedict_la-gdict-source.Plo \ - ./$(DEPDIR)/libmatedict_la-gdict-speller.Plo \ - ./$(DEPDIR)/libmatedict_la-gdict-strategy-chooser.Plo \ - ./$(DEPDIR)/libmatedict_la-gdict-utils.Plo -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -SOURCES = $(libmatedict_la_SOURCES) -DIST_SOURCES = $(libmatedict_la_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -DATA = $(pkgconfig_DATA) -HEADERS = $(libgdict_include_HEADERS) -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/gdict-version.h.in \ - $(srcdir)/mate-dict.pc.in $(top_srcdir)/depcomp -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@ -NULL = -AM_CPPFLAGS = -DG_LOG_DOMAIN=\"Gdict\" \ - -DDATADIR=\""$(datadir)"\" \ - -DLIBDIR=\""$(libdir)"\" \ - -DSYSCONFDIR=\""$(sysconfdir)"\" \ - -DPREFIX=\""$(prefix)"\" \ - -DMATELOCALEDIR=\""$(datadir)/locale"\" \ - -DGDICTSOURCESDIR=\""$(datadir)/mate-dict/sources"\" \ - -DGDICT_ENABLE_INTERNALS \ - $(NULL) - -sources_h = \ - $(srcdir)/gdict-context.h \ - $(srcdir)/gdict-client-context.h \ - $(srcdir)/gdict-database-chooser.h \ - $(srcdir)/gdict-defbox.h \ - $(srcdir)/gdict-source-chooser.h \ - $(srcdir)/gdict-source-loader.h \ - $(srcdir)/gdict-source.h \ - $(srcdir)/gdict-speller.h \ - $(srcdir)/gdict-strategy-chooser.h \ - $(srcdir)/gdict-utils.h \ - $(NULL) - -sources_h_priv = \ - $(srcdir)/gdict-context-private.h \ - $(srcdir)/gdict-debug.h \ - $(srcdir)/gdict-private.h \ - $(NULL) - -sources_c = \ - $(srcdir)/gdict-context.c \ - $(srcdir)/gdict-client-context.c \ - $(srcdir)/gdict-database-chooser.c \ - $(srcdir)/gdict-defbox.c \ - gdict-enum-types.c \ - gdict-marshal.c \ - $(srcdir)/gdict-source-chooser.c \ - $(srcdir)/gdict-source-loader.c \ - $(srcdir)/gdict-source.c \ - $(srcdir)/gdict-speller.c \ - $(srcdir)/gdict-strategy-chooser.c \ - $(srcdir)/gdict-utils.c \ - $(NULL) - -lib_LTLIBRARIES = libmatedict.la - -# MATE Dictionary shared library -libmatedict_la_SOURCES = $(sources_h) $(sources_h_priv) $(sources_c) -libmatedict_la_CPPFLAGS = \ - $(AM_CPPFLAGS) \ - $(LIBGDICT_CFLAGS) \ - $(GDICT_DEBUG_CFLAGS) \ - $(WARN_CFLAGS) \ - $(NULL) - -libmatedict_la_LIBADD = $(LIBGDICT_LIBS) -libmatedict_la_LDFLAGS = \ - -version-info $(LIBGDICT_LT_VERSION) \ - -export-dynamic \ - -no-undefined - -libgdict_includedir = $(includedir)/mate-dict/gdict -libgdict_include_HEADERS = \ - $(sources_h) \ - gdict-enum-types.h \ - gdict-version.h \ - $(srcdir)/gdict.h \ - $(NULL) - -gdict_built_files = \ - gdict-enum-types.h \ - gdict-enum-types.c \ - gdict-marshal.h \ - gdict-marshal.c - -stamp_files = stamp-gdict-enum-types.h stamp-gdict-marshal.h -CLEANFILES = $(stamp_files) $(gdict_built_files) -DISTCLEANFILES = gdict-version.h -MAINTAINERCLEANFILES = $(stamp_files) $(gdict_built_files) gdict-version.h -EXTRA_DIST = \ - gdict-version.h.in \ - gdict-enum-types.h.in \ - gdict-enum-types.c.in \ - gdict-marshal.list \ - mate-dict.pc.in \ - $(NULL) - -BUILT_SOURCES = $(gdict_built_files) -pkgconfigdir = $(libdir)/pkgconfig -pkgconfig_DATA = mate-dict.pc -all: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(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 mate-dictionary/libgdict/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign mate-dictionary/libgdict/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): -gdict-version.h: $(top_builddir)/config.status $(srcdir)/gdict-version.h.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ -mate-dict.pc: $(top_builddir)/config.status $(srcdir)/mate-dict.pc.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ - -install-libLTLIBRARIES: $(lib_LTLIBRARIES) - @$(NORMAL_INSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ - } - -uninstall-libLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ - done - -clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) - @list='$(lib_LTLIBRARIES)'; \ - locs=`for p in $$list; do echo $$p; done | \ - sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ - sort -u`; \ - test -z "$$locs" || { \ - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } - -libmatedict.la: $(libmatedict_la_OBJECTS) $(libmatedict_la_DEPENDENCIES) $(EXTRA_libmatedict_la_DEPENDENCIES) - $(AM_V_CCLD)$(libmatedict_la_LINK) -rpath $(libdir) $(libmatedict_la_OBJECTS) $(libmatedict_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmatedict_la-gdict-client-context.Plo@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmatedict_la-gdict-context.Plo@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmatedict_la-gdict-database-chooser.Plo@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmatedict_la-gdict-defbox.Plo@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmatedict_la-gdict-enum-types.Plo@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmatedict_la-gdict-marshal.Plo@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmatedict_la-gdict-source-chooser.Plo@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmatedict_la-gdict-source-loader.Plo@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmatedict_la-gdict-source.Plo@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmatedict_la-gdict-speller.Plo@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmatedict_la-gdict-strategy-chooser.Plo@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmatedict_la-gdict-utils.Plo@am__quote@ # am--include-marker - -$(am__depfiles_remade): - @$(MKDIR_P) $(@D) - @echo '# dummy' >$@-t && $(am__mv) $@-t $@ - -am--depfiles: $(am__depfiles_remade) - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< - -libmatedict_la-gdict-context.lo: gdict-context.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmatedict_la-gdict-context.lo -MD -MP -MF $(DEPDIR)/libmatedict_la-gdict-context.Tpo -c -o libmatedict_la-gdict-context.lo `test -f 'gdict-context.c' || echo '$(srcdir)/'`gdict-context.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmatedict_la-gdict-context.Tpo $(DEPDIR)/libmatedict_la-gdict-context.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-context.c' object='libmatedict_la-gdict-context.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmatedict_la-gdict-context.lo `test -f 'gdict-context.c' || echo '$(srcdir)/'`gdict-context.c - -libmatedict_la-gdict-client-context.lo: gdict-client-context.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmatedict_la-gdict-client-context.lo -MD -MP -MF $(DEPDIR)/libmatedict_la-gdict-client-context.Tpo -c -o libmatedict_la-gdict-client-context.lo `test -f 'gdict-client-context.c' || echo '$(srcdir)/'`gdict-client-context.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmatedict_la-gdict-client-context.Tpo $(DEPDIR)/libmatedict_la-gdict-client-context.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-client-context.c' object='libmatedict_la-gdict-client-context.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmatedict_la-gdict-client-context.lo `test -f 'gdict-client-context.c' || echo '$(srcdir)/'`gdict-client-context.c - -libmatedict_la-gdict-database-chooser.lo: gdict-database-chooser.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmatedict_la-gdict-database-chooser.lo -MD -MP -MF $(DEPDIR)/libmatedict_la-gdict-database-chooser.Tpo -c -o libmatedict_la-gdict-database-chooser.lo `test -f 'gdict-database-chooser.c' || echo '$(srcdir)/'`gdict-database-chooser.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmatedict_la-gdict-database-chooser.Tpo $(DEPDIR)/libmatedict_la-gdict-database-chooser.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-database-chooser.c' object='libmatedict_la-gdict-database-chooser.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmatedict_la-gdict-database-chooser.lo `test -f 'gdict-database-chooser.c' || echo '$(srcdir)/'`gdict-database-chooser.c - -libmatedict_la-gdict-defbox.lo: gdict-defbox.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmatedict_la-gdict-defbox.lo -MD -MP -MF $(DEPDIR)/libmatedict_la-gdict-defbox.Tpo -c -o libmatedict_la-gdict-defbox.lo `test -f 'gdict-defbox.c' || echo '$(srcdir)/'`gdict-defbox.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmatedict_la-gdict-defbox.Tpo $(DEPDIR)/libmatedict_la-gdict-defbox.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-defbox.c' object='libmatedict_la-gdict-defbox.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmatedict_la-gdict-defbox.lo `test -f 'gdict-defbox.c' || echo '$(srcdir)/'`gdict-defbox.c - -libmatedict_la-gdict-enum-types.lo: gdict-enum-types.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmatedict_la-gdict-enum-types.lo -MD -MP -MF $(DEPDIR)/libmatedict_la-gdict-enum-types.Tpo -c -o libmatedict_la-gdict-enum-types.lo `test -f 'gdict-enum-types.c' || echo '$(srcdir)/'`gdict-enum-types.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmatedict_la-gdict-enum-types.Tpo $(DEPDIR)/libmatedict_la-gdict-enum-types.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-enum-types.c' object='libmatedict_la-gdict-enum-types.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmatedict_la-gdict-enum-types.lo `test -f 'gdict-enum-types.c' || echo '$(srcdir)/'`gdict-enum-types.c - -libmatedict_la-gdict-marshal.lo: gdict-marshal.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmatedict_la-gdict-marshal.lo -MD -MP -MF $(DEPDIR)/libmatedict_la-gdict-marshal.Tpo -c -o libmatedict_la-gdict-marshal.lo `test -f 'gdict-marshal.c' || echo '$(srcdir)/'`gdict-marshal.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmatedict_la-gdict-marshal.Tpo $(DEPDIR)/libmatedict_la-gdict-marshal.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-marshal.c' object='libmatedict_la-gdict-marshal.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmatedict_la-gdict-marshal.lo `test -f 'gdict-marshal.c' || echo '$(srcdir)/'`gdict-marshal.c - -libmatedict_la-gdict-source-chooser.lo: gdict-source-chooser.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmatedict_la-gdict-source-chooser.lo -MD -MP -MF $(DEPDIR)/libmatedict_la-gdict-source-chooser.Tpo -c -o libmatedict_la-gdict-source-chooser.lo `test -f 'gdict-source-chooser.c' || echo '$(srcdir)/'`gdict-source-chooser.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmatedict_la-gdict-source-chooser.Tpo $(DEPDIR)/libmatedict_la-gdict-source-chooser.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-source-chooser.c' object='libmatedict_la-gdict-source-chooser.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmatedict_la-gdict-source-chooser.lo `test -f 'gdict-source-chooser.c' || echo '$(srcdir)/'`gdict-source-chooser.c - -libmatedict_la-gdict-source-loader.lo: gdict-source-loader.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmatedict_la-gdict-source-loader.lo -MD -MP -MF $(DEPDIR)/libmatedict_la-gdict-source-loader.Tpo -c -o libmatedict_la-gdict-source-loader.lo `test -f 'gdict-source-loader.c' || echo '$(srcdir)/'`gdict-source-loader.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmatedict_la-gdict-source-loader.Tpo $(DEPDIR)/libmatedict_la-gdict-source-loader.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-source-loader.c' object='libmatedict_la-gdict-source-loader.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmatedict_la-gdict-source-loader.lo `test -f 'gdict-source-loader.c' || echo '$(srcdir)/'`gdict-source-loader.c - -libmatedict_la-gdict-source.lo: gdict-source.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmatedict_la-gdict-source.lo -MD -MP -MF $(DEPDIR)/libmatedict_la-gdict-source.Tpo -c -o libmatedict_la-gdict-source.lo `test -f 'gdict-source.c' || echo '$(srcdir)/'`gdict-source.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmatedict_la-gdict-source.Tpo $(DEPDIR)/libmatedict_la-gdict-source.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-source.c' object='libmatedict_la-gdict-source.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmatedict_la-gdict-source.lo `test -f 'gdict-source.c' || echo '$(srcdir)/'`gdict-source.c - -libmatedict_la-gdict-speller.lo: gdict-speller.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmatedict_la-gdict-speller.lo -MD -MP -MF $(DEPDIR)/libmatedict_la-gdict-speller.Tpo -c -o libmatedict_la-gdict-speller.lo `test -f 'gdict-speller.c' || echo '$(srcdir)/'`gdict-speller.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmatedict_la-gdict-speller.Tpo $(DEPDIR)/libmatedict_la-gdict-speller.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-speller.c' object='libmatedict_la-gdict-speller.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmatedict_la-gdict-speller.lo `test -f 'gdict-speller.c' || echo '$(srcdir)/'`gdict-speller.c - -libmatedict_la-gdict-strategy-chooser.lo: gdict-strategy-chooser.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmatedict_la-gdict-strategy-chooser.lo -MD -MP -MF $(DEPDIR)/libmatedict_la-gdict-strategy-chooser.Tpo -c -o libmatedict_la-gdict-strategy-chooser.lo `test -f 'gdict-strategy-chooser.c' || echo '$(srcdir)/'`gdict-strategy-chooser.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmatedict_la-gdict-strategy-chooser.Tpo $(DEPDIR)/libmatedict_la-gdict-strategy-chooser.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-strategy-chooser.c' object='libmatedict_la-gdict-strategy-chooser.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmatedict_la-gdict-strategy-chooser.lo `test -f 'gdict-strategy-chooser.c' || echo '$(srcdir)/'`gdict-strategy-chooser.c - -libmatedict_la-gdict-utils.lo: gdict-utils.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmatedict_la-gdict-utils.lo -MD -MP -MF $(DEPDIR)/libmatedict_la-gdict-utils.Tpo -c -o libmatedict_la-gdict-utils.lo `test -f 'gdict-utils.c' || echo '$(srcdir)/'`gdict-utils.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmatedict_la-gdict-utils.Tpo $(DEPDIR)/libmatedict_la-gdict-utils.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-utils.c' object='libmatedict_la-gdict-utils.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmatedict_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmatedict_la-gdict-utils.lo `test -f 'gdict-utils.c' || echo '$(srcdir)/'`gdict-utils.c - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-pkgconfigDATA: $(pkgconfig_DATA) - @$(NORMAL_INSTALL) - @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || 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)$(pkgconfigdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ - done - -uninstall-pkgconfigDATA: - @$(NORMAL_UNINSTALL) - @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) -install-libgdict_includeHEADERS: $(libgdict_include_HEADERS) - @$(NORMAL_INSTALL) - @list='$(libgdict_include_HEADERS)'; test -n "$(libgdict_includedir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(libgdict_includedir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(libgdict_includedir)" || 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_HEADER) $$files '$(DESTDIR)$(libgdict_includedir)'"; \ - $(INSTALL_HEADER) $$files "$(DESTDIR)$(libgdict_includedir)" || exit $$?; \ - done - -uninstall-libgdict_includeHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(libgdict_include_HEADERS)'; test -n "$(libgdict_includedir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(libgdict_includedir)'; $(am__uninstall_files_from_dir) - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) check-am -all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) -installdirs: - for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(libgdict_includedir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) 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) - -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." - -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) - -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) -clean: clean-am - -clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-client-context.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-context.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-database-chooser.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-defbox.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-enum-types.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-marshal.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-source-chooser.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-source-loader.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-source.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-speller.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-strategy-chooser.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-utils.Plo - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-local distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-libgdict_includeHEADERS install-pkgconfigDATA - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-libLTLIBRARIES - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -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 ./$(DEPDIR)/libmatedict_la-gdict-client-context.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-context.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-database-chooser.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-defbox.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-enum-types.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-marshal.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-source-chooser.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-source-loader.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-source.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-speller.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-strategy-chooser.Plo - -rm -f ./$(DEPDIR)/libmatedict_la-gdict-utils.Plo - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-libLTLIBRARIES \ - uninstall-libgdict_includeHEADERS uninstall-pkgconfigDATA - -.MAKE: all check install install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ - clean-generic clean-libLTLIBRARIES clean-libtool cscopelist-am \ - ctags ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-local distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - 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-libLTLIBRARIES \ - install-libgdict_includeHEADERS install-man install-pdf \ - install-pdf-am install-pkgconfigDATA install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \ - uninstall-libLTLIBRARIES uninstall-libgdict_includeHEADERS \ - uninstall-pkgconfigDATA - -.PRECIOUS: Makefile - - -gdict-marshal.h: stamp-gdict-marshal.h - @true -stamp-gdict-marshal.h: gdict-marshal.list $(GLIB_GENMARSHAL) Makefile - $(AM_V_GEN)$(GLIB_GENMARSHAL) $< --header --prefix=gdict_marshal > xgen-gmh \ - && ( cmp -s xgen-gmh gdict-marshal.h || cp xgen-gmh gdict-marshal.h ) \ - && rm -f xgen-gmh \ - && echo timestamp > $@ - -gdict-marshal.c: gdict-marshal.list $(GLIB_GENMARSHAL) Makefile - $(AM_V_GEN)( echo "#include \"gdict-marshal.h\""; echo; \ - $(GLIB_GENMARSHAL) $< --body --prefix=gdict_marshal ) > xgen-gmc \ - && cp xgen-gmc gdict-marshal.c \ - && rm -f xgen-gmc - -gdict-enum-types.h: stamp-gdict-enum-types.h - @true -stamp-gdict-enum-types.h: $(sources_h) gdict-enum-types.h.in Makefile - $(AM_V_GEN) $(GLIB_MKENUMS) --template $(srcdir)/gdict-enum-types.h.in \ - $(sources_h) > xgen-ceth \ - && ( cmp -s xgen-ceth gdict-enum-types.h || cp xgen-ceth gdict-enum-types.h ) \ - && rm -f xgen-ceth \ - && echo timestamp > $@ - -gdict-enum-types.c: gdict-enum-types.h gdict-enum-types.c.in Makefile - $(AM_V_GEN) $(GLIB_MKENUMS) --template $(srcdir)/gdict-enum-types.c.in \ - $(sources_h) > xgen-cetc \ - && cp xgen-cetc gdict-enum-types.c \ - && rm -f xgen-cetc - -distclean-local: - if test $(srcdir) != .; then \ - rm -f $(MAINTAINERCLEANFILES); \ - fi - --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 -Nru mate-utils-1.26.0/mate-dictionary/Makefile.in mate-utils-1.26.1/mate-dictionary/Makefile.in --- mate-utils-1.26.0/mate-dictionary/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,728 +0,0 @@ -# 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 . -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 = mate-dictionary -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 = -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 = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir distdir-am -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in AUTHORS TODO -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -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@ -SUBDIRS = libgdict src data docs help -EXTRA_DIST = TODO README.md AUTHORS -all: all-recursive - -.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 mate-dictionary/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign mate-dictionary/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): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -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: - -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-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ - check-am clean clean-generic clean-libtool cscopelist-am ctags \ - ctags-am distclean distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am 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-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - installdirs-am maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ - ps ps-am tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - --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 -Nru mate-utils-1.26.0/mate-dictionary/src/gdict-app.c mate-utils-1.26.1/mate-dictionary/src/gdict-app.c --- mate-utils-1.26.0/mate-dictionary/src/gdict-app.c 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/src/gdict-app.c 2023-05-09 13:31:58.000000000 +0000 @@ -359,6 +359,7 @@ exit (1); } + g_option_context_free (context); g_set_application_name (_("Dictionary")); gtk_window_set_default_icon_name ("accessories-dictionary"); diff -Nru mate-utils-1.26.0/mate-dictionary/src/gdict-window.c mate-utils-1.26.1/mate-dictionary/src/gdict-window.c --- mate-utils-1.26.0/mate-dictionary/src/gdict-window.c 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/src/gdict-window.c 2023-05-09 13:31:58.000000000 +0000 @@ -130,7 +130,6 @@ if (window->settings != NULL) { g_object_unref (window->settings); - window->settings = NULL; } @@ -189,6 +188,8 @@ window->busy_cursor = NULL; } + g_clear_pointer (&window->sidebar_page, g_free); + G_OBJECT_CLASS (gdict_window_parent_class)->dispose (gobject); } diff -Nru mate-utils-1.26.0/mate-dictionary/src/Makefile.in mate-utils-1.26.1/mate-dictionary/src/Makefile.in --- mate-utils-1.26.0/mate-dictionary/src/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,1234 +0,0 @@ -# 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 . - -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@ -bin_PROGRAMS = mate-dictionary$(EXEEXT) -@BUILD_GDICT_APPLET_TRUE@libexec_PROGRAMS = \ -@BUILD_GDICT_APPLET_TRUE@ mate-dictionary-applet$(EXEEXT) -subdir = mate-dictionary/src -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 = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libexecdir)" -PROGRAMS = $(bin_PROGRAMS) $(libexec_PROGRAMS) -am__objects_1 = -am_mate_dictionary_OBJECTS = mate_dictionary-gdict-about.$(OBJEXT) \ - mate_dictionary-gdict-app.$(OBJEXT) \ - mate_dictionary-gdict-common.$(OBJEXT) \ - mate_dictionary-gdict-pref-dialog.$(OBJEXT) \ - mate_dictionary-gdict-print.$(OBJEXT) \ - mate_dictionary-gdict-sidebar.$(OBJEXT) \ - mate_dictionary-gdict-source-dialog.$(OBJEXT) \ - mate_dictionary-gdict-window.$(OBJEXT) \ - mate_dictionary-main.$(OBJEXT) $(am__objects_1) -mate_dictionary_OBJECTS = $(am_mate_dictionary_OBJECTS) -am__DEPENDENCIES_1 = -mate_dictionary_DEPENDENCIES = \ - $(top_builddir)/mate-dictionary/libgdict/libmatedict.la \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) -am__v_lt_0 = --silent -am__v_lt_1 = -mate_dictionary_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(mate_dictionary_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ - -o $@ -am__mate_dictionary_applet_SOURCES_DIST = gdict-about.c gdict-about.h \ - gdict-aligned-window.c gdict-aligned-window.h gdict-applet.c \ - gdict-applet.h gdict-common.c gdict-common.h \ - gdict-pref-dialog.c gdict-pref-dialog.h gdict-print.c \ - gdict-print.h gdict-sidebar.c gdict-sidebar.h \ - gdict-source-dialog.c gdict-source-dialog.h -@BUILD_GDICT_APPLET_TRUE@am_mate_dictionary_applet_OBJECTS = mate_dictionary_applet-gdict-about.$(OBJEXT) \ -@BUILD_GDICT_APPLET_TRUE@ mate_dictionary_applet-gdict-aligned-window.$(OBJEXT) \ -@BUILD_GDICT_APPLET_TRUE@ mate_dictionary_applet-gdict-applet.$(OBJEXT) \ -@BUILD_GDICT_APPLET_TRUE@ mate_dictionary_applet-gdict-common.$(OBJEXT) \ -@BUILD_GDICT_APPLET_TRUE@ mate_dictionary_applet-gdict-pref-dialog.$(OBJEXT) \ -@BUILD_GDICT_APPLET_TRUE@ mate_dictionary_applet-gdict-print.$(OBJEXT) \ -@BUILD_GDICT_APPLET_TRUE@ mate_dictionary_applet-gdict-sidebar.$(OBJEXT) \ -@BUILD_GDICT_APPLET_TRUE@ mate_dictionary_applet-gdict-source-dialog.$(OBJEXT) \ -@BUILD_GDICT_APPLET_TRUE@ $(am__objects_1) -mate_dictionary_applet_OBJECTS = $(am_mate_dictionary_applet_OBJECTS) -@BUILD_GDICT_APPLET_TRUE@mate_dictionary_applet_DEPENDENCIES = $(top_builddir)/mate-dictionary/libgdict/libmatedict.la \ -@BUILD_GDICT_APPLET_TRUE@ $(am__DEPENDENCIES_1) \ -@BUILD_GDICT_APPLET_TRUE@ $(am__DEPENDENCIES_1) \ -@BUILD_GDICT_APPLET_TRUE@ $(am__DEPENDENCIES_1) \ -@BUILD_GDICT_APPLET_TRUE@ $(am__DEPENDENCIES_1) \ -@BUILD_GDICT_APPLET_TRUE@ $(am__DEPENDENCIES_1) -mate_dictionary_applet_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(mate_dictionary_applet_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -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 = -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__maybe_remake_depfiles = depfiles -am__depfiles_remade = ./$(DEPDIR)/mate_dictionary-gdict-about.Po \ - ./$(DEPDIR)/mate_dictionary-gdict-app.Po \ - ./$(DEPDIR)/mate_dictionary-gdict-common.Po \ - ./$(DEPDIR)/mate_dictionary-gdict-pref-dialog.Po \ - ./$(DEPDIR)/mate_dictionary-gdict-print.Po \ - ./$(DEPDIR)/mate_dictionary-gdict-sidebar.Po \ - ./$(DEPDIR)/mate_dictionary-gdict-source-dialog.Po \ - ./$(DEPDIR)/mate_dictionary-gdict-window.Po \ - ./$(DEPDIR)/mate_dictionary-main.Po \ - ./$(DEPDIR)/mate_dictionary_applet-gdict-about.Po \ - ./$(DEPDIR)/mate_dictionary_applet-gdict-aligned-window.Po \ - ./$(DEPDIR)/mate_dictionary_applet-gdict-applet.Po \ - ./$(DEPDIR)/mate_dictionary_applet-gdict-common.Po \ - ./$(DEPDIR)/mate_dictionary_applet-gdict-pref-dialog.Po \ - ./$(DEPDIR)/mate_dictionary_applet-gdict-print.Po \ - ./$(DEPDIR)/mate_dictionary_applet-gdict-sidebar.Po \ - ./$(DEPDIR)/mate_dictionary_applet-gdict-source-dialog.Po -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -SOURCES = $(mate_dictionary_SOURCES) $(mate_dictionary_applet_SOURCES) -DIST_SOURCES = $(mate_dictionary_SOURCES) \ - $(am__mate_dictionary_applet_SOURCES_DIST) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp -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@ -NULL = -AM_CPPFLAGS = \ - -DPREFIX=\""$(prefix)"\" \ - -DSYSCONFDIR=\""$(sysconfdir)"\" \ - -DLIBDIR=\""$(libdir)"\" \ - -DDATADIR=\""$(datadir)"\" \ - -DPKGDATADIR=\""$(datadir)/mate-dictionary"\" \ - -DMATELOCALEDIR=\""$(datadir)/locale"\" \ - $(NULL) - -mate_dictionary_SOURCES = \ - gdict-about.c \ - gdict-about.h \ - gdict-app.c \ - gdict-app.h \ - gdict-common.c \ - gdict-common.h \ - gdict-pref-dialog.c \ - gdict-pref-dialog.h \ - gdict-print.c \ - gdict-print.h \ - gdict-sidebar.c \ - gdict-sidebar.h \ - gdict-source-dialog.c \ - gdict-source-dialog.h \ - gdict-window.c \ - gdict-window.h \ - main.c \ - $(NULL) - -mate_dictionary_CFLAGS = \ - -I$(top_builddir)/mate-dictionary \ - -I$(top_srcdir)/mate-dictionary \ - $(GLIB_CFLAGS) \ - $(GIO_CFLAGS) \ - $(GTK_CFLAGS) \ - $(WARN_CFLAGS) \ - $(NULL) - -mate_dictionary_LDADD = \ - -lm \ - $(top_builddir)/mate-dictionary/libgdict/libmatedict.la \ - $(GLIB_LIBS) \ - $(GIO_LIBS) \ - $(GTK_LIBS) \ - $(NULL) - -@BUILD_GDICT_APPLET_TRUE@mate_dictionary_applet_SOURCES = \ -@BUILD_GDICT_APPLET_TRUE@ gdict-about.c \ -@BUILD_GDICT_APPLET_TRUE@ gdict-about.h \ -@BUILD_GDICT_APPLET_TRUE@ gdict-aligned-window.c \ -@BUILD_GDICT_APPLET_TRUE@ gdict-aligned-window.h \ -@BUILD_GDICT_APPLET_TRUE@ gdict-applet.c \ -@BUILD_GDICT_APPLET_TRUE@ gdict-applet.h \ -@BUILD_GDICT_APPLET_TRUE@ gdict-common.c \ -@BUILD_GDICT_APPLET_TRUE@ gdict-common.h \ -@BUILD_GDICT_APPLET_TRUE@ gdict-pref-dialog.c \ -@BUILD_GDICT_APPLET_TRUE@ gdict-pref-dialog.h \ -@BUILD_GDICT_APPLET_TRUE@ gdict-print.c \ -@BUILD_GDICT_APPLET_TRUE@ gdict-print.h \ -@BUILD_GDICT_APPLET_TRUE@ gdict-sidebar.c \ -@BUILD_GDICT_APPLET_TRUE@ gdict-sidebar.h \ -@BUILD_GDICT_APPLET_TRUE@ gdict-source-dialog.c \ -@BUILD_GDICT_APPLET_TRUE@ gdict-source-dialog.h \ -@BUILD_GDICT_APPLET_TRUE@ $(NULL) - -@BUILD_GDICT_APPLET_TRUE@mate_dictionary_applet_CFLAGS = \ -@BUILD_GDICT_APPLET_TRUE@ -I$(top_builddir)/mate-dictionary \ -@BUILD_GDICT_APPLET_TRUE@ -I$(top_srcdir)/mate-dictionary \ -@BUILD_GDICT_APPLET_TRUE@ $(APPLET_CFLAGS) \ -@BUILD_GDICT_APPLET_TRUE@ $(GLIB_CFLAGS) \ -@BUILD_GDICT_APPLET_TRUE@ $(GIO_CFLAGS) \ -@BUILD_GDICT_APPLET_TRUE@ $(GTK_CFLAGS) \ -@BUILD_GDICT_APPLET_TRUE@ $(WARN_CFLAGS) \ -@BUILD_GDICT_APPLET_TRUE@ $(NULL) - -@BUILD_GDICT_APPLET_TRUE@mate_dictionary_applet_LDADD = \ -@BUILD_GDICT_APPLET_TRUE@ -lm \ -@BUILD_GDICT_APPLET_TRUE@ $(top_builddir)/mate-dictionary/libgdict/libmatedict.la \ -@BUILD_GDICT_APPLET_TRUE@ $(APPLET_LIBS) \ -@BUILD_GDICT_APPLET_TRUE@ $(GLIB_LIBS) \ -@BUILD_GDICT_APPLET_TRUE@ $(GIO_LIBS) \ -@BUILD_GDICT_APPLET_TRUE@ $(GTK_LIBS) \ -@BUILD_GDICT_APPLET_TRUE@ $(NULL) - -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(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 mate-dictionary/src/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign mate-dictionary/src/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): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ - fi; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p \ - || test -f $$p1 \ - ; then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' \ - -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' \ - `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -install-libexecPROGRAMS: $(libexec_PROGRAMS) - @$(NORMAL_INSTALL) - @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(libexecdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(libexecdir)" || exit 1; \ - fi; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p \ - || test -f $$p1 \ - ; then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' \ - -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-libexecPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' \ - `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(libexecdir)" && rm -f $$files - -clean-libexecPROGRAMS: - @list='$(libexec_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list - -mate-dictionary$(EXEEXT): $(mate_dictionary_OBJECTS) $(mate_dictionary_DEPENDENCIES) $(EXTRA_mate_dictionary_DEPENDENCIES) - @rm -f mate-dictionary$(EXEEXT) - $(AM_V_CCLD)$(mate_dictionary_LINK) $(mate_dictionary_OBJECTS) $(mate_dictionary_LDADD) $(LIBS) - -mate-dictionary-applet$(EXEEXT): $(mate_dictionary_applet_OBJECTS) $(mate_dictionary_applet_DEPENDENCIES) $(EXTRA_mate_dictionary_applet_DEPENDENCIES) - @rm -f mate-dictionary-applet$(EXEEXT) - $(AM_V_CCLD)$(mate_dictionary_applet_LINK) $(mate_dictionary_applet_OBJECTS) $(mate_dictionary_applet_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary-gdict-about.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary-gdict-app.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary-gdict-common.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary-gdict-pref-dialog.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary-gdict-print.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary-gdict-sidebar.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary-gdict-source-dialog.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary-gdict-window.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary-main.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary_applet-gdict-about.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary_applet-gdict-aligned-window.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary_applet-gdict-applet.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary_applet-gdict-common.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary_applet-gdict-pref-dialog.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary_applet-gdict-print.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary_applet-gdict-sidebar.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_dictionary_applet-gdict-source-dialog.Po@am__quote@ # am--include-marker - -$(am__depfiles_remade): - @$(MKDIR_P) $(@D) - @echo '# dummy' >$@-t && $(am__mv) $@-t $@ - -am--depfiles: $(am__depfiles_remade) - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< - -mate_dictionary-gdict-about.o: gdict-about.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-gdict-about.o -MD -MP -MF $(DEPDIR)/mate_dictionary-gdict-about.Tpo -c -o mate_dictionary-gdict-about.o `test -f 'gdict-about.c' || echo '$(srcdir)/'`gdict-about.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-gdict-about.Tpo $(DEPDIR)/mate_dictionary-gdict-about.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-about.c' object='mate_dictionary-gdict-about.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-gdict-about.o `test -f 'gdict-about.c' || echo '$(srcdir)/'`gdict-about.c - -mate_dictionary-gdict-about.obj: gdict-about.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-gdict-about.obj -MD -MP -MF $(DEPDIR)/mate_dictionary-gdict-about.Tpo -c -o mate_dictionary-gdict-about.obj `if test -f 'gdict-about.c'; then $(CYGPATH_W) 'gdict-about.c'; else $(CYGPATH_W) '$(srcdir)/gdict-about.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-gdict-about.Tpo $(DEPDIR)/mate_dictionary-gdict-about.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-about.c' object='mate_dictionary-gdict-about.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-gdict-about.obj `if test -f 'gdict-about.c'; then $(CYGPATH_W) 'gdict-about.c'; else $(CYGPATH_W) '$(srcdir)/gdict-about.c'; fi` - -mate_dictionary-gdict-app.o: gdict-app.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-gdict-app.o -MD -MP -MF $(DEPDIR)/mate_dictionary-gdict-app.Tpo -c -o mate_dictionary-gdict-app.o `test -f 'gdict-app.c' || echo '$(srcdir)/'`gdict-app.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-gdict-app.Tpo $(DEPDIR)/mate_dictionary-gdict-app.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-app.c' object='mate_dictionary-gdict-app.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-gdict-app.o `test -f 'gdict-app.c' || echo '$(srcdir)/'`gdict-app.c - -mate_dictionary-gdict-app.obj: gdict-app.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-gdict-app.obj -MD -MP -MF $(DEPDIR)/mate_dictionary-gdict-app.Tpo -c -o mate_dictionary-gdict-app.obj `if test -f 'gdict-app.c'; then $(CYGPATH_W) 'gdict-app.c'; else $(CYGPATH_W) '$(srcdir)/gdict-app.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-gdict-app.Tpo $(DEPDIR)/mate_dictionary-gdict-app.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-app.c' object='mate_dictionary-gdict-app.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-gdict-app.obj `if test -f 'gdict-app.c'; then $(CYGPATH_W) 'gdict-app.c'; else $(CYGPATH_W) '$(srcdir)/gdict-app.c'; fi` - -mate_dictionary-gdict-common.o: gdict-common.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-gdict-common.o -MD -MP -MF $(DEPDIR)/mate_dictionary-gdict-common.Tpo -c -o mate_dictionary-gdict-common.o `test -f 'gdict-common.c' || echo '$(srcdir)/'`gdict-common.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-gdict-common.Tpo $(DEPDIR)/mate_dictionary-gdict-common.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-common.c' object='mate_dictionary-gdict-common.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-gdict-common.o `test -f 'gdict-common.c' || echo '$(srcdir)/'`gdict-common.c - -mate_dictionary-gdict-common.obj: gdict-common.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-gdict-common.obj -MD -MP -MF $(DEPDIR)/mate_dictionary-gdict-common.Tpo -c -o mate_dictionary-gdict-common.obj `if test -f 'gdict-common.c'; then $(CYGPATH_W) 'gdict-common.c'; else $(CYGPATH_W) '$(srcdir)/gdict-common.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-gdict-common.Tpo $(DEPDIR)/mate_dictionary-gdict-common.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-common.c' object='mate_dictionary-gdict-common.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-gdict-common.obj `if test -f 'gdict-common.c'; then $(CYGPATH_W) 'gdict-common.c'; else $(CYGPATH_W) '$(srcdir)/gdict-common.c'; fi` - -mate_dictionary-gdict-pref-dialog.o: gdict-pref-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-gdict-pref-dialog.o -MD -MP -MF $(DEPDIR)/mate_dictionary-gdict-pref-dialog.Tpo -c -o mate_dictionary-gdict-pref-dialog.o `test -f 'gdict-pref-dialog.c' || echo '$(srcdir)/'`gdict-pref-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-gdict-pref-dialog.Tpo $(DEPDIR)/mate_dictionary-gdict-pref-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-pref-dialog.c' object='mate_dictionary-gdict-pref-dialog.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-gdict-pref-dialog.o `test -f 'gdict-pref-dialog.c' || echo '$(srcdir)/'`gdict-pref-dialog.c - -mate_dictionary-gdict-pref-dialog.obj: gdict-pref-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-gdict-pref-dialog.obj -MD -MP -MF $(DEPDIR)/mate_dictionary-gdict-pref-dialog.Tpo -c -o mate_dictionary-gdict-pref-dialog.obj `if test -f 'gdict-pref-dialog.c'; then $(CYGPATH_W) 'gdict-pref-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gdict-pref-dialog.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-gdict-pref-dialog.Tpo $(DEPDIR)/mate_dictionary-gdict-pref-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-pref-dialog.c' object='mate_dictionary-gdict-pref-dialog.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-gdict-pref-dialog.obj `if test -f 'gdict-pref-dialog.c'; then $(CYGPATH_W) 'gdict-pref-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gdict-pref-dialog.c'; fi` - -mate_dictionary-gdict-print.o: gdict-print.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-gdict-print.o -MD -MP -MF $(DEPDIR)/mate_dictionary-gdict-print.Tpo -c -o mate_dictionary-gdict-print.o `test -f 'gdict-print.c' || echo '$(srcdir)/'`gdict-print.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-gdict-print.Tpo $(DEPDIR)/mate_dictionary-gdict-print.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-print.c' object='mate_dictionary-gdict-print.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-gdict-print.o `test -f 'gdict-print.c' || echo '$(srcdir)/'`gdict-print.c - -mate_dictionary-gdict-print.obj: gdict-print.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-gdict-print.obj -MD -MP -MF $(DEPDIR)/mate_dictionary-gdict-print.Tpo -c -o mate_dictionary-gdict-print.obj `if test -f 'gdict-print.c'; then $(CYGPATH_W) 'gdict-print.c'; else $(CYGPATH_W) '$(srcdir)/gdict-print.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-gdict-print.Tpo $(DEPDIR)/mate_dictionary-gdict-print.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-print.c' object='mate_dictionary-gdict-print.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-gdict-print.obj `if test -f 'gdict-print.c'; then $(CYGPATH_W) 'gdict-print.c'; else $(CYGPATH_W) '$(srcdir)/gdict-print.c'; fi` - -mate_dictionary-gdict-sidebar.o: gdict-sidebar.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-gdict-sidebar.o -MD -MP -MF $(DEPDIR)/mate_dictionary-gdict-sidebar.Tpo -c -o mate_dictionary-gdict-sidebar.o `test -f 'gdict-sidebar.c' || echo '$(srcdir)/'`gdict-sidebar.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-gdict-sidebar.Tpo $(DEPDIR)/mate_dictionary-gdict-sidebar.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-sidebar.c' object='mate_dictionary-gdict-sidebar.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-gdict-sidebar.o `test -f 'gdict-sidebar.c' || echo '$(srcdir)/'`gdict-sidebar.c - -mate_dictionary-gdict-sidebar.obj: gdict-sidebar.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-gdict-sidebar.obj -MD -MP -MF $(DEPDIR)/mate_dictionary-gdict-sidebar.Tpo -c -o mate_dictionary-gdict-sidebar.obj `if test -f 'gdict-sidebar.c'; then $(CYGPATH_W) 'gdict-sidebar.c'; else $(CYGPATH_W) '$(srcdir)/gdict-sidebar.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-gdict-sidebar.Tpo $(DEPDIR)/mate_dictionary-gdict-sidebar.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-sidebar.c' object='mate_dictionary-gdict-sidebar.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-gdict-sidebar.obj `if test -f 'gdict-sidebar.c'; then $(CYGPATH_W) 'gdict-sidebar.c'; else $(CYGPATH_W) '$(srcdir)/gdict-sidebar.c'; fi` - -mate_dictionary-gdict-source-dialog.o: gdict-source-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-gdict-source-dialog.o -MD -MP -MF $(DEPDIR)/mate_dictionary-gdict-source-dialog.Tpo -c -o mate_dictionary-gdict-source-dialog.o `test -f 'gdict-source-dialog.c' || echo '$(srcdir)/'`gdict-source-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-gdict-source-dialog.Tpo $(DEPDIR)/mate_dictionary-gdict-source-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-source-dialog.c' object='mate_dictionary-gdict-source-dialog.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-gdict-source-dialog.o `test -f 'gdict-source-dialog.c' || echo '$(srcdir)/'`gdict-source-dialog.c - -mate_dictionary-gdict-source-dialog.obj: gdict-source-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-gdict-source-dialog.obj -MD -MP -MF $(DEPDIR)/mate_dictionary-gdict-source-dialog.Tpo -c -o mate_dictionary-gdict-source-dialog.obj `if test -f 'gdict-source-dialog.c'; then $(CYGPATH_W) 'gdict-source-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gdict-source-dialog.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-gdict-source-dialog.Tpo $(DEPDIR)/mate_dictionary-gdict-source-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-source-dialog.c' object='mate_dictionary-gdict-source-dialog.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-gdict-source-dialog.obj `if test -f 'gdict-source-dialog.c'; then $(CYGPATH_W) 'gdict-source-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gdict-source-dialog.c'; fi` - -mate_dictionary-gdict-window.o: gdict-window.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-gdict-window.o -MD -MP -MF $(DEPDIR)/mate_dictionary-gdict-window.Tpo -c -o mate_dictionary-gdict-window.o `test -f 'gdict-window.c' || echo '$(srcdir)/'`gdict-window.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-gdict-window.Tpo $(DEPDIR)/mate_dictionary-gdict-window.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-window.c' object='mate_dictionary-gdict-window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-gdict-window.o `test -f 'gdict-window.c' || echo '$(srcdir)/'`gdict-window.c - -mate_dictionary-gdict-window.obj: gdict-window.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-gdict-window.obj -MD -MP -MF $(DEPDIR)/mate_dictionary-gdict-window.Tpo -c -o mate_dictionary-gdict-window.obj `if test -f 'gdict-window.c'; then $(CYGPATH_W) 'gdict-window.c'; else $(CYGPATH_W) '$(srcdir)/gdict-window.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-gdict-window.Tpo $(DEPDIR)/mate_dictionary-gdict-window.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-window.c' object='mate_dictionary-gdict-window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-gdict-window.obj `if test -f 'gdict-window.c'; then $(CYGPATH_W) 'gdict-window.c'; else $(CYGPATH_W) '$(srcdir)/gdict-window.c'; fi` - -mate_dictionary-main.o: main.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-main.o -MD -MP -MF $(DEPDIR)/mate_dictionary-main.Tpo -c -o mate_dictionary-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-main.Tpo $(DEPDIR)/mate_dictionary-main.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='mate_dictionary-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c - -mate_dictionary-main.obj: main.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -MT mate_dictionary-main.obj -MD -MP -MF $(DEPDIR)/mate_dictionary-main.Tpo -c -o mate_dictionary-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary-main.Tpo $(DEPDIR)/mate_dictionary-main.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='mate_dictionary-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_CFLAGS) $(CFLAGS) -c -o mate_dictionary-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` - -mate_dictionary_applet-gdict-about.o: gdict-about.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -MT mate_dictionary_applet-gdict-about.o -MD -MP -MF $(DEPDIR)/mate_dictionary_applet-gdict-about.Tpo -c -o mate_dictionary_applet-gdict-about.o `test -f 'gdict-about.c' || echo '$(srcdir)/'`gdict-about.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary_applet-gdict-about.Tpo $(DEPDIR)/mate_dictionary_applet-gdict-about.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-about.c' object='mate_dictionary_applet-gdict-about.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -c -o mate_dictionary_applet-gdict-about.o `test -f 'gdict-about.c' || echo '$(srcdir)/'`gdict-about.c - -mate_dictionary_applet-gdict-about.obj: gdict-about.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -MT mate_dictionary_applet-gdict-about.obj -MD -MP -MF $(DEPDIR)/mate_dictionary_applet-gdict-about.Tpo -c -o mate_dictionary_applet-gdict-about.obj `if test -f 'gdict-about.c'; then $(CYGPATH_W) 'gdict-about.c'; else $(CYGPATH_W) '$(srcdir)/gdict-about.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary_applet-gdict-about.Tpo $(DEPDIR)/mate_dictionary_applet-gdict-about.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-about.c' object='mate_dictionary_applet-gdict-about.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -c -o mate_dictionary_applet-gdict-about.obj `if test -f 'gdict-about.c'; then $(CYGPATH_W) 'gdict-about.c'; else $(CYGPATH_W) '$(srcdir)/gdict-about.c'; fi` - -mate_dictionary_applet-gdict-aligned-window.o: gdict-aligned-window.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -MT mate_dictionary_applet-gdict-aligned-window.o -MD -MP -MF $(DEPDIR)/mate_dictionary_applet-gdict-aligned-window.Tpo -c -o mate_dictionary_applet-gdict-aligned-window.o `test -f 'gdict-aligned-window.c' || echo '$(srcdir)/'`gdict-aligned-window.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary_applet-gdict-aligned-window.Tpo $(DEPDIR)/mate_dictionary_applet-gdict-aligned-window.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-aligned-window.c' object='mate_dictionary_applet-gdict-aligned-window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -c -o mate_dictionary_applet-gdict-aligned-window.o `test -f 'gdict-aligned-window.c' || echo '$(srcdir)/'`gdict-aligned-window.c - -mate_dictionary_applet-gdict-aligned-window.obj: gdict-aligned-window.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -MT mate_dictionary_applet-gdict-aligned-window.obj -MD -MP -MF $(DEPDIR)/mate_dictionary_applet-gdict-aligned-window.Tpo -c -o mate_dictionary_applet-gdict-aligned-window.obj `if test -f 'gdict-aligned-window.c'; then $(CYGPATH_W) 'gdict-aligned-window.c'; else $(CYGPATH_W) '$(srcdir)/gdict-aligned-window.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary_applet-gdict-aligned-window.Tpo $(DEPDIR)/mate_dictionary_applet-gdict-aligned-window.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-aligned-window.c' object='mate_dictionary_applet-gdict-aligned-window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -c -o mate_dictionary_applet-gdict-aligned-window.obj `if test -f 'gdict-aligned-window.c'; then $(CYGPATH_W) 'gdict-aligned-window.c'; else $(CYGPATH_W) '$(srcdir)/gdict-aligned-window.c'; fi` - -mate_dictionary_applet-gdict-applet.o: gdict-applet.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -MT mate_dictionary_applet-gdict-applet.o -MD -MP -MF $(DEPDIR)/mate_dictionary_applet-gdict-applet.Tpo -c -o mate_dictionary_applet-gdict-applet.o `test -f 'gdict-applet.c' || echo '$(srcdir)/'`gdict-applet.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary_applet-gdict-applet.Tpo $(DEPDIR)/mate_dictionary_applet-gdict-applet.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-applet.c' object='mate_dictionary_applet-gdict-applet.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -c -o mate_dictionary_applet-gdict-applet.o `test -f 'gdict-applet.c' || echo '$(srcdir)/'`gdict-applet.c - -mate_dictionary_applet-gdict-applet.obj: gdict-applet.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -MT mate_dictionary_applet-gdict-applet.obj -MD -MP -MF $(DEPDIR)/mate_dictionary_applet-gdict-applet.Tpo -c -o mate_dictionary_applet-gdict-applet.obj `if test -f 'gdict-applet.c'; then $(CYGPATH_W) 'gdict-applet.c'; else $(CYGPATH_W) '$(srcdir)/gdict-applet.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary_applet-gdict-applet.Tpo $(DEPDIR)/mate_dictionary_applet-gdict-applet.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-applet.c' object='mate_dictionary_applet-gdict-applet.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -c -o mate_dictionary_applet-gdict-applet.obj `if test -f 'gdict-applet.c'; then $(CYGPATH_W) 'gdict-applet.c'; else $(CYGPATH_W) '$(srcdir)/gdict-applet.c'; fi` - -mate_dictionary_applet-gdict-common.o: gdict-common.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -MT mate_dictionary_applet-gdict-common.o -MD -MP -MF $(DEPDIR)/mate_dictionary_applet-gdict-common.Tpo -c -o mate_dictionary_applet-gdict-common.o `test -f 'gdict-common.c' || echo '$(srcdir)/'`gdict-common.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary_applet-gdict-common.Tpo $(DEPDIR)/mate_dictionary_applet-gdict-common.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-common.c' object='mate_dictionary_applet-gdict-common.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -c -o mate_dictionary_applet-gdict-common.o `test -f 'gdict-common.c' || echo '$(srcdir)/'`gdict-common.c - -mate_dictionary_applet-gdict-common.obj: gdict-common.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -MT mate_dictionary_applet-gdict-common.obj -MD -MP -MF $(DEPDIR)/mate_dictionary_applet-gdict-common.Tpo -c -o mate_dictionary_applet-gdict-common.obj `if test -f 'gdict-common.c'; then $(CYGPATH_W) 'gdict-common.c'; else $(CYGPATH_W) '$(srcdir)/gdict-common.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary_applet-gdict-common.Tpo $(DEPDIR)/mate_dictionary_applet-gdict-common.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-common.c' object='mate_dictionary_applet-gdict-common.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -c -o mate_dictionary_applet-gdict-common.obj `if test -f 'gdict-common.c'; then $(CYGPATH_W) 'gdict-common.c'; else $(CYGPATH_W) '$(srcdir)/gdict-common.c'; fi` - -mate_dictionary_applet-gdict-pref-dialog.o: gdict-pref-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -MT mate_dictionary_applet-gdict-pref-dialog.o -MD -MP -MF $(DEPDIR)/mate_dictionary_applet-gdict-pref-dialog.Tpo -c -o mate_dictionary_applet-gdict-pref-dialog.o `test -f 'gdict-pref-dialog.c' || echo '$(srcdir)/'`gdict-pref-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary_applet-gdict-pref-dialog.Tpo $(DEPDIR)/mate_dictionary_applet-gdict-pref-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-pref-dialog.c' object='mate_dictionary_applet-gdict-pref-dialog.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -c -o mate_dictionary_applet-gdict-pref-dialog.o `test -f 'gdict-pref-dialog.c' || echo '$(srcdir)/'`gdict-pref-dialog.c - -mate_dictionary_applet-gdict-pref-dialog.obj: gdict-pref-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -MT mate_dictionary_applet-gdict-pref-dialog.obj -MD -MP -MF $(DEPDIR)/mate_dictionary_applet-gdict-pref-dialog.Tpo -c -o mate_dictionary_applet-gdict-pref-dialog.obj `if test -f 'gdict-pref-dialog.c'; then $(CYGPATH_W) 'gdict-pref-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gdict-pref-dialog.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary_applet-gdict-pref-dialog.Tpo $(DEPDIR)/mate_dictionary_applet-gdict-pref-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-pref-dialog.c' object='mate_dictionary_applet-gdict-pref-dialog.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -c -o mate_dictionary_applet-gdict-pref-dialog.obj `if test -f 'gdict-pref-dialog.c'; then $(CYGPATH_W) 'gdict-pref-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gdict-pref-dialog.c'; fi` - -mate_dictionary_applet-gdict-print.o: gdict-print.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -MT mate_dictionary_applet-gdict-print.o -MD -MP -MF $(DEPDIR)/mate_dictionary_applet-gdict-print.Tpo -c -o mate_dictionary_applet-gdict-print.o `test -f 'gdict-print.c' || echo '$(srcdir)/'`gdict-print.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary_applet-gdict-print.Tpo $(DEPDIR)/mate_dictionary_applet-gdict-print.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-print.c' object='mate_dictionary_applet-gdict-print.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -c -o mate_dictionary_applet-gdict-print.o `test -f 'gdict-print.c' || echo '$(srcdir)/'`gdict-print.c - -mate_dictionary_applet-gdict-print.obj: gdict-print.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -MT mate_dictionary_applet-gdict-print.obj -MD -MP -MF $(DEPDIR)/mate_dictionary_applet-gdict-print.Tpo -c -o mate_dictionary_applet-gdict-print.obj `if test -f 'gdict-print.c'; then $(CYGPATH_W) 'gdict-print.c'; else $(CYGPATH_W) '$(srcdir)/gdict-print.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary_applet-gdict-print.Tpo $(DEPDIR)/mate_dictionary_applet-gdict-print.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-print.c' object='mate_dictionary_applet-gdict-print.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -c -o mate_dictionary_applet-gdict-print.obj `if test -f 'gdict-print.c'; then $(CYGPATH_W) 'gdict-print.c'; else $(CYGPATH_W) '$(srcdir)/gdict-print.c'; fi` - -mate_dictionary_applet-gdict-sidebar.o: gdict-sidebar.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -MT mate_dictionary_applet-gdict-sidebar.o -MD -MP -MF $(DEPDIR)/mate_dictionary_applet-gdict-sidebar.Tpo -c -o mate_dictionary_applet-gdict-sidebar.o `test -f 'gdict-sidebar.c' || echo '$(srcdir)/'`gdict-sidebar.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary_applet-gdict-sidebar.Tpo $(DEPDIR)/mate_dictionary_applet-gdict-sidebar.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-sidebar.c' object='mate_dictionary_applet-gdict-sidebar.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -c -o mate_dictionary_applet-gdict-sidebar.o `test -f 'gdict-sidebar.c' || echo '$(srcdir)/'`gdict-sidebar.c - -mate_dictionary_applet-gdict-sidebar.obj: gdict-sidebar.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -MT mate_dictionary_applet-gdict-sidebar.obj -MD -MP -MF $(DEPDIR)/mate_dictionary_applet-gdict-sidebar.Tpo -c -o mate_dictionary_applet-gdict-sidebar.obj `if test -f 'gdict-sidebar.c'; then $(CYGPATH_W) 'gdict-sidebar.c'; else $(CYGPATH_W) '$(srcdir)/gdict-sidebar.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary_applet-gdict-sidebar.Tpo $(DEPDIR)/mate_dictionary_applet-gdict-sidebar.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-sidebar.c' object='mate_dictionary_applet-gdict-sidebar.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -c -o mate_dictionary_applet-gdict-sidebar.obj `if test -f 'gdict-sidebar.c'; then $(CYGPATH_W) 'gdict-sidebar.c'; else $(CYGPATH_W) '$(srcdir)/gdict-sidebar.c'; fi` - -mate_dictionary_applet-gdict-source-dialog.o: gdict-source-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -MT mate_dictionary_applet-gdict-source-dialog.o -MD -MP -MF $(DEPDIR)/mate_dictionary_applet-gdict-source-dialog.Tpo -c -o mate_dictionary_applet-gdict-source-dialog.o `test -f 'gdict-source-dialog.c' || echo '$(srcdir)/'`gdict-source-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary_applet-gdict-source-dialog.Tpo $(DEPDIR)/mate_dictionary_applet-gdict-source-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-source-dialog.c' object='mate_dictionary_applet-gdict-source-dialog.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -c -o mate_dictionary_applet-gdict-source-dialog.o `test -f 'gdict-source-dialog.c' || echo '$(srcdir)/'`gdict-source-dialog.c - -mate_dictionary_applet-gdict-source-dialog.obj: gdict-source-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -MT mate_dictionary_applet-gdict-source-dialog.obj -MD -MP -MF $(DEPDIR)/mate_dictionary_applet-gdict-source-dialog.Tpo -c -o mate_dictionary_applet-gdict-source-dialog.obj `if test -f 'gdict-source-dialog.c'; then $(CYGPATH_W) 'gdict-source-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gdict-source-dialog.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_dictionary_applet-gdict-source-dialog.Tpo $(DEPDIR)/mate_dictionary_applet-gdict-source-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gdict-source-dialog.c' object='mate_dictionary_applet-gdict-source-dialog.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_dictionary_applet_CFLAGS) $(CFLAGS) -c -o mate_dictionary_applet-gdict-source-dialog.obj `if test -f 'gdict-source-dialog.c'; then $(CYGPATH_W) 'gdict-source-dialog.c'; else $(CYGPATH_W) '$(srcdir)/gdict-source-dialog.c'; fi` - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libexecdir)"; 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: - -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-binPROGRAMS clean-generic clean-libexecPROGRAMS \ - clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f ./$(DEPDIR)/mate_dictionary-gdict-about.Po - -rm -f ./$(DEPDIR)/mate_dictionary-gdict-app.Po - -rm -f ./$(DEPDIR)/mate_dictionary-gdict-common.Po - -rm -f ./$(DEPDIR)/mate_dictionary-gdict-pref-dialog.Po - -rm -f ./$(DEPDIR)/mate_dictionary-gdict-print.Po - -rm -f ./$(DEPDIR)/mate_dictionary-gdict-sidebar.Po - -rm -f ./$(DEPDIR)/mate_dictionary-gdict-source-dialog.Po - -rm -f ./$(DEPDIR)/mate_dictionary-gdict-window.Po - -rm -f ./$(DEPDIR)/mate_dictionary-main.Po - -rm -f ./$(DEPDIR)/mate_dictionary_applet-gdict-about.Po - -rm -f ./$(DEPDIR)/mate_dictionary_applet-gdict-aligned-window.Po - -rm -f ./$(DEPDIR)/mate_dictionary_applet-gdict-applet.Po - -rm -f ./$(DEPDIR)/mate_dictionary_applet-gdict-common.Po - -rm -f ./$(DEPDIR)/mate_dictionary_applet-gdict-pref-dialog.Po - -rm -f ./$(DEPDIR)/mate_dictionary_applet-gdict-print.Po - -rm -f ./$(DEPDIR)/mate_dictionary_applet-gdict-sidebar.Po - -rm -f ./$(DEPDIR)/mate_dictionary_applet-gdict-source-dialog.Po - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS install-libexecPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -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 ./$(DEPDIR)/mate_dictionary-gdict-about.Po - -rm -f ./$(DEPDIR)/mate_dictionary-gdict-app.Po - -rm -f ./$(DEPDIR)/mate_dictionary-gdict-common.Po - -rm -f ./$(DEPDIR)/mate_dictionary-gdict-pref-dialog.Po - -rm -f ./$(DEPDIR)/mate_dictionary-gdict-print.Po - -rm -f ./$(DEPDIR)/mate_dictionary-gdict-sidebar.Po - -rm -f ./$(DEPDIR)/mate_dictionary-gdict-source-dialog.Po - -rm -f ./$(DEPDIR)/mate_dictionary-gdict-window.Po - -rm -f ./$(DEPDIR)/mate_dictionary-main.Po - -rm -f ./$(DEPDIR)/mate_dictionary_applet-gdict-about.Po - -rm -f ./$(DEPDIR)/mate_dictionary_applet-gdict-aligned-window.Po - -rm -f ./$(DEPDIR)/mate_dictionary_applet-gdict-applet.Po - -rm -f ./$(DEPDIR)/mate_dictionary_applet-gdict-common.Po - -rm -f ./$(DEPDIR)/mate_dictionary_applet-gdict-pref-dialog.Po - -rm -f ./$(DEPDIR)/mate_dictionary_applet-gdict-print.Po - -rm -f ./$(DEPDIR)/mate_dictionary_applet-gdict-sidebar.Po - -rm -f ./$(DEPDIR)/mate_dictionary_applet-gdict-source-dialog.Po - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS uninstall-libexecPROGRAMS - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ - clean-binPROGRAMS clean-generic clean-libexecPROGRAMS \ - clean-libtool cscopelist-am ctags ctags-am distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS 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-libexecPROGRAMS install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \ - uninstall-binPROGRAMS uninstall-libexecPROGRAMS - -.PRECIOUS: Makefile - - --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 -Nru mate-utils-1.26.0/mate-dictionary.pot mate-utils-1.26.1/mate-dictionary.pot --- mate-utils-1.26.0/mate-dictionary.pot 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/mate-dictionary.pot 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,594 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2021-06-04 20:34+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Put one translator per line, in the form NAME , YEAR1, YEAR2 +msgctxt "_" +msgid "translator-credits" +msgstr "" + +#. (itstool) path: articleinfo/title +#: C/index.docbook:24 +msgid "Dictionary Manual" +msgstr "" + +#. (itstool) path: abstract/para +#: C/index.docbook:27 +msgid "Dictionary enables you to look up definitions and correct spellings of words." +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:33 +msgid "2015-2021 MATE Documentation Project" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:37 +msgid "2005 Emmanuele Bassi" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:52 +#: C/index.docbook:96 +msgid "MATE Documentation Project" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:55 +#: C/index.docbook:104 +msgid "GNOME Documentation Project" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:60 +msgid "MATE Documentation Team Mate desktop " +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:66 +msgid "Emmanuele Bassi
ebassi@gmail.com
" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:94 +msgid "Wolfgang Ulbrich" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:90 +#: C/index.docbook:99 +msgid "Dictionary Manual V1.10.0 July 2015 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:103 +msgid "Emmanuele Bassi" +msgstr "" + +#. (itstool) path: articleinfo/releaseinfo +#: C/index.docbook:109 +msgid "This manual describes version 1.10 of Dictionary." +msgstr "" + +#. (itstool) path: legalnotice/title +#: C/index.docbook:111 +msgid "Feedback" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/index.docbook:112 +msgid "To report a bug or make a suggestion regarding the Dictionary application or this manual, follow the directions in the MATE Feedback Page." +msgstr "" + +#. (itstool) path: article/indexterm +#: C/index.docbook:121 +msgid "Dictionary" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:128 +msgid "Introduction" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:130 +msgid "The Dictionary application enables you to search words and terms on a dictionary source." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:137 +msgid "Getting Started" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:141 +msgid "To Start Dictionary" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:143 +msgid "You can start Dictionary in the following ways:" +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:148 +msgid "Applications menu" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:150 +msgid "Choose Accessories Dictionary." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:156 +msgid "Command line" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:158 +msgid "Execute the following command: mate-dictionary" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:163 +msgid "Once started, the Dictionary window is displayed:" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:167 +#: C/index.docbook:196 +#: C/index.docbook:238 +#: C/index.docbook:279 +#: C/index.docbook:299 +#: C/index.docbook:368 +msgid "Dictionary Window" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:171 +msgctxt "_" +msgid "external ref='figures/mate-dictionary-application.png' md5='fb48a9e5863bfb2b3811df2e28489eb7'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:169 +msgid " Shows Dictionary main window." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:184 +msgid "Usage" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:187 +msgid "Looking up a word" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:189 +msgid "To look up a word, type it into the entry field and press Enter." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:192 +msgid "If some definition for the word is found, it will appear inside the main window area:" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:200 +msgctxt "_" +msgid "external ref='figures/mate-dictionary-lookup.png' md5='c41c96af4de54f457a2081aad009a8d0'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:198 +msgid " Shows a definition inside the Dictionary main window." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:207 +msgid "Otherwise, an error dialog will appear, with a message explaining the nature of the error." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:213 +msgid "Save look up results" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:215 +msgid "To save the results of a look up, choose FileSave a Copy. Enter a name for the file in the Save a Copy dialog, then click Save." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:220 +msgid "Print look up results" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:222 +msgid "To print the results of a look up, choose FilePrint." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:224 +msgid "Inside the Print dialog you can select the printer to use, the paper format, the number of copies." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:227 +msgid "To see a preview of what will be printed, click Preview." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:230 +msgid "To print, click Print." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:235 +msgid "Find Text" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:242 +msgctxt "_" +msgid "external ref='figures/mate-dictionary-find.png' md5='d8bf0677084e2d9998a7942faaab5379'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:240 +msgid " Shows the Dictionary Find pane inside the main window." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:250 +msgid "To find text inside the results of a look up, perform the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:254 +msgid "Choose Edit Find to display the Find pane." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:256 +msgid "Type the text you want to find inside the Search entry." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:258 +msgid "To find the next occurrence of the text, click Next. To find the previous occurrence of the text, click Previous." +msgstr "" + +#. (itstool) path: sect1/title +#. (itstool) path: sect2/title +#: C/index.docbook:269 +#: C/index.docbook:459 +msgid "Preferences" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:271 +msgid "To change the Dictionary application preferences, choose EditPreferences." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:276 +msgid "Dictionary Sources" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:283 +msgctxt "_" +msgid "external ref='figures/mate-dictionary-preferences-source.png' md5='5470b15e64e66924477f150c4f47e96d'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:281 +msgid " Shows the Source tab of the Preferences dialog." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:290 +msgid "To change the dictionary source used to look up words, select the desired source from the list." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:296 +msgid "Adding a new source" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:303 +msgctxt "_" +msgid "external ref='figures/mate-dictionary-add-source.png' md5='d059507fee77bb176fce53373951756b'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:301 +msgid " Shows the Add Source dialog." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:310 +msgid "To add a new dictionary source, perform the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:313 +msgid "Click on the Add button" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:314 +msgid "Edit the name of the new source inside the Description entry" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:315 +msgid "Change the transport type of the new source using the Transport combo box" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:316 +msgid "Edit the attributes of the new source" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:317 +msgid "Click Add" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:320 +msgid "Different source transport types uses different attributes. This is the list of available attributes per transport type:" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:327 +msgid "Transport" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:328 +msgid "Attributes" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:333 +msgid "Dictionary Server" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:335 +msgid "Hostname: the hostname of the dictionary server" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:336 +msgid "Port: the port of the dictionary server" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:347 +msgid "Removing a source" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:349 +msgid "To remove a dictionary source, perform the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:352 +msgid "Select the source you wish to remove" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:353 +msgid "Click the Remove button" +msgstr "" + +#. (itstool) path: warning/para +#: C/index.docbook:356 +msgid "If you remove a dictionary source it will be permanently deleted from the list of available sources. Also, as some sources might be defined system-wide you may actually not be able to remove them unless you have the right ownership privileges." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:365 +msgid "Print Options" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:372 +msgctxt "_" +msgid "external ref='figures/mate-dictionary-preferences-print.png' md5='12a65f07cb333db4c7ba743d1d12a00f'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:370 +msgid " Shows the Print tab inside the Preferences dialog." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:379 +msgid "If you want to change the font name and size used when printing, perform the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:383 +msgid "Click on the Print Font button" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:384 +msgid "Select the font and size you wish to use" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:385 +msgid "Click Ok" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:394 +msgid "The Dictionary Applet" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:396 +msgid "The Dictionary application comes with a panel applet, the Dictionary Applet. You can add the Dictionary Applet applet to a panel and look up words in dictionaries." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:402 +#: C/index.docbook:438 +msgid "Dictionary Applet Window" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:406 +msgctxt "_" +msgid "external ref='figures/mate-dictionary-applet.png' md5='538c7fa191540f99dd964963a1079677'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:404 +msgid " Shows Dictionary Applet." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:416 +msgid "To Start Dictionary Applet" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:418 +msgid "To add Dictionary Applet to a panel, right-click on the panel, then choose Add to Panel. Select Dictionary Applet in the Add to the panel dialog, then click OK." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:427 +msgid "Using the Dictionary Applet" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:429 +msgid "To look up a word, type it into the entry field, and press Enter or right-click on the dictionary icon and then choose Look up." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:434 +msgid "If some definition for the word was found, a window will appear, with the text of the definitions:" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:442 +msgctxt "_" +msgid "external ref='figures/mate-dictionary-applet-window.png' md5='e26ac4847d2e7b53c6bba7d8e1a519c4'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:440 +msgid " Shows Dictionary Applet main window." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:449 +msgid "Click Save to save the definitions to a text file. Click Print to print the definitions. Click Clear to clear the definitions." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:453 +msgid "You can make the window disappear by left-clicking on the dictionary icon or by pressing Esc." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:461 +msgid "To configure the Dictionary Applet, right-click on the dictionary icon, then choose Preferences." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:464 +msgid "The Preferences dialog is the same used by the Dictionary application, so refer to " +msgstr "" + +#. (itstool) path: para/ulink +#: C/legal.xml:9 +msgid "link" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml: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-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 -Nru mate-utils-1.26.0/mate-disk-image-mounter/data/Makefile.in mate-utils-1.26.1/mate-disk-image-mounter/data/Makefile.in --- mate-utils-1.26.0/mate-disk-image-mounter/data/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/mate-disk-image-mounter/data/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,618 +0,0 @@ -# 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 . - -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 = mate-disk-image-mounter/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 = -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; }; \ - } -am__installdirs = "$(DESTDIR)$(diskimagemounterdir)" -DATA = $(diskimagemounter_DATA) -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.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@ -NULL = -diskimagemounterdir = $(datadir)/applications -diskimagemounter_in_files = mate-disk-image-mounter.desktop.in -diskimagemounter_DATA = $(diskimagemounter_in_files:.desktop.in=.desktop) -EXTRA_DIST = \ - $(diskimagemounter_in_files) \ - $(NULL) - -CLEANFILES = \ - $(diskimagemounter_DATA) \ - $(NULL) - -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 mate-disk-image-mounter/data/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign mate-disk-image-mounter/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): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-diskimagemounterDATA: $(diskimagemounter_DATA) - @$(NORMAL_INSTALL) - @list='$(diskimagemounter_DATA)'; test -n "$(diskimagemounterdir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(diskimagemounterdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(diskimagemounterdir)" || 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)$(diskimagemounterdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(diskimagemounterdir)" || exit $$?; \ - done - -uninstall-diskimagemounterDATA: - @$(NORMAL_UNINSTALL) - @list='$(diskimagemounter_DATA)'; test -n "$(diskimagemounterdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(diskimagemounterdir)'; $(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 $(DATA) -installdirs: - for dir in "$(DESTDIR)$(diskimagemounterdir)"; 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-diskimagemounterDATA - -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-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-diskimagemounterDATA - -.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-data install-data-am \ - install-diskimagemounterDATA install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man 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-diskimagemounterDATA - -.PRECIOUS: Makefile - - -$(diskimagemounter_DATA): $(diskimagemounter_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 $< $@ - --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 -Nru mate-utils-1.26.0/mate-disk-image-mounter/Makefile.in mate-utils-1.26.1/mate-disk-image-mounter/Makefile.in --- mate-utils-1.26.0/mate-disk-image-mounter/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/mate-disk-image-mounter/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,727 +0,0 @@ -# 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 . -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 = mate-disk-image-mounter -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 = -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 = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir distdir-am -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -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@ -SUBDIRS = src data -all: all-recursive - -.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 mate-disk-image-mounter/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign mate-disk-image-mounter/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): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -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: - -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-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ - check-am clean clean-generic clean-libtool cscopelist-am ctags \ - ctags-am distclean distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am 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-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - installdirs-am maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ - ps ps-am tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - --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 -Nru mate-utils-1.26.0/mate-disk-image-mounter/src/main.c mate-utils-1.26.1/mate-disk-image-mounter/src/main.c --- mate-utils-1.26.0/mate-disk-image-mounter/src/main.c 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-disk-image-mounter/src/main.c 2023-05-09 13:31:58.000000000 +0000 @@ -191,8 +191,10 @@ s = g_option_context_get_help (o, FALSE, NULL); g_printerr ("%s", s); g_free (s); + g_option_context_free (o); goto out; } + g_option_context_free (o); if (argc > 1) { diff -Nru mate-utils-1.26.0/mate-disk-image-mounter/src/Makefile.in mate-utils-1.26.1/mate-disk-image-mounter/src/Makefile.in --- mate-utils-1.26.0/mate-disk-image-mounter/src/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/mate-disk-image-mounter/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,794 +0,0 @@ -# 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 . - -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@ -bin_PROGRAMS = mate-disk-image-mounter$(EXEEXT) -subdir = mate-disk-image-mounter/src -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 = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = -am_mate_disk_image_mounter_OBJECTS = \ - mate_disk_image_mounter-main.$(OBJEXT) $(am__objects_1) -mate_disk_image_mounter_OBJECTS = \ - $(am_mate_disk_image_mounter_OBJECTS) -am__DEPENDENCIES_1 = -mate_disk_image_mounter_DEPENDENCIES = $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) -am__v_lt_0 = --silent -am__v_lt_1 = -mate_disk_image_mounter_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(mate_disk_image_mounter_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -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 = -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__maybe_remake_depfiles = depfiles -am__depfiles_remade = ./$(DEPDIR)/mate_disk_image_mounter-main.Po -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -SOURCES = $(mate_disk_image_mounter_SOURCES) -DIST_SOURCES = $(mate_disk_image_mounter_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp -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@ -NULL = -mate_disk_image_mounter_SOURCES = \ - main.c \ - $(NULL) - -mate_disk_image_mounter_CPPFLAGS = \ - -I. \ - -I$(srcdir) \ - -DG_LOG_DOMAIN=\"mate-disk-image-mounter\" \ - -DMATELOCALEDIR=\""$(datadir)/locale"\" \ - $(NULL) - -mate_disk_image_mounter_CFLAGS = \ - $(GLIB_CFLAGS) \ - $(UDISKS2_CFLAGS) \ - $(GTK_CFLAGS) \ - $(WARN_CFLAGS) \ - $(NULL) - -mate_disk_image_mounter_LDADD = \ - $(GLIB_LIBS) \ - $(UDISKS2_LIBS) \ - $(GTK_LIBS) \ - $(NULL) - -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(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 mate-disk-image-mounter/src/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign mate-disk-image-mounter/src/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): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ - fi; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p \ - || test -f $$p1 \ - ; then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' \ - -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' \ - `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list - -mate-disk-image-mounter$(EXEEXT): $(mate_disk_image_mounter_OBJECTS) $(mate_disk_image_mounter_DEPENDENCIES) $(EXTRA_mate_disk_image_mounter_DEPENDENCIES) - @rm -f mate-disk-image-mounter$(EXEEXT) - $(AM_V_CCLD)$(mate_disk_image_mounter_LINK) $(mate_disk_image_mounter_OBJECTS) $(mate_disk_image_mounter_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_disk_image_mounter-main.Po@am__quote@ # am--include-marker - -$(am__depfiles_remade): - @$(MKDIR_P) $(@D) - @echo '# dummy' >$@-t && $(am__mv) $@-t $@ - -am--depfiles: $(am__depfiles_remade) - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< - -mate_disk_image_mounter-main.o: main.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mate_disk_image_mounter_CPPFLAGS) $(CPPFLAGS) $(mate_disk_image_mounter_CFLAGS) $(CFLAGS) -MT mate_disk_image_mounter-main.o -MD -MP -MF $(DEPDIR)/mate_disk_image_mounter-main.Tpo -c -o mate_disk_image_mounter-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_image_mounter-main.Tpo $(DEPDIR)/mate_disk_image_mounter-main.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='mate_disk_image_mounter-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mate_disk_image_mounter_CPPFLAGS) $(CPPFLAGS) $(mate_disk_image_mounter_CFLAGS) $(CFLAGS) -c -o mate_disk_image_mounter-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c - -mate_disk_image_mounter-main.obj: main.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mate_disk_image_mounter_CPPFLAGS) $(CPPFLAGS) $(mate_disk_image_mounter_CFLAGS) $(CFLAGS) -MT mate_disk_image_mounter-main.obj -MD -MP -MF $(DEPDIR)/mate_disk_image_mounter-main.Tpo -c -o mate_disk_image_mounter-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_disk_image_mounter-main.Tpo $(DEPDIR)/mate_disk_image_mounter-main.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='mate_disk_image_mounter-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mate_disk_image_mounter_CPPFLAGS) $(CPPFLAGS) $(mate_disk_image_mounter_CFLAGS) $(CFLAGS) -c -o mate_disk_image_mounter-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; 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: - -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-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f ./$(DEPDIR)/mate_disk_image_mounter-main.Po - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -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 ./$(DEPDIR)/mate_disk_image_mounter-main.Po - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \ - ctags ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-binPROGRAMS \ - 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-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am uninstall-binPROGRAMS - -.PRECIOUS: Makefile - - --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 -Nru mate-utils-1.26.0/mate-disk-usage-analyzer.pot mate-utils-1.26.1/mate-disk-usage-analyzer.pot --- mate-utils-1.26.0/mate-disk-usage-analyzer.pot 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/mate-disk-usage-analyzer.pot 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,515 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2021-06-04 20:34+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Put one translator per line, in the form NAME , YEAR1, YEAR2 +msgctxt "_" +msgid "translator-credits" +msgstr "" + +#. (itstool) path: articleinfo/title +#: C/index.docbook:23 +msgid "Disk Usage Analyzer Manual" +msgstr "" + +#. (itstool) path: abstract/para +#: C/index.docbook:26 +msgid "Disk Usage Analyzer is a graphical, menu-driven viewer that you can use to view and monitor your disk usage and folder structure." +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:30 +msgid "2015-2021 MATE Documentation Project" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:34 +msgid "2006 Fabio Marzocca" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:47 +#: C/index.docbook:103 +msgid "MATE Documentation Project" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:50 +#: C/index.docbook:113 +msgid "GNOME Documentation Project" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:56 +msgid "MATE Documentation Team MATE Desktop " +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:62 +msgid "Fabio Marzocca GNOME Documentation Project
thesaltydog@gmail.com
" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:71 +msgid "Fabio Marzocca
thesaltydog@gmail.com
" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:101 +msgid "Wolfgang Ulbrich" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:97 +msgid "Disk Usage Analyzer Manual 1.10 July 2015 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:110 +msgid "Emmanuele Bassi ebassi@gmail.com" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:106 +msgid "Disk Usage Analyzer Manual 1.0 April 2006 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: articleinfo/releaseinfo +#: C/index.docbook:118 +msgid "This manual describes version 1.10 of Disk Usage Analyzer." +msgstr "" + +#. (itstool) path: legalnotice/title +#: C/index.docbook:121 +msgid "Feedback" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/index.docbook:122 +msgid "To report a bug or make a suggestion regarding the Disk Usage Analyzer application or this manual, follow the directions in the MATE Feedback Page." +msgstr "" + +#. (itstool) path: article/indexterm +#: C/index.docbook:130 +msgid "Disk Usage Analyzer" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:138 +msgid "Introduction" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:140 +msgid "Disk Usage Analyzer is a graphical, menu-driven application to analyze disk usage in any MATE environment. Disk Usage Analyzer can easily scan either the whole filesystem tree, or a specific user-requested directory branch (local or remote)." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:144 +msgid "It also auto-detects in real-time any changes made to your home directory as far as any mounted/unmounted device. Disk Usage Analyzer also provides a full graphical treemap window for each selected folder." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:153 +msgid "Getting Started" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:155 +msgid "Disk Usage Analyzer can be started in three ways:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:157 +msgid "from MATE menu ApplicationsAccessories;" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:159 +msgid "from a terminal window;" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:161 +msgid "from Caja \"Open with...\" ;" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:166 +msgid "If you want to start Disk Usage Analyzer from a terminal window, just type:" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:168 +msgid "mate-disk-usage-analyzer <full_path_to_a_directory>, then press Return." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:170 +msgid "If launched from MATE menu, Disk Usage Analyzer 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 Disk Usage Analyzer from the MATE Menu, the following window is displayed." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:175 +msgid "Disk Usage Analyzer Window" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:179 +msgctxt "_" +msgid "external ref='figures/baobab_window.png' md5='381c84c892310cbc49afc0d5e90ad555'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:177 +msgid " Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. " +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:189 +msgid "The user can then:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:191 +msgid "start a full filesystem scan;" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:193 +msgid "select a specific local directory branch to scan" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:195 +msgid "select a remote server and folder to scan" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:197 +msgid "set preferences" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:207 +msgid "Usage" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:210 +msgid "Full filesystem scan" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:211 +msgid "To start a full filesystem scan select AnalyzerScan Filesystem from the menu, or press on the Scan Filesystem toolbar button." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:214 +msgid "When the scanning process ends up, you will get the full tree of your filesystem, like the one in the next Figure." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:219 +msgid "Disk Usage Analyzer Full filesystem scan" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:223 +msgctxt "_" +msgid "external ref='figures/baobab_fullscan.png' md5='c36d630b13ddb1e1712125dc34262229'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:221 +msgid " Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. " +msgstr "" + +#. (itstool) path: note/para +#: C/index.docbook:233 +msgid "When you run a full filesystem scan, Disk Usage Analyzer 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." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:238 +msgid "Disk Usage Analyzer 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 ViewAllocated Space ." +msgstr "" + +#. (itstool) path: warning/para +#: C/index.docbook:243 +msgid "Disk Usage Analyzer 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." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:247 +msgid "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." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:254 +msgid "Single folder scan" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:256 +msgid "To start a single folder scan select AnalyzerScan Folder... from the menu, or press on the Scan Folder toolbar button." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:263 +msgid "Remote scan" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:265 +msgid "If you need to scan a remote server-folder, just click on the toolbar icon Scan Remote Folder or select AnalyzerScan Remote Folder from the menu and you will get the following dialog box. Disk Usage Analyzer can connect to a server through ssh, ftp, smb, http and https." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:272 +msgid "Disk Usage Analyzer Remote folder scan" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:276 +msgctxt "_" +msgid "external ref='figures/baobab_remote.png' md5='b8d834a11cf8f227e1aefdee167a1a67'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:274 +msgid " Shows Disk Usage Analyzer remote folder dialog window. " +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:293 +msgid "Preferences" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:295 +msgid "To change the Disk Usage Analyzer application preferences, choose EditPreferences." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:300 +msgid "Disk Usage Analyzer Preferences Window" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:304 +msgctxt "_" +msgid "external ref='figures/baobab_prefs.png' md5='64e7c2ce647708579f9cc749c63aeca5'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:302 +msgid " Preferences window " +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:315 +msgid "Select devices to be scanned" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:316 +msgid "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." +msgstr "" + +#. (itstool) path: note/para +#: C/index.docbook:319 +msgid "The device mounted on \"/\" cannot be excluded from the scan." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:323 +msgid "Enable monitoring of home" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:324 +msgid "If this option is checked, Disk Usage Analyzer will constantly monitor any external changes to home directory and warn the user if a file is added/removed." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:332 +msgid "Treemaps" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:334 +msgid "Treemap concepts have been developed by Ben Shneiderman in the '90s. Read his vision on treemaps." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:339 +msgid "Disk Usage Analyzer Treemap Window" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:343 +msgctxt "_" +msgid "external ref='figures/baobab_treemaps.png' md5='b553b49db25f9d6b98efcc394a5d3689'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:341 +msgid " Treemap's theory. Shows 2 treemap diagrams " +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:354 +msgid "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." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:359 +msgid "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." +msgstr "" + +#. (itstool) path: note/para +#: C/index.docbook:368 +msgid "Treemaps are very effective when size is the most important feature to be displayed." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:374 +msgid "Ringschart" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:376 +msgid "Ringschart 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:" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:383 +msgid "Disk Usage Analyzer showing a ringschart with the file system usage" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:387 +msgctxt "_" +msgid "external ref='figures/baobab_ringschart1.png' md5='84b2e52d360fbda7311ce59a9532be7a'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:385 +msgid " After launching the application, it is showed the file system usage. Graphical representation on the right. " +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:398 +msgid "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 Ringschart 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." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:411 +msgid "Disk Usage Analyzer showing a ringschart with the usage of a folder" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:415 +msgctxt "_" +msgid "external ref='figures/baobab_ringschart2.png' md5='d938ef7e9299de5b304c7654bf14e364'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:413 +msgid " After scanning a folder. " +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:425 +msgid "The Ringschart 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." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:446 +msgid "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 ringschart 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 ringschart frame) you'll get the opposite behavior, going back one step in the hierarchy." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:457 +msgid "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." +msgstr "" + +#. (itstool) path: para/ulink +#: C/legal.xml:9 +msgid "link" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml: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-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 -Nru mate-utils-1.26.0/mate-screenshot/data/Makefile.in mate-utils-1.26.1/mate-screenshot/data/Makefile.in --- mate-utils-1.26.0/mate-screenshot/data/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/mate-screenshot/data/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,717 +0,0 @@ -# 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 . - -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 = mate-screenshot/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.screenshot.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)$(mate_screenshotdir)" -NROFF = nroff -MANS = $(man_MANS) -DATA = $(appdata_DATA) $(mate_screenshot_DATA) -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(srcdir)/org.mate.screenshot.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@ -mate_screenshotdir = $(datadir)/applications -mate_screenshot_in_files = mate-screenshot.desktop.in -mate_screenshot_DATA = $(mate_screenshot_in_files:.desktop.in=.desktop) -man_MANS = mate-screenshot.1 -appdatadir = $(datadir)/metainfo -appdata_in_files = mate-screenshot.appdata.xml.in -appdata_DATA = $(appdata_in_files:.xml.in=.xml) -gsettings_SCHEMAS = org.mate.screenshot.gschema.xml -EXTRA_DIST = \ - $(appdata_in_files) \ - $(mate_screenshot_in_files) \ - $(man_MANS) \ - mate-screenshot.ui \ - org.mate.screenshot.gresource.xml - -CLEANFILES = \ - $(gsettings_SCHEMAS) \ - $(mate_screenshot_DATA) \ - $(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 mate-screenshot/data/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign mate-screenshot/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.screenshot.gschema.xml: $(top_builddir)/config.status $(srcdir)/org.mate.screenshot.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-mate_screenshotDATA: $(mate_screenshot_DATA) - @$(NORMAL_INSTALL) - @list='$(mate_screenshot_DATA)'; test -n "$(mate_screenshotdir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(mate_screenshotdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(mate_screenshotdir)" || 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)$(mate_screenshotdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(mate_screenshotdir)" || exit $$?; \ - done - -uninstall-mate_screenshotDATA: - @$(NORMAL_UNINSTALL) - @list='$(mate_screenshot_DATA)'; test -n "$(mate_screenshotdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(mate_screenshotdir)'; $(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 - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" distdir="$(distdir)" \ - dist-hook -check-am: all-am -check: check-am -all-am: Makefile $(MANS) $(DATA) -installdirs: - for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(appdatadir)" "$(DESTDIR)$(mate_screenshotdir)"; 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-man \ - install-mate_screenshotDATA - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-exec-local - -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-man \ - uninstall-mate_screenshotDATA - -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 dist-hook distclean distclean-generic \ - distclean-libtool distdir dvi dvi-am html html-am info info-am \ - install install-am install-appdataDATA install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-exec-local install-html \ - install-html-am install-info install-info-am install-man \ - install-man1 install-mate_screenshotDATA 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-man \ - uninstall-man1 uninstall-mate_screenshotDATA - -.PRECIOUS: Makefile - - -$(mate_screenshot_DATA): $(mate_screenshot_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@ - -dist-hook: - cd $(distdir) ; rm -f $(CLEANFILES) - -install-exec-local: - rm -f $(DESTDIR)$(mandir)/man1/mate-panel-screenshot.1 - ln -s mate-screenshot.1 $(DESTDIR)$(mandir)/man1/mate-panel-screenshot.1 - --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 -Nru mate-utils-1.26.0/mate-screenshot/Makefile.in mate-utils-1.26.1/mate-screenshot/Makefile.in --- mate-utils-1.26.0/mate-screenshot/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/mate-screenshot/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,727 +0,0 @@ -# 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 . -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 = mate-screenshot -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 = -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 = -RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ - ctags-recursive dvi-recursive html-recursive info-recursive \ - install-data-recursive install-dvi-recursive \ - install-exec-recursive install-html-recursive \ - install-info-recursive install-pdf-recursive \ - install-ps-recursive install-recursive installcheck-recursive \ - installdirs-recursive pdf-recursive ps-recursive \ - tags-recursive uninstall-recursive -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -am__recursive_targets = \ - $(RECURSIVE_TARGETS) \ - $(RECURSIVE_CLEAN_TARGETS) \ - $(am__extra_recursive_targets) -AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir distdir-am -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -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@ -SUBDIRS = data src -all: all-recursive - -.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 mate-screenshot/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign mate-screenshot/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): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run 'make' without going through this Makefile. -# To change the values of 'make' variables: instead of editing Makefiles, -# (1) if the variable is set in 'config.status', edit 'config.status' -# (which will cause the Makefiles to be regenerated when you run 'make'); -# (2) otherwise, pass the desired values on the 'make' command line. -$(am__recursive_targets): - @fail=; \ - if $(am__make_keepgoing); then \ - failcom='fail=yes'; \ - else \ - failcom='exit 1'; \ - fi; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-recursive -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-recursive - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-recursive - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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 - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - $(am__make_dryrun) \ - || test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -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: - -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-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(am__recursive_targets) install-am install-strip - -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ - check-am clean clean-generic clean-libtool cscopelist-am ctags \ - ctags-am distclean distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am 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-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - installdirs-am maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ - ps ps-am tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - --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 -Nru mate-utils-1.26.0/mate-screenshot/src/Makefile.in mate-utils-1.26.1/mate-screenshot/src/Makefile.in --- mate-utils-1.26.0/mate-screenshot/src/Makefile.in 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/mate-screenshot/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,951 +0,0 @@ -# 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 . - -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@ -bin_PROGRAMS = mate-screenshot$(EXEEXT) -subdir = mate-screenshot/src -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 = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am_mate_screenshot_OBJECTS = \ - mate_screenshot-mate-screenshot.$(OBJEXT) \ - mate_screenshot-screenshot-dialog.$(OBJEXT) \ - mate_screenshot-screenshot-shadow.$(OBJEXT) \ - mate_screenshot-screenshot-utils.$(OBJEXT) \ - mate_screenshot-screenshot-save.$(OBJEXT) \ - mate_screenshot-screenshot-xfer.$(OBJEXT) -am__objects_1 = -am__objects_2 = mate_screenshot-screenshot-resources.$(OBJEXT) \ - $(am__objects_1) -nodist_mate_screenshot_OBJECTS = $(am__objects_2) $(am__objects_1) -mate_screenshot_OBJECTS = $(am_mate_screenshot_OBJECTS) \ - $(nodist_mate_screenshot_OBJECTS) -am__DEPENDENCIES_1 = -mate_screenshot_DEPENDENCIES = $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) -am__v_lt_0 = --silent -am__v_lt_1 = -mate_screenshot_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(mate_screenshot_CFLAGS) $(CFLAGS) $(mate_screenshot_LDFLAGS) \ - $(LDFLAGS) -o $@ -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 = -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__maybe_remake_depfiles = depfiles -am__depfiles_remade = ./$(DEPDIR)/mate_screenshot-mate-screenshot.Po \ - ./$(DEPDIR)/mate_screenshot-screenshot-dialog.Po \ - ./$(DEPDIR)/mate_screenshot-screenshot-resources.Po \ - ./$(DEPDIR)/mate_screenshot-screenshot-save.Po \ - ./$(DEPDIR)/mate_screenshot-screenshot-shadow.Po \ - ./$(DEPDIR)/mate_screenshot-screenshot-utils.Po \ - ./$(DEPDIR)/mate_screenshot-screenshot-xfer.Po -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -SOURCES = $(mate_screenshot_SOURCES) $(nodist_mate_screenshot_SOURCES) -DIST_SOURCES = $(mate_screenshot_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp -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@ -NULL = -AM_CPPFLAGS = \ - -I. \ - -I$(srcdir) \ - -DMATELOCALEDIR=\""$(datadir)/locale"\" \ - $(NULL) - -BUILT_SOURCES = \ - screenshot-resources.c \ - screenshot-resources.h \ - $(NULL) - -nodist_mate_screenshot_SOURCES = \ - $(BUILT_SOURCES) \ - $(NULL) - -mate_screenshot_SOURCES = \ - mate-screenshot.c \ - screenshot-dialog.c \ - screenshot-dialog.h \ - screenshot-shadow.c \ - screenshot-shadow.h \ - screenshot-utils.c \ - screenshot-utils.h \ - screenshot-save.c \ - screenshot-save.h \ - screenshot-xfer.c \ - screenshot-xfer.h - -mate_screenshot_CFLAGS = \ - $(GLIB_CFLAGS) \ - $(GIO_CFLAGS) \ - $(LIBCANBERRA_GTK_CFLAGS) \ - $(GTHREAD_CFLAGS) \ - $(GTK_CFLAGS) \ - $(WARN_CFLAGS) \ - $(NULL) - -mate_screenshot_LDFLAGS = -export-dynamic -mate_screenshot_LDADD = \ - $(XSHAPE_LIBS) \ - $(GLIB_LIBS) \ - $(GIO_LIBS) \ - $(LIBCANBERRA_GTK_LIBS) \ - $(GTHREAD_LIBS) \ - $(GTK_LIBS) \ - -lm - -CLEANFILES = \ - $(BUILT_SOURCES) \ - $(NULL) - -all: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(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 mate-screenshot/src/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign mate-screenshot/src/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): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ - fi; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p \ - || test -f $$p1 \ - ; then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' \ - -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' \ - `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list - -mate-screenshot$(EXEEXT): $(mate_screenshot_OBJECTS) $(mate_screenshot_DEPENDENCIES) $(EXTRA_mate_screenshot_DEPENDENCIES) - @rm -f mate-screenshot$(EXEEXT) - $(AM_V_CCLD)$(mate_screenshot_LINK) $(mate_screenshot_OBJECTS) $(mate_screenshot_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_screenshot-mate-screenshot.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_screenshot-screenshot-dialog.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_screenshot-screenshot-resources.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_screenshot-screenshot-save.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_screenshot-screenshot-shadow.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_screenshot-screenshot-utils.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_screenshot-screenshot-xfer.Po@am__quote@ # am--include-marker - -$(am__depfiles_remade): - @$(MKDIR_P) $(@D) - @echo '# dummy' >$@-t && $(am__mv) $@-t $@ - -am--depfiles: $(am__depfiles_remade) - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< - -mate_screenshot-mate-screenshot.o: mate-screenshot.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -MT mate_screenshot-mate-screenshot.o -MD -MP -MF $(DEPDIR)/mate_screenshot-mate-screenshot.Tpo -c -o mate_screenshot-mate-screenshot.o `test -f 'mate-screenshot.c' || echo '$(srcdir)/'`mate-screenshot.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_screenshot-mate-screenshot.Tpo $(DEPDIR)/mate_screenshot-mate-screenshot.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mate-screenshot.c' object='mate_screenshot-mate-screenshot.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -c -o mate_screenshot-mate-screenshot.o `test -f 'mate-screenshot.c' || echo '$(srcdir)/'`mate-screenshot.c - -mate_screenshot-mate-screenshot.obj: mate-screenshot.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -MT mate_screenshot-mate-screenshot.obj -MD -MP -MF $(DEPDIR)/mate_screenshot-mate-screenshot.Tpo -c -o mate_screenshot-mate-screenshot.obj `if test -f 'mate-screenshot.c'; then $(CYGPATH_W) 'mate-screenshot.c'; else $(CYGPATH_W) '$(srcdir)/mate-screenshot.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_screenshot-mate-screenshot.Tpo $(DEPDIR)/mate_screenshot-mate-screenshot.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mate-screenshot.c' object='mate_screenshot-mate-screenshot.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -c -o mate_screenshot-mate-screenshot.obj `if test -f 'mate-screenshot.c'; then $(CYGPATH_W) 'mate-screenshot.c'; else $(CYGPATH_W) '$(srcdir)/mate-screenshot.c'; fi` - -mate_screenshot-screenshot-dialog.o: screenshot-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -MT mate_screenshot-screenshot-dialog.o -MD -MP -MF $(DEPDIR)/mate_screenshot-screenshot-dialog.Tpo -c -o mate_screenshot-screenshot-dialog.o `test -f 'screenshot-dialog.c' || echo '$(srcdir)/'`screenshot-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_screenshot-screenshot-dialog.Tpo $(DEPDIR)/mate_screenshot-screenshot-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='screenshot-dialog.c' object='mate_screenshot-screenshot-dialog.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -c -o mate_screenshot-screenshot-dialog.o `test -f 'screenshot-dialog.c' || echo '$(srcdir)/'`screenshot-dialog.c - -mate_screenshot-screenshot-dialog.obj: screenshot-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -MT mate_screenshot-screenshot-dialog.obj -MD -MP -MF $(DEPDIR)/mate_screenshot-screenshot-dialog.Tpo -c -o mate_screenshot-screenshot-dialog.obj `if test -f 'screenshot-dialog.c'; then $(CYGPATH_W) 'screenshot-dialog.c'; else $(CYGPATH_W) '$(srcdir)/screenshot-dialog.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_screenshot-screenshot-dialog.Tpo $(DEPDIR)/mate_screenshot-screenshot-dialog.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='screenshot-dialog.c' object='mate_screenshot-screenshot-dialog.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -c -o mate_screenshot-screenshot-dialog.obj `if test -f 'screenshot-dialog.c'; then $(CYGPATH_W) 'screenshot-dialog.c'; else $(CYGPATH_W) '$(srcdir)/screenshot-dialog.c'; fi` - -mate_screenshot-screenshot-shadow.o: screenshot-shadow.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -MT mate_screenshot-screenshot-shadow.o -MD -MP -MF $(DEPDIR)/mate_screenshot-screenshot-shadow.Tpo -c -o mate_screenshot-screenshot-shadow.o `test -f 'screenshot-shadow.c' || echo '$(srcdir)/'`screenshot-shadow.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_screenshot-screenshot-shadow.Tpo $(DEPDIR)/mate_screenshot-screenshot-shadow.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='screenshot-shadow.c' object='mate_screenshot-screenshot-shadow.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -c -o mate_screenshot-screenshot-shadow.o `test -f 'screenshot-shadow.c' || echo '$(srcdir)/'`screenshot-shadow.c - -mate_screenshot-screenshot-shadow.obj: screenshot-shadow.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -MT mate_screenshot-screenshot-shadow.obj -MD -MP -MF $(DEPDIR)/mate_screenshot-screenshot-shadow.Tpo -c -o mate_screenshot-screenshot-shadow.obj `if test -f 'screenshot-shadow.c'; then $(CYGPATH_W) 'screenshot-shadow.c'; else $(CYGPATH_W) '$(srcdir)/screenshot-shadow.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_screenshot-screenshot-shadow.Tpo $(DEPDIR)/mate_screenshot-screenshot-shadow.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='screenshot-shadow.c' object='mate_screenshot-screenshot-shadow.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -c -o mate_screenshot-screenshot-shadow.obj `if test -f 'screenshot-shadow.c'; then $(CYGPATH_W) 'screenshot-shadow.c'; else $(CYGPATH_W) '$(srcdir)/screenshot-shadow.c'; fi` - -mate_screenshot-screenshot-utils.o: screenshot-utils.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -MT mate_screenshot-screenshot-utils.o -MD -MP -MF $(DEPDIR)/mate_screenshot-screenshot-utils.Tpo -c -o mate_screenshot-screenshot-utils.o `test -f 'screenshot-utils.c' || echo '$(srcdir)/'`screenshot-utils.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_screenshot-screenshot-utils.Tpo $(DEPDIR)/mate_screenshot-screenshot-utils.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='screenshot-utils.c' object='mate_screenshot-screenshot-utils.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -c -o mate_screenshot-screenshot-utils.o `test -f 'screenshot-utils.c' || echo '$(srcdir)/'`screenshot-utils.c - -mate_screenshot-screenshot-utils.obj: screenshot-utils.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -MT mate_screenshot-screenshot-utils.obj -MD -MP -MF $(DEPDIR)/mate_screenshot-screenshot-utils.Tpo -c -o mate_screenshot-screenshot-utils.obj `if test -f 'screenshot-utils.c'; then $(CYGPATH_W) 'screenshot-utils.c'; else $(CYGPATH_W) '$(srcdir)/screenshot-utils.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_screenshot-screenshot-utils.Tpo $(DEPDIR)/mate_screenshot-screenshot-utils.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='screenshot-utils.c' object='mate_screenshot-screenshot-utils.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -c -o mate_screenshot-screenshot-utils.obj `if test -f 'screenshot-utils.c'; then $(CYGPATH_W) 'screenshot-utils.c'; else $(CYGPATH_W) '$(srcdir)/screenshot-utils.c'; fi` - -mate_screenshot-screenshot-save.o: screenshot-save.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -MT mate_screenshot-screenshot-save.o -MD -MP -MF $(DEPDIR)/mate_screenshot-screenshot-save.Tpo -c -o mate_screenshot-screenshot-save.o `test -f 'screenshot-save.c' || echo '$(srcdir)/'`screenshot-save.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_screenshot-screenshot-save.Tpo $(DEPDIR)/mate_screenshot-screenshot-save.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='screenshot-save.c' object='mate_screenshot-screenshot-save.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -c -o mate_screenshot-screenshot-save.o `test -f 'screenshot-save.c' || echo '$(srcdir)/'`screenshot-save.c - -mate_screenshot-screenshot-save.obj: screenshot-save.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -MT mate_screenshot-screenshot-save.obj -MD -MP -MF $(DEPDIR)/mate_screenshot-screenshot-save.Tpo -c -o mate_screenshot-screenshot-save.obj `if test -f 'screenshot-save.c'; then $(CYGPATH_W) 'screenshot-save.c'; else $(CYGPATH_W) '$(srcdir)/screenshot-save.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_screenshot-screenshot-save.Tpo $(DEPDIR)/mate_screenshot-screenshot-save.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='screenshot-save.c' object='mate_screenshot-screenshot-save.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -c -o mate_screenshot-screenshot-save.obj `if test -f 'screenshot-save.c'; then $(CYGPATH_W) 'screenshot-save.c'; else $(CYGPATH_W) '$(srcdir)/screenshot-save.c'; fi` - -mate_screenshot-screenshot-xfer.o: screenshot-xfer.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -MT mate_screenshot-screenshot-xfer.o -MD -MP -MF $(DEPDIR)/mate_screenshot-screenshot-xfer.Tpo -c -o mate_screenshot-screenshot-xfer.o `test -f 'screenshot-xfer.c' || echo '$(srcdir)/'`screenshot-xfer.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_screenshot-screenshot-xfer.Tpo $(DEPDIR)/mate_screenshot-screenshot-xfer.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='screenshot-xfer.c' object='mate_screenshot-screenshot-xfer.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -c -o mate_screenshot-screenshot-xfer.o `test -f 'screenshot-xfer.c' || echo '$(srcdir)/'`screenshot-xfer.c - -mate_screenshot-screenshot-xfer.obj: screenshot-xfer.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -MT mate_screenshot-screenshot-xfer.obj -MD -MP -MF $(DEPDIR)/mate_screenshot-screenshot-xfer.Tpo -c -o mate_screenshot-screenshot-xfer.obj `if test -f 'screenshot-xfer.c'; then $(CYGPATH_W) 'screenshot-xfer.c'; else $(CYGPATH_W) '$(srcdir)/screenshot-xfer.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_screenshot-screenshot-xfer.Tpo $(DEPDIR)/mate_screenshot-screenshot-xfer.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='screenshot-xfer.c' object='mate_screenshot-screenshot-xfer.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -c -o mate_screenshot-screenshot-xfer.obj `if test -f 'screenshot-xfer.c'; then $(CYGPATH_W) 'screenshot-xfer.c'; else $(CYGPATH_W) '$(srcdir)/screenshot-xfer.c'; fi` - -mate_screenshot-screenshot-resources.o: screenshot-resources.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -MT mate_screenshot-screenshot-resources.o -MD -MP -MF $(DEPDIR)/mate_screenshot-screenshot-resources.Tpo -c -o mate_screenshot-screenshot-resources.o `test -f 'screenshot-resources.c' || echo '$(srcdir)/'`screenshot-resources.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_screenshot-screenshot-resources.Tpo $(DEPDIR)/mate_screenshot-screenshot-resources.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='screenshot-resources.c' object='mate_screenshot-screenshot-resources.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -c -o mate_screenshot-screenshot-resources.o `test -f 'screenshot-resources.c' || echo '$(srcdir)/'`screenshot-resources.c - -mate_screenshot-screenshot-resources.obj: screenshot-resources.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -MT mate_screenshot-screenshot-resources.obj -MD -MP -MF $(DEPDIR)/mate_screenshot-screenshot-resources.Tpo -c -o mate_screenshot-screenshot-resources.obj `if test -f 'screenshot-resources.c'; then $(CYGPATH_W) 'screenshot-resources.c'; else $(CYGPATH_W) '$(srcdir)/screenshot-resources.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/mate_screenshot-screenshot-resources.Tpo $(DEPDIR)/mate_screenshot-screenshot-resources.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='screenshot-resources.c' object='mate_screenshot-screenshot-resources.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_screenshot_CFLAGS) $(CFLAGS) -c -o mate_screenshot-screenshot-resources.obj `if test -f 'screenshot-resources.c'; then $(CYGPATH_W) 'screenshot-resources.c'; else $(CYGPATH_W) '$(srcdir)/screenshot-resources.c'; fi` - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -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: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) 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." - -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f ./$(DEPDIR)/mate_screenshot-mate-screenshot.Po - -rm -f ./$(DEPDIR)/mate_screenshot-screenshot-dialog.Po - -rm -f ./$(DEPDIR)/mate_screenshot-screenshot-resources.Po - -rm -f ./$(DEPDIR)/mate_screenshot-screenshot-save.Po - -rm -f ./$(DEPDIR)/mate_screenshot-screenshot-shadow.Po - -rm -f ./$(DEPDIR)/mate_screenshot-screenshot-utils.Po - -rm -f ./$(DEPDIR)/mate_screenshot-screenshot-xfer.Po - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS install-exec-local - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -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 ./$(DEPDIR)/mate_screenshot-mate-screenshot.Po - -rm -f ./$(DEPDIR)/mate_screenshot-screenshot-dialog.Po - -rm -f ./$(DEPDIR)/mate_screenshot-screenshot-resources.Po - -rm -f ./$(DEPDIR)/mate_screenshot-screenshot-save.Po - -rm -f ./$(DEPDIR)/mate_screenshot-screenshot-shadow.Po - -rm -f ./$(DEPDIR)/mate_screenshot-screenshot-utils.Po - -rm -f ./$(DEPDIR)/mate_screenshot-screenshot-xfer.Po - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: all check install install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \ - ctags ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-binPROGRAMS \ - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-exec-local install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \ - uninstall-binPROGRAMS - -.PRECIOUS: Makefile - - -screenshot-resources.h screenshot-resources.c: $(srcdir)/../data/org.mate.screenshot.gresource.xml Makefile $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies --sourcedir $(srcdir)/../data $(srcdir)/../data/org.mate.screenshot.gresource.xml) - $(AM_V_GEN) XMLLINT=$(XMLLINT) $(GLIB_COMPILE_RESOURCES) --target $@ --sourcedir $(srcdir)/../data --generate --c-name screenshot $< - -install-exec-local: - rm -f $(DESTDIR)$(bindir)/mate-panel-screenshot - ln -s mate-screenshot $(DESTDIR)$(bindir)/mate-panel-screenshot - --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 -Nru mate-utils-1.26.0/mate-screenshot/src/mate-screenshot.c mate-utils-1.26.1/mate-screenshot/src/mate-screenshot.c --- mate-utils-1.26.0/mate-screenshot/src/mate-screenshot.c 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/mate-screenshot/src/mate-screenshot.c 2023-05-09 13:31:58.000000000 +0000 @@ -1180,8 +1180,10 @@ /* Find various dirs */ last_save_dir = g_settings_get_string (settings, LAST_SAVE_DIRECTORY_KEY); - if (!last_save_dir || !last_save_dir[0]) + + if (*last_save_dir == '\0') { + g_free (last_save_dir); last_save_dir = get_desktop_dir (); } else if (last_save_dir[0] == '~') diff -Nru mate-utils-1.26.0/mate-search-tool.pot mate-utils-1.26.1/mate-search-tool.pot --- mate-utils-1.26.0/mate-search-tool.pot 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/mate-search-tool.pot 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,778 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2021-06-04 20:34+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Put one translator per line, in the form NAME , YEAR1, YEAR2 +msgctxt "_" +msgid "translator-credits" +msgstr "" + +#. (itstool) path: articleinfo/title +#: C/index.docbook:23 +msgid "Search for Files Manual" +msgstr "" + +#. (itstool) path: abstract/para +#: C/index.docbook:26 +msgid "A search tool to find files, folders and documents on your computer." +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:31 +msgid "2015-2021 MATE Documentation Project" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:35 +msgid "2005 Dennis Cranston" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:39 +msgid "2002 2003 2004 Sun Microsystems" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:45 +msgid "2000 Alexander Kirillov" +msgstr "" + +#. (itstool) path: publisher/publishername +#: C/index.docbook:58 +msgid "MATE Documentation Project" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:61 +#: C/index.docbook:155 +#: C/index.docbook:163 +#: C/index.docbook:171 +#: C/index.docbook:179 +#: C/index.docbook:187 +#: C/index.docbook:197 +msgid "GNOME Documentation Project" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:67 +msgid "MATE Documentation Team Search for Files Maintainer " +msgstr "" + +#. (itstool) path: affiliation/address +#: C/index.docbook:78 +#, no-wrap +msgid "" +"dennis_cranston@yahoo.com" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:73 +msgid "Dennis Cranston Search for Files Maintainer <_:address-1/> " +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:81 +msgid "Sun GNOME Documentation Team Sun Microsystems <_:address-1/> " +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:89 +msgid "Alexander Kirillov GNOME Documentation Project
kirillov@math.sunysb.edu
" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:125 +msgid "Wolfgang Ulbrich" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:127 +#: C/index.docbook:137 +#: C/index.docbook:147 +msgid "Search for Files Maintainer" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:121 +msgid "Search for Files Manual V1.10 July 2015 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:134 +msgid "Joachim Noreiko jnoreiko@yahoo.com" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:130 +msgid "Search for Files Manual V2.7 June 2005 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:144 +msgid "Dennis Cranston dennis_cranston@yahoo.com" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:140 +msgid "Search for Files Manual V2.6 January 2005 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:154 +#: C/index.docbook:162 +#: C/index.docbook:170 +#: C/index.docbook:178 +#: C/index.docbook:186 +msgid "Sun GNOME Documentation Team" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:150 +msgid "Search for Files Manual V2.4 February 2004 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:158 +msgid "Search for Files Manual V2.3 September 2002 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:166 +msgid "Search for Filesl Manual V2.2 August 2002 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:174 +msgid "Search for Files Manual V2.1 July 2002 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:182 +msgid "Search for Files Manual V2.0 May 2002 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:194 +msgid "Alexander Kirillov kirillov@math.sunysb.edu" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:190 +msgid "Search for Files Manual 2000 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: articleinfo/releaseinfo +#: C/index.docbook:202 +msgid "This manual describes version 1.10 of Search for Files." +msgstr "" + +#. (itstool) path: legalnotice/title +#: C/index.docbook:205 +msgid "Feedback" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/index.docbook:206 +msgid "To report a bug or make a suggestion regarding the Search for Files application or this manual, follow the directions in the MATE Feedback Page." +msgstr "" + +#. (itstool) path: article/indexterm +#: C/index.docbook:212 +msgid "Search Tool" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:220 +msgid "Introduction" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:221 +msgid "The Search for Files application enables you to search for files on your system. To perform a basic search, you can type a filename or a partial filename, with or without wildcards. To refine your search, you can apply additional search options." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:222 +msgid "Search for Files uses the find, grep, and locate UNIX commands. By default, when performing a basic search Search for Files first uses the locate command, and then uses the slower but more thorough find command." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:223 +msgid "The case sensitivity of the search depends on your operating system. For example, on Linux, the find, grep, and locate commands support the -i option, so all searches are case-insensitive." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:227 +msgid "Getting Started" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:229 +msgid "You can start Search for Files in the following ways:" +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:233 +msgid "From a Menu Bar on a panel" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:235 +msgid "Choose PlacesSearch for Files..." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:239 +msgid "From a Main Menu on a panel" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:241 +msgid "Choose Search for Files..." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:245 +msgid "From a command line" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:247 +msgid "Execute the following command: mate-search-tool" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:254 +msgid "When you start Search for Files, the following window is displayed." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:258 +msgid "Search for Files Window" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:262 +msgctxt "_" +msgid "external ref='figures/mate-search-tool_window.png' md5='bb0f097535682e53e6bd43c66f0373c7'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:260 +msgid " Shows Search for Files main window. " +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:277 +msgid "Usage" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:280 +msgid "To Perform a Basic Search" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:282 +msgid "To perform a basic search for a file on the system, perform the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:284 +msgid "Enter the search text in the Name contains field. The search text can be a filename or partial filename, with or without wildcards, as shown in the following table:" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:294 +msgid "Name Contains Text" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:296 +msgid "Example" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:298 +msgid "Result" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:304 +msgid "Full or partial filename" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:308 +msgid "myfile.txt" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:312 +msgid "Search for Files searches for all files that contain the text myfile.txt in the filename." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:318 +msgid "Partial filename combined with wildcards (*, [, ])" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:322 +msgid "*.[ch]" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:326 +msgid "Search for Files searches for all files that have extension .c or .h." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:334 +msgid "In the Look in folder field, select the folder or device from which you want Search for Files to begin the search." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:336 +msgid "Click Find to perform the search." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:339 +msgid "Search for Files searches in the directory that you specify and the subdirectories of the directory. Search for Files displays the results of the search in the Search results list box. If Search for Files does not find any files that match the search criteria, the application displays the message \"No files found\" in the Search results list box." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:343 +msgid "By default, Search for Files will perform a quick search using the locate command followed by a more thorough second search using the find command. The locate command is faster because it uses a database of information about files. If this database is more than a week old, Search for Files could warn you that the search results may be out of date and give you the option of disabling the quick search. To update the database, run the command updatedb as the root user." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:347 +msgid "To Add Search Options" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:348 +msgid "You can add additional options to search for a file on the system. To add search options, perform the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:350 +msgid "Click on the Select more options text." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:351 +msgid "Click on the Available options drop-down list." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:352 +msgid "Select the search option that you want to apply." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:353 +msgid "Click Add." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:354 +msgid "Specify the required search information for the search option, as described in ." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:355 +msgid "Repeat the above steps for each search option that you want to apply." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:357 +msgid "To remove a search option from the current search, click on the Remove button next to the option." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "To disable the search options from the current search, click on the Select more options text." +msgstr "" + +#. (itstool) path: table/title +#: C/index.docbook:361 +msgid "Search Options" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:368 +msgid "Option Name" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:370 +msgid "Description" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:376 +msgid "Contains the text" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:378 +msgid "Search for files of type plain text that contain the specified text." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:382 +msgid "Date modified less than" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:384 +msgid "Search for files that are modified less than the period specified in days." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:388 +msgid "Date modified more than" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:390 +msgid "Search for files that are modified longer than the period specified in days." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:394 +msgid "Size at least" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:396 +msgid "Search for files that are equal to or larger than the size specified in kilobytes." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:400 +msgid "Size at most" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:402 +msgid "Search for files that are smaller than or equal to the size specified in kilobytes." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:406 +msgid "File is empty" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:408 +msgid "Search for empty files." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:412 +msgid "Owned by user" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:414 +msgid "Search for files that are owned by the user specified. Type the name of the user in the text box provided." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:418 +msgid "Owned by group" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:420 +msgid "Search for files that are owned by the group specified. Type the name of the group in the text box provided." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:424 +msgid "Owner is unrecognized" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:426 +msgid "Search for files that are owned by a user or group that is unknown to the system." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:430 +msgid "Name does not contain" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:432 +msgid "Search for filenames that do not contain the string that you enter. Enter a full filename or a partial filename with wildcards in the field provided. Use * to indicate a sequence of characters. Use ? to indicate a single character. The search is case-sensitive." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:436 +msgid "Name matches regular expression" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:438 +msgid "Search for files that contain the specified regular expression in their directory path or filename. Type the regular expression in the text box provided." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:442 +msgid "Show hidden and backup files" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:444 +msgid "Include hidden and backup files in the search." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:448 +msgid "Follow symbolic links" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:450 +msgid "Follow symbolic links when searching for files." +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:454 +msgid "Exclude other filesystems" +msgstr "" + +#. (itstool) path: entry/para +#: C/index.docbook:456 +msgid "Search in directories that are in the same filesystem as the start directory." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:466 +msgid "To Stop a Search" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:467 +msgid "Click Stop to stop a search before Search for Files completes the search." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:471 +msgid "To Open a Displayed File" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:472 +msgid "To open a file displayed in the Search results list box, perform one of the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:474 +msgid "Right-click on the file, then choose Open." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:475 +msgid "Double-click on the file." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:477 +msgid "To open the folder that contains a file displayed in the Search results list box, right-click on the file, then choose Open Containing Folder." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:481 +msgid "To Delete a Displayed File" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:482 +msgid "To delete a file displayed in the Search results list box, right-click on the file, then choose Move to Trash." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:493 +msgid "To Save the Search Results" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:494 +msgid "To save the results of the last search that Search for Files performed, right-click in the Search results list, then choose Save Results As. Enter the name of the file to which you want to save the results, then click Save." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:502 +msgid "Settings" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:504 +msgid "Search for Files provides gsettings keys to modify some of its behavior. The gsettings values can be changed by starting the Configuration Editor in the following ways:" +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:508 +msgid "Applications menu" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:510 +msgid "Choose System Toolsdconf Editor." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:514 +msgid "Command line" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:516 +msgid "Execute the following command: dconf-editor" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:522 +msgid "Disable Quick Search" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:523 +msgid "Key name: org.mate.search-tool.disable-quick-search" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:524 +#: C/index.docbook:531 +#: C/index.docbook:552 +msgid "Default value: false" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:525 +msgid "Search for Files speeds up file name searches by using the locate command. Locate provides a secure way to index and quickly search for file names. Because locate relies on a file index, the Search results list may not always be up to date." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:529 +msgid "Disable Quick Search Second Scan" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:530 +msgid "Key name: org.mate.search-tool.disable-quick-search-second-scan" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:532 +msgid "After completing a quick search, Search for Files will perform a thorough search using the find command. The purpose of this second scan is to find files that have not been indexed. Files that match the search criteria are added to the Search results list keeping the list up to date." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:536 +msgid "Quick Search Excluded Paths" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:537 +msgid "Key name: org.mate.search-tool.quick-search-excluded-paths" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:538 +msgid "Default values: [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*]" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:539 +msgid "Search for Files will not perform a quick search for paths defined by this key. File name searches in the defined paths will use the find command. The wildcards '*' and '?' are supported." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:543 +msgid "Quick Search Second Scan Excluded Paths" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:544 +msgid "Key name: org.mate.search-tool.quick-search-second-scan-excluded-paths" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:545 +msgid "Default values: [/]" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:546 +msgid "Search for Files will not perform a second scan after a quick search for the paths defined by this key. Quick searches in the defined paths will not be followed by a thorough search using the find command. The wildcards '*' and '?' are supported." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:550 +msgid "Show Additional Options" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:551 +msgid "Key name: org.mate.search-tool.show-additional-options" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:553 +msgid "This key determines if the Select more options section is expanded when Search for Files is started." +msgstr "" + +#. (itstool) path: para/ulink +#: C/legal.xml:9 +msgid "link" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml: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-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 -Nru mate-utils-1.26.0/mate-system-log.pot mate-utils-1.26.1/mate-system-log.pot --- mate-utils-1.26.0/mate-system-log.pot 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/mate-system-log.pot 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,399 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2021-06-04 20:34+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Put one translator per line, in the form NAME , YEAR1, YEAR2 +msgctxt "_" +msgid "translator-credits" +msgstr "" + +#. (itstool) path: articleinfo/title +#: C/index.docbook:23 +msgid "System Log Viewer Manual" +msgstr "" + +#. (itstool) path: abstract/para +#: C/index.docbook:26 +msgid "System Log Viewer is a graphical user interface to view and monitor system log files." +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:30 +msgid "2015-2021 MATE Documentation Project" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:34 +msgid "2003 Sun Microsystems" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:38 +msgid "2000 Judith Samson" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:51 +#: C/index.docbook:122 +msgid "MATE Documentation Project" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:54 +#: C/index.docbook:132 +#: C/index.docbook:142 +#: C/index.docbook:152 +#: C/index.docbook:162 +#: C/index.docbook:172 +#: C/index.docbook:182 +#: C/index.docbook:192 +msgid "GNOME Documentation Project" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:60 +msgid "MATE Documentation Team Mate desktop " +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:66 +msgid "Sun GNOME Documentation Team Sun Microsystems
gdocteam@sun.com
" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:75 +msgid "Judith Samson GNOME Documentation Project
judith@samsonsource.com
" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:84 +msgid "Paul Cutler GNOME Documentation Team
pcutler@gnome.org
" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:93 +msgid "Vincent Noel
vincent.noel@gmail.com
" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:120 +msgid "Wolfgang Ulbrich" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:116 +msgid "System Log Viewer Manual V1.10 July 2015 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:129 +msgid "Paul Cutler pcutler@gnome.org" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:125 +msgid "System Log Viewer Manual V2.5 October 2009 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:139 +msgid "Vincent Noel vincent.noel@gmail.com" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:135 +msgid "System Log Viewer Manual V2.4 October 2005 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:149 +#: C/index.docbook:159 +#: C/index.docbook:169 +#: C/index.docbook:179 +msgid "Sun GNOME Documentation Team gdocteam@sun.com" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:145 +msgid "System Log Viewer Manual V2.3 October 2002 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:155 +msgid "System Log Viewer Manual V2.2 August 2002 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:165 +msgid "System Log Viewer Manual V2.1 July 2002 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:175 +msgid "System Log Viewer Manual V2.0 May 2002 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:189 +msgid "Judith Samson judith@samsonsource.com" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:185 +msgid "Logview Manual 2000 <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: articleinfo/releaseinfo +#: C/index.docbook:197 +msgid "This manual describes version 1.10 of System Log Viewer." +msgstr "" + +#. (itstool) path: legalnotice/title +#: C/index.docbook:200 +msgid "Feedback" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/index.docbook:201 +msgid "To report a bug or make a suggestion regarding the System Log Viewer application or this manual, follow the directions in the MATE Feedback Page." +msgstr "" + +#. (itstool) path: article/indexterm +#: C/index.docbook:210 +msgid "System Log Viewer" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:218 +msgid "Introduction" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:220 +msgid "System Log Viewer is a graphical, menu-driven viewer that you can use to view and monitor your system logs. System Log Viewer comes with a few functions that can help you manage your logs, including a log monitor and log statistics display." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:228 +msgid "System Log Viewer is useful if you are new to system administration because it provides an easier, more user-friendly display of your logs than a text display of the log file. It is also useful for more experienced administrators, as it contains a monitor to enable you to continuously monitor crucial logs." +msgstr "" + +#. (itstool) path: warning/para +#: C/index.docbook:237 +msgid "System Log Viewer is useful only to those who have access to the system log files, which generally requires root access." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:244 +msgid "Getting Started" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:246 +msgid "You can start System Log Viewer in the following ways:" +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:250 +msgid "Applications menu" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:252 +msgid "Choose System ToolsLog File Viewer." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:256 +msgid "Command line" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:258 +msgid "Type mate-system-log, then press Return." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:265 +msgid "When you start System Log Viewer, the following window is displayed." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:269 +msgid "System Log Viewer Window" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:273 +msgctxt "_" +msgid "external ref='figures/syslog_window.png' md5='7cb5e186fe792ed85e408ff33f21eced'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:271 +msgid " Shows System Log Viewer main window. Contains menubar, display area, scrollbars, and statusbar. " +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:282 +msgid "The first time you start System Log Viewer, the application displays several log files by default (such as /var/log/messages). Opened logs are listed on the left side of the application window. The log selected in this list is displayed in the main area of the application window." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:290 +msgid "By default, System Log Viewer monitors every opened log, and any change appears automatically in the main window. See for more information." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:299 +msgid "Usage" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:302 +msgid "To View a Log" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:303 +msgid "To view a log, choose FileOpen. In the Open Log dialog, select the log that you want to open, then click Open. Use the scrollbars to scroll through the log." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:309 +msgid "You can open as many logs as you want. System Log Viewer displays one log at a time in the System Log Viewer window. Opened logs are listed on the left side of the application window. The log selected in this list is displayed in the main area of the application window. To display another log already opened in System Log Viewer, select it in the log list." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:317 +msgid "Note that System Log Viewer also lets you open zipped logs (whole filenames end in \".gz\")." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:322 +msgid "To Copy Log Lines to the Clipboard" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:323 +msgid "To copy one or more log lines to the clipboard, just select the lines in the main area and choose the EditCopy menu option. If you want to copy the entire log to the clipboard, select it entirely using the EditSelect All menu option, then choose EditCopy." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:335 +msgid "To Hide the Sidebar" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:336 +msgid "To hide the left sidebar, which contains the log list and calendar, just select the ViewSide pane menu option." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:343 +msgid "To Monitor Logs" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:344 +msgid "You can use System Log Viewer to monitor logs. By default, all logs opened in System Log Viewer are monitored for changes. If new lines are added to a log monitored by System Log Viewer, the log name will appear in bold in the log list. If the log is currently displayed in the main area, the new lines will appear automatically at the end of the log and, after five seconds, the log name will turn back to normal in the list." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:355 +msgid "To View Log Information" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:356 +msgid "Log information are generally displayed in the status bar, including :" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:359 +msgid "Number of lines in the log." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:361 +msgid "Size of the log in bytes." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:363 +msgid "Date the log was last modified." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:366 +msgid "The status bar can be displayed or hidden using the ViewStatusbar option." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:372 +msgid "To Close a Log" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:373 +msgid "To close a log, choose FileClose." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:379 +msgid "To Exit System Log Viewer" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:380 +msgid "To exit System Log Viewer, choose FileQuit." +msgstr "" + +#. (itstool) path: para/ulink +#: C/legal.xml:9 +msgid "link" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml: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-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 -Nru mate-utils-1.26.0/mate-utils.pot mate-utils-1.26.1/mate-utils.pot --- mate-utils-1.26.0/mate-utils.pot 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/mate-utils.pot 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,3176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-utils package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: mate-utils 1.25.1\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 +#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 +msgid "MATE Disk Usage Analyzer" +msgstr "" + +#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:4 +msgid "Check folder sizes and available disk space" +msgstr "" + +#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 +msgid "MATE;check;disk;usage;analyze;size;space;" +msgstr "" + +#: baobab/data/baobab-dialog-scan-props.ui:18 +msgid "Disk Usage Analyzer Preferences" +msgstr "" + +#: baobab/data/baobab-dialog-scan-props.ui:32 +#: baobab/data/baobab-main-window.ui:129 logview/src/logview-window.c:825 +#: mate-dictionary/src/gdict-applet.c:1173 +#: mate-dictionary/src/gdict-window.c:1262 +#: mate-screenshot/data/mate-screenshot.ui:41 +msgid "_Help" +msgstr "" + +#: baobab/data/baobab-dialog-scan-props.ui:48 logview/src/logview-window.c:829 +#: mate-dictionary/src/gdict-window.c:1273 +msgid "_Close" +msgstr "" + +#: baobab/data/baobab-dialog-scan-props.ui:81 +msgid "Select _devices to include in filesystem scan:" +msgstr "" + +#: baobab/data/baobab-dialog-scan-props.ui:119 +msgid "_Monitor changes to your home folder" +msgstr "" + +#: baobab/data/baobab-main-window.ui:10 +msgid "_Analyzer" +msgstr "" + +#: baobab/data/baobab-main-window.ui:17 +msgid "Scan _Home Folder" +msgstr "" + +#: baobab/data/baobab-main-window.ui:26 +msgid "Scan _Filesystem" +msgstr "" + +#: baobab/data/baobab-main-window.ui:35 +msgid "Scan F_older..." +msgstr "" + +#: baobab/data/baobab-main-window.ui:44 +msgid "S_can Remote Folder..." +msgstr "" + +#: baobab/data/baobab-main-window.ui:74 logview/src/logview-window.c:822 +#: mate-dictionary/src/gdict-window.c:1259 +msgid "_Edit" +msgstr "" + +#: baobab/data/baobab-main-window.ui:80 +msgid "_Expand All" +msgstr "" + +#: baobab/data/baobab-main-window.ui:87 +msgid "_Collapse All" +msgstr "" + +#: baobab/data/baobab-main-window.ui:101 logview/src/logview-window.c:823 +#: mate-dictionary/src/gdict-window.c:1260 +msgid "_View" +msgstr "" + +#: baobab/data/baobab-main-window.ui:108 +msgid "_Toolbar" +msgstr "" + +#: baobab/data/baobab-main-window.ui:115 +msgid "St_atusbar" +msgstr "" + +#: baobab/data/baobab-main-window.ui:122 +msgid "All_ocated Space" +msgstr "" + +#: baobab/data/baobab-main-window.ui:136 logview/src/logview-window.c:851 +#: mate-dictionary/src/gdict-window.c:1312 +msgid "_Contents" +msgstr "" + +#: baobab/data/baobab-main-window.ui:183 baobab/src/baobab.c:1237 +#: baobab/src/callbacks.c:103 +msgid "Disk Usage Analyzer" +msgstr "" + +#: baobab/data/baobab-main-window.ui:224 baobab/data/baobab-main-window.ui:236 +msgid "Scan home folder" +msgstr "" + +#: baobab/data/baobab-main-window.ui:225 +msgid "Scan Home" +msgstr "" + +#: baobab/data/baobab-main-window.ui:248 +msgid "Scan filesystem" +msgstr "" + +#: baobab/data/baobab-main-window.ui:249 +msgid "Scan Filesystem" +msgstr "" + +#: baobab/data/baobab-main-window.ui:265 +msgid "Scan a folder" +msgstr "" + +#: baobab/data/baobab-main-window.ui:266 +msgid "Scan Folder" +msgstr "" + +#: baobab/data/baobab-main-window.ui:282 +msgid "Scan a remote folder" +msgstr "" + +#: baobab/data/baobab-main-window.ui:283 +msgid "Scan Remote Folder" +msgstr "" + +#: baobab/data/baobab-main-window.ui:312 +msgid "Stop scanning" +msgstr "" + +#: baobab/data/baobab-main-window.ui:328 +msgid "Refresh" +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:9 +msgid "Monitor Home" +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:10 +msgid "Whether any change to the home directory should be monitored." +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:14 +msgid "Excluded partitions URIs" +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:15 +msgid "A list of URIs for partitions to be excluded from scanning." +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:21 +msgid "Toolbar is Visible" +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:22 +msgid "Whether the toolbar should be visible in main window." +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:26 +msgid "Statusbar is Visible" +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:27 +msgid "Whether the status bar at the bottom of main window should be visible." +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:31 +msgid "Subfolder tips visible" +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:32 +msgid "Whether the subfolder tooltips of the selected folder are drawn." +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:36 +msgid "Active Chart" +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:37 +msgid "Which type of chart should be displayed." +msgstr "" + +#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:8 +msgid "A disk usage analyzing tool for MATE Desktop" +msgstr "" + +#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 +msgid "" +"As its name implies, Disk Usage Analyzer is a graphical utility that you can " +"use to view and monitor your disk usage and folder structure. It displays " +"summary information in ring or treemap charts." +msgstr "" + +#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 +msgid "" +"You can perform scans on a file system, your home or any other folder - " +"local or remote. There is also an option to constantly monitor any external " +"changes to the home directory and warn the user if a file is added/removed." +msgstr "" + +#: baobab/src/baobab.c:141 baobab/src/baobab.c:358 +msgid "Scanning..." +msgstr "" + +#: baobab/src/baobab.c:186 +msgid "Total filesystem capacity:" +msgstr "" + +#: baobab/src/baobab.c:187 +msgid "used:" +msgstr "" + +#: baobab/src/baobab.c:188 +msgid "available:" +msgstr "" + +#: baobab/src/baobab.c:243 baobab/src/baobab.c:300 baobab/src/callbacks.c:268 +msgid "Calculating percentage bars..." +msgstr "" + +#: baobab/src/baobab.c:254 baobab/src/baobab.c:1300 baobab/src/callbacks.c:272 +msgid "Ready" +msgstr "" + +#: baobab/src/baobab.c:392 +msgid "Total filesystem capacity" +msgstr "" + +#: baobab/src/baobab.c:416 +msgid "Total filesystem usage" +msgstr "" + +#: baobab/src/baobab.c:458 +msgid "contains hardlinks for:" +msgstr "" + +#: baobab/src/baobab.c:467 +#, c-format +msgid "%5d item" +msgid_plural "%5d items" +msgstr[0] "" +msgstr[1] "" + +#: baobab/src/baobab.c:593 +msgid "Could not initialize monitoring" +msgstr "" + +#: baobab/src/baobab.c:594 +msgid "Changes to your home folder will not be monitored." +msgstr "" + +#: baobab/src/baobab.c:913 +msgid "Move to parent folder" +msgstr "" + +#: baobab/src/baobab.c:917 +msgid "Zoom in" +msgstr "" + +#: baobab/src/baobab.c:921 +msgid "Zoom out" +msgstr "" + +#: baobab/src/baobab.c:925 +msgid "Save screenshot" +msgstr "" + +#: baobab/src/baobab.c:1111 +msgid "View as Rings Chart" +msgstr "" + +#: baobab/src/baobab.c:1113 +msgid "View as Treemap Chart" +msgstr "" + +#: baobab/src/baobab.c:1224 +msgid "Show version" +msgstr "" + +#: baobab/src/baobab.c:1225 +msgid "[DIRECTORY]" +msgstr "" + +#: baobab/src/baobab.c:1257 +msgid "Too many arguments. Only one directory can be specified." +msgstr "" + +#: baobab/src/baobab.c:1274 +msgid "Could not detect any mount point." +msgstr "" + +#: baobab/src/baobab.c:1276 +msgid "Without mount points disk usage cannot be analyzed." +msgstr "" + +#: baobab/src/baobab-chart.c:204 +msgid "Maximum depth" +msgstr "" + +#: baobab/src/baobab-chart.c:205 +msgid "The maximum depth drawn in the chart from the root" +msgstr "" + +#: baobab/src/baobab-chart.c:214 +msgid "Chart model" +msgstr "" + +#: baobab/src/baobab-chart.c:215 +msgid "Set the model of the chart" +msgstr "" + +#: baobab/src/baobab-chart.c:222 +msgid "Chart root node" +msgstr "" + +#: baobab/src/baobab-chart.c:223 +msgid "Set the root node from the model" +msgstr "" + +#: baobab/src/baobab-chart.c:1713 +msgid "Cannot create pixbuf image!" +msgstr "" + +#: baobab/src/baobab-chart.c:1723 +msgid "Save Snapshot" +msgstr "" + +#: baobab/src/baobab-chart.c:1750 +msgid "_Image type:" +msgstr "" + +#: baobab/src/baobab-prefs.c:171 +msgid "Scan" +msgstr "" + +#: baobab/src/baobab-prefs.c:178 +msgid "Device" +msgstr "" + +#: baobab/src/baobab-prefs.c:186 +msgid "Mount Point" +msgstr "" + +#: baobab/src/baobab-prefs.c:194 +msgid "Filesystem Type" +msgstr "" + +#: baobab/src/baobab-prefs.c:202 +msgid "Total Size" +msgstr "" + +#: baobab/src/baobab-prefs.c:211 +msgid "Available" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:70 +#, c-format +msgid "Cannot scan location \"%s\"" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:168 +msgid "Custom Location" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:170 +msgid "SSH" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:173 +msgid "Public FTP" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:175 +msgid "FTP (with login)" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:178 +msgid "Windows share" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:180 +msgid "WebDAV (HTTP)" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:182 +msgid "Secure WebDAV (HTTPS)" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:242 +msgid "Cannot Connect to Server. You must enter a name for the server." +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:245 +msgid "Please enter a name and try again." +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:439 +msgid "_Location (URI):" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:455 +msgid "_Server:" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:468 +msgid "Optional information:" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:477 +msgid "_Share:" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:492 +#: mate-dictionary/data/mate-dictionary-source.ui:121 +msgid "_Port:" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:506 +msgid "_Folder:" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:520 +msgid "_User Name:" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:535 +msgid "_Domain Name:" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:592 +msgid "Connect to Server" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:608 +msgid "Service _type:" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:726 +msgid "_Scan" +msgstr "" + +#: baobab/src/baobab-treeview.c:83 +msgid "Rescan your home folder?" +msgstr "" + +#: baobab/src/baobab-treeview.c:84 +msgid "" +"The content of your home folder has changed. Select rescan to update the " +"disk usage details." +msgstr "" + +#: baobab/src/baobab-treeview.c:85 +msgid "_Rescan" +msgstr "" + +#: baobab/src/baobab-treeview.c:222 gsearchtool/src/gsearchtool.c:2453 +msgid "Folder" +msgstr "" + +#: baobab/src/baobab-treeview.c:244 +msgid "Usage" +msgstr "" + +#: baobab/src/baobab-treeview.c:258 gsearchtool/src/gsearchtool.c:2466 +msgid "Size" +msgstr "" + +#: baobab/src/baobab-treeview.c:274 +msgid "Contents" +msgstr "" + +#: baobab/src/baobab-utils.c:105 +msgid "Select Folder" +msgstr "" + +#: baobab/src/baobab-utils.c:117 +msgid "_Show hidden folders" +msgstr "" + +#: baobab/src/baobab-utils.c:280 +msgid "Cannot check an excluded folder!" +msgstr "" + +#: baobab/src/baobab-utils.c:304 +#, c-format +msgid "\"%s\" is not a valid folder" +msgstr "" + +#: baobab/src/baobab-utils.c:307 +msgid "Could not analyze disk usage." +msgstr "" + +#: baobab/src/baobab-utils.c:343 +msgid "_Open Folder" +msgstr "" + +#: baobab/src/baobab-utils.c:349 gsearchtool/src/gsearchtool-callbacks.c:1330 +msgid "Mo_ve to Trash" +msgstr "" + +#: baobab/src/baobab-utils.c:378 +#, c-format +msgid "Could not open folder \"%s\"" +msgstr "" + +#: baobab/src/baobab-utils.c:381 +msgid "There is no installed viewer capable of displaying the folder." +msgstr "" + +#: baobab/src/baobab-utils.c:448 +#, c-format +msgid "Could not move \"%s\" to the Trash" +msgstr "" + +#: baobab/src/baobab-utils.c:456 +msgid "Could not move file to the Trash" +msgstr "" + +#: baobab/src/baobab-utils.c:458 +#, c-format +msgid "Details: %s" +msgstr "" + +#: baobab/src/baobab-utils.c:496 +msgid "There was an error displaying help." +msgstr "" + +#: baobab/src/callbacks.c:74 logview/src/logview-about.h:44 +#: mate-dictionary/src/gdict-about.c:49 +msgid "MATE Documentation Team" +msgstr "" + +#: baobab/src/callbacks.c:79 logview/src/logview-about.h:49 +#: mate-dictionary/src/gdict-about.c:57 +msgid "" +"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 2 of the License, or (at your option) " +"any later version." +msgstr "" + +#: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 +#: mate-dictionary/src/gdict-about.c:62 +msgid "" +"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." +msgstr "" + +#: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 +#: mate-dictionary/src/gdict-about.c:67 +msgid "" +"You should have received a copy of the GNU General Public License along with " +"this program. If not, see ." +msgstr "" + +#: baobab/src/callbacks.c:105 +msgid "About Disk Usage Analyzer" +msgstr "" + +#: baobab/src/callbacks.c:106 +msgid "Analyze your disk usage through a graphical tool." +msgstr "" + +#: baobab/src/callbacks.c:107 +msgid "" +"Copyright © 2005-2010 Fabio Marzocca\n" +"Copyright © 2011-2021 MATE developers" +msgstr "" + +#: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 +#: mate-dictionary/src/gdict-about.c:53 +msgid "translator-credits" +msgstr "" + +#: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 +#: gsearchtool/src/gsearchtool-callbacks.c:879 +msgid "The document does not exist." +msgstr "" + +#: baobab/src/callbacks.c:292 +msgid "The folder does not exist." +msgstr "" + +#: gsearchtool/data/mate-search-tool.appdata.xml.in:7 +#: gsearchtool/data/mate-search-tool.desktop.in:3 +msgid "MATE Search Tool" +msgstr "" + +#: gsearchtool/data/mate-search-tool.appdata.xml.in:8 +msgid "A file searching tool for MATE Desktop" +msgstr "" + +#: gsearchtool/data/mate-search-tool.appdata.xml.in:10 +msgid "" +"MATE Search Tool is a simple but powerful utility that allows you to search " +"for files and folders on any mounted file system. Its interface gives you " +"instant access to a wide variety of parameters for each search, such as text " +"contained within a file, ownership, date of modification, file size, folder " +"exclusion, etc.." +msgstr "" + +#: gsearchtool/data/mate-search-tool.desktop.in:4 +msgid "Locate documents and folders on this computer by name or content" +msgstr "" + +#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#: gsearchtool/data/mate-search-tool.desktop.in:13 +msgid "" +"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 +msgid "Search history" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:6 +msgid "This key defines the items which were searched for in the past." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:10 +msgid "Show Additional Options" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:14 +msgid "Disable Quick Search" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:15 +msgid "" +"This key determines if the search tool disables the use of the locate " +"command when performing simple file name searches." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 +msgid "Quick Search Excluded Paths" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 +msgid "" +"This key defines the paths the search tool will exclude from a quick search. " +"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" +"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 +msgid "Disable Quick Search Second Scan" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:25 +msgid "" +"This key determines if the search tool disables the use of the find command " +"after performing a quick search." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 +msgid "Quick Search Second Scan Excluded Paths" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:30 +msgid "" +"This key defines the paths the search tool will exclude from a second scan " +"when performing a quick search. The second scan uses the find command to " +"search for files. The purpose of the second scan is to find files that have " +"not been indexed. The wildcards '*' and '?' are supported. The default value " +"is /." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 +msgid "Search Result Columns Order" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:35 +msgid "" +"This key defines the order of the columns in the search results. This key " +"should not be modified by the user." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 +msgid "Default Window Width" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 +msgid "" +"This key defines the window width, and it's used to remember the size of the " +"search tool between sessions. Setting it to -1 will make the search tool use " +"the default width." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 +msgid "Default Window Height" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 +msgid "" +"This key defines the window height, and it's used to remember the size of " +"the search tool between sessions. Setting it to -1 will make the search tool " +"use the default height." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 +msgid "Default Window Maximized" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:50 +msgid "" +"This key determines if the search tool window starts in a maximized state." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 +msgid "Look in Folder" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 +msgid "This key defines the default value of the \"Look in Folder\" widget." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 +msgid "" +"This key determines if the \"Contains the text\" search option is selected " +"when the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 +msgid "" +"This key determines if the \"Date modified less than\" search option is " +"selected when the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 +msgid "" +"This key determines if the \"Date modified more than\" search option is " +"selected when the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 +msgid "" +"This key determines if the \"Size at least\" search option is selected when " +"the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 +msgid "" +"This key determines if the \"Size at most\" search option is selected when " +"the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 +msgid "" +"This key determines if the \"File is empty\" search option is selected when " +"the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 +msgid "" +"This key determines if the \"Owned by user\" search option is selected when " +"the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 +msgid "" +"This key determines if the \"Owned by group\" search option is selected when " +"the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 +msgid "" +"This key determines if the \"Owner is unrecognized\" search option is " +"selected when the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 +msgid "" +"This key determines if the \"Name does not contain\" search option is " +"selected when the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 +msgid "" +"This key determines if the \"Name matches regular expression\" search option " +"is selected when the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 +msgid "" +"This key determines if the \"Show hidden files and folders\" search option " +"is selected when the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 +msgid "" +"This key determines if the \"Follow symbolic links\" search option is " +"selected when the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 +msgid "" +"This key determines if the \"Exclude other filesystems\" search option is " +"selected when the search tool is started." +msgstr "" + +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 +msgid "File is not a valid .desktop file" +msgstr "" + +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 +#, c-format +msgid "Unrecognized desktop file Version '%s'" +msgstr "" + +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 +#, c-format +msgid "Starting %s" +msgstr "" + +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 +msgid "Application does not accept documents on command line" +msgstr "" + +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 +#, c-format +msgid "Unrecognized launch option: %d" +msgstr "" + +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 +msgid "Can't pass document URIs to a 'Type=Link' desktop entry" +msgstr "" + +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 +msgid "Not a launchable item" +msgstr "" + +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 +msgid "Disable connection to session manager" +msgstr "" + +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 +msgid "Specify file containing saved configuration" +msgstr "" + +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 +msgid "FILE" +msgstr "" + +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 +msgid "Specify session management ID" +msgstr "" + +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 +msgid "ID" +msgstr "" + +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +msgid "Session management options:" +msgstr "" + +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 +msgid "Show session management options" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:82 +msgid "Contains the _text" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:84 +msgid "_Date modified less than" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:84 gsearchtool/src/gsearchtool.c:85 +msgid "days" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:85 +msgid "Date modified more than" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:87 +msgid "S_ize at least" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:87 gsearchtool/src/gsearchtool.c:88 +msgid "kilobytes" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:88 +msgid "Si_ze at most" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:89 +msgid "File is empty" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:91 +msgid "Owned by _user" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:92 +msgid "Owned by _group" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:93 +msgid "Owner is unrecognized" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:95 +msgid "Na_me does not contain" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:96 +msgid "Name matches regular e_xpression" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:98 +msgid "Show hidden and backup files" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:99 +msgid "Follow symbolic links" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:100 +msgid "Exclude other filesystems" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:158 +msgid "Show version of the application" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:159 gsearchtool/src/gsearchtool.c:164 +#: gsearchtool/src/gsearchtool.c:173 +msgid "STRING" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:160 +msgid "PATH" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:161 +msgid "VALUE" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:165 gsearchtool/src/gsearchtool.c:166 +msgid "DAYS" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:167 gsearchtool/src/gsearchtool.c:168 +msgid "KILOBYTES" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:170 +msgid "USER" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:171 +msgid "GROUP" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:174 +msgid "PATTERN" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:385 +msgid "A locate database has probably not been created." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:487 +#, c-format +msgid "Character set conversion failed for \"%s\"" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:511 +msgid "Searching..." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:511 gsearchtool/src/gsearchtool.c:1048 +#: gsearchtool/src/gsearchtool.c:3078 +msgid "Search for Files" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:994 gsearchtool/src/gsearchtool.c:1023 +msgid "No files found" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1016 +msgid "(stopped)" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1022 +msgid "No Files Found" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1027 +#, c-format +msgid "%'d File Found" +msgid_plural "%'d Files Found" +msgstr[0] "" +msgstr[1] "" + +#: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 +#, c-format +msgid "%'d file found" +msgid_plural "%'d files found" +msgstr[0] "" +msgstr[1] "" + +#: gsearchtool/src/gsearchtool.c:1160 +msgid "Entry changed called for a non entry option!" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1325 +msgid "Set the text of \"Name contains\" search option" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1326 +msgid "Set the text of \"Look in folder\" search option" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1327 +msgid "Sort files by one of the following: name, folder, size, type, or date" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1328 +msgid "Set sort order to descending, the default is ascending" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1329 +msgid "Automatically start a search" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1335 +#, c-format +msgid "Select the \"%s\" search option" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1338 +#, c-format +msgid "Select and set the \"%s\" search option" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1445 +msgid "Invalid option passed to sortby command line argument." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1737 +msgid "" +"\n" +"... Too many errors to display ..." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1751 +msgid "" +"The search results may be invalid. There were errors while performing this " +"search." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 +msgid "Show more _details" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1793 +msgid "" +"The search results may be out of date or invalid. Do you want to disable " +"the quick search feature?" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1818 +msgid "Disable _Quick Search" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1845 +#, c-format +msgid "Failed to set process group id of child %d: %s.\n" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1870 +msgid "Error parsing the search command." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1902 +msgid "Error running the search command." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2025 +#, c-format +msgid "Enter a text value for the \"%s\" search option." +msgstr "" + +#. Translators: Below is a string displaying the search options name +#. and unit value. For example, "\"Date modified less than\" in days". +#: gsearchtool/src/gsearchtool.c:2030 +#, c-format +msgid "\"%s\" in %s" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2032 +#, c-format +msgid "Enter a value in %s for the \"%s\" search option." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2095 +#, c-format +msgid "Remove \"%s\"" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2096 +#, c-format +msgid "Click to remove the \"%s\" search option." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2189 +msgid "A_vailable options:" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2218 +msgid "Available options" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2219 +msgid "Select a search option from the drop-down list." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2236 +msgid "Add search option" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2237 +msgid "Click to add the selected available search option." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2326 +msgid "S_earch results:" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2369 +msgid "List View" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2429 +#: mate-dictionary/libgdict/gdict-source.c:243 +msgid "Name" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2478 +msgid "Type" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2490 +msgid "Date Modified" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2820 +msgid "_Name contains:" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 +msgid "Enter a filename or partial filename with or without wildcards." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2836 +msgid "Name contains" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2842 +msgid "_Look in folder:" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2848 +msgid "Browse" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2858 +msgid "Look in folder" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2858 +msgid "Select the folder or device from which you want to begin the search." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2876 +msgid "Select more _options" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2885 +msgid "Select more options" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2885 +msgid "Click to expand or collapse the list of available options." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2916 +msgid "Click to display the help manual." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2929 +msgid "Click to close \"Search for Files\"." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2964 +msgid "Click to perform a search." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2965 +msgid "Click to stop a search." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:3061 +msgid "- the MATE Search Tool" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:3072 +#, c-format +msgid "Failed to parse command line arguments: %s\n" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:192 +msgid "Could not open help document." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:343 +#, c-format +msgid "Are you sure you want to open %d document?" +msgid_plural "Are you sure you want to open %d documents?" +msgstr[0] "" +msgstr[1] "" + +#: gsearchtool/src/gsearchtool-callbacks.c:348 +#: gsearchtool/src/gsearchtool-callbacks.c:548 +#, c-format +msgid "This will open %d separate window." +msgid_plural "This will open %d separate windows." +msgstr[0] "" +msgstr[1] "" + +#: gsearchtool/src/gsearchtool-callbacks.c:393 +#, c-format +msgid "Could not open document \"%s\"." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:422 +#, c-format +msgid "Could not open folder \"%s\"." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:430 +msgid "The caja file manager is not running." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:521 +msgid "There is no installed viewer capable of displaying the document." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:543 +#, c-format +msgid "Are you sure you want to open %d folder?" +msgid_plural "Are you sure you want to open %d folders?" +msgstr[0] "" +msgstr[1] "" + +#: gsearchtool/src/gsearchtool-callbacks.c:725 +#, c-format +msgid "Could not move \"%s\" to trash." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:756 +#, c-format +msgid "Do you want to delete \"%s\" permanently?" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:759 +#, c-format +msgid "Trash is unavailable. Could not move \"%s\" to the trash." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:803 +#, c-format +msgid "Could not delete \"%s\"." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:915 +#, c-format +msgid "Deleting \"%s\" failed: %s." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:927 +#, c-format +msgid "Moving \"%s\" failed: %s." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1143 +#: gsearchtool/src/gsearchtool-callbacks.c:1169 +msgid "_Open" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1199 +#, c-format +msgid "_Open with %s" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1220 +#, c-format +msgid "Open with %s" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1249 +msgid "Open Wit_h" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1299 +msgid "Open Containing _Folder" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1310 +msgid "Copy _Path" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1344 +msgid "_Save Results As..." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1722 +msgid "Save Search Results As..." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1751 +msgid "Could not save document." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1752 +msgid "You did not select a document name." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1782 +#, c-format +msgid "Could not save \"%s\" document to \"%s\"." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1815 +#, c-format +msgid "The document \"%s\" already exists. Would you like to replace it?" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1819 +msgid "If you replace an existing file, its contents will be overwritten." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1834 +#: mate-screenshot/src/screenshot-xfer.c:84 +msgid "_Replace" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1883 +msgid "The document name you selected is a folder." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1919 +msgid "You may not have write permissions to the document." +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:427 +msgid "today at %-I:%M %p" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:429 +msgid "yesterday at %-I:%M %p" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:431 +msgid "%A, %B %-d %Y at %-I:%M:%S %p" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:478 +msgid "link (broken)" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:482 +#, c-format +msgid "link to %s" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1101 +msgid " (copy)" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1103 +msgid " (another copy)" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1106 +#: gsearchtool/src/gsearchtool-support.c:1108 +#: gsearchtool/src/gsearchtool-support.c:1110 +#: gsearchtool/src/gsearchtool-support.c:1120 +msgid "th copy)" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1113 +msgid "st copy)" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1115 +msgid "nd copy)" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1117 +msgid "rd copy)" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1134 +#, c-format +msgid "%s (copy)%s" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1136 +#, c-format +msgid "%s (another copy)%s" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1139 +#: gsearchtool/src/gsearchtool-support.c:1141 +#: gsearchtool/src/gsearchtool-support.c:1143 +#: gsearchtool/src/gsearchtool-support.c:1152 +#, c-format +msgid "%s (%dth copy)%s" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1146 +#, c-format +msgid "%s (%dst copy)%s" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1148 +#, c-format +msgid "%s (%dnd copy)%s" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1150 +#, c-format +msgid "%s (%drd copy)%s" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1197 +msgid " (invalid Unicode)" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1286 +msgid " (" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1294 +#, c-format +msgid " (%d" +msgstr "" + +#: logview/data/mate-system-log.desktop.in.in:3 +msgid "Log File Viewer" +msgstr "" + +#: logview/data/mate-system-log.desktop.in.in:4 +msgid "View or monitor system log files" +msgstr "" + +#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#: logview/data/mate-system-log.desktop.in.in:13 +msgid "MATE;monitor;view;system;log;files;logviewer;" +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:5 +msgid "Log file to open up on startup" +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:6 +msgid "" +"Specifies the log file displayed at startup. The default is either /var/adm/" +"messages or /var/log/messages, depending on your operating system." +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:10 +msgid "Size of the font used to display the log" +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:11 +msgid "" +"Specifies the size of the fixed-width font used to display the log in the " +"main tree view. The default is taken from the default terminal font size." +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:15 +msgid "Height of the main window in pixels" +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:16 +msgid "Specifies the height of the log viewer main window in pixels." +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:20 +msgid "Width of the main window in pixels" +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:21 +msgid "Specifies the width of the log viewer main window in pixels." +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:25 +msgid "Log files to open up on startup" +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:26 +msgid "" +"Specifies a list of log files to open up at startup. A default list is " +"created by reading /etc/syslog.conf." +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:30 +msgid "List of saved filters" +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:31 +msgid "List of saved regexp filters" +msgstr "" + +#: logview/data/logview-filter.ui:32 mate-disk-image-mounter/src/main.c:124 +#: mate-screenshot/data/mate-screenshot.ui:92 +msgid "_Cancel" +msgstr "" + +#: logview/data/logview-filter.ui:48 +msgid "_Apply" +msgstr "" + +#: logview/data/logview-filter.ui:91 +#: mate-screenshot/data/mate-screenshot.ui:178 +msgid "_Name:" +msgstr "" + +#: logview/data/logview-filter.ui:108 +msgid "_Regular Expression:" +msgstr "" + +#: logview/data/logview-filter.ui:180 +msgid "Highlight" +msgstr "" + +#: logview/data/logview-filter.ui:205 +msgid "Foreground:" +msgstr "" + +#: logview/data/logview-filter.ui:220 +msgid "Background:" +msgstr "" + +#: logview/data/logview-filter.ui:274 +msgid "Hide" +msgstr "" + +#: logview/data/logview-filter.ui:296 +msgid "Effect:" +msgstr "" + +#: logview/src/logview-about.h:41 mate-dictionary/src/gdict-about.c:46 +msgid "Sun GNOME Documentation Team " +msgstr "" + +#: logview/src/logview-app.c:369 +#, c-format +msgid "Impossible to open the file %s" +msgstr "" + +#: logview/src/logview-filter-manager.c:93 +msgid "Filter name is empty!" +msgstr "" + +#: logview/src/logview-filter-manager.c:106 +msgid "Filter name may not contain the ':' character" +msgstr "" + +#: logview/src/logview-filter-manager.c:129 +msgid "Regular expression is empty!" +msgstr "" + +#: logview/src/logview-filter-manager.c:145 +#, c-format +msgid "Regular expression is invalid: %s" +msgstr "" + +#: logview/src/logview-filter-manager.c:207 +msgid "Please specify either foreground or background color!" +msgstr "" + +#: logview/src/logview-filter-manager.c:282 +msgid "Edit filter" +msgstr "" + +#: logview/src/logview-filter-manager.c:282 +msgid "Add new filter" +msgstr "" + +#: logview/src/logview-filter-manager.c:469 +msgid "Filters" +msgstr "" + +#: logview/src/logview-findbar.c:169 +msgid "_Find:" +msgstr "" + +#: logview/src/logview-findbar.c:184 +msgid "Find Previous" +msgstr "" + +#: logview/src/logview-findbar.c:187 +msgid "Find previous occurrence of the search string" +msgstr "" + +#: logview/src/logview-findbar.c:192 +msgid "Find Next" +msgstr "" + +#: logview/src/logview-findbar.c:195 +msgid "Find next occurrence of the search string" +msgstr "" + +#: logview/src/logview-findbar.c:202 +msgid "Clear the search string" +msgstr "" + +#: logview/src/logview-log.c:589 +msgid "Error while uncompressing the GZipped log. The file might be corrupt." +msgstr "" + +#: logview/src/logview-log.c:635 +msgid "You don't have enough permissions to read the file." +msgstr "" + +#: logview/src/logview-log.c:650 +msgid "The file is not a regular file or is not a text file." +msgstr "" + +#: logview/src/logview-log.c:743 +msgid "This version of System Log does not support GZipped logs." +msgstr "" + +#: logview/src/logview-loglist.c:103 +msgid "%A, %e %b" +msgstr "" + +#: logview/src/logview-loglist.c:314 +msgid "Loading..." +msgstr "" + +#: logview/src/logview-main.c:48 +#, c-format +msgid "" +"%s - Version %s\n" +"Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n" +"Copyright (C) 2011-2021 MATE developers.\n" +msgstr "" + +#: logview/src/logview-main.c:64 +msgid "Show the application's version" +msgstr "" + +#: logview/src/logview-main.c:66 +msgid "[LOGFILE...]" +msgstr "" + +#: logview/src/logview-main.c:70 +msgid " - Browse and monitor logs" +msgstr "" + +#: logview/src/logview-main.c:107 +msgid "Log Viewer" +msgstr "" + +#: logview/src/logview-window.c:41 logview/src/logview-window.c:771 +msgid "System Log Viewer" +msgstr "" + +#: logview/src/logview-window.c:216 +#, c-format +msgid "last update: %s" +msgstr "" + +#: logview/src/logview-window.c:220 +#, c-format +msgid "%d lines (%s) - %s" +msgstr "" + +#: logview/src/logview-window.c:325 +msgid "Open Log" +msgstr "" + +#: logview/src/logview-window.c:364 +#, c-format +msgid "There was an error displaying help: %s" +msgstr "" + +#: logview/src/logview-window.c:478 +msgid "Wrapped" +msgstr "" + +#: logview/src/logview-window.c:493 +#: mate-dictionary/libgdict/gdict-defbox.c:1125 +#: mate-dictionary/libgdict/gdict-defbox.c:1219 +#: mate-dictionary/libgdict/gdict-defbox.c:1253 +msgid "Not found" +msgstr "" + +#: logview/src/logview-window.c:773 +msgid "About System Log Viewer" +msgstr "" + +#: logview/src/logview-window.c:774 +msgid "" +"Copyright © 1998-2008 Free Software Foundation, Inc.\n" +"Copyright © 2011-2021 MATE developers" +msgstr "" + +#: logview/src/logview-window.c:778 +msgid "View, monitor or analyze your system logs in a gradual manner." +msgstr "" + +#: logview/src/logview-window.c:821 mate-dictionary/src/gdict-window.c:1258 +msgid "_File" +msgstr "" + +#: logview/src/logview-window.c:824 +msgid "_Filters" +msgstr "" + +#: logview/src/logview-window.c:827 +msgid "_Open..." +msgstr "" + +#: logview/src/logview-window.c:827 +msgid "Open a log from file" +msgstr "" + +#: logview/src/logview-window.c:829 +msgid "Close this log" +msgstr "" + +#: logview/src/logview-window.c:831 +msgid "_Quit" +msgstr "" + +#: logview/src/logview-window.c:831 +msgid "Quit the log viewer" +msgstr "" + +#: logview/src/logview-window.c:834 mate-dictionary/src/gdict-window.c:1277 +msgid "_Copy" +msgstr "" + +#: logview/src/logview-window.c:834 +msgid "Copy the selection" +msgstr "" + +#: logview/src/logview-window.c:836 mate-dictionary/src/gdict-window.c:1279 +msgid "Select _All" +msgstr "" + +#: logview/src/logview-window.c:836 +msgid "Select the entire log" +msgstr "" + +#: logview/src/logview-window.c:838 +msgid "_Find..." +msgstr "" + +#: logview/src/logview-window.c:838 +msgid "Find a word or phrase in the log" +msgstr "" + +#: logview/src/logview-window.c:841 +msgid "Zoom _In" +msgstr "" + +#: logview/src/logview-window.c:841 +msgid "Bigger text size" +msgstr "" + +#: logview/src/logview-window.c:843 +msgid "Zoom _Out" +msgstr "" + +#: logview/src/logview-window.c:843 +msgid "Smaller text size" +msgstr "" + +#: logview/src/logview-window.c:845 +msgid "_Normal Size" +msgstr "" + +#: logview/src/logview-window.c:845 +msgid "Normal text size" +msgstr "" + +#: logview/src/logview-window.c:848 +msgid "Manage Filters" +msgstr "" + +#: logview/src/logview-window.c:848 +msgid "Manage filters" +msgstr "" + +#: logview/src/logview-window.c:851 +msgid "Open the help contents for the log viewer" +msgstr "" + +#: logview/src/logview-window.c:853 mate-dictionary/src/gdict-applet.c:1176 +#: mate-dictionary/src/gdict-window.c:1314 +msgid "_About" +msgstr "" + +#: logview/src/logview-window.c:853 +msgid "Show the about dialog for the log viewer" +msgstr "" + +#: logview/src/logview-window.c:858 +msgid "_Statusbar" +msgstr "" + +#: logview/src/logview-window.c:858 +msgid "Show Status Bar" +msgstr "" + +#: logview/src/logview-window.c:860 +msgid "Side _Pane" +msgstr "" + +#: logview/src/logview-window.c:860 +msgid "Show Side Pane" +msgstr "" + +#: logview/src/logview-window.c:862 +msgid "Show matches only" +msgstr "" + +#: logview/src/logview-window.c:862 +msgid "Only show lines that match one of the given filters" +msgstr "" + +#: logview/src/logview-window.c:994 +#, c-format +msgid "Can't read from \"%s\"" +msgstr "" + +#: logview/src/logview-window.c:1419 +msgid "Version: " +msgstr "" + +#: logview/src/logview-window.c:1525 +msgid "Could not open the following files:" +msgstr "" + +#: mate-dictionary/data/default.desktop.in:3 +msgid "Default" +msgstr "" + +#: mate-dictionary/data/default.desktop.in:4 +msgid "Default Dictionary Server" +msgstr "" + +#: mate-dictionary/data/mate-dictionary.desktop.in.in:3 +#: mate-dictionary/data/mate-dictionary.appdata.xml.in:7 +msgid "MATE Dictionary" +msgstr "" + +#: mate-dictionary/data/mate-dictionary.desktop.in.in:4 +msgid "Check word definitions and spellings in an online dictionary" +msgstr "" + +#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#: mate-dictionary/data/mate-dictionary.desktop.in.in:13 +msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" +msgstr "" + +#: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 +msgid "A dictionary for MATE Desktop" +msgstr "" + +#: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 +msgid "" +"MATE Dictionary allows you to look up words in on-line dictionaries. It " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " +"add your own sources, while you can select specific servers for a specific " +"query." +msgstr "" + +#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 +msgid "Dictionary Applet Factory" +msgstr "" + +#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:6 +msgid "Factory for the dictionary applet" +msgstr "" + +#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:9 +msgid "Dictionary Look up" +msgstr "" + +#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:10 +msgid "Look up words in a dictionary" +msgstr "" + +#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:6 +msgid "The default database to use" +msgstr "" + +#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:7 +msgid "" +"The name of the default individual database or meta-database to use on a " +"dictionary source. An exclamation mark (\"!\") means that all the databases " +"present in a dictionary source should be searched" +msgstr "" + +#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 +msgid "The default search strategy to use" +msgstr "" + +#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:12 +msgid "" +"The name of the default search strategy to use on a dictionary source, if " +"available. The default strategy is 'exact', that is match exact words." +msgstr "" + +#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 +msgid "The font to be used when printing" +msgstr "" + +#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:17 +msgid "The font to be used when printing a definition." +msgstr "" + +#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:21 +msgid "The name of the dictionary source used" +msgstr "" + +#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22 +msgid "" +"The name of the dictionary source used to retrieve the definitions of words." +msgstr "" + +#: mate-dictionary/data/thai.desktop.in:3 +msgid "Thai" +msgstr "" + +#: mate-dictionary/data/thai.desktop.in:4 +msgid "Longdo Thai-English Dictionaries" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:283 +msgid "Client Name" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:284 +msgid "The name of the client of the context object" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:297 +msgid "Hostname" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:298 +msgid "The hostname of the dictionary server to connect to" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:311 +msgid "Port" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:312 +msgid "The port of the dictionary server to connect to" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:327 +msgid "Status" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:328 +msgid "The status code as returned by the dictionary server" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:772 +#, c-format +msgid "No connection to the dictionary server at '%s:%d'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1052 +#, c-format +msgid "Lookup failed for hostname '%s': no suitable resources found" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1083 +#, c-format +msgid "Lookup failed for host '%s': %s" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1117 +#, c-format +msgid "Lookup failed for host '%s': host not found" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1169 +#, c-format +msgid "" +"Unable to connect to the dictionary server at '%s:%d'. The server replied " +"with code %d (server down)" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1188 +#, c-format +msgid "" +"Unable to parse the dictionary server reply\n" +": '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1217 +#, c-format +msgid "No definitions found for '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1232 +#, c-format +msgid "Invalid database '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1247 +#, c-format +msgid "Invalid strategy '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1262 +#, c-format +msgid "Bad command '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1277 +#, c-format +msgid "Bad parameters for command '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1292 +#, c-format +msgid "No databases found on dictionary server at '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1307 +#, c-format +msgid "No strategies found on dictionary server at '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1732 +#, c-format +msgid "Connection failed to the dictionary server at %s:%d" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1771 +#, c-format +msgid "" +"Error while reading reply from server:\n" +"%s" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1844 +#, c-format +msgid "Connection timeout for the dictionary server at '%s:%d'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1878 +msgid "No hostname defined for the dictionary server" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1914 +#: mate-dictionary/libgdict/gdict-client-context.c:1929 +msgid "Unable to create socket" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1955 +#, c-format +msgid "Unable to set the channel as non-blocking: %s" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1970 +#, c-format +msgid "Unable to connect to the dictionary server at '%s:%d'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-context.c:220 +msgid "Local Only" +msgstr "" + +#: mate-dictionary/libgdict/gdict-context.c:221 +msgid "Whether the context uses only local dictionaries or not" +msgstr "" + +#: mate-dictionary/libgdict/gdict-database-chooser.c:376 +msgid "Reload the list of available databases" +msgstr "" + +#: mate-dictionary/libgdict/gdict-database-chooser.c:388 +msgid "Clear the list of available databases" +msgstr "" + +#: mate-dictionary/libgdict/gdict-database-chooser.c:836 +#: mate-dictionary/libgdict/gdict-speller.c:773 +#: mate-dictionary/libgdict/gdict-strategy-chooser.c:783 +msgid "Error while matching" +msgstr "" + +#: mate-dictionary/libgdict/gdict-defbox.c:1314 +msgid "F_ind:" +msgstr "" + +#: mate-dictionary/libgdict/gdict-defbox.c:1327 +msgid "_Previous" +msgstr "" + +#: mate-dictionary/libgdict/gdict-defbox.c:1335 +msgid "_Next" +msgstr "" + +#: mate-dictionary/libgdict/gdict-defbox.c:2483 +msgid "Error while looking up definition" +msgstr "" + +#: mate-dictionary/libgdict/gdict-defbox.c:2525 +#: mate-dictionary/libgdict/gdict-speller.c:731 +msgid "Another search is in progress" +msgstr "" + +#: mate-dictionary/libgdict/gdict-defbox.c:2526 +#: mate-dictionary/libgdict/gdict-speller.c:732 +msgid "Please wait until the current search ends." +msgstr "" + +#: mate-dictionary/libgdict/gdict-defbox.c:2565 +msgid "Error while retrieving the definition" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:229 +msgid "Filename" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:230 +msgid "The filename used by this dictionary source" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:244 +msgid "The display name of this dictionary source" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:257 +msgid "Description" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:258 +msgid "The description of this dictionary source" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:271 +#: mate-dictionary/libgdict/gdict-speller.c:375 +msgid "Database" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:272 +msgid "The default database of this dictionary source" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:285 +#: mate-dictionary/libgdict/gdict-speller.c:382 +msgid "Strategy" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:286 +msgid "The default strategy of this dictionary source" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:299 +msgid "Transport" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:300 +msgid "The transport mechanism used by this dictionary source" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:314 +#: mate-dictionary/libgdict/gdict-speller.c:368 +msgid "Context" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:315 +msgid "The GdictContext bound to this source" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:408 +#, c-format +msgid "Invalid transport type '%d'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:436 +#, c-format +msgid "No '%s' group found inside the dictionary source definition" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:452 +#: mate-dictionary/libgdict/gdict-source.c:476 +#: mate-dictionary/libgdict/gdict-source.c:500 +#: mate-dictionary/libgdict/gdict-source.c:525 +#, c-format +msgid "Unable to get the '%s' key inside the dictionary source definition: %s" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:550 +#, c-format +msgid "" +"Unable to get the '%s' key inside the dictionary source definition file: %s" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:736 +msgid "Dictionary source does not have name" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:745 +#, c-format +msgid "Dictionary source '%s' has invalid transport '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source-chooser.c:283 +msgid "Reload the list of available sources" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source-loader.c:163 +msgid "Paths" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source-loader.c:164 +msgid "Search paths used by this object" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source-loader.c:176 +msgid "Sources" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source-loader.c:177 +msgid "Dictionary sources found" +msgstr "" + +#: mate-dictionary/libgdict/gdict-speller.c:347 +msgid "Clear the list of similar words" +msgstr "" + +#: mate-dictionary/libgdict/gdict-speller.c:369 +msgid "The GdictContext object used to get the word definition" +msgstr "" + +#: mate-dictionary/libgdict/gdict-speller.c:376 +msgid "The database used to query the GdictContext" +msgstr "" + +#: mate-dictionary/libgdict/gdict-speller.c:383 +msgid "The strategy used to query the GdictContext" +msgstr "" + +#: mate-dictionary/libgdict/gdict-strategy-chooser.c:358 +msgid "Reload the list of available strategies" +msgstr "" + +#: mate-dictionary/libgdict/gdict-strategy-chooser.c:370 +msgid "Clear the list of available strategies" +msgstr "" + +#: mate-dictionary/libgdict/gdict-utils.c:97 +msgid "GDict debugging flags to set" +msgstr "" + +#: mate-dictionary/libgdict/gdict-utils.c:97 +#: mate-dictionary/libgdict/gdict-utils.c:99 +msgid "FLAGS" +msgstr "" + +#: mate-dictionary/libgdict/gdict-utils.c:99 +msgid "GDict debugging flags to unset" +msgstr "" + +#: mate-dictionary/libgdict/gdict-utils.c:153 +msgid "GDict Options" +msgstr "" + +#: mate-dictionary/libgdict/gdict-utils.c:154 +msgid "Show GDict Options" +msgstr "" + +#: mate-dictionary/src/gdict-about.c:54 +msgid "Look up words or terms in a dictionary source." +msgstr "" + +#: mate-dictionary/src/gdict-about.c:82 mate-dictionary/src/gdict-app.c:363 +#: mate-dictionary/src/gdict-window.c:580 +#: mate-dictionary/src/gdict-window.c:1864 +msgid "Dictionary" +msgstr "" + +#: mate-dictionary/src/gdict-about.c:84 +msgid "About Dictionary" +msgstr "" + +#: mate-dictionary/src/gdict-about.c:85 +msgid "" +"Copyright © 2005-2006 Emmanuele Bassi\n" +"Copyright © 2011-2021 MATE developers" +msgstr "" + +#. Translators: the first is the word found, the second is the +#. * database name and the last is the definition's text; please +#. * keep the new lines. +#: mate-dictionary/src/gdict-app.c:207 +#, c-format +msgid "" +"Definition for '%s'\n" +" From '%s':\n" +"\n" +"%s\n" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:221 +#, c-format +msgid "Error: %s\n" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:247 +msgid "See mate-dictionary --help for usage\n" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:260 +msgid "Unable to find a suitable dictionary source" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:294 +#, c-format +msgid "" +"Error while looking up the definition of \"%s\":\n" +"%s" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:323 mate-dictionary/src/gdict-app.c:333 +msgid "Words to look up" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:323 mate-dictionary/src/gdict-app.c:325 +#: mate-dictionary/src/gdict-app.c:333 +msgid "word" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:325 +msgid "Words to match" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:327 +msgid "Dictionary source to use" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:327 +msgid "source" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:329 +msgid "Print result to the console" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:331 +msgid "Database to use" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:331 +msgid "db" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:343 +msgid " - Look up words in dictionaries" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:194 +#: mate-dictionary/src/gdict-window.c:935 +msgid "Save a Copy" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:204 +#: mate-dictionary/src/gdict-window.c:945 +msgid "Untitled document" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:225 +#: mate-dictionary/src/gdict-window.c:966 +#, c-format +msgid "Error while writing to '%s'" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:350 +msgid "Clear the definitions found" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:352 +msgid "Clear definition" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:353 +msgid "Clear the text of the definition" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:365 +msgid "Print the definitions found" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:367 +msgid "Print definition" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:368 +msgid "Print the text of the definition" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:380 +msgid "Save the definitions found" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:382 +msgid "Save definition" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:383 +msgid "Save the text of the definition to a file" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:520 +msgid "Click to view the dictionary window" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:522 +msgid "Toggle dictionary window" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:523 +msgid "Show or hide the definition window" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:574 +msgid "Type the word you want to look up" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:576 +msgid "Dictionary entry" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:577 +msgid "Look up words in dictionaries" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:705 +#: mate-dictionary/src/gdict-window.c:1077 +msgid "Dictionary Preferences" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:729 +#: mate-dictionary/src/gdict-pref-dialog.c:496 +#: mate-dictionary/src/gdict-source-dialog.c:477 +#: mate-dictionary/src/gdict-window.c:1224 +msgid "There was an error while displaying help" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:868 +#: mate-dictionary/src/gdict-window.c:495 +#, c-format +msgid "No dictionary source available with name '%s'" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:872 +#: mate-dictionary/src/gdict-window.c:499 +msgid "Unable to find dictionary source" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:888 +#: mate-dictionary/src/gdict-window.c:515 +#, c-format +msgid "No context available for source '%s'" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:892 +#: mate-dictionary/src/gdict-window.c:519 +msgid "Unable to create a context" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:1158 +msgid "_Look Up Selected Text" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:1161 +msgid "Cl_ear" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:1164 +msgid "_Print" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:1167 +#: mate-screenshot/data/mate-screenshot.ui:109 +msgid "_Save" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:1170 +msgid "Preferences" +msgstr "" + +#: mate-dictionary/src/gdict-common.c:77 +#, c-format +msgid "Unable to rename file '%s' to '%s': %s" +msgstr "" + +#: mate-dictionary/src/gdict-common.c:101 +#: mate-dictionary/src/gdict-common.c:124 +#, c-format +msgid "Unable to create the data directory '%s': %s" +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:238 +#: mate-dictionary/src/gdict-pref-dialog.c:427 +msgid "Edit Dictionary Source" +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:302 +msgid "Add Dictionary Source" +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:347 +#, c-format +msgid "Remove \"%s\"?" +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:349 +msgid "This will permanently remove the dictionary source from the list." +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:379 +#, c-format +msgid "Unable to remove source '%s'" +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:713 +msgid "Add a new dictionary source" +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:719 +msgid "Remove the currently selected dictionary source" +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:725 +msgid "Edit the currently selected dictionary source" +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:733 +msgid "Set the font used for printing the definitions" +msgstr "" + +#: mate-dictionary/src/gdict-print.c:238 mate-dictionary/src/gdict-print.c:302 +#, c-format +msgid "Unable to display the preview: %s" +msgstr "" + +#: mate-dictionary/src/gdict-source-dialog.c:339 +#: mate-dictionary/src/gdict-source-dialog.c:432 +msgid "Unable to create a source file" +msgstr "" + +#: mate-dictionary/src/gdict-source-dialog.c:357 +#: mate-dictionary/src/gdict-source-dialog.c:450 +msgid "Unable to save source file" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:290 +#, c-format +msgid "Searching for '%s'..." +msgstr "" + +#: mate-dictionary/src/gdict-window.c:322 +#: mate-dictionary/src/gdict-window.c:379 +msgid "No definitions found" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:324 +#, c-format +msgid "A definition found" +msgid_plural "%d definitions found" +msgstr[0] "" +msgstr[1] "" + +#: mate-dictionary/src/gdict-window.c:578 +#, c-format +msgid "%s - Dictionary" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1261 +msgid "_Go" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1265 +#: mate-screenshot/data/mate-screenshot.ui:58 +msgid "_New" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1266 +msgid "New look up" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1267 +msgid "_Save a Copy..." +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1269 +msgid "P_review..." +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1270 +msgid "Preview this document" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1271 +msgid "_Print..." +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1272 +msgid "Print this document" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1281 +msgid "_Find" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1282 +msgid "Find a word or phrase in the document" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1284 +msgid "Find Ne_xt" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1286 +msgid "Find Pre_vious" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1288 +msgid "_Preferences" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1292 +msgid "_Previous Definition" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1293 +msgid "Go to the previous definition" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1294 +msgid "_Next Definition" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1295 +msgid "Go to the next definition" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1296 +msgid "_First Definition" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1297 +msgid "Go to the first definition" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1298 +msgid "_Last Definition" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1299 +msgid "Go to the last definition" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1302 +msgid "Similar _Words" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1304 +msgid "Dictionary Sources" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1306 +msgid "Available _Databases" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1308 +msgid "Available St_rategies" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1325 +msgid "_Sidebar" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1327 +msgid "S_tatusbar" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1392 +#, c-format +msgid "Dictionary source `%s' selected" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1413 +#, c-format +msgid "Strategy `%s' selected" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1433 +#, c-format +msgid "Database `%s' selected" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1453 +#, c-format +msgid "Word `%s' selected" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1478 +msgid "Double-click on the word to look up" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1484 +msgid "Double-click on the matching strategy to use" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1489 +msgid "Double-click on the source to use" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1498 +msgid "Double-click on the database to use" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1670 +msgid "Look _up:" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1745 +msgid "Similar words" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1758 +msgid "Available dictionaries" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1776 +msgid "Available strategies" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1792 +msgid "Dictionary sources" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-preferences.ui:27 +msgid "_Select a dictionary source for looking up words:" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-preferences.ui:132 +#: mate-dictionary/data/mate-dictionary-source.ui:148 +msgid "Source" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-preferences.ui:162 +msgid "_Print font:" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-preferences.ui:216 +msgid "Print" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-source.ui:38 +msgid "_Description:" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-source.ui:53 +msgid "Source Name" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-source.ui:65 +msgid "_Transport:" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-source.ui:96 +msgid "H_ostname:" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-source.ui:175 +msgid "Dictionaries" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-source.ui:200 +msgid "Strategies" +msgstr "" + +#: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:3 +#: mate-disk-image-mounter/src/main.c:62 +msgid "MATE Disk Image Mounter" +msgstr "" + +#: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:4 +msgid "Attach and mount one or more disk image files" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:60 +msgid "An error occurred" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:81 +msgid "Allow writing to the image" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:101 +msgid "All Files" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:105 +msgid "Disk Images (*.img, *.iso)" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:121 +msgid "Select Disk Image(s) to Mount" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:125 +msgid "_Mount" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:131 +msgid "Set up _read-only mount" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:132 +msgid "" +"If checked, the mount will be read-only. This is useful if you don't want " +"the underlying disk image to be modified" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:178 +#, c-format +msgid "Error connecting to udisks daemon: %s (%s, %d)" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:186 +msgid "Attach and mount one or more disk image files." +msgstr "" + +#: mate-disk-image-mounter/src/main.c:234 +#, c-format +msgid "Cannot open `%s' - maybe the volume isn't mounted?" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:241 +#, c-format +msgid "Error opening `%s': %m" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:262 +#, c-format +msgid "Error attaching disk image: %s (%s, %d)" +msgstr "" + +#: mate-screenshot/data/mate-screenshot.appdata.xml.in:7 +msgid "MATE Screenshot" +msgstr "" + +#: mate-screenshot/data/mate-screenshot.appdata.xml.in:8 +msgid "A screenshot utility for MATE Desktop" +msgstr "" + +#: mate-screenshot/data/mate-screenshot.appdata.xml.in:10 +msgid "" +"MATE Screenshot is a simple utility that lets you capture screenshots of " +"your desktop or of application windows. You can select to copy them to the " +"system clipboard or save them in Portable Network Graphics (.png) image " +"format." +msgstr "" + +#: mate-screenshot/data/mate-screenshot.desktop.in:3 +#: mate-screenshot/src/mate-screenshot.c:519 +#: mate-screenshot/src/mate-screenshot.c:527 +msgid "Take Screenshot" +msgstr "" + +#: mate-screenshot/data/mate-screenshot.desktop.in:4 +msgid "Save images of your desktop or individual windows" +msgstr "" + +#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#: mate-screenshot/data/mate-screenshot.desktop.in:13 +msgid "MATE;screenshot;snapshot;desktop;window;image;" +msgstr "" + +#: mate-screenshot/data/mate-screenshot.ui:24 +msgid "Save Screenshot" +msgstr "" + +#: mate-screenshot/data/mate-screenshot.ui:74 +msgid "C_opy to Clipboard" +msgstr "" + +#: mate-screenshot/data/mate-screenshot.ui:192 +msgid "Save in _folder:" +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:5 +msgid "Screenshot delay" +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:6 +msgid "The number of seconds to wait before taking the screenshot." +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:10 +msgid "Screenshot directory" +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:11 +msgid "The directory the last screenshot was saved in." +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:15 +msgid "Include Border" +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:16 +msgid "Include the window manager border along with the screenshot" +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:20 +msgid "Include Pointer" +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:21 +msgid "Include the pointer in the screenshot" +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:25 +msgid "Border Effect" +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:26 +msgid "" +"Effect to add to the outside of a border. Possible values are \"shadow\", " +"\"none\", and \"border\"." +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:138 +msgid "Error loading the help page" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:250 +msgid "None" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:251 +msgid "Drop shadow" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:252 +msgid "Border" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:353 +msgid "Include _pointer" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:362 +msgid "Include the window _border" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:377 +msgid "Apply _effect:" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:437 +msgid "Grab the whole _desktop" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:449 +msgid "Grab the current _window" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:461 +msgid "Select _area to grab" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:479 +msgid "Grab _after a delay of" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:500 +#: mate-screenshot/src/mate-screenshot.c:1320 +msgid "seconds" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:528 +msgid "Effects" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:532 +msgid "Take _Screenshot" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:651 +msgid "Error while saving screenshot" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:654 +#, c-format +msgid "" +"Impossible to save the screenshot to %s.\n" +" Error was %s.\n" +" Please choose another location and retry." +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:796 +msgid "Screenshot taken" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:851 +msgid "Unable to take a screenshot of the current window" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:916 +#, c-format +msgid "Screenshot at %s.png" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:923 +#, c-format +msgid "Screenshot at %s - %d.png" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1315 +msgid "Grab a window instead of the entire screen" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1316 +msgid "Grab an area of the screen instead of the entire screen" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1317 +msgid "Send grabbed area directly to the clipboard" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1318 +msgid "Include the window border with the screenshot" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1319 +msgid "Remove the window border from the screenshot" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1320 +msgid "Take screenshot after specified delay [in seconds]" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1321 +msgid "Effect to add to the border (shadow, border or none)" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1321 +msgid "effect" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1322 +msgid "Interactively set options" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1323 +msgid "Print version information and exit" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1334 +msgid "Take a picture of the screen" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1357 +msgid "" +"Conflicting options: --clipboard and --interactive should not be used at the " +"same time.\n" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1363 +msgid "" +"Conflicting options: --window and --area should not be used at the same " +"time.\n" +msgstr "" + +#: mate-screenshot/src/screenshot-dialog.c:210 +#, c-format +msgid "" +"Error loading UI definition file for the screenshot program: \n" +"%s\n" +"\n" +"Please check your installation of mate-utils." +msgstr "" + +#: mate-screenshot/src/screenshot-dialog.c:233 +msgid "Select a folder" +msgstr "" + +#: mate-screenshot/src/screenshot-dialog.c:328 +#: mate-screenshot/src/screenshot-save.c:202 +msgid "Screenshot.png" +msgstr "" + +#: mate-screenshot/src/screenshot-save.c:60 +#, c-format +msgid "" +"Unable to clear the temporary folder:\n" +"%s" +msgstr "" + +#: mate-screenshot/src/screenshot-save.c:98 +msgid "" +"The child save process unexpectedly exited. We are unable to write the " +"screenshot to disk." +msgstr "" + +#: mate-screenshot/src/screenshot-save.c:231 +msgid "Unknown error saving screenshot to disk" +msgstr "" + +#: mate-screenshot/src/screenshot-xfer.c:74 +msgid "File already exists" +msgstr "" + +#: mate-screenshot/src/screenshot-xfer.c:77 +#, c-format +msgid "The file \"%s\" already exists. Would you like to replace it?" +msgstr "" + +#: mate-screenshot/src/screenshot-xfer.c:122 +msgid "Saving file..." +msgstr "" + +#: mate-screenshot/src/screenshot-xfer.c:292 +msgid "Can't access source file" +msgstr "" diff -Nru mate-utils-1.26.0/missing mate-utils-1.26.1/missing --- mate-utils-1.26.0/missing 2021-08-05 19:45:28.000000000 +0000 +++ mate-utils-1.26.1/missing 1970-01-01 00:00:00.000000000 +0000 @@ -1,215 +0,0 @@ -#! /bin/sh -# Common wrapper for a few potentially missing GNU programs. - -scriptversion=2018-03-07.03; # UTC - -# Copyright (C) 1996-2020 Free Software Foundation, Inc. -# Originally written by Fran,cois Pinard , 1996. - -# 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 2, 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 . - -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -if test $# -eq 0; then - echo 1>&2 "Try '$0 --help' for more information" - exit 1 -fi - -case $1 in - - --is-lightweight) - # Used by our autoconf macros to check whether the available missing - # script is modern enough. - exit 0 - ;; - - --run) - # Back-compat with the calling convention used by older automake. - shift - ;; - - -h|--h|--he|--hel|--help) - echo "\ -$0 [OPTION]... PROGRAM [ARGUMENT]... - -Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due -to PROGRAM being missing or too old. - -Options: - -h, --help display this help and exit - -v, --version output version information and exit - -Supported PROGRAM values: - aclocal autoconf autoheader autom4te automake makeinfo - bison yacc flex lex help2man - -Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and -'g' are ignored when checking the name. - -Send bug reports to ." - exit $? - ;; - - -v|--v|--ve|--ver|--vers|--versi|--versio|--version) - echo "missing $scriptversion (GNU Automake)" - exit $? - ;; - - -*) - echo 1>&2 "$0: unknown '$1' option" - echo 1>&2 "Try '$0 --help' for more information" - exit 1 - ;; - -esac - -# Run the given program, remember its exit status. -"$@"; st=$? - -# If it succeeded, we are done. -test $st -eq 0 && exit 0 - -# Also exit now if we it failed (or wasn't found), and '--version' was -# passed; such an option is passed most likely to detect whether the -# program is present and works. -case $2 in --version|--help) exit $st;; esac - -# Exit code 63 means version mismatch. This often happens when the user -# tries to use an ancient version of a tool on a file that requires a -# minimum version. -if test $st -eq 63; then - msg="probably too old" -elif test $st -eq 127; then - # Program was missing. - msg="missing on your system" -else - # Program was found and executed, but failed. Give up. - exit $st -fi - -perl_URL=https://www.perl.org/ -flex_URL=https://github.com/westes/flex -gnu_software_URL=https://www.gnu.org/software - -program_details () -{ - case $1 in - aclocal|automake) - echo "The '$1' program is part of the GNU Automake package:" - echo "<$gnu_software_URL/automake>" - echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" - echo "<$gnu_software_URL/autoconf>" - echo "<$gnu_software_URL/m4/>" - echo "<$perl_URL>" - ;; - autoconf|autom4te|autoheader) - echo "The '$1' program is part of the GNU Autoconf package:" - echo "<$gnu_software_URL/autoconf/>" - echo "It also requires GNU m4 and Perl in order to run:" - echo "<$gnu_software_URL/m4/>" - echo "<$perl_URL>" - ;; - esac -} - -give_advice () -{ - # Normalize program name to check for. - normalized_program=`echo "$1" | sed ' - s/^gnu-//; t - s/^gnu//; t - s/^g//; t'` - - printf '%s\n' "'$1' is $msg." - - configure_deps="'configure.ac' or m4 files included by 'configure.ac'" - case $normalized_program in - autoconf*) - echo "You should only need it if you modified 'configure.ac'," - echo "or m4 files included by it." - program_details 'autoconf' - ;; - autoheader*) - echo "You should only need it if you modified 'acconfig.h' or" - echo "$configure_deps." - program_details 'autoheader' - ;; - automake*) - echo "You should only need it if you modified 'Makefile.am' or" - echo "$configure_deps." - program_details 'automake' - ;; - aclocal*) - echo "You should only need it if you modified 'acinclude.m4' or" - echo "$configure_deps." - program_details 'aclocal' - ;; - autom4te*) - echo "You might have modified some maintainer files that require" - echo "the 'autom4te' program to be rebuilt." - program_details 'autom4te' - ;; - bison*|yacc*) - echo "You should only need it if you modified a '.y' file." - echo "You may want to install the GNU Bison package:" - echo "<$gnu_software_URL/bison/>" - ;; - lex*|flex*) - echo "You should only need it if you modified a '.l' file." - echo "You may want to install the Fast Lexical Analyzer package:" - echo "<$flex_URL>" - ;; - help2man*) - echo "You should only need it if you modified a dependency" \ - "of a man page." - echo "You may want to install the GNU Help2man package:" - echo "<$gnu_software_URL/help2man/>" - ;; - makeinfo*) - echo "You should only need it if you modified a '.texi' file, or" - echo "any other file indirectly affecting the aspect of the manual." - echo "You might want to install the Texinfo package:" - echo "<$gnu_software_URL/texinfo/>" - echo "The spurious makeinfo call might also be the consequence of" - echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" - echo "want to install GNU make:" - echo "<$gnu_software_URL/make/>" - ;; - *) - echo "You might have modified some files without having the proper" - echo "tools for further handling them. Check the 'README' file, it" - echo "often tells you about the needed prerequisites for installing" - echo "this package. You may also peek at any GNU archive site, in" - echo "case some other package contains this missing '$1' program." - ;; - esac -} - -give_advice "$1" | sed -e '1s/^/WARNING: /' \ - -e '2,$s/^/ /' >&2 - -# Propagate the correct exit status (expected to be 127 for a program -# not found, 63 for a program that failed due to version mismatch). -exit $st - -# Local variables: -# eval: (add-hook 'before-save-hook 'time-stamp) -# time-stamp-start: "scriptversion=" -# time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC0" -# time-stamp-end: "; # UTC" -# End: diff -Nru mate-utils-1.26.0/NEWS mate-utils-1.26.1/NEWS --- mate-utils-1.26.0/NEWS 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/NEWS 2023-05-09 13:31:58.000000000 +0000 @@ -1,9 +1,20 @@ -### mate-notification-daemon 1.26.0 +### mate-utils 1.26.1 + + * Translations update + * search-tool: enable Portuguese language + * mate-dictionary: fix memory leak + * mate-dictionary: fix memory leak + * gsearchtool: fix memory leak + * mate-dictionary: fix memory leak + * mate-disk-image-mounter: fix memory leak + * mate-screenshot: fix memory leak + +### mate-utils 1.26.0 * Translations update * update copyright to 2021 -### mate-notification-daemon 1.25.1 +### mate-utils 1.25.1 * Translations update * Remove warnings about missing prototypes @@ -33,7 +44,7 @@ * Warn about accessing an undefined property of the object * gsearchtool: Fix "open with" behavior -### mate-notification-daemon 1.25.0 +### mate-utils 1.25.0 * Translations update * gdict-pref-dialog: Simplify notebook scroll event @@ -67,12 +78,12 @@ * baobab: Remove unused variable ‘uri_list’ * mate-screenshot: do not use stock icons in mate-screenshot.ui -### mate-notification-daemon 1.24.0 +### mate-utils 1.24.0 * Translations update * Fix build using gcc 10 -fno-common flag -### mate-notification-daemon 1.23.2 +### mate-utils 1.23.2 * Translations update * gettext: Fix locale dir diff -Nru mate-utils-1.26.0/omf.make mate-utils-1.26.1/omf.make --- mate-utils-1.26.0/omf.make 2021-08-05 19:45:14.000000000 +0000 +++ mate-utils-1.26.1/omf.make 1970-01-01 00:00:00.000000000 +0000 @@ -1,65 +0,0 @@ -# -# No modifications of this Makefile should be necessary. -# -# This file contains the build instructions for installing OMF files. It is -# generally called from the makefiles for particular formats of documentation. -# -# Note that you must configure your package with --localstatedir=/var -# so that the scrollkeeper-update command below will update the database -# in the standard scrollkeeper directory. -# -# If it is impossible to configure with --localstatedir=/var, then -# modify the definition of scrollkeeper_localstate_dir so that -# it points to the correct location. Note that you must still use -# $(localstatedir) in this or when people build RPMs it will update -# the real database on their system instead of the one under RPM_BUILD_ROOT. -# -# Note: This make file is not incorporated into xmldocs.make because, in -# general, there will be other documents install besides XML documents -# and the makefiles for these formats should also include this file. -# -# About this file: -# This file was derived from scrollkeeper_example2, a package -# illustrating how to install documentation and OMF files for use with -# ScrollKeeper 0.3.x and 0.4.x. For more information, see: -# http://scrollkeeper.sourceforge.net/ -# Version: 0.1.3 (last updated: March 20, 2002) -# - -omf_dest_dir=$(datadir)/omf/@PACKAGE@ -scrollkeeper_localstate_dir = $(localstatedir)/scrollkeeper - -# At some point, it may be wise to change to something like this: -# scrollkeeper_localstate_dir = @SCROLLKEEPER_STATEDIR@ - -omf: omf_timestamp - -omf_timestamp: $(omffile) - -for file in $(omffile); do \ - absfile=$(srcdir)/$$file; \ - test -r $$file && absfile=$$file; \ - scrollkeeper-preinstall $(docdir)/$(docname).xml $$absfile $$file.out; \ - done; \ - touch omf_timestamp - -install-data-hook-omf: - $(mkinstalldirs) $(DESTDIR)$(omf_dest_dir) - for file in $(omffile); do \ - absfile=$(srcdir)/$$file.out; \ - test -r $$file.out && absfile=$$file.out; \ - $(INSTALL_DATA) $$absfile $(DESTDIR)$(omf_dest_dir)/$$file; \ - done - -scrollkeeper-update -p $(DESTDIR)$(scrollkeeper_localstate_dir) -o $(DESTDIR)$(omf_dest_dir) - -uninstall-local-omf: - -for file in $(omffile); do \ - basefile=`basename $$file`; \ - rm -f $(DESTDIR)$(omf_dest_dir)/$$basefile; \ - done - -rmdir $(DESTDIR)$(omf_dest_dir) - -scrollkeeper-update -p $(DESTDIR)$(scrollkeeper_localstate_dir) - -clean-local-omf: - -for file in $(omffile); do \ - rm -f $$file.out; \ - done Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/af.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/af.gmo differ diff -Nru mate-utils-1.26.0/po/af.po mate-utils-1.26.1/po/af.po --- mate-utils-1.26.0/po/af.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/af.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Juanita Nell , 2018 # Stefano Karapetsas , 2021 -# +# Juanita Nell , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Afrikaans (https://www.transifex.com/mate/teams/13566/af/)\n" -"Language: af\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Juanita Nell , 2021\n" +"Language-Team: Afrikaans (https://app.transifex.com/mate/teams/13566/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "Kontroleer gidsgroottes en beskikbare skyfspasie" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -589,8 +590,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -637,16 +638,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Vind dokumente of gidse om die rekenaar volgens naam of inhoud" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -680,9 +682,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -704,8 +706,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -724,9 +726,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -736,8 +738,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -801,8 +803,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -819,8 +821,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -841,63 +843,63 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Lêer is nie 'n geldige .desktop-lêer nie" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Nieherkende \"desktop\"-lêerweergawe '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Begin tans %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Toepassing aanvaar nie dokumente op die opdraglyn nie" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Nieherkende lanseeropsie: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Kan nie dokument URI's na 'n 'Type=Link' \"desktop\"-inskrywing aangee nie" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Nie 'n loopbare item nie" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Deaktiveer konneksie na sessiebestuurder" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Spesifiseer lêer wat gestoorde konfigurasie bevat" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "LÊER" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Spesifiseer sessiebestuurs-ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Sessiebestuurskeuses:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Wys keuses vir sessiebestuur" @@ -1504,7 +1506,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1515,8 +1518,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1914,7 +1917,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Soek definisies en spelling in 'n aanlynwoordeboek" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1926,8 +1930,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2949,7 +2953,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Stoor beelde van die werkskerm of individuele vensters" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3144,8 +3149,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3153,7 +3158,8 @@ "Conflicting options: --window and --area should not be used at the same " "time.\n" msgstr "" -"Konflik van keuses: --window en --area mag nie gelyktydig gebruik word nie.\n" +"Konflik van keuses: --window en --area mag nie gelyktydig gebruik word " +"nie.\n" #: mate-screenshot/src/screenshot-dialog.c:210 #, c-format Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/am.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/am.gmo differ diff -Nru mate-utils-1.26.0/po/am.po mate-utils-1.26.1/po/am.po --- mate-utils-1.26.0/po/am.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/am.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,24 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2018 +# clefebvre , 2021 # samson , 2021 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: samson , 2021\n" -"Language-Team: Amharic (https://www.transifex.com/mate/teams/13566/am/)\n" -"Language: am\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Amharic (https://app.transifex.com/mate/teams/13566/am/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +31,8 @@ msgid "Check folder sizes and available disk space" msgstr "የፎልድር መጠኖችን እና ዝግጁ የዲስክ ቦታዎችን መርማሪ " -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +216,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -579,8 +581,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -624,16 +626,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "ሰነዶች ወይንም ፎልደሮች በዚህ ኮምፒዩተር ውስጥ በ ስም ወይንም በ ይዞታ ፈልጎ ማግኛ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -668,12 +671,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" -"ይህ ቁልፍ የሚገልጸው መንገድ የ መፈለጊያ መሳሪያ ነው: በፍጥነት መፈለጊያ አያካትትም: ሁሉ ገብ ካርድ '*' እና '?' " -"የ ተደገፉ ናቸው: ነባር ዋጋዎች እነዚህ ናቸው /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, " +"ይህ ቁልፍ የሚገልጸው መንገድ የ መፈለጊያ መሳሪያ ነው: በፍጥነት መፈለጊያ አያካትትም: ሁሉ ገብ ካርድ '*' እና '?'" +" የ ተደገፉ ናቸው: ነባር ዋጋዎች እነዚህ ናቸው /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, " "and /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -697,8 +700,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -717,9 +720,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "ይህ ቁልፍ የሚወስነው የ መስኮት ስፋት መጠኑን እና አጠቃቀሙን ነው በ መፈለጊያ መሳሪያዎች መካከል በ ክፍለ ጊዜ ውስጥ " "ነው: ይህ -1 የ መፈለጊያ መስሪያ ነባር ስፋት ይጠቀማል" @@ -731,8 +734,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "ይህ ቁልፍ የሚወስነው የ መስኮት እርዝመት መጠኑን እና አጠቃቀሙን ነው በ መፈለጊያ መሳሪያዎች መካከል በ ክፍለ ጊዜ " "ውስጥ: ይህ -1 የ መፈለጊያ መስሪያ ነባር እርዝመት ይጠቀማል" @@ -790,8 +793,7 @@ msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." -msgstr "" -"ይህ ቁልፍ የሚወስነው \"ፋይሉ ባዶ ሲሆን ነው\" መፈለጊያ ምርጫ ሲመረጥ ነው የ መፈለጊያ መሳሪያ በሚጀምር ጊዜ" +msgstr "ይህ ቁልፍ የሚወስነው \"ፋይሉ ባዶ ሲሆን ነው\" መፈለጊያ ምርጫ ሲመረጥ ነው የ መፈለጊያ መሳሪያ በሚጀምር ጊዜ" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" @@ -802,17 +804,15 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." -msgstr "" -"ይህ ገጽ የሚወስነው \"የ ቡድን እንደሆን ነው\" መፈለጊያ ምርጫ ሲመረጥ ነው የ መፈለጊያ መሳሪያ በሚጀምር ጊዜ" +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." +msgstr "ይህ ገጽ የሚወስነው \"የ ቡድን እንደሆን ነው\" መፈለጊያ ምርጫ ሲመረጥ ነው የ መፈለጊያ መሳሪያ በሚጀምር ጊዜ" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." -msgstr "" -"ይህ ቁልፍ የሚወስነው \"ባለቤቱ የማይታወቅ ከሆነ\" መፈለጊያ ምርጫ ይመረጣል የ መፈለጊያ መሳሪያ በሚጀመር ጊዜ: " +msgstr "ይህ ቁልፍ የሚወስነው \"ባለቤቱ የማይታወቅ ከሆነ\" መፈለጊያ ምርጫ ይመረጣል የ መፈለጊያ መሳሪያ በሚጀመር ጊዜ: " #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" @@ -822,8 +822,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "ይህ ቁልፍ የሚወስነው \"ስሙ ተመሳሳይ ከሆነ ነው ከ መደበኛ መግለጫ ጋር\" መፈለጊያ ምርጫ ይመረጣል የ መፈለጊያ " "መሳሪያ በሚጀመር ጊዜ:" @@ -833,7 +833,8 @@ "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"ይህ ቁልፍ የሚወስነው \"የ ተደበቁ ፋይሎች ለማሳየት ነው\" መፈለጊያ ምርጫ ይመረጣል የ መፈለጊያ መሳሪያ በሚጀመር ጊዜ:" +"ይህ ቁልፍ የሚወስነው \"የ ተደበቁ ፋይሎች ለማሳየት ነው\" መፈለጊያ ምርጫ ይመረጣል የ መፈለጊያ መሳሪያ በሚጀመር " +"ጊዜ:" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" @@ -850,62 +851,62 @@ "ይህ ቁልፍ የሚወስነው \"ሌሎች የ ፋይል ስርአት አያካትትም\" መፈለጊያ ምርጫ ይመረጣል የ መፈለጊያ መሳሪያ በሚጀመር " "ጊዜ:" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "ፋይሉ ዋጋ ያለው የ .ዴስክቶፕ ፋይል አይደለም" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "ያልታወቀ የ ዴስክቶፕ ፋይል አይነት እትም '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "በማስጀመር ላይ %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "መተግበሪያው ሰነድ በ ትእዛዝ መስመር አይቀበልም" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "ያልታወቀ ማስጀመሪያ ምርጫ: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "የ ሰነድ URIs ማለፍ አልተቻለም ወደ የ 'አይነት=አገናኝ' ዴስክቶፕ ማስገቢያ" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "እቃው የሚጀምር አይነት አይደለም" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "ከ ክፍለ ጊዜ አስተዳዳሪ ጋር ግንኙነት ማሰናከያ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "የ ተቀመጠውን የ ማሰናጃ ፋይል የያዘውን መወሰኛ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ፋይል" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "የ ክፍለ ጊዜ አስተዳዳሪ ID ይወስኑ " -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "መለያ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "የ ክፍለ ጊዜ አስተዳዳሪ ምርጫ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "የ ክፍለ ጊዜ አስተዳዳሪ ምርጫ ማሳያ" @@ -1278,16 +1279,16 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "እርስዎ በ እርግጥ ሰነዱን መክፈት %d ይፈልጋሉ?" -msgstr[1] "እርስዎ በ እርግጥ ሰነዶቹን መክፈት %d ይፈልጋሉ?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "ይህ የተለዩ መስኮቶች %d ይከፍታል" -msgstr[1] "ይህ የተለዩ መስኮቶች %d ይከፍታል" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1311,8 +1312,8 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "በእርግጥ ፎልደሮቹን መክፈት %d ይፈልጋሉ?" -msgstr[1] "በእርግጥ ፎልደሮቹን መክፈት %d ይፈልጋሉ?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1516,7 +1517,8 @@ msgid "View or monitor system log files" msgstr "የ ስርአት መግቢያ ፋይሎች መመልከቻ ወይንም መቆጣጠሪያ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1527,11 +1529,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"በሚጀምር ጊዜ የ መግቢያ ፋይል ማሳያ መወሰኛ: ነባሩ ከ እነዚህ አንዱ ነው /var/adm/messages ወይንም /var/" -"log/messages, እንደ መስሪያ ስርአቱ አይነት ይለያያል" +"በሚጀምር ጊዜ የ መግቢያ ፋይል ማሳያ መወሰኛ: ነባሩ ከ እነዚህ አንዱ ነው /var/adm/messages ወይንም " +"/var/log/messages, እንደ መስሪያ ስርአቱ አይነት ይለያያል" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1928,7 +1930,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "የ ቃላት ትርጉም እና ፊደል መመርመሪያ በ መስመር መዝገበ ቃላት ላይ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1940,8 +1943,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2064,7 +2067,8 @@ msgid "" "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" -msgstr "ወደ መዝገበ ቃላትሰርቨር መገናኘት አልተቻለም በ '%s:%d'. ሰርቨሩ መልሷል በ ኮድ %d (ሰርቨሩ አይሰራም)" +msgstr "" +"ወደ መዝገበ ቃላትሰርቨር መገናኘት አልተቻለም በ '%s:%d'. ሰርቨሩ መልሷል በ ኮድ %d (ሰርቨሩ አይሰራም)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2705,7 +2709,7 @@ #: mate-dictionary/src/gdict-window.c:1282 msgid "Find a word or phrase in the document" -msgstr "በሰነዱ ውስጥ ቃላት ወይንም ሀረግ መፈለጊያ " +msgstr "በ ሰነዱ ውስጥ ቃላት ወይንም ሀረግ መፈለጊያ " #: mate-dictionary/src/gdict-window.c:1284 msgid "Find Ne_xt" @@ -2965,7 +2969,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3157,8 +3162,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ar.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ar.gmo differ diff -Nru mate-utils-1.26.0/po/ar.po mate-utils-1.26.1/po/ar.po --- mate-utils-1.26.0/po/ar.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/ar.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,30 +2,31 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# free_voice , 2018 -# alibacha19 , 2018 -# مهدي السطيفي , 2018 -# Mosaab Alzoubi , 2019 -# وجدي أبو سلطان, 2019 +# free_voice , 2021 +# Ahmad Dakhlallah , 2021 +# وجدي أبو سلطان, 2021 +# Ahmd go , 2021 +# alibacha19 , 2021 # Stefano Karapetsas , 2021 +# Mosaab Alzoubi , 2021 # Mubarak Qahtani , 2021 -# +# مهدي السطيفي , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Mubarak Qahtani , 2021\n" -"Language-Team: Arabic (https://www.transifex.com/mate/teams/13566/ar/)\n" -"Language: ar\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: مهدي السطيفي , 2021\n" +"Language-Team: Arabic (https://app.transifex.com/mate/teams/13566/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -36,7 +37,8 @@ msgid "Check folder sizes and available disk space" msgstr "افحص حجم المجلدات والمساحة المتوفرة" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -220,8 +222,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -567,7 +569,7 @@ #: baobab/src/callbacks.c:74 logview/src/logview-about.h:44 #: mate-dictionary/src/gdict-about.c:49 msgid "MATE Documentation Team" -msgstr "" +msgstr "فريق توثيق ماتي " #: baobab/src/callbacks.c:79 logview/src/logview-about.h:49 #: mate-dictionary/src/gdict-about.c:57 @@ -578,8 +580,8 @@ "any later version." msgstr "" "هذا البرنامج حر؛ بإمكانك إعادة توزيعه و/أو تعديله تحت شروط الرخصة العمومية " -"العامة لجنو والتي نشرتها منظمة البرمجيات الحرة؛ سواء الإصدارة 2 من الرخصة أو " -"أي إصدارة بعدها حسب رغبتك." +"العامة لجنو والتي نشرتها منظمة البرمجيات الحرة؛ سواء الإصدارة 2 من الرخصة أو" +" أي إصدارة بعدها حسب رغبتك." #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -589,15 +591,15 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"يوزّع البرنامج على أمل أن يكون مفيدًا لمن يستخدمه دون أدنى مسؤولية؛ ولا حتى أي " -"ضمان يضمن صلاحية العرض في السوق أو توافقه مع أي استخدام محدد. يمكنك مراجعة " -"الرخصة العمومية العامة لجنو لمزيد من التفاصيل." +"يوزّع البرنامج على أمل أن يكون مفيدًا لمن يستخدمه دون أدنى مسؤولية؛ ولا حتى " +"أي ضمان يضمن صلاحية العرض في السوق أو توافقه مع أي استخدام محدد. يمكنك " +"مراجعة الرخصة العمومية العامة لجنو لمزيد من التفاصيل." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -619,7 +621,8 @@ msgid "translator-credits" msgstr "" "فريق عيون العرب للترجمة http://www.arabeyes.org :\n" -"مصعب الزعبي\t" +"مصعب الزعبي\t\n" +"لينيكس العرب linuxarabia.co" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -643,16 +646,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "اعثر على المستندات و الملفات على هذا الحاسوب بالاسم أو المحتوى" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -679,8 +683,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"يحدّد هذا المفتاح إذا كانت أداة البحث تعطّل استعمال أمر locate بعد القيام ببحث " -"سريع." +"يحدّد هذا المفتاح إذا كانت أداة البحث تعطّل استعمال أمر locate بعد القيام " +"ببحث سريع." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -688,13 +692,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "يحدّد هذا المفتاح المسارات المستنثناة من أداة البحث عند البحث السّريع. " -"الأداتين '?' و '*' مدعومتين. القيم الافتراضية هي /mnt/*، /media/*، /dev/*، /" -"tmp/*، /proc/*، و /var/*." +"الأداتين '?' و '*' مدعومتين. القيم الافتراضية هي /mnt/*، /media/*، /dev/*، " +"/tmp/*، /proc/*، و /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -705,8 +709,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"يحدّد هذا المفتاح إذا كانت أداة البحث تعطّل استعمال أمر find بعد القيام ببحث " -"سريع." +"يحدّد هذا المفتاح إذا كانت أداة البحث تعطّل استعمال أمر find بعد القيام ببحث" +" سريع." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -717,13 +721,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"يحدّد هذا المفتاح المسارات المستنثناة من أداة البحث عند البحث السّريع الثاني. " -"البحث الثاني يستعمل أمر find للبحث عن ملفّات. هدف البحث الثاني هو إيجاد " -"الملفّات التي لم يتم اسرادها. الأداتين '?' و '*' مدعومتين. القيمة الافتراضية " -"هي /." +"يحدّد هذا المفتاح المسارات المستنثناة من أداة البحث عند البحث السّريع " +"الثاني. البحث الثاني يستعمل أمر find للبحث عن ملفّات. هدف البحث الثاني هو " +"إيجاد الملفّات التي لم يتم اسرادها. الأداتين '?' و '*' مدعومتين. القيمة " +"الافتراضية هي /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -743,9 +747,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "يحدّد هذا المفتاح عرض النافذة، و يستعمل لتذكّر حجم أداة البحث بين الجلسات. " "تحديد -1 سيجعل أداة البحث تستعمل القيمة الافتراضية." @@ -757,11 +761,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"يحدّد هذا المفتاح ارتفاع النافذة، و يستعمل لتذكّر حجم أداة البحث بين الجلسات. " -"تحديد -1 سيجعل أداة البحث تستعمل القيمة الافتراضية." +"يحدّد هذا المفتاح ارتفاع النافذة، و يستعمل لتذكّر حجم أداة البحث بين " +"الجلسات. تحديد -1 سيجعل أداة البحث تستعمل القيمة الافتراضية." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -793,32 +797,32 @@ "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"يحدّد هذا المفتاح إذا كان خيار البحث \"تاريخ التعديل أقل من\" مختارا عند بدأ " -"أداة البحث." +"يحدّد هذا المفتاح إذا كان خيار البحث \"تاريخ التعديل أقل من\" مختارا عند " +"بدأ أداة البحث." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"يحدّد هذا المفتاح إذا كان خيار البحث \"تاريخ التعديل أكبر من\" مختارا عند بدأ " -"أداة البحث." +"يحدّد هذا المفتاح إذا كان خيار البحث \"تاريخ التعديل أكبر من\" مختارا عند " +"بدأ أداة البحث." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"يحدّد هذا المفتاح إذا كان خيار البحث \"الحجم على الأقل\" مختارا عند بدأ أداة " -"البحث." +"يحدّد هذا المفتاح إذا كان خيار البحث \"الحجم على الأقل\" مختارا عند بدأ " +"أداة البحث." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"يحدّد هذا المفتاح إذا كان خيار البحث \"الحجم على الأكثر\" مختارا عند بدأ أداة " -"البحث." +"يحدّد هذا المفتاح إذا كان خيار البحث \"الحجم على الأكثر\" مختارا عند بدأ " +"أداة البحث." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" @@ -838,8 +842,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "يحدّد هذا المفتاح إذا كان خيار البحث \"ملك المجموعة\" مختارا عند بدأ أداة " "البحث." @@ -849,8 +853,8 @@ "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"يحدّد هذا المفتاح إذا كان خيار البحث \"المالك غير معرّف\" مختارا عند بدأ أداة " -"البحث." +"يحدّد هذا المفتاح إذا كان خيار البحث \"المالك غير معرّف\" مختارا عند بدأ " +"أداة البحث." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" @@ -862,11 +866,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"يحدّد هذا المفتاح إذا كان خيار البحث \"الاسم يطابق التعبير النمطي\"مختارا عند " -"بدأ أداة البحث." +"يحدّد هذا المفتاح إذا كان خيار البحث \"الاسم يطابق التعبير النمطي\"مختارا " +"عند بدأ أداة البحث." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" @@ -892,62 +896,62 @@ "يحدّد هذا المفتاح إذا كان خيار البحث \"اشمل أنظمة الملفات الأخرى\" مختارا " "عند بدأ أداة البحث." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "الملف ليس ملف مُدخل سطح مكتب صالح" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "اصدارة غير معروفة لمُدخل سطح المكتب '‏%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "بدء %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "لا يقبل التّطبيق مستندات في سطر الأوامر" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "خيار الإطلاق غير معروف: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "لا يمكن تمرير عناوين المستندات إلى 'Type=Link' في مُدخل سطح المكتب" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "ليس عنصرًا قابلا للاطلاق" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "عطّل الاتصال بمُدير الجلسات" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "حدد ملفًا يحتوي الإعدادات المحفوظة" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "الملف" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "حدد معرف إدارة الجلسة" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "خيارات إدارة الجلسات:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "اعرض خيارات إدارة الجلسات" @@ -1119,7 +1123,8 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"رتّب الملفات بحسب واحد من التالي: الاسم أو المجلّد أو الحجم أو النوع أو التاريخ" +"رتّب الملفات بحسب واحد من التالي: الاسم أو المجلّد أو الحجم أو النوع أو " +"التاريخ" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1575,7 +1580,8 @@ msgid "View or monitor system log files" msgstr "اعرض أو راقب ملفات سجلات النظام" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1586,8 +1592,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "يحدّد ملف السّجل الذي سيفتح عند بدأ التشغيل. الافتراضي هو /var/adm/messages " "أو /var/log/messages، بحسب نظام تشغيلك." @@ -1991,7 +1997,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "ابحث عن تعريف وإملاء الكلمات في قاموس على الشّابكة" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -2003,8 +2010,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2034,9 +2041,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"اسم قاعدة البيانات أو معلومات قاعدة بيانات الفرديّة لتستعمل في مصدر القاموس. " -"علامة التعجب (\"!\") تعني أنّه سيبحث في جميع قواعد البيانات الموجودة في مصدر " -"القاموس." +"اسم قاعدة البيانات أو معلومات قاعدة بيانات الفرديّة لتستعمل في مصدر القاموس." +" علامة التعجب (\"!\") تعني أنّه سيبحث في جميع قواعد البيانات الموجودة في " +"مصدر القاموس." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -3039,7 +3046,8 @@ msgid "Save images of your desktop or individual windows" msgstr "احفظ صور لسطح مكتبك أو للنوافذ المنفردة" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3096,9 +3104,7 @@ msgid "" "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." -msgstr "" -"التأثير المضاف لخارج الحافة. القيم الممكنة هي \"shadow\"، \"none\"، و " -"\"border\"." +msgstr "التأثير المضاف لخارج الحافة. القيم الممكنة هي \"shadow\"، \"none\"، و \"border\"." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3236,8 +3242,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/as.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/as.gmo differ diff -Nru mate-utils-1.26.0/po/as.po mate-utils-1.26.1/po/as.po --- mate-utils-1.26.0/po/as.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/as.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Assamese (https://www.transifex.com/mate/teams/13566/as/)\n" -"Language: as\n" +"Language-Team: Assamese (https://app.transifex.com/mate/teams/13566/as/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: as\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "ফোল্ডাৰৰ মাপ আৰু ডিস্কত উপলব্ধ স্থান পৰীক্ষা কৰা হ'ব" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -565,9 +566,9 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"This program is free software; you can redistribute it and/or modify iof the " -"GNU General Public License as published by the Freversion 2 of the License, " -"or (at your option" +"This program is free software; you can redistribute it and/or modify iof the" +" GNU General Public License as published by the Freversion 2 of the License," +" or (at your option" #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -584,8 +585,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -629,16 +630,19 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" -msgstr "নাম বা অন্তৰ্ভুক্ত বিষয় অনুসাৰে এই কম্পিউটাৰে নথিপত্ৰ বা ফোল্ডাৰ অনুসন্ধান কৰক" +msgstr "" +"নাম বা অন্তৰ্ভুক্ত বিষয় অনুসাৰে এই কম্পিউটাৰে নথিপত্ৰ বা ফোল্ডাৰ অনুসন্ধান " +"কৰক" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -665,8 +669,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"এই চাবি দ্বাৰা নিৰ্ধাৰিত হয় নথিপত্ৰৰ নাম অনুসাৰে সাধাৰণ অনুসন্ধানৰ সময় অনুসন্ধান " -"ব্যৱস্থাৰ দ্বাৰা locate আদেশেৰ ব্যৱহাৰ নিষ্ক্ৰিয় কৰা হ'ব নে নহয় ।" +"এই চাবি দ্বাৰা নিৰ্ধাৰিত হয় নথিপত্ৰৰ নাম অনুসাৰে সাধাৰণ অনুসন্ধানৰ সময় " +"অনুসন্ধান ব্যৱস্থাৰ দ্বাৰা locate আদেশেৰ ব্যৱহাৰ নিষ্ক্ৰিয় কৰা হ'ব নে নহয় ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -674,13 +678,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"এই চাবি দ্বাৰা ঝটপট অনুসন্ধান ব্যৱস্থায় বৰ্জিত পাথসমূহ নিৰ্ধাৰিত হয় । '*' আৰু '?' " -"ওয়াইল্ড-কাৰ্ডসমূহ ব্যৱহাৰ কৰা সম্ভৱ হ'ব । অবিকল্পিত মান হল, /mnt/*, /media/*, /dev/" -"*, /tmp/*, /pৰoc/* আৰু /vaৰ/* ।" +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"এই চাবি দ্বাৰা ঝটপট অনুসন্ধান ব্যৱস্থায় বৰ্জিত পাথসমূহ নিৰ্ধাৰিত হয় । '*' " +"আৰু '?' ওয়াইল্ড-কাৰ্ডসমূহ ব্যৱহাৰ কৰা সম্ভৱ হ'ব । অবিকল্পিত মান হল, /mnt/*, " +"/media/*, /dev/*, /tmp/*, /pৰoc/* আৰু /vaৰ/* ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -691,8 +695,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"এই চাবি দ্বাৰা নিৰ্ধাৰিত হয় ঝটপট অনুসন্ধানৰ পৰে অনুসন্ধান ব্যৱস্থাৰ দ্বাৰা find " -"আদেশেৰ ব্যৱহাৰ নিষ্ক্ৰিয় কৰা হ'ব নে নহয় ।" +"এই চাবি দ্বাৰা নিৰ্ধাৰিত হয় ঝটপট অনুসন্ধানৰ পৰে অনুসন্ধান ব্যৱস্থাৰ দ্বাৰা " +"find আদেশেৰ ব্যৱহাৰ নিষ্ক্ৰিয় কৰা হ'ব নে নহয় ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -703,13 +707,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"এই চাবি দ্বাৰা ঝটপট অনুসন্ধান ব্যৱস্থায় দ্বিতীয় স্কেনৰ সময় উপেক্ষিত পাথসমূহ নিৰ্ধাৰিত " -"হয় । দ্বিতীয় স্কেনৰ সময় find আদেশেৰ সাহায্যে নথিপত্ৰ অনুসন্ধান কৰা হয় । মূলত ইনডেক্স " -"নকৰা নথিপত্ৰ এই পদ্ধতিতে অনুসন্ধান কৰা হয় । '*' আৰু '?' ওয়াইল্ড-কাৰ্ডসমূহ ব্যৱহাৰ কৰা " -"সম্ভৱ হ'ব । অবিকল্পিত মান হল, / ।" +"এই চাবি দ্বাৰা ঝটপট অনুসন্ধান ব্যৱস্থায় দ্বিতীয় স্কেনৰ সময় উপেক্ষিত পাথসমূহ " +"নিৰ্ধাৰিত হয় । দ্বিতীয় স্কেনৰ সময় find আদেশেৰ সাহায্যে নথিপত্ৰ অনুসন্ধান কৰা" +" হয় । মূলত ইনডেক্স নকৰা নথিপত্ৰ এই পদ্ধতিতে অনুসন্ধান কৰা হয় । '*' আৰু '?' " +"ওয়াইল্ড-কাৰ্ডসমূহ ব্যৱহাৰ কৰা সম্ভৱ হ'ব । অবিকল্পিত মান হল, / ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -727,9 +731,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "আৰু মুঠ অবিকল্পিত." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -739,8 +743,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "আৰু মুঠ অবিকল্পিত." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -751,8 +755,8 @@ msgid "" "This key determines if the search tool window starts in a maximized state." msgstr "" -"এই চাবি দ্বাৰা নিৰ্ধাৰিত হয় প্ৰাৰম্ভসময়ত অনুসন্ধানব্যৱস্থাৰ উইন্ডোৰ ক্ষেত্ৰত সৰ্বোচ্চ মাপ " -"প্ৰয়োগ কৰা হ'ব নে নহয় ।" +"এই চাবি দ্বাৰা নিৰ্ধাৰিত হয় প্ৰাৰম্ভসময়ত অনুসন্ধানব্যৱস্থাৰ উইন্ডোৰ ক্ষেত্ৰত" +" সৰ্বোচ্চ মাপ প্ৰয়োগ কৰা হ'ব নে নহয় ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -769,169 +773,171 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"\"চিহ্নিত লেখাসহ\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা এই চাবি দ্বাৰা " -"অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" +"\"চিহ্নিত লেখাসহ\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা এই চাবি দ্বাৰা" +" অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"\"সৰ্বশেষ পৰিবৰ্তনৰ তাৰিখ চিহ্নিত সংখ্যাত\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে চাবি না " -"তা এই চাবি দ্বাৰা অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" +"\"সৰ্বশেষ পৰিবৰ্তনৰ তাৰিখ চিহ্নিত সংখ্যাত\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে" +" চাবি না তা এই চাবি দ্বাৰা অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"\"সৰ্বশেষ পৰিবৰ্তনৰ তাৰিখ চিহ্নিত সংখ্যাৰ ঊৰ্ধ্বে\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে " -"চাবি না তা এই চাবি দ্বাৰা অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" +"\"সৰ্বশেষ পৰিবৰ্তনৰ তাৰিখ চিহ্নিত সংখ্যাৰ ঊৰ্ধ্বে\" অনুসন্ধান বিকল্পটি " +"নিৰ্বাচিত হয়ে চাবি না তা এই চাবি দ্বাৰা অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত " +"নিৰ্ধাৰিত হয় ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"\"ন্যূনতম মাপ\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা এই চাবি দ্বাৰা অনুসন্ধান " -"ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" +"\"ন্যূনতম মাপ\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা এই চাবি দ্বাৰা " +"অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"\"সৰ্বাধিক মাপ\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা এই চাবি দ্বাৰা অনুসন্ধান " -"ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" +"\"সৰ্বাধিক মাপ\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা এই চাবি দ্বাৰা " +"অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"\"ৰিক্ত নথিপত্ৰ\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা এই চাবি দ্বাৰা অনুসন্ধান " -"ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" +"\"ৰিক্ত নথিপত্ৰ\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা এই চাবি দ্বাৰা " +"অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"\"চিহ্নিত ব্যৱহাৰকৰ্তাৰ মালিকানাধীন\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা এই " -"চাবি দ্বাৰা অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" +"\"চিহ্নিত ব্যৱহাৰকৰ্তাৰ মালিকানাধীন\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে " +"নহয় তা এই চাবি দ্বাৰা অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"\"চিহ্নিত দলেৰ মালিকানাধীন\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা এই চাবি " -"দ্বাৰা অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" +"\"চিহ্নিত দলেৰ মালিকানাধীন\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা এই " +"চাবি দ্বাৰা অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"\"অজ্ঞাত মালিকেৰ অধীনহ\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা এই চাবি দ্বাৰা " -"অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" +"\"অজ্ঞাত মালিকেৰ অধীনহ\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা এই চাবি " +"দ্বাৰা অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"\"নামত অনুপস্থিত\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা এই চাবি দ্বাৰা " -"অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" +"\"নামত অনুপস্থিত\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা এই চাবি দ্বাৰা" +" অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"\"ৰেগুলাৰ এক্সপ্ৰেশনৰ সৈতে মেলানো নাম\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা " -"এই চাবি দ্বাৰা অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" +"\"ৰেগুলাৰ এক্সপ্ৰেশনৰ সৈতে মেলানো নাম\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে " +"নহয় তা এই চাবি দ্বাৰা অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"\"আড়াল কৰা নথিপত্ৰ আৰু ফোল্ডাৰ প্ৰদৰ্শন কৰা হ'ব\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে " -"নহয় তা এই চাবি দ্বাৰা অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" +"\"আড়াল কৰা নথিপত্ৰ আৰু ফোল্ডাৰ প্ৰদৰ্শন কৰা হ'ব\" অনুসন্ধান বিকল্পটি " +"নিৰ্বাচিত হয়ে নে নহয় তা এই চাবি দ্বাৰা অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত " +"নিৰ্ধাৰিত হয় ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"\"সিম্বলিক লিঙ্ক অনুসৰণ কৰা হ'ব\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা এই " -"চাবি দ্বাৰা অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" +"\"সিম্বলিক লিঙ্ক অনুসৰণ কৰা হ'ব\" অনুসন্ধান বিকল্পটি নিৰ্বাচিত হয়ে নে নহয় তা" +" এই চাবি দ্বাৰা অনুসন্ধান ব্যৱস্থা আৰম্ভ সময়ত নিৰ্ধাৰিত হয় ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"\"অন্যান্য নথিপত্ৰ-প্ৰণালী অন্তৰ্ভুক্ত কৰা হ'ব\" অনুসন্ধান বিকল্প নিৰ্বাচিত হয় নে নহয় " -"সেইট" +"\"অন্যান্য নথিপত্ৰ-প্ৰণালী অন্তৰ্ভুক্ত কৰা হ'ব\" অনুসন্ধান বিকল্প নিৰ্বাচিত " +"হয় নে নহয় সেইট" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "বৈধ .desktop নথিপত্ৰ নহয় " -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "ডেস্কটপ নথিপত্ৰৰ অজ্ঞাত সংস্কৰণ '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s আৰম্ভ কৰা হৈছে" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "এই এপ্লিকেশন দ্বাৰা আদেশ-শাৰীৰ মাধ্যমে নথিপত্ৰ গ্ৰহণ কৰা নহয়" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "প্ৰাৰম্ভকালীন বিকল্প পৰিচিত নহয় : %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "'Type=Link' ডেস্কটপ নিবেশলৈ নথিৰ URI উল্লেখ কৰা নাযাব" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "প্ৰাৰম্ভ কৰাৰ যোগ্য বস্তু নহয় " -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "অধিবেশন পৰিচালন ব্যৱস্থাৰ সৈতে সংযোগ বিচ্ছিন্ন কৰা হ'ব" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "সংৰক্ষিত বিন্যাস সহ নথিপত্ৰ চিহ্নিত কৰক" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "নথিপত্ৰ: [1]" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "অধিবেশন পৰিচালনাৰ ID উল্লেখ কৰক" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "অধিবেশন পৰিচালনা সংক্ৰান্ত বিকল্প:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "অধিবেশন পৰিচালনা সংক্ৰান্ত বিকল্প প্ৰদৰ্শন কৰা হ'ব" @@ -1090,13 +1096,14 @@ #: gsearchtool/src/gsearchtool.c:1326 msgid "Set the text of \"Look in folder\" search option" -msgstr "অনুসন্ধান কৰ্মৰ \"চিহ্নিত ফোল্ডাৰে অনুসন্ধান কৰা হ'ব\" বিকল্পৰ টেক্সট লিখুন" +msgstr "" +"অনুসন্ধান কৰ্মৰ \"চিহ্নিত ফোল্ডাৰে অনুসন্ধান কৰা হ'ব\" বিকল্পৰ টেক্সট লিখুন" #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"নথিপত্ৰসমূহ উল্লিখিত বিষয়েৰ যে কোনো এটা ক্ৰমে বিন্যাস কৰা হ'ব: নাম,ফোল্ডাৰ,মাপ,ধৰন " -"বা তাৰিখ" +"নথিপত্ৰসমূহ উল্লিখিত বিষয়েৰ যে কোনো এটা ক্ৰমে বিন্যাস কৰা হ'ব: " +"নাম,ফোল্ডাৰ,মাপ,ধৰন বা তাৰিখ" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1133,7 +1140,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"অনুসন্ধানৰ ফলাফল সম্ভৱত বৈধ নহয় । অনুসন্ধান চলাকালীন চাবিছু সমস্যা উৎ‌পন্ন হয়েছিল ।" +"অনুসন্ধানৰ ফলাফল সম্ভৱত বৈধ নহয় । অনুসন্ধান চলাকালীন চাবিছু সমস্যা উৎ‌পন্ন " +"হয়েছিল ।" #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1144,8 +1152,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"অনুসন্ধানৰ ফলাফল অচল বা অবৈধ হওয়াৰ সম্ভাবনা আছে । আপুনি ঝটপট অনুসন্ধান ব্যৱস্থা " -"নিষ্ক্ৰিয় কৰিবলৈ ইচ্ছুক নে ?" +"অনুসন্ধানৰ ফলাফল অচল বা অবৈধ হওয়াৰ সম্ভাবনা আছে । আপুনি ঝটপট অনুসন্ধান " +"ব্যৱস্থা নিষ্ক্ৰিয় কৰিবলৈ ইচ্ছুক নে ?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1209,7 +1217,8 @@ #: gsearchtool/src/gsearchtool.c:2237 msgid "Click to add the selected available search option." -msgstr "ক্লিক কৰি অনুসন্ধান কৰ্ম সংক্ৰান্ত উপলব্ধ বিকল্পত নিৰ্বাচিত বিকল্প যোগ কৰক ।" +msgstr "" +"ক্লিক কৰি অনুসন্ধান কৰ্ম সংক্ৰান্ত উপলব্ধ বিকল্পত নিৰ্বাচিত বিকল্প যোগ কৰক ।" #: gsearchtool/src/gsearchtool.c:2326 msgid "S_earch results:" @@ -1423,14 +1432,14 @@ #, c-format msgid "The document \"%s\" already exists. Would you like to replace it?" msgstr "" -"\"%s\" ডকুমেন্টটি বৰ্তমানে উপস্থিত আছে । আপুনি ইয়াক মুছে নতুন ডকুমেন্ট স্থাপন কৰিবলৈ " -"ইচ্ছুক নে ?" +"\"%s\" ডকুমেন্টটি বৰ্তমানে উপস্থিত আছে । আপুনি ইয়াক মুছে নতুন ডকুমেন্ট " +"স্থাপন কৰিবলৈ ইচ্ছুক নে ?" #: gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "If you replace an existing file, its contents will be overwritten." msgstr "" -"উপস্থিত কোনো নথিপত্ৰৰ পৰিবৰ্তে নতুন নথিপত্ৰ স্থাপন কৰা হলে পুৰোনো নথিপত্ৰৰ বিষয়বস্তু " -"মুছে ফেলা হ'ব ।" +"উপস্থিত কোনো নথিপত্ৰৰ পৰিবৰ্তে নতুন নথিপত্ৰ স্থাপন কৰা হলে পুৰোনো নথিপত্ৰৰ " +"বিষয়বস্তু মুছে ফেলা হ'ব ।" #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 @@ -1547,7 +1556,8 @@ msgid "View or monitor system log files" msgstr "প্ৰণালী লগ নথিপত্ৰ পড়ুন বা পৰ্যবেক্ষণ কৰক" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1558,11 +1568,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"প্ৰাৰম্ভে খোলাৰ উদ্দেশ্যে লগ নথিপত্ৰ নিৰ্ধাৰণ কৰি । ব্যৱহৃত অপাৰেটিং প্ৰণালীৰ উপৰ " -"ভিত্তি কৰি অবিকল্পিতৰূপে /vaৰ/adm/messages বা /vaৰ/log/messages প্ৰয়োগ কৰা হ'ব ।" +"প্ৰাৰম্ভে খোলাৰ উদ্দেশ্যে লগ নথিপত্ৰ নিৰ্ধাৰণ কৰি । ব্যৱহৃত অপাৰেটিং " +"প্ৰণালীৰ উপৰ ভিত্তি কৰি অবিকল্পিতৰূপে /vaৰ/adm/messages বা /vaৰ/log/messages" +" প্ৰয়োগ কৰা হ'ব ।" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1599,8 +1610,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"প্ৰাৰম্ভে খোলাৰ উদ্দেশ্যে লগ নথিপত্ৰৰ তালিকা উল্লেখ কৰি । /etc/syslog.conf নথিপত্ৰৰ " -"পৰা এটা অবিকল্পিত তালিকা নিৰ্মিত হয় ।" +"প্ৰাৰম্ভে খোলাৰ উদ্দেশ্যে লগ নথিপত্ৰৰ তালিকা উল্লেখ কৰি । /etc/syslog.conf " +"নথিপত্ৰৰ পৰা এটা অবিকল্পিত তালিকা নিৰ্মিত হয় ।" #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1717,7 +1728,8 @@ #: logview/src/logview-log.c:589 msgid "Error while uncompressing the GZipped log. The file might be corrupt." msgstr "" -"GZip কৰা লগ নথিপত্ৰ আন-কম্প্ৰেছ কৰিবলৈ ত্ৰুটি দেখা দিছে । সম্ভৱত নথিপত্ৰটি ত্ৰুটিপূৰ্ণ ।" +"GZip কৰা লগ নথিপত্ৰ আন-কম্প্ৰেছ কৰিবলৈ ত্ৰুটি দেখা দিছে । সম্ভৱত নথিপত্ৰটি " +"ত্ৰুটিপূৰ্ণ ।" #: logview/src/logview-log.c:635 msgid "You don't have enough permissions to read the file." @@ -1930,7 +1942,8 @@ #: logview/src/logview-window.c:862 msgid "Only show lines that match one of the given filters" -msgstr "উল্লিখিত যি কোনো এটা ফিল্টাৰৰ সৈতে মিল পোৱা পংক্তিসমূহ অকল প্ৰদৰ্শন কৰা হ'ব" +msgstr "" +"উল্লিখিত যি কোনো এটা ফিল্টাৰৰ সৈতে মিল পোৱা পংক্তিসমূহ অকল প্ৰদৰ্শন কৰা হ'ব" #: logview/src/logview-window.c:994 #, c-format @@ -1962,7 +1975,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "অনশাৰী অভিধানে শব্দেৰ সংজ্ঞা আৰু বানান পৰীক্ষা কৰক" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1974,8 +1988,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2005,8 +2019,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"অভিধান সেৱকে ব্যৱহত স্বতন্ত্ৰ ডাটাবেস বা মিটা-ডাটাবেসেৰ নাম । বিস্ময়সূচক চিহ্নৰ (\"!" -"\") সাহায্যে নিৰ্দিষ্ট সেৱকে উপস্থিত সকল ডাটাবেস অনুসন্ধানৰ নিৰ্দেশ দেওয়া হয় ।" +"অভিধান সেৱকে ব্যৱহত স্বতন্ত্ৰ ডাটাবেস বা মিটা-ডাটাবেসেৰ নাম । বিস্ময়সূচক " +"চিহ্নৰ (\"!\") সাহায্যে নিৰ্দিষ্ট সেৱকে উপস্থিত সকল ডাটাবেস অনুসন্ধানৰ " +"নিৰ্দেশ দেওয়া হয় ।" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -3003,7 +3018,8 @@ msgid "Save images of your desktop or individual windows" msgstr "ডেস্কটপ বা স্বতন্ত্ৰ উইন্ডোৰ ছবি সংৰক্ষণ কৰক" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3198,8 +3214,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3207,7 +3223,8 @@ "Conflicting options: --window and --area should not be used at the same " "time.\n" msgstr "" -"দ্বন্দ্বপূৰ্ণ বিকল্প: --window আৰু --area বিকল্প দুটা একেলগে ব্যৱহাৰ কৰা নাযাব ।\n" +"দ্বন্দ্বপূৰ্ণ বিকল্প: --window আৰু --area বিকল্প দুটা একেলগে ব্যৱহাৰ কৰা " +"নাযাব ।\n" #: mate-screenshot/src/screenshot-dialog.c:210 #, c-format @@ -3241,8 +3258,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"সংৰক্ষণৰ উদ্দেশ্যে চলমান চাইল্ড প্ৰসেস অপ্ৰত্যাশিতভাবে বন্ধ হওয়াৰ ফলে পৰ্দাৰ ছবি " -"ডিস্কত সংৰক্ষণ কৰা নাযায় ।" +"সংৰক্ষণৰ উদ্দেশ্যে চলমান চাইল্ড প্ৰসেস অপ্ৰত্যাশিতভাবে বন্ধ হওয়াৰ ফলে পৰ্দাৰ" +" ছবি ডিস্কত সংৰক্ষণ কৰা নাযায় ।" #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" @@ -3255,7 +3272,8 @@ #: mate-screenshot/src/screenshot-xfer.c:77 #, c-format msgid "The file \"%s\" already exists. Would you like to replace it?" -msgstr "\"%s\" নথিপত্ৰ বৰ্তমানে উপস্থিত আছে । আপুনি ইয়াক নতুনকৈ লিখিবলৈ ইচ্ছুক নে ?" +msgstr "" +"\"%s\" নথিপত্ৰ বৰ্তমানে উপস্থিত আছে । আপুনি ইয়াক নতুনকৈ লিখিবলৈ ইচ্ছুক নে ?" #: mate-screenshot/src/screenshot-xfer.c:122 msgid "Saving file..." Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ast.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ast.gmo differ diff -Nru mate-utils-1.26.0/po/ast.po mate-utils-1.26.1/po/ast.po --- mate-utils-1.26.0/po/ast.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/ast.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,25 +2,26 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Ḷḷumex03, 2018 -# Xuacu Saturio , 2019 +# clefebvre , 2021 # Iñigo Varela , 2021 +# Xuacu Saturio , 2021 # Stefano Karapetsas , 2021 -# +# Ḷḷumex03, 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Asturian (https://www.transifex.com/mate/teams/13566/ast/)\n" -"Language: ast\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Ḷḷumex03, 2021\n" +"Language-Team: Asturian (https://app.transifex.com/mate/teams/13566/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ast\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -32,7 +33,8 @@ msgid "Check folder sizes and available disk space" msgstr "Comprobar el tamañu de les carpetes y l'espaciu disponible en discu" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -103,7 +105,7 @@ #: baobab/data/baobab-main-window.ui:108 msgid "_Toolbar" -msgstr "Barra _ferramientes" +msgstr "_Barra ferramientes" #: baobab/data/baobab-main-window.ui:115 msgid "St_atusbar" @@ -188,7 +190,8 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:22 msgid "Whether the toolbar should be visible in main window." msgstr "" -"Conseña si la barra de ferramientes tien de ser visible na ventana principal." +"Conseña si la barra de ferramientes tien de ser visible na ventana " +"principal." #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:26 msgid "Statusbar is Visible" @@ -224,8 +227,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -276,8 +279,8 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d elementu" -msgstr[1] "%5d elementos" +msgstr[0] "" +msgstr[1] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -422,7 +425,7 @@ #: baobab/src/baobab-remote-connect-dialog.c:182 msgid "Secure WebDAV (HTTPS)" -msgstr "WebDAV seguru (HTTPS)" +msgstr "WebDAV Seguru (HTTPS)" #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." @@ -468,7 +471,7 @@ #: baobab/src/baobab-remote-connect-dialog.c:592 msgid "Connect to Server" -msgstr "Coneutar col sirvidor" +msgstr "Coneutar al sirvidor" #: baobab/src/baobab-remote-connect-dialog.c:608 msgid "Service _type:" @@ -537,7 +540,7 @@ #: baobab/src/baobab-utils.c:349 gsearchtool/src/gsearchtool-callbacks.c:1330 msgid "Mo_ve to Trash" -msgstr "Mo_ver a la papelera" +msgstr "_Mover a la Papelera" #: baobab/src/baobab-utils.c:378 #, c-format @@ -600,8 +603,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -645,16 +648,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" -msgstr "Llocalice documentos y carpetes pol nome o conteníu nesti equipu" +msgstr "Llocaliza documentos y carpetes pol nome o conteníu nesti equipu" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -690,9 +694,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Esta clave define les rutes que la ferramienta de gueta va escluyir d'una " "gueta rápida. Los comodines «*» y «?» tán sofitaos. Los valores " @@ -719,13 +723,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Esta clave define les rutes que la ferramienta de gueta va escluyir d'un " "segundu analís al facer una gueta rápida. El segundu analís usa'l comandu " -"«find» pa guetar ficheros. L'envís del segundu analís ye guetar ficheros que " -"nun foron indizaos. Sopórtense los comodines «*X y «?». El valor " +"«find» pa guetar ficheros. L'envís del segundu analís ye guetar ficheros que" +" nun foron indizaos. Sopórtense los comodines «*X y «?». El valor " "predetermináu ye /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -746,9 +750,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Esta clave define l'anchor de la ventana, y úsase pa remembrar el tamañu de " "la ferramienta de gueta ente les sesiones. Afitándola a -1 fadrá que la " @@ -761,8 +765,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Esta clave define l'altor de la ventana, y úsase pa remembrar el tamañu de " "la ferramienta de gueta ente les sesiones. Afitándola a -1 fadrá que la " @@ -776,8 +780,8 @@ msgid "" "This key determines if the search tool window starts in a maximized state." msgstr "" -"Esta clave determina si ventana de la ferramienta de gueta s'aniciar n'estáu " -"maximizáu." +"Esta clave determina si ventana de la ferramienta de gueta s'aniciar n'estáu" +" maximizáu." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -841,13 +845,13 @@ "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"Esta clave determina si la opción «Perteneciente al usuariu» ta seleicionada " -"cuando s'anicia la ferramienta de gueta." +"Esta clave determina si la opción «Perteneciente al usuariu» ta seleicionada" +" cuando s'anicia la ferramienta de gueta." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Esta clave determina si la opción «Perteneciente al grupu» ta seleicionada " "cuando s'anicia la ferramienta de gueta." @@ -870,8 +874,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Esta clave determina si la opción «El nome concasa cola expresión regular» " "ta seleicionada cuando s'anicia la ferramienta de gueta." @@ -900,63 +904,63 @@ "Esta clave determina si la opción «Escluyir otros sistemes de ficheros» ta " "seleicionada cuando s'anicia la ferramienta de gueta." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "El ficheru nun ye un ficheru .desktop válidu" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Versión '%s' del ficheru desktop non reconocida" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Entamando %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "L'aplicación nun aceuta documentos na llinia de comandos" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Opción de llanzamientu non reconocida: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -"Nun se puen pasar los URIs de documentos a entraes d'escritoriu 'Type=Link'" +"Nun puen pasase los URIs de documentos a entraes d'escritoriu 'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Nun ye un elementu llanzable" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Desactivar la conexón col alministrador de sesiones" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Especificar el ficheru que contién la configuración guardada" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FICHERU" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Especificar la ID d'alministración de sesión" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opciones d'alministración de la sesión:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Ver les opciones de xestión de la sesión" @@ -1035,7 +1039,7 @@ #: gsearchtool/src/gsearchtool.c:160 msgid "PATH" -msgstr "RUTA" +msgstr "CAMÍN" #: gsearchtool/src/gsearchtool.c:161 msgid "VALUE" @@ -1095,15 +1099,15 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "%'d ficheru atopáu" -msgstr[1] "%'d ficheros atopaos" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "%'d ficheru atopáu" -msgstr[1] "%'d ficheros atopaos" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1253,7 +1257,7 @@ #: gsearchtool/src/gsearchtool.c:2478 msgid "Type" -msgstr "Tipu" +msgstr "Triba" #: gsearchtool/src/gsearchtool.c:2490 msgid "Date Modified" @@ -1332,16 +1336,16 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "¿Daveres quies abrir %d documentu?" -msgstr[1] "¿Daveres quies abrir %d documentos?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Esto va abrir %d ventana separtada." -msgstr[1] "Esto va abrir %d ventanes separtaes." +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1365,8 +1369,8 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "¿Daveres que quies abrir %d carpeta?" -msgstr[1] "¿Daveres que quies abrir %d carpetes?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1491,7 +1495,7 @@ #: gsearchtool/src/gsearchtool-support.c:1101 msgid " (copy)" -msgstr " (copia)" +msgstr " (copiar)" #: gsearchtool/src/gsearchtool-support.c:1103 msgid " (another copy)" @@ -1570,7 +1574,8 @@ msgid "View or monitor system log files" msgstr "Ver o monitorizar el rexistru d'actividá de los ficheros del sistema" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1581,11 +1586,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Especifica'l ficheru de rexistros amosáu al aniciu. Los predeterminaos son «/" -"var/adm/messages» o «/var/log/messages», dependiendo del to sistema " +"Especifica'l ficheru de rexistros amosáu al aniciu. Los predeterminaos son " +"«/var/adm/messages» o «/var/log/messages», dependiendo del to sistema " "operativu." #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1608,7 +1613,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:16 msgid "Specifies the height of the log viewer main window in pixels." msgstr "" -"Especifica l'altor en píxeles de la ventana principal del visor de rexistros." +"Especifica l'altor en píxeles de la ventana principal del visor de " +"rexistros." #: logview/data/org.mate.system-log.gschema.xml.in:20 msgid "Width of the main window in pixels" @@ -1951,7 +1957,7 @@ #: logview/src/logview-window.c:860 msgid "Side _Pane" -msgstr "Panel _llateral" +msgstr "Barra _llateral" #: logview/src/logview-window.c:860 msgid "Show Side Pane" @@ -1996,7 +2002,8 @@ msgstr "" "Busque definiciones de pallabres y ortografía nun diccionariu en llinia" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -2008,8 +2015,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2072,8 +2079,8 @@ msgid "" "The name of the dictionary source used to retrieve the definitions of words." msgstr "" -"El nome de la fonte de diccionarios emplegada pa obtener les definiciones de " -"les pallabres." +"El nome de la fonte de diccionarios emplegada pa obtener les definiciones de" +" les pallabres." #: mate-dictionary/data/thai.desktop.in:3 msgid "Thai" @@ -2182,7 +2189,8 @@ #: mate-dictionary/libgdict/gdict-client-context.c:1292 #, c-format msgid "No databases found on dictionary server at '%s'" -msgstr "Nun s'atopó denguna base de datos nel sirvidor de diccionarios en '%s'" +msgstr "" +"Nun s'atopó denguna base de datos nel sirvidor de diccionarios en '%s'" #: mate-dictionary/libgdict/gdict-client-context.c:1307 #, c-format @@ -2743,8 +2751,8 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Una definición atopada" -msgstr[1] "%d definiciones atopaes" +msgstr[0] "" +msgstr[1] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -3050,7 +3058,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Guarda imáxenes del escritoriu o ventanes individuales" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3248,8 +3257,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Opciones conflictives: --clipboard ya --interactive nun puen usase al " "empar.\n" @@ -3269,8 +3278,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Falta'l ficheru de definición de la IU pal programa de captura de " -"pantalla: \n" +"Falta'l ficheru de definición de la IU pal programa de captura de pantalla: \n" "%s\n" "\n" "Revisa la instalación de mate-utils." Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/az.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/az.gmo differ diff -Nru mate-utils-1.26.0/po/az.po mate-utils-1.26.1/po/az.po --- mate-utils-1.26.0/po/az.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/az.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# She110ck Finch , 2019 -# Stefano Karapetsas , 2019 -# +# She110ck Finch , 2021 +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2019\n" -"Language-Team: Azerbaijani (https://www.transifex.com/mate/teams/13566/az/)\n" -"Language: az\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Azerbaijani (https://app.transifex.com/mate/teams/13566/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: az\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -579,8 +580,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -628,16 +629,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -671,9 +673,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -695,8 +697,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -715,9 +717,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -727,8 +729,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -792,8 +794,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -810,8 +812,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -832,62 +834,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s başladılır" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Başladıla bilən üzv deyil" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Gedişat idarəçisinə bağlantıya mane ol" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FAYL" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Gedişat IDsini göstər" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1497,7 +1499,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1508,8 +1511,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1907,7 +1910,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1919,8 +1923,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2934,7 +2938,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3126,8 +3131,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/be.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/be.gmo differ diff -Nru mate-utils-1.26.0/po/be.po mate-utils-1.26.1/po/be.po --- mate-utils-1.26.0/po/be.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/be.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,26 +2,24 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2019 +# Stefano Karapetsas , 2021 # Mihail Varantsou , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Mihail Varantsou , 2021\n" -"Language-Team: Belarusian (https://www.transifex.com/mate/teams/13566/be/)\n" -"Language: be\n" +"Language-Team: Belarusian (https://app.transifex.com/mate/teams/13566/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: be\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -32,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "Праверка памеру каталогаў і даступнай дыскавай прасторы" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -216,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -572,8 +571,8 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"Гэта свабодная праграма; яе можна распаўсюджваць і/ці змяняць паводле ўмоваў " -"GNU General Public License версіі 2 ці пазнейшай (на ваш выбар), " +"Гэта свабодная праграма; яе можна распаўсюджваць і/ці змяняць паводле ўмоваў" +" GNU General Public License версіі 2 ці пазнейшай (на ваш выбар), " "апублікаванай Free Software Foundation." #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 @@ -592,8 +591,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -639,9 +638,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -649,7 +648,8 @@ msgstr "" "Лакальныя дакументы і каталогі на гэтым камп'ютары паводле назвы ці змесціва" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -683,9 +683,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -707,8 +707,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -727,9 +727,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -739,8 +739,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -765,8 +765,8 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"Гэты ключ вызначае, ці ўключаны параметр \"Утрымлівае тэкст\" падчас запуску " -"Пошуку файлаў." +"Гэты ключ вызначае, ці ўключаны параметр \"Утрымлівае тэкст\" падчас запуску" +" Пошуку файлаў." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" @@ -781,8 +781,8 @@ "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"Гэты ключ вызначае, ці ўключаны параметр \"Дата змянення большая за\" падчас " -"запуску Пошуку файлаў." +"Гэты ключ вызначае, ці ўключаны параметр \"Дата змянення большая за\" падчас" +" запуску Пошуку файлаў." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" @@ -818,8 +818,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Гэты ключ вызначае, ці ўключаны параметр \"Належыць групе\" падчас запуску " "Пошуку файлаў." @@ -837,24 +837,24 @@ "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"Гэты ключ вызначае, ці ўключаны параметр \"Назва не змяшчае\" падчас запуску " -"Пошуку файлаў." +"Гэты ключ вызначае, ці ўключаны параметр \"Назва не змяшчае\" падчас запуску" +" Пошуку файлаў." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"Гэты ключ вызначае, ці ўключаны параметр \"Файл супадае з рэгулярным выразам" -"\" падчас запуску Пошуку файлаў." +"Гэты ключ вызначае, ці ўключаны параметр \"Файл супадае з рэгулярным " +"выразам\" падчас запуску Пошуку файлаў." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"Гэты ключ вызначае, ці ўключаны параметр \"Паказваць схаваныя і рэзерваваныя " -"файлы\" падчас запуску Пошуку файлаў." +"Гэты ключ вызначае, ці ўключаны параметр \"Паказваць схаваныя і рэзерваваныя" +" файлы\" падчас запуску Пошуку файлаў." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" @@ -872,62 +872,62 @@ "Гэты ключ вызначае, ці ўключаны параметр \"Выключыць астатнія файлавыя " "сістэмы\" падчас запуску Пошуку файлаў." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Файл не ёсць карэктным .desktop-файлам" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Нераспазнаны desktop-файл версіі '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Запуск %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Праграма не падтрымлівае адкрыванне дакументаў праз загадны радок" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Нераспазнаны параметр запуску: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Немагчыма даслаць URI дакумента ў цэтлік з 'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Незапускальны аб'ект" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Адключыць злучэнне з кіраўніком сеансаў" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Пазначыць файл з захаванай канфігурацыяй" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ФАЙЛ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Задаць ID кіравання сеансам" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Параметры кіравання сеансам:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Паказаць параметры кіравання сеансам" @@ -1550,7 +1550,8 @@ msgid "View or monitor system log files" msgstr "Прагляд ці назіранне сістэмных логаў" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1561,8 +1562,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1962,7 +1963,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Прагляд азначэнняў і вымаўленняў словаў у анлайн-слоўніку" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1974,8 +1976,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2999,7 +3001,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Атрымаць выявы стала ці асобных вокнаў" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3056,8 +3059,7 @@ msgid "" "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." -msgstr "" -"Эфект краю мяжы акна. Магчымыя значэнні: \"shadow\", \"none\" і \"border\"." +msgstr "Эфект краю мяжы акна. Магчымыя значэнні: \"shadow\", \"none\" і \"border\"." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3195,16 +3197,15 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 msgid "" "Conflicting options: --window and --area should not be used at the same " "time.\n" -msgstr "" -"Параметры канфліктуюць: --window і --area нельга задаваць адначасова.\n" +msgstr "Параметры канфліктуюць: --window і --area нельга задаваць адначасова.\n" #: mate-screenshot/src/screenshot-dialog.c:210 #, c-format Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/bg.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/bg.gmo differ diff -Nru mate-utils-1.26.0/po/bg.po mate-utils-1.26.1/po/bg.po --- mate-utils-1.26.0/po/bg.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/bg.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,30 +2,31 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# breaker loc , 2018 -# Yasen Pramatarov , 2018 -# Georgi Georgiev (Жоро) , 2018 -# Kiril Kirilov , 2018 -# Борислав Георгиев , 2018 -# Любомир Василев, 2019 -# H Bozhkov, 2020 +# Yasen Pramatarov , 2021 +# clefebvre , 2021 +# Georgi Georgiev (Жоро) , 2021 +# breaker loc , 2021 +# Борислав Георгиев , 2021 +# H Bozhkov, 2021 # Stefano Karapetsas , 2021 +# Kiril Kirilov , 2021 +# Любомир Василев, 2021 # Замфир Йончев , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Замфир Йончев , 2021\n" -"Language-Team: Bulgarian (https://www.transifex.com/mate/teams/13566/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (https://app.transifex.com/mate/teams/13566/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -37,7 +38,8 @@ msgid "Check folder sizes and available disk space" msgstr "Проверка на размерите на папките и свободното пространство на диска" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -225,8 +227,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -573,7 +575,7 @@ #: baobab/src/callbacks.c:74 logview/src/logview-about.h:44 #: mate-dictionary/src/gdict-about.c:49 msgid "MATE Documentation Team" -msgstr "Екип за документация на MATE" +msgstr "Екип за документацията на MATE" #: baobab/src/callbacks.c:79 logview/src/logview-about.h:49 #: mate-dictionary/src/gdict-about.c:57 @@ -603,8 +605,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -656,16 +658,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Намиране на документи и папки на този компютър по име или съдържание" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -700,12 +703,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" -"Този ключ указва пътищата, които инструментът за търсене няма да обхожда при " -"бързото търсене. Валидните шаблонни символи са „*“ и „?“. Стандартните " +"Този ключ указва пътищата, които инструментът за търсене няма да обхожда при" +" бързото търсене. Валидните шаблонни символи са „*“ и „?“. Стандартните " "стойности са /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, и /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -729,12 +732,12 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"Този ключ указва пътищата, които инструментът за търсене няма да обхожда при " -"втория пас на бързото търсене. При втория пас се използва командата „find“. " -"Целта е да се открият неиндексирани файлове. Валидните шаблонни символи са " +"Този ключ указва пътищата, които инструментът за търсене няма да обхожда при" +" втория пас на бързото търсене. При втория пас се използва командата „find“." +" Целта е да се открият неиндексирани файлове. Валидните шаблонни символи са " "„*“ и „?“. Стандартната стойност е /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -746,8 +749,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"Този ключ определя реда на колоните в резултатите от търсенето. Този ключ не " -"бива да бъде променян от потребителите." +"Този ключ определя реда на колоните в резултатите от търсенето. Този ключ не" +" бива да бъде променян от потребителите." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -755,9 +758,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Този ключ съдържа широчината на прозореца на инструмента за търсене и се " "използва за предаването ѝ между сесиите. За да използвате стандартната " @@ -770,8 +773,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Този ключ съдържа височината на прозореца на инструмента за търсене и се " "използва за предаването ѝ между сесиите. За да използвате стандартната " @@ -825,8 +828,8 @@ "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"Този ключ определя дали условието за търсене „Размерът е поне“ е избрано при " -"стартирането на инструмента за търсене." +"Този ключ определя дали условието за търсене „Размерът е поне“ е избрано при" +" стартирането на инструмента за търсене." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" @@ -841,8 +844,8 @@ "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"Този ключ определя дали условието за търсене „Файлът е празен“ е избрано при " -"стартирането на инструмента за търсене." +"Този ключ определя дали условието за търсене „Файлът е празен“ е избрано при" +" стартирането на инструмента за търсене." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" @@ -854,8 +857,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Този ключ определя дали условието за търсене „Собственост е на групата“ е " "избрано при стартирането на инструмента за търсене." @@ -865,8 +868,8 @@ "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"Този ключ определя дали условието за търсене „Собственикът не е разпознат“ е " -"избрано при стартирането на инструмента за търсене." +"Този ключ определя дали условието за търсене „Собственикът не е разпознат“ е" +" избрано при стартирането на инструмента за търсене." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" @@ -878,8 +881,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Този ключ определя дали условието за търсене „Името напасва с регулярния " "израз“ е избрано при стартирането на инструмента за търсене." @@ -889,8 +892,8 @@ "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"Този ключ определя дали условието за търсене „Показват се скритите файлове и " -"резервните копия“ е избрано при стартирането на инструмента за търсене." +"Този ключ определя дали условието за търсене „Показват се скритите файлове и" +" резервните копия“ е избрано при стартирането на инструмента за търсене." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" @@ -908,62 +911,63 @@ "Този ключ определя дали условието за търсене „Изключване на други файлови " "системи.“ е избрано при стартирането на инструмента за търсене." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Файлът не е във формат .desktop" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Непозната версия на файла: %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Стартиране на %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Програмата не приема документи през командния ред" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Непозната опция при стартиране: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" -msgstr "В обекти от вида „Type=Link“ не може да се подават адреси на документи" +msgstr "" +"В обекти от вида „Type=Link“ не може да се подават адреси на документи" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Не е обект за стартиране" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Изключване на връзката с управлението на сесиите" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Указване на файла със запазените настройки" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ФАЙЛ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Указване на идентификатор за управлението на сесиите" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ИдПр" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Настройки на управлението на сесии:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Показване на настройките за управлението на сесиите" @@ -1577,7 +1581,8 @@ msgid "View or monitor system log files" msgstr "Преглед или наблюдение системните дневници" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1588,11 +1593,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Определя дневника, който да се отвори в началото. Стандартните файлове са /" -"var/adm/ или /var/log/messages, в зависимост от операционната система." +"Определя дневника, който да се отвори в началото. Стандартните файлове са " +"/var/adm/ или /var/log/messages, в зависимост от операционната система." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1633,9 +1638,9 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"Списъкът с дневници, които да се отворят при стартирането на програмата. При " -"създаването на този ключ в него стандартно се пренася списъкът от /etc/" -"syslog.conf." +"Списъкът с дневници, които да се отворят при стартирането на програмата. При" +" създаването на този ключ в него стандартно се пренася списъкът от " +"/etc/syslog.conf." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1943,8 +1948,8 @@ #: logview/src/logview-window.c:853 msgid "Show the about dialog for the log viewer" msgstr "" -"Показване на диалоговия прозорец относно програмата за преглед на системните " -"дневници" +"Показване на диалоговия прозорец относно програмата за преглед на системните" +" дневници" #: logview/src/logview-window.c:858 msgid "_Statusbar" @@ -1968,7 +1973,8 @@ #: logview/src/logview-window.c:862 msgid "Only show lines that match one of the given filters" -msgstr "Да се показват само редовете, които съвпадат с един от дадените филтри" +msgstr "" +"Да се показват само редовете, които съвпадат с един от дадените филтри" #: logview/src/logview-window.c:994 #, c-format @@ -2000,7 +2006,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Търсене на определения и правописа на думи в речник в Интернет" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -2012,8 +2019,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -3051,7 +3058,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Запазване на снимки на екрана или индивидуални прозорци" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3109,8 +3117,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Ефект, който да се добави към снимката. Възможни стойности са " -"„shadow“ (сянка), „none“ (нищо), и „border“ (рамка)." +"Ефект, който да се добави към снимката. Възможни стойности са „shadow“ " +"(сянка), „none“ (нищо), и „border“ (рамка)." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3248,8 +3256,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3268,8 +3276,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Грешка при зареждане на файла с описание на интерфейса на програмата за " -"снимки: \n" +"Грешка при зареждане на файла с описание на интерфейса на програмата за снимки: \n" "%s\n" "\n" "Моля, проверете инсталацията на mate-utils." Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/bn.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/bn.gmo differ Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/bn_IN.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/bn_IN.gmo differ diff -Nru mate-utils-1.26.0/po/bn_IN.po mate-utils-1.26.1/po/bn_IN.po --- mate-utils-1.26.0/po/bn_IN.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/bn_IN.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,24 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# umesh agarwal , 2019 # Stefano Karapetsas , 2021 -# +# umesh agarwal , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Bengali (India) (https://www.transifex.com/mate/teams/13566/" -"bn_IN/)\n" -"Language: bn_IN\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: umesh agarwal , 2021\n" +"Language-Team: Bengali (India) (https://app.transifex.com/mate/teams/13566/bn_IN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bn_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -31,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "ফোল্ডারের মাপ ও ডিস্কে উপলব্ধ স্থান পরীক্ষা করা হবে" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -215,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -417,7 +417,8 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." -msgstr "সার্ভারের সাথে সংযোগ স্থাপন করতে ব্যর্থ। সার্ভারের নাম উল্লেখ করা আবশ্যক।" +msgstr "" +"সার্ভারের সাথে সংযোগ স্থাপন করতে ব্যর্থ। সার্ভারের নাম উল্লেখ করা আবশ্যক।" #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -477,8 +478,9 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"আপনার ব্যক্তিগত ডিরেক্টরির সামগ্রীর মধ্যে কিছু পরিবর্তন ঘটেছে। ডিস্ক ব্যবহারের বিবরণ " -"আপডেট করার জন্য অনুগ্রহ করে পুনরায় স্ক্যানের বিকল্প নির্বাচন করুন।" +"আপনার ব্যক্তিগত ডিরেক্টরির সামগ্রীর মধ্যে কিছু পরিবর্তন ঘটেছে। ডিস্ক " +"ব্যবহারের বিবরণ আপডেট করার জন্য অনুগ্রহ করে পুনরায় স্ক্যানের বিকল্প নির্বাচন" +" করুন।" #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -569,9 +571,10 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"এই প্রোগ্রামটি একটি মুক্ত সফ্টওয়্যার; Free Software Foundation দ্বারা প্রকাশিত GNU " -"General Public License-র শর্তানুযায়ী এটি বিতরণ ও পরিবর্তন করা যাবে; লাইসেন্সের " -"সংস্করণ ২ অথবা (আপনার সুবিধানুযায়ী) ঊর্ধ্বতন কোনো সংস্করণের অধীন।" +"এই প্রোগ্রামটি একটি মুক্ত সফ্টওয়্যার; Free Software Foundation দ্বারা " +"প্রকাশিত GNU General Public License-র শর্তানুযায়ী এটি বিতরণ ও পরিবর্তন করা " +"যাবে; লাইসেন্সের সংস্করণ ২ অথবা (আপনার সুবিধানুযায়ী) ঊর্ধ্বতন কোনো সংস্করণের" +" অধীন।" #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -581,15 +584,16 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"এই প্রোগ্রামটি বিতরণ করার মূল উদ্দেশ্য যে ব্যবহারকারীরা এর দ্বারা উপকৃত হবেন, কিন্তু " -"এটির জন্য কোনো সুস্পষ্ট ওয়ারেন্টি উপস্থিত নেই; বাণিজ্যিক ও কোনো সুনির্দিষ্ট কর্ম সাধনের " -"জন্য অন্তর্নিহীত ওয়ারেন্টিও অনুপস্থিত। অধিক জানতে GNU General Public License পড়ুন।" +"এই প্রোগ্রামটি বিতরণ করার মূল উদ্দেশ্য যে ব্যবহারকারীরা এর দ্বারা উপকৃত " +"হবেন, কিন্তু এটির জন্য কোনো সুস্পষ্ট ওয়ারেন্টি উপস্থিত নেই; বাণিজ্যিক ও কোনো" +" সুনির্দিষ্ট কর্ম সাধনের জন্য অন্তর্নিহীত ওয়ারেন্টিও অনুপস্থিত। অধিক জানতে " +"GNU General Public License পড়ুন।" #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -636,16 +640,19 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" -msgstr "নাম অথবা অন্তর্ভুক্ত বিষয় অনুসারে এই কম্পিউটারে ফাইল অথবা ফোল্ডার অনুসন্ধান করুন" +msgstr "" +"নাম অথবা অন্তর্ভুক্ত বিষয় অনুসারে এই কম্পিউটারে ফাইল অথবা ফোল্ডার অনুসন্ধান " +"করুন" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -672,8 +679,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"এই কি দ্বারা নির্ধারিত হয় ফাইলের নাম অনুসারে সাধারণ অনুসন্ধানের সময় অনুসন্ধান " -"ব্যবস্থার দ্বারা locate কমান্ডের ব্যবহার নিষ্ক্রিয় করা হবে কি না।" +"এই কি দ্বারা নির্ধারিত হয় ফাইলের নাম অনুসারে সাধারণ অনুসন্ধানের সময় " +"অনুসন্ধান ব্যবস্থার দ্বারা locate কমান্ডের ব্যবহার নিষ্ক্রিয় করা হবে কি না।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -681,13 +688,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"এই কি দ্বারা ঝটপট অনুসন্ধান ব্যবস্থায় বর্জিত পাথগুলি নির্ধারিত হয়। '*' ও '?' ওয়াইল্ড-" -"কার্ডগুলি ব্যবহার করা সম্ভব হবে। ডিফল্ট মান হল, /mnt/*, /media/*, /dev/*, /tmp/" -"*, /proc/* এবং /var/*।" +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"এই কি দ্বারা ঝটপট অনুসন্ধান ব্যবস্থায় বর্জিত পাথগুলি নির্ধারিত হয়। '*' ও '?'" +" ওয়াইল্ড-কার্ডগুলি ব্যবহার করা সম্ভব হবে। ডিফল্ট মান হল, /mnt/*, /media/*, " +"/dev/*, /tmp/*, /proc/* এবং /var/*।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -698,8 +705,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"এই কি দ্বারা নির্ধারিত হয় ঝটপট অনুসন্ধানের পরে অনুসন্ধান ব্যবস্থার দ্বারা find " -"কমান্ডের ব্যবহার নিষ্ক্রিয় করা হবে কি না।" +"এই কি দ্বারা নির্ধারিত হয় ঝটপট অনুসন্ধানের পরে অনুসন্ধান ব্যবস্থার দ্বারা " +"find কমান্ডের ব্যবহার নিষ্ক্রিয় করা হবে কি না।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -710,13 +717,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"এই কি দ্বারা ঝটপট অনুসন্ধান ব্যবস্থায় দ্বিতীয় স্ক্যানের সময় উপেক্ষিত পাথগুলি নির্ধারিত " -"হয়। দ্বিতীয় স্ক্যানের সময় find কমান্ডের সাহায্যে ফাইল অনুসন্ধান করা হয়। মূলত ইনডেক্স " -"না করা ফাইল এই পদ্ধতিতে অনুসন্ধান করা হয়। '*' ও '?' ওয়াইল্ড-কার্ডগুলি ব্যবহার করা " -"সম্ভব হবে। ডিফল্ট মান হল, /।" +"এই কি দ্বারা ঝটপট অনুসন্ধান ব্যবস্থায় দ্বিতীয় স্ক্যানের সময় উপেক্ষিত পাথগুলি" +" নির্ধারিত হয়। দ্বিতীয় স্ক্যানের সময় find কমান্ডের সাহায্যে ফাইল অনুসন্ধান " +"করা হয়। মূলত ইনডেক্স না করা ফাইল এই পদ্ধতিতে অনুসন্ধান করা হয়। '*' ও '?' " +"ওয়াইল্ড-কার্ডগুলি ব্যবহার করা সম্ভব হবে। ডিফল্ট মান হল, /।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -727,8 +734,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"অনুসন্ধানের ফলাফলে প্রদর্শনের কলামের ক্ষেত্রে ব্যবহৃত অনুক্রম এই কি দ্বারা ধার্য করা হয়। " -"ব্যবহারকারী দ্বারা এই কি পরিবর্তন করা হবে না।" +"অনুসন্ধানের ফলাফলে প্রদর্শনের কলামের ক্ষেত্রে ব্যবহৃত অনুক্রম এই কি দ্বারা " +"ধার্য করা হয়। ব্যবহারকারী দ্বারা এই কি পরিবর্তন করা হবে না।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -736,13 +743,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"এই কি-র মান দ্বারা উইন্ডোর প্রস্থ নির্ধারণ করা হয় ও সেশান সমাপ্তির পরেও এই মান " -"প্রয়োগ করা হয়। -1 মান ধার্য করা হলে, অনুসন্ধান সামগ্রীর জন্য ডিফল্ট প্রস্থের মাপ " -"ব্যবহার করা হয়েছে।" +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"এই কি-র মান দ্বারা উইন্ডোর প্রস্থ নির্ধারণ করা হয় ও সেশান সমাপ্তির পরেও এই " +"মান প্রয়োগ করা হয়। -1 মান ধার্য করা হলে, অনুসন্ধান সামগ্রীর জন্য ডিফল্ট " +"প্রস্থের মাপ ব্যবহার করা হয়েছে।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -751,12 +758,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"এই কি-র মান দ্বারা উইন্ডোর উচ্চতা নির্ধারণ করা হয় ও সেশান সমাপ্তির পরেও এই মান " -"প্রয়োগ করা হয়। -1 মান ধার্য করা হলে, অনুসন্ধান সামগ্রীর জন্য ডিফল্ট উচ্চতার মাপ " -"ব্যবহার করা হয়েছে।" +"এই কি-র মান দ্বারা উইন্ডোর উচ্চতা নির্ধারণ করা হয় ও সেশান সমাপ্তির পরেও এই " +"মান প্রয়োগ করা হয়। -1 মান ধার্য করা হলে, অনুসন্ধান সামগ্রীর জন্য ডিফল্ট " +"উচ্চতার মাপ ব্যবহার করা হয়েছে।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -766,8 +773,8 @@ msgid "" "This key determines if the search tool window starts in a maximized state." msgstr "" -"এই কি দ্বারা নির্ধারিত হয় প্রারম্ভকালে অনুসন্ধানব্যবস্থার উইন্ডোর ক্ষেত্রে সর্বোচ্চ মাপ " -"প্রয়োগ করা হবে কি না।" +"এই কি দ্বারা নির্ধারিত হয় প্রারম্ভকালে অনুসন্ধানব্যবস্থার উইন্ডোর ক্ষেত্রে " +"সর্বোচ্চ মাপ প্রয়োগ করা হবে কি না।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -776,176 +783,180 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 msgid "This key defines the default value of the \"Look in Folder\" widget." msgstr "" -"\"চিহ্নিত ফোল্ডারে অনুসন্ধান করা হবে\" উইজেটের ডিফল্ট মান এই কি দ্বারা নির্ধারিত হয়।" +"\"চিহ্নিত ফোল্ডারে অনুসন্ধান করা হবে\" উইজেটের ডিফল্ট মান এই কি দ্বারা " +"নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 msgid "" "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"\"চিহ্নিত লেখাসহ\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা এই কি দ্বারা অনুসন্ধান " -"ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"চিহ্নিত লেখাসহ\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা এই কি দ্বারা " +"অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"\"সর্বশেষ পরিবর্তনের তারিখ চিহ্নিত সংখ্যার মধ্যে\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে " -"কি না তা এই কি দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"সর্বশেষ পরিবর্তনের তারিখ চিহ্নিত সংখ্যার মধ্যে\" অনুসন্ধান বিকল্পটি " +"নির্বাচিত হয়ে কি না তা এই কি দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত " +"হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"\"সর্বশেষ পরিবর্তনের তারিখ চিহ্নিত সংখ্যার ঊর্ধ্বে\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে " -"কি না তা এই কি দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"সর্বশেষ পরিবর্তনের তারিখ চিহ্নিত সংখ্যার ঊর্ধ্বে\" অনুসন্ধান বিকল্পটি " +"নির্বাচিত হয়ে কি না তা এই কি দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত " +"হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"\"ন্যূনতম মাপ\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা এই কি দ্বারা অনুসন্ধান " -"ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"ন্যূনতম মাপ\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা এই কি দ্বারা " +"অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"\"সর্বাধিক মাপ\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা এই কি দ্বারা অনুসন্ধান " -"ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"সর্বাধিক মাপ\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা এই কি দ্বারা " +"অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"\"ফাঁকা ফাইল\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা এই কি দ্বারা অনুসন্ধান " -"ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"ফাঁকা ফাইল\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা এই কি দ্বারা " +"অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"\"চিহ্নিত ব্যবহারকারীর মালিকানাধীন\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা এই " -"কি দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"চিহ্নিত ব্যবহারকারীর মালিকানাধীন\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না " +"তা এই কি দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"\"চিহ্নিত দলের মালিকানাধীন\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা এই কি " -"দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"চিহ্নিত দলের মালিকানাধীন\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা এই কি" +" দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"\"অজ্ঞাত মালিকের অধীনহ\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা এই কি দ্বারা " -"অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"অজ্ঞাত মালিকের অধীনহ\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা এই কি " +"দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"\"নামের মধ্যে অনুপস্থিত\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা এই কি দ্বারা " -"অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"নামের মধ্যে অনুপস্থিত\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা এই কি " +"দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"\"রেগুলার এক্সপ্রেশনের সাথে মেলানো নাম\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা " -"এই কি দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"রেগুলার এক্সপ্রেশনের সাথে মেলানো নাম\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি" +" না তা এই কি দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"\"আড়াল করা ফাইল ও ফোল্ডার প্রদর্শন করা হবে\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না " -"তা এই কি দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"আড়াল করা ফাইল ও ফোল্ডার প্রদর্শন করা হবে\" অনুসন্ধান বিকল্পটি নির্বাচিত " +"হয়ে কি না তা এই কি দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"\"সিম্বলিক লিঙ্ক অনুসরণ করা হবে\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা এই কি " -"দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"সিম্বলিক লিঙ্ক অনুসরণ করা হবে\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা " +"এই কি দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"\"অন্যান্য ফাইল-সিস্টেম অন্তর্ভুক্ত করা হবে\" অনুসন্ধান বিকল্পটি নির্বাচিত হয়ে কি না তা " -"এই কি দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"অন্যান্য ফাইল-সিস্টেম অন্তর্ভুক্ত করা হবে\" অনুসন্ধান বিকল্পটি নির্বাচিত " +"হয়ে কি না তা এই কি দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "বৈধ .desktop ফাইল নয়" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "ডেস্কটপ ফাইলের সংস্করণ '%s' অজানা" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s আরম্ভ করা হচ্ছে" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "অ্যাপ্লিকেশন দ্বারা কমান্ড-লাইনের মাধ্যমে নথিপত্র গ্রহণ করা হয় না" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "প্রারম্ভিক বিকল্প অজানা: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" -msgstr "'Type=Link' ডেস্কটপ এনট্রির ক্ষেত্রে নথিপত্রের URI উল্লেখ করা সম্ভব নয়" +msgstr "" +"'Type=Link' ডেস্কটপ এনট্রির ক্ষেত্রে নথিপত্রের URI উল্লেখ করা সম্ভব নয়" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "প্রারম্ভ করার যোগ্য বস্তু নয়" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "সেশান পরিচালনব্যবস্থার সাথে সংযোগ বিচ্ছিন্ন করা হবে" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "সংরক্ষিত কনফিগারেশন ধারণকারী ফাইল উল্লেখ করুন" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "সেশান পরিচালনার ID উল্লেখ করুন" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "সেশান পরিচালনা সংক্রান্ত বিকল্প:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "সেশান পরিচালনা সংক্রান্ত বিকল্প প্রদর্শন করা হবে" @@ -1104,13 +1115,15 @@ #: gsearchtool/src/gsearchtool.c:1326 msgid "Set the text of \"Look in folder\" search option" -msgstr "অনুসন্ধান কর্মের \"চিহ্নিত ফোল্ডারে অনুসন্ধান করা হবে\" বিকল্পের টেক্সট লিখুন" +msgstr "" +"অনুসন্ধান কর্মের \"চিহ্নিত ফোল্ডারে অনুসন্ধান করা হবে\" বিকল্পের টেক্সট " +"লিখুন" #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"ফাইলগুলি উল্লিখিত বিষয়ের যে কোনো একটি ক্রমে বিন্যাস করা হবে: নাম,ফোল্ডার,মাপ,ধরন " -"অথবা তারিখ" +"ফাইলগুলি উল্লিখিত বিষয়ের যে কোনো একটি ক্রমে বিন্যাস করা হবে: " +"নাম,ফোল্ডার,মাপ,ধরন অথবা তারিখ" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1147,7 +1160,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"অনুসন্ধানের ফলাফল সম্ভবত বৈধ নয়। অনুসন্ধান চলাকালীন কিছু সমস্যা উৎ‌পন্ন হয়েছিল।" +"অনুসন্ধানের ফলাফল সম্ভবত বৈধ নয়। অনুসন্ধান চলাকালীন কিছু সমস্যা উৎ‌পন্ন " +"হয়েছিল।" #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1158,8 +1172,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"অনুসন্ধানের ফলাফল অচল অথবা অবৈধ হওয়ার সম্ভাবনা রয়েছে। আপনি কি ঝটপট অনুসন্ধান " -"ব্যবস্থা নিষ্ক্রিয় করতে ইচ্ছুক?" +"অনুসন্ধানের ফলাফল অচল অথবা অবৈধ হওয়ার সম্ভাবনা রয়েছে। আপনি কি ঝটপট " +"অনুসন্ধান ব্যবস্থা নিষ্ক্রিয় করতে ইচ্ছুক?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1224,7 +1238,8 @@ #: gsearchtool/src/gsearchtool.c:2237 msgid "Click to add the selected available search option." msgstr "" -"ক্লিক করে অনুসন্ধান কর্ম সংক্রান্ত উপলব্ধ বিকল্পের মধ্যে নির্বাচিত বিকল্প যোগ করুন।" +"ক্লিক করে অনুসন্ধান কর্ম সংক্রান্ত উপলব্ধ বিকল্পের মধ্যে নির্বাচিত বিকল্প " +"যোগ করুন।" #: gsearchtool/src/gsearchtool.c:2326 msgid "S_earch results:" @@ -1438,14 +1453,14 @@ #, c-format msgid "The document \"%s\" already exists. Would you like to replace it?" msgstr "" -"\"%s\" ডকুমেন্টটি বর্তমানে উপস্থিত রয়েছে। আপনি কি এটি মুছে নতুন ডকুমেন্ট স্থাপন করতে " -"ইচ্ছুক?" +"\"%s\" ডকুমেন্টটি বর্তমানে উপস্থিত রয়েছে। আপনি কি এটি মুছে নতুন ডকুমেন্ট " +"স্থাপন করতে ইচ্ছুক?" #: gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "If you replace an existing file, its contents will be overwritten." msgstr "" -"উপস্থিত কোনো ফাইলের পরিবর্তে নতুন ফাইল স্থাপন করা হলে পুরোনো ফাইলের বিষয়বস্তু মুছে " -"ফেলা হবে।" +"উপস্থিত কোনো ফাইলের পরিবর্তে নতুন ফাইল স্থাপন করা হলে পুরোনো ফাইলের " +"বিষয়বস্তু মুছে ফেলা হবে।" #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 @@ -1562,7 +1577,8 @@ msgid "View or monitor system log files" msgstr "সিস্টেম লগ ফাইল পড়ুন অথবা পর্যবেক্ষণ করুন" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1573,11 +1589,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"প্রারম্ভে খোলার উদ্দেশ্যে লগ ফাইল নির্ধারণ করে। ব্যবহৃত অপারেটিং সিস্টেমের উপর ভিত্তি " -"করে ডিফল্টরূপে /var/adm/messages অথবা /var/log/messages প্রয়োগ করা হবে।" +"প্রারম্ভে খোলার উদ্দেশ্যে লগ ফাইল নির্ধারণ করে। ব্যবহৃত অপারেটিং সিস্টেমের " +"উপর ভিত্তি করে ডিফল্টরূপে /var/adm/messages অথবা /var/log/messages প্রয়োগ " +"করা হবে।" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1588,8 +1605,9 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"মূল ট্রি-ভিউয়ের মধ্যে লগ প্রদর্শনের জন্য ব্যবহৃত স্থায়ী-প্রস্থের ফন্টের মাপ নির্ধারণ করে। " -"টার্মিনালে ব্যবহৃত ডিফল্ট ফন্টের থেকে ডিফল্ট মান নির্ধারণ করা হয়।" +"মূল ট্রি-ভিউয়ের মধ্যে লগ প্রদর্শনের জন্য ব্যবহৃত স্থায়ী-প্রস্থের ফন্টের মাপ " +"নির্ধারণ করে। টার্মিনালে ব্যবহৃত ডিফল্ট ফন্টের থেকে ডিফল্ট মান নির্ধারণ করা " +"হয়।" #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1616,8 +1634,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"প্রারম্ভে খোলার উদ্দেশ্যে লগ ফাইলের তালিকা উল্লেখ করে। /etc/syslog.conf ফাইল থেকে " -"একটি ডিফল্ট তালিকা নির্মিত হয়।" +"প্রারম্ভে খোলার উদ্দেশ্যে লগ ফাইলের তালিকা উল্লেখ করে। /etc/syslog.conf ফাইল" +" থেকে একটি ডিফল্ট তালিকা নির্মিত হয়।" #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1693,7 +1711,8 @@ #: logview/src/logview-filter-manager.c:207 msgid "Please specify either foreground or background color!" -msgstr "অনুগ্রহ করে পটভূমি অথবা অগ্রভূমির রংয়ের মধ্যে শুধুমাত্র একটি উল্লেখ করুন!" +msgstr "" +"অনুগ্রহ করে পটভূমি অথবা অগ্রভূমির রংয়ের মধ্যে শুধুমাত্র একটি উল্লেখ করুন!" #: logview/src/logview-filter-manager.c:282 msgid "Edit filter" @@ -1734,7 +1753,8 @@ #: logview/src/logview-log.c:589 msgid "Error while uncompressing the GZipped log. The file might be corrupt." msgstr "" -"GZip করা লগ ফাইল আন-কম্প্রেস করতে ত্রুটি দেখা দিয়েছে। সম্ভবত ফাইলটি ত্রুটিপূর্ণ।" +"GZip করা লগ ফাইল আন-কম্প্রেস করতে ত্রুটি দেখা দিয়েছে। সম্ভবত ফাইলটি " +"ত্রুটিপূর্ণ।" #: logview/src/logview-log.c:635 msgid "You don't have enough permissions to read the file." @@ -1948,7 +1968,8 @@ #: logview/src/logview-window.c:862 msgid "Only show lines that match one of the given filters" msgstr "" -"উল্লিখিত যে কোনো একটি ফিল্টারের সাথে মিল পাওয়া পংক্তিগুলি শুধুমাত্র প্রদর্শন করা হবে" +"উল্লিখিত যে কোনো একটি ফিল্টারের সাথে মিল পাওয়া পংক্তিগুলি শুধুমাত্র প্রদর্শন" +" করা হবে" #: logview/src/logview-window.c:994 #, c-format @@ -1980,7 +2001,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "অনলাইন অভিধানে শব্দের সংজ্ঞা ও বানান পরীক্ষা করুন" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1992,8 +2014,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2023,9 +2045,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"অভিধান সার্ভারে ব্যবহত স্বতন্ত্র ডাটাবেস অথবা মিটা-ডাটাবেসের নাম। বিস্ময়সূচক চিহ্নের " -"(\"!\") সাহায্যে নির্দিষ্ট সার্ভারে উপস্থিত সকল ডাটাবেস অনুসন্ধানের নির্দেশ দেওয়া " -"হয়।" +"অভিধান সার্ভারে ব্যবহত স্বতন্ত্র ডাটাবেস অথবা মিটা-ডাটাবেসের নাম। বিস্ময়সূচক" +" চিহ্নের (\"!\") সাহায্যে নির্দিষ্ট সার্ভারে উপস্থিত সকল ডাটাবেস " +"অনুসন্ধানের নির্দেশ দেওয়া হয়।" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2036,8 +2058,9 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"অভিধানের উৎস উপলব্ধ থাকলে, ব্যবহারযোগ্য ডিফল্ট অনুসন্ধান নীতির নাম। ডিফল্টরূপে ব্যবহৃড " -"নীতি হল, 'exact', অর্থাৎ শব্দগুলি সম্পূর্ণরূপে মেলানো হবে।" +"অভিধানের উৎস উপলব্ধ থাকলে, ব্যবহারযোগ্য ডিফল্ট অনুসন্ধান নীতির নাম। " +"ডিফল্টরূপে ব্যবহৃড নীতি হল, 'exact', অর্থাৎ শব্দগুলি সম্পূর্ণরূপে মেলানো " +"হবে।" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2122,8 +2145,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"'%s:%d'-এ উপস্থিত অভিধান সার্ভারের সাথে সংযোগ করতে ব্যর্থ। সার্ভার থেকে কোড %d " -"প্রাপ্ত হয়েছে (সার্ভার বর্তমানে বন্ধ রয়েছে)" +"'%s:%d'-এ উপস্থিত অভিধান সার্ভারের সাথে সংযোগ করতে ব্যর্থ। সার্ভার থেকে কোড " +"%d প্রাপ্ত হয়েছে (সার্ভার বর্তমানে বন্ধ রয়েছে)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -3026,7 +3049,8 @@ msgid "Save images of your desktop or individual windows" msgstr "ডেস্কটপ অথবা স্বতন্ত্র উইন্ডোর ছবি সংরক্ষণ করুন" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3065,7 +3089,8 @@ #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:16 msgid "Include the window manager border along with the screenshot" -msgstr "পর্দার ছবির মধ্যে উইন্ডো পরিচালনব্যবস্থার প্রান্তরেখা অন্তর্ভুক্ত করা হবে" +msgstr "" +"পর্দার ছবির মধ্যে উইন্ডো পরিচালনব্যবস্থার প্রান্তরেখা অন্তর্ভুক্ত করা হবে" #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:20 msgid "Include Pointer" @@ -3084,8 +3109,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"প্রান্তরেখার বাহির অংশে যে ইফেক্ট প্রয়োগ করা হবে। সম্ভাব্য মান \"shadow (ছায়া)\", " -"\"none(শূণ্য)\" এবং \"black-line(কালো-রেখা)\"।" +"প্রান্তরেখার বাহির অংশে যে ইফেক্ট প্রয়োগ করা হবে। সম্ভাব্য মান \"shadow " +"(ছায়া)\", \"none(শূণ্য)\" এবং \"black-line(কালো-রেখা)\"।" #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3203,7 +3228,8 @@ #: mate-screenshot/src/mate-screenshot.c:1321 msgid "Effect to add to the border (shadow, border or none)" -msgstr "প্রান্তরেখার জন্য প্রয়োগের উদ্দেশ্যে ইফেক্ট (ছায়া, প্রান্তরেখা অথবা শূণ্য)" +msgstr "" +"প্রান্তরেখার জন্য প্রয়োগের উদ্দেশ্যে ইফেক্ট (ছায়া, প্রান্তরেখা অথবা শূণ্য)" #: mate-screenshot/src/mate-screenshot.c:1321 msgid "effect" @@ -3223,8 +3249,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3232,7 +3258,8 @@ "Conflicting options: --window and --area should not be used at the same " "time.\n" msgstr "" -"দ্বন্দ্বপূর্ণ বিকল্প: --window ও --area বিকল্প দুটি একসাথে ব্যবহার করা যাবে না।\n" +"দ্বন্দ্বপূর্ণ বিকল্প: --window ও --area বিকল্প দুটি একসাথে ব্যবহার করা যাবে " +"না।\n" #: mate-screenshot/src/screenshot-dialog.c:210 #, c-format @@ -3266,8 +3293,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"সংরক্ষণের উদ্দেশ্যে চলমান চাইল্ড প্রসেস অপ্রত্যাশিতভাবে বন্ধ হওয়ার ফলে পর্দার ছবি " -"ডিস্কে সংরক্ষণ করা যায়নি।" +"সংরক্ষণের উদ্দেশ্যে চলমান চাইল্ড প্রসেস অপ্রত্যাশিতভাবে বন্ধ হওয়ার ফলে " +"পর্দার ছবি ডিস্কে সংরক্ষণ করা যায়নি।" #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" diff -Nru mate-utils-1.26.0/po/bn.po mate-utils-1.26.1/po/bn.po --- mate-utils-1.26.0/po/bn.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/bn.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Bengali (https://www.transifex.com/mate/teams/13566/bn/)\n" -"Language: bn\n" +"Language-Team: Bengali (https://app.transifex.com/mate/teams/13566/bn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "ফোল্ডারের মাপ ও ডিস্কে বিদ্যমান স্থান পরীক্ষা করা হবে" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -415,7 +416,8 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." -msgstr "সার্ভারের সাথে সংযোগ স্থাপন করতে ব্যর্থ। সার্ভারের নাম উল্লেখ করা আবশ্যক।" +msgstr "" +"সার্ভারের সাথে সংযোগ স্থাপন করতে ব্যর্থ। সার্ভারের নাম উল্লেখ করা আবশ্যক।" #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -475,8 +477,8 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"আপনার হোম ডিরেক্টরির আইটেমের মধ্যে কিছু পরিবর্তন ঘটেছে। ডিস্ক ব্যবহারের বিবরণ " -"হালনাগাদ করার জন্য অনুগ্রহ করে পুনরায় স্ক্যান করা নির্বাচন করুন।" +"আপনার হোম ডিরেক্টরির আইটেমের মধ্যে কিছু পরিবর্তন ঘটেছে। ডিস্ক ব্যবহারের " +"বিবরণ হালনাগাদ করার জন্য অনুগ্রহ করে পুনরায় স্ক্যান করা নির্বাচন করুন।" #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -567,9 +569,10 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"এই প্রোগ্রামটি একটি মুক্ত সফ্টওয়্যার; Free Software Foundation দ্বারা প্রকাশিত GNU " -"General Public License-র শর্তানুযায়ী এটি বিতরণ ও পরিবর্তন করা যাবে; লাইসেন্সের " -"সংস্করণ ২ অথবা (আপনার সুবিধানুযায়ী) ঊর্ধ্বতন কোনো সংস্করণের অধীন।" +"এই প্রোগ্রামটি একটি মুক্ত সফ্টওয়্যার; Free Software Foundation দ্বারা " +"প্রকাশিত GNU General Public License-র শর্তানুযায়ী এটি বিতরণ ও পরিবর্তন করা " +"যাবে; লাইসেন্সের সংস্করণ ২ অথবা (আপনার সুবিধানুযায়ী) ঊর্ধ্বতন কোনো সংস্করণের" +" অধীন।" #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -579,15 +582,16 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"এই প্রোগ্রামটি বিতরণ করার মূল উদ্দেশ্য যে ব্যবহারকারীরা এর দ্বারা উপকৃত হবেন, কিন্তু " -"এটির জন্য কোনো সুস্পষ্ট ওয়ারেন্টি উপস্থিত নেই; বাণিজ্যিক ও কোনো সুনির্দিষ্ট কর্ম সাধনের " -"জন্য অন্তর্নিহীত ওয়ারেন্টিও অনুপস্থিত। অধিক জানতে GNU General Public License পড়ুন।" +"এই প্রোগ্রামটি বিতরণ করার মূল উদ্দেশ্য যে ব্যবহারকারীরা এর দ্বারা উপকৃত " +"হবেন, কিন্তু এটির জন্য কোনো সুস্পষ্ট ওয়ারেন্টি উপস্থিত নেই; বাণিজ্যিক ও কোনো" +" সুনির্দিষ্ট কর্ম সাধনের জন্য অন্তর্নিহীত ওয়ারেন্টিও অনুপস্থিত। অধিক জানতে " +"GNU General Public License পড়ুন।" #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -636,16 +640,19 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" -msgstr "নাম অথবা অন্তর্ভুক্ত বিষয় অনুসারে এই কম্পিউটারে ফাইল অথবা ফোল্ডার অনুসন্ধান করুন" +msgstr "" +"নাম অথবা অন্তর্ভুক্ত বিষয় অনুসারে এই কম্পিউটারে ফাইল অথবা ফোল্ডার অনুসন্ধান " +"করুন" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -672,8 +679,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"এই কী দ্বারা নির্ধারিত হয় ফাইলের নাম অনুসারে সাধারণ অনুসন্ধানের সময় অনুসন্ধান " -"ব্যবস্থার দ্বারা locate কমান্ডের ব্যবহার নিষ্ক্রিয় করা হবে কি না।" +"এই কী দ্বারা নির্ধারিত হয় ফাইলের নাম অনুসারে সাধারণ অনুসন্ধানের সময় " +"অনুসন্ধান ব্যবস্থার দ্বারা locate কমান্ডের ব্যবহার নিষ্ক্রিয় করা হবে কি না।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -681,13 +688,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"এই কী দ্বারা দ্রুত অনুসন্ধান ব্যবস্থায় বর্জিত পাথগুলি নির্ধারিত হয়। '*' ও '?' ওয়াইল্ড-" -"কার্ডগুলি ব্যবহার করা সম্ভব হবে। ডিফল্ট মান হলো, /mnt/*, /media/*, /dev/*, /tmp/" -"*, /proc/* এবং /var/*।" +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"এই কী দ্বারা দ্রুত অনুসন্ধান ব্যবস্থায় বর্জিত পাথগুলি নির্ধারিত হয়। '*' ও " +"'?' ওয়াইল্ড-কার্ডগুলি ব্যবহার করা সম্ভব হবে। ডিফল্ট মান হলো, /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/* এবং /var/*।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -698,8 +705,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"এই কী দ্বারা নির্ধারিত হয় দ্রুত অনুসন্ধানের পরে অনুসন্ধান ব্যবস্থার দ্বারা find কমান্ডের " -"ব্যবহার নিষ্ক্রিয় করা হবে কি না।" +"এই কী দ্বারা নির্ধারিত হয় দ্রুত অনুসন্ধানের পরে অনুসন্ধান ব্যবস্থার দ্বারা " +"find কমান্ডের ব্যবহার নিষ্ক্রিয় করা হবে কি না।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -710,13 +717,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"এই কী দ্বারা দ্রুত অনুসন্ধান ব্যবস্থায় দ্বিতীয় স্ক্যানের সময় উপেক্ষিত পাথগুলি নির্ধারিত " -"হয়। দ্বিতীয় স্ক্যানের সময় find কমান্ডের সাহায্যে ফাইল অনুসন্ধান করা হয়। মূলত ইনডেক্স " -"না করা ফাইল এই পদ্ধতিতে অনুসন্ধান করা হয়। '*' ও '?' ওয়াইল্ড-কার্ডগুলি ব্যবহার করা " -"সম্ভব হবে। ডিফল্ট মান হলো, /।" +"এই কী দ্বারা দ্রুত অনুসন্ধান ব্যবস্থায় দ্বিতীয় স্ক্যানের সময় উপেক্ষিত " +"পাথগুলি নির্ধারিত হয়। দ্বিতীয় স্ক্যানের সময় find কমান্ডের সাহায্যে ফাইল " +"অনুসন্ধান করা হয়। মূলত ইনডেক্স না করা ফাইল এই পদ্ধতিতে অনুসন্ধান করা হয়। '*'" +" ও '?' ওয়াইল্ড-কার্ডগুলি ব্যবহার করা সম্ভব হবে। ডিফল্ট মান হলো, /।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -727,8 +734,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"অনুসন্ধানের ফলাফলে প্রদর্শনের কলামের ক্ষেত্রে ব্যবহৃত অনুক্রম এই কী দ্বারা ধার্য করা হয়। " -"ব্যবহারকারী দ্বারা এই কী পরিবর্তন করা হবে না।" +"অনুসন্ধানের ফলাফলে প্রদর্শনের কলামের ক্ষেত্রে ব্যবহৃত অনুক্রম এই কী দ্বারা " +"ধার্য করা হয়। ব্যবহারকারী দ্বারা এই কী পরিবর্তন করা হবে না।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -736,13 +743,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"এই কী-এর মান দ্বারা উইন্ডোর প্রস্থ নির্ধারণ করা হয় ও সেশান সমাপ্তির পরেও এই মান " -"প্রয়োগ করা হয়। -1 মান ধার্য করা হলে, অনুসন্ধান সামগ্রীর জন্য ডিফল্ট প্রস্থের মাপ " -"ব্যবহার করা হয়েছে।" +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"এই কী-এর মান দ্বারা উইন্ডোর প্রস্থ নির্ধারণ করা হয় ও সেশান সমাপ্তির পরেও এই " +"মান প্রয়োগ করা হয়। -1 মান ধার্য করা হলে, অনুসন্ধান সামগ্রীর জন্য ডিফল্ট " +"প্রস্থের মাপ ব্যবহার করা হয়েছে।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -751,12 +758,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"এই কী-এর মান দ্বারা উইন্ডোর উচ্চতা নির্ধারণ করা হয় ও সেশান সমাপ্তির পরেও এই মান " -"প্রয়োগ করা হয়। -1 মান ধার্য করা হলে, অনুসন্ধান সামগ্রীর জন্য ডিফল্ট উচ্চতার মাপ " -"ব্যবহার করা হয়েছে।" +"এই কী-এর মান দ্বারা উইন্ডোর উচ্চতা নির্ধারণ করা হয় ও সেশান সমাপ্তির পরেও এই " +"মান প্রয়োগ করা হয়। -1 মান ধার্য করা হলে, অনুসন্ধান সামগ্রীর জন্য ডিফল্ট " +"উচ্চতার মাপ ব্যবহার করা হয়েছে।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -766,8 +773,8 @@ msgid "" "This key determines if the search tool window starts in a maximized state." msgstr "" -"এই কী দ্বারা নির্ধারিত হয় প্রারম্ভকালে অনুসন্ধানব্যবস্থার উইন্ডোর ক্ষেত্রে সর্বোচ্চ মাপ " -"প্রয়োগ করা হবে কি না।" +"এই কী দ্বারা নির্ধারিত হয় প্রারম্ভকালে অনুসন্ধানব্যবস্থার উইন্ডোর ক্ষেত্রে " +"সর্বোচ্চ মাপ প্রয়োগ করা হবে কি না।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -776,176 +783,179 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 msgid "This key defines the default value of the \"Look in Folder\" widget." msgstr "" -"\"চিহ্নিত ফোল্ডারে অনুসন্ধান করা হবে\" উইজেটের ডিফল্ট মান এই কী দ্বারা নির্ধারিত হয়।" +"\"চিহ্নিত ফোল্ডারে অনুসন্ধান করা হবে\" উইজেটের ডিফল্ট মান এই কী দ্বারা " +"নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 msgid "" "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"\"চিহ্নিত লেখাসহ\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি না তা এই কী দ্বারা অনুসন্ধান " -"ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"চিহ্নিত লেখাসহ\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি না তা এই কী দ্বারা " +"অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"\"সর্বশেষ পরিবর্তনের তারিখ চিহ্নিত সংখ্যার মধ্যে\" অনুসন্ধান অপশনটি নির্বাচিত হয়েছে " -"কি না তা এই কী দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"সর্বশেষ পরিবর্তনের তারিখ চিহ্নিত সংখ্যার মধ্যে\" অনুসন্ধান অপশনটি " +"নির্বাচিত হয়েছে কি না তা এই কী দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে " +"নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"\"সর্বশেষ পরিবর্তনের তারিখ চিহ্নিত সংখ্যার ঊর্ধ্বে\" অনুসন্ধান অপশনটি নির্বাচিত হয়েছে " -"কি না তা এই কী দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"সর্বশেষ পরিবর্তনের তারিখ চিহ্নিত সংখ্যার ঊর্ধ্বে\" অনুসন্ধান অপশনটি " +"নির্বাচিত হয়েছে কি না তা এই কী দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে " +"নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"\"ন্যূনতম মাপ\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি না তা এই কী দ্বারা অনুসন্ধান " -"ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"ন্যূনতম মাপ\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি না তা এই কী দ্বারা " +"অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"\"সর্বাধিক মাপ\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি না তা এই কী দ্বারা অনুসন্ধান " -"ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"সর্বাধিক মাপ\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি না তা এই কী দ্বারা " +"অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"\"ফাঁকা ফাইল\" অনুসন্ধান অপশনটি নির্বাচিত হয়েছে কি না তা এই কী দ্বারা অনুসন্ধান " -"ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"ফাঁকা ফাইল\" অনুসন্ধান অপশনটি নির্বাচিত হয়েছে কি না তা এই কী দ্বারা " +"অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"\"চিহ্নিত ব্যবহারকারীর মালিকানাধীন\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি না তা এই " -"কী দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"চিহ্নিত ব্যবহারকারীর মালিকানাধীন\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি না তা" +" এই কী দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"\"চিহ্নিত দলের মালিকানাধীন\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি না তা এই কী দ্বারা " -"অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"চিহ্নিত দলের মালিকানাধীন\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি না তা এই কী " +"দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"\"অজ্ঞাত মালিকের অধীনহ\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি না তা এই কী দ্বারা " -"অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"অজ্ঞাত মালিকের অধীনহ\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি না তা এই কী " +"দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"\"নামের মধ্যে অনুপস্থিত\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি না তা এই কী দ্বারা " -"অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"নামের মধ্যে অনুপস্থিত\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি না তা এই কী " +"দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"\"রেগুলার এক্সপ্রেশনের সাথে মেলানো নাম\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি না তা " -"এই কী দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"রেগুলার এক্সপ্রেশনের সাথে মেলানো নাম\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি " +"না তা এই কী দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"\"আড়াল করা ফাইল ও ফোল্ডার প্রদর্শন করা হবে\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে কি না " -"তা এই কী দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"আড়াল করা ফাইল ও ফোল্ডার প্রদর্শন করা হবে\" অনুসন্ধান অপশনটি নির্বাচিত হয়ে " +"কি না তা এই কী দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"\"সিম্বলিক লিঙ্ক অনুসরণ করা হবে\" অনুসন্ধান অপশনটি নির্বাচিত হয়েছে কি না তা এই কী " -"দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"সিম্বলিক লিঙ্ক অনুসরণ করা হবে\" অনুসন্ধান অপশনটি নির্বাচিত হয়েছে কি না তা " +"এই কী দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"\"অন্যান্য ফাইল-সিস্টম অন্তর্ভুক্ত করা হবে\" অনুসন্ধান অপশনটি নির্বাচিত হয়েছে কি না তা " -"এই কী দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" +"\"অন্যান্য ফাইল-সিস্টম অন্তর্ভুক্ত করা হবে\" অনুসন্ধান অপশনটি নির্বাচিত " +"হয়েছে কি না তা এই কী দ্বারা অনুসন্ধান ব্যবস্থা আরম্ভ কালে নির্ধারিত হয়।" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "ফাইলটি সক্রিয় .desktop ফাইল নয়" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "অপরিচিত ডেক্সটপ ফাইল সংস্করণ '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "আরম্ভ করা হচ্ছে %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "অ্যাপ্লিকেশন কমান্ড লাইনের নথি গ্রহন করে না" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "অপরিচিত চালুকরণ অপশন: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "একটি 'Type=Link' ডেস্কটপ এন্ট্রিতে নথি URI পাঠানো যায়নি" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "একটি চালুকরণ উপকরণ নয়" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "সেশন ব্যবস্থাপকের সাথে সংযোগ নিষ্ক্রিয় করুন" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "ফাইলে সংরক্ষিত কনফিগারেশন উল্লেখ করে" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "সেশন ব্যবস্থাপনার ID উল্লেখ করা হয়" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "সেশন ব্যবস্থাপনা অপশন:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "সেশন ব্যবস্থাপনা অপশন প্রদর্শন" @@ -1104,13 +1114,14 @@ #: gsearchtool/src/gsearchtool.c:1326 msgid "Set the text of \"Look in folder\" search option" -msgstr "অনুসন্ধান কাজের \"চিহ্নিত ফোল্ডারে অনুসন্ধান করা হবে\" অপশনের টেক্সট লিখুন" +msgstr "" +"অনুসন্ধান কাজের \"চিহ্নিত ফোল্ডারে অনুসন্ধান করা হবে\" অপশনের টেক্সট লিখুন" #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"ফাইলগুলো উল্লিখিত বিষয়ের যে কোনো একটি ক্রমে বিন্যাস করা হবে: নাম,ফোল্ডার,মাপ,ধরন " -"অথবা তারিখ" +"ফাইলগুলো উল্লিখিত বিষয়ের যে কোনো একটি ক্রমে বিন্যাস করা হবে: " +"নাম,ফোল্ডার,মাপ,ধরন অথবা তারিখ" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1147,7 +1158,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"অনুসন্ধানের ফলাফল সম্ভবত বৈধ নয়। অনুসন্ধান চলাকালীন কিছু সমস্যা উৎ‌পন্ন হয়েছিল।" +"অনুসন্ধানের ফলাফল সম্ভবত বৈধ নয়। অনুসন্ধান চলাকালীন কিছু সমস্যা উৎ‌পন্ন " +"হয়েছিল।" #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1158,8 +1170,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"অনুসন্ধানের ফলাফল অচল অথবা অকার্যকর হওয়ার সম্ভাবনা রয়েছে। আপনি কি দ্রুত অনুসন্ধান " -"ব্যবস্থা নিষ্ক্রিয় করতে চন?" +"অনুসন্ধানের ফলাফল অচল অথবা অকার্যকর হওয়ার সম্ভাবনা রয়েছে। আপনি কি দ্রুত " +"অনুসন্ধান ব্যবস্থা নিষ্ক্রিয় করতে চন?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1252,7 +1264,8 @@ #: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 msgid "Enter a filename or partial filename with or without wildcards." -msgstr "ওয়াইল্ড-কার্ড সহ অথবা ছাড়া ফাইলের সম্পূর্ণ অথবা আংশিক নাম প্রবেশ করান।" +msgstr "" +"ওয়াইল্ড-কার্ড সহ অথবা ছাড়া ফাইলের সম্পূর্ণ অথবা আংশিক নাম প্রবেশ করান।" #: gsearchtool/src/gsearchtool.c:2836 msgid "Name contains" @@ -1437,13 +1450,14 @@ #, c-format msgid "The document \"%s\" already exists. Would you like to replace it?" msgstr "" -"\"%s\" নথিটি বর্তমানে উপস্থিত রয়েছে। আপনি কি এটি মুছে নতুন নথি স্থাপন করতে চান?" +"\"%s\" নথিটি বর্তমানে উপস্থিত রয়েছে। আপনি কি এটি মুছে নতুন নথি স্থাপন করতে " +"চান?" #: gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "If you replace an existing file, its contents will be overwritten." msgstr "" -"উপস্থিত কোনো ফাইলের পরিবর্তে নতুন ফাইল স্থাপন করা হলে পুরোনো ফাইলের বিষয়বস্তু মুছে " -"ফেলা হবে।" +"উপস্থিত কোনো ফাইলের পরিবর্তে নতুন ফাইল স্থাপন করা হলে পুরোনো ফাইলের " +"বিষয়বস্তু মুছে ফেলা হবে।" #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 @@ -1560,7 +1574,8 @@ msgid "View or monitor system log files" msgstr "সিস্টেম লগ ফাইল পড়ুন অথবা পর্যবেক্ষণ করুন" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1571,11 +1586,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"প্রারম্ভে খোলার উদ্দেশ্যে লগ ফাইল নির্ধারণ করে। ব্যবহৃত অপারেটিং সিস্টেমের উপর ভিত্তি " -"করে ডিফল্টরূপে /var/adm/messages অথবা /var/log/messages প্রয়োগ করা হবে।" +"প্রারম্ভে খোলার উদ্দেশ্যে লগ ফাইল নির্ধারণ করে। ব্যবহৃত অপারেটিং সিস্টেমের " +"উপর ভিত্তি করে ডিফল্টরূপে /var/adm/messages অথবা /var/log/messages প্রয়োগ " +"করা হবে।" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1586,8 +1602,9 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"মূল ট্রি-ভিউয়ের মধ্যে লগ প্রদর্শনের জন্য ব্যবহৃত স্থায়ী-প্রস্থের ফন্টের মাপ নির্ধারণ করে। " -"টার্মিনালে ব্যবহৃত ডিফল্ট ফন্টের থেকে ডিফল্ট মান নির্ধারণ করা হয়।" +"মূল ট্রি-ভিউয়ের মধ্যে লগ প্রদর্শনের জন্য ব্যবহৃত স্থায়ী-প্রস্থের ফন্টের মাপ " +"নির্ধারণ করে। টার্মিনালে ব্যবহৃত ডিফল্ট ফন্টের থেকে ডিফল্ট মান নির্ধারণ করা " +"হয়।" #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1614,8 +1631,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"প্রারম্ভে খোলার উদ্দেশ্যে লগ ফাইলের তালিকা উল্লেখ করে। /etc/syslog.conf ফাইল থেকে " -"একটি ডিফল্ট তালিকা নির্মিত হয়।" +"প্রারম্ভে খোলার উদ্দেশ্যে লগ ফাইলের তালিকা উল্লেখ করে। /etc/syslog.conf ফাইল" +" থেকে একটি ডিফল্ট তালিকা নির্মিত হয়।" #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1691,7 +1708,8 @@ #: logview/src/logview-filter-manager.c:207 msgid "Please specify either foreground or background color!" -msgstr "অনুগ্রহ করে পটভূমি অথবা অগ্রভূমির রংয়ের মধ্যে শুধুমাত্র একটি উল্লেখ করুন!" +msgstr "" +"অনুগ্রহ করে পটভূমি অথবা অগ্রভূমির রংয়ের মধ্যে শুধুমাত্র একটি উল্লেখ করুন!" #: logview/src/logview-filter-manager.c:282 msgid "Edit filter" @@ -1732,7 +1750,8 @@ #: logview/src/logview-log.c:589 msgid "Error while uncompressing the GZipped log. The file might be corrupt." msgstr "" -"GZip করা লগ ফাইল আন-কম্প্রেস করতে ত্রুটি দেখা দিয়েছে। সম্ভবত ফাইলটি ত্রুটিপূর্ণ।" +"GZip করা লগ ফাইল আন-কম্প্রেস করতে ত্রুটি দেখা দিয়েছে। সম্ভবত ফাইলটি " +"ত্রুটিপূর্ণ।" #: logview/src/logview-log.c:635 msgid "You don't have enough permissions to read the file." @@ -1946,7 +1965,8 @@ #: logview/src/logview-window.c:862 msgid "Only show lines that match one of the given filters" msgstr "" -"উল্লিখিত যে কোনো একটি পরিশোধকের সাথে মিল পাওয়া পংক্তিগুলি শুধুমাত্র প্রদর্শন করা হবে" +"উল্লিখিত যে কোনো একটি পরিশোধকের সাথে মিল পাওয়া পংক্তিগুলি শুধুমাত্র প্রদর্শন" +" করা হবে" #: logview/src/logview-window.c:994 #, c-format @@ -1978,7 +1998,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "অনলাইন অভিধানে শব্দের সংজ্ঞা ও বানান পরীক্ষা করুন" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1990,8 +2011,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2021,9 +2042,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"অভিধান সার্ভারে ব্যবহত স্বতন্ত্র ডাটাবেস অথবা মিটা-ডাটাবেসের নাম। বিস্ময়সূচক চিহ্নের " -"(\"!\") সাহায্যে নির্দিষ্ট সার্ভারে উপস্থিত সকল ডাটাবেস অনুসন্ধানের নির্দেশ দেওয়া " -"হয়।" +"অভিধান সার্ভারে ব্যবহত স্বতন্ত্র ডাটাবেস অথবা মিটা-ডাটাবেসের নাম। বিস্ময়সূচক" +" চিহ্নের (\"!\") সাহায্যে নির্দিষ্ট সার্ভারে উপস্থিত সকল ডাটাবেস " +"অনুসন্ধানের নির্দেশ দেওয়া হয়।" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2034,8 +2055,9 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"অভিধানের উৎস উপলব্ধ থাকলে, ব্যবহারযোগ্য ডিফল্ট অনুসন্ধান নীতির নাম। ডিফল্টরূপে ব্যবহৃড " -"নীতি হল, 'exact', অর্থাৎ শব্দগুলি সম্পূর্ণরূপে মেলানো হবে।" +"অভিধানের উৎস উপলব্ধ থাকলে, ব্যবহারযোগ্য ডিফল্ট অনুসন্ধান নীতির নাম। " +"ডিফল্টরূপে ব্যবহৃড নীতি হল, 'exact', অর্থাৎ শব্দগুলি সম্পূর্ণরূপে মেলানো " +"হবে।" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2120,8 +2142,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"'%1$s:%2$d'-এ উপস্থিত অভিধান সার্ভারের সাথে সংযোগ করতে ব্যর্থ। সার্ভার থেকে কোড " -"%3$d প্রাপ্ত হয়েছে (সার্ভার বর্তমানে বন্ধ রয়েছে)" +"'%1$s:%2$d'-এ উপস্থিত অভিধান সার্ভারের সাথে সংযোগ করতে ব্যর্থ। সার্ভার থেকে " +"কোড %3$d প্রাপ্ত হয়েছে (সার্ভার বর্তমানে বন্ধ রয়েছে)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2185,8 +2207,8 @@ #, c-format msgid "Connection timeout for the dictionary server at '%s:%d'" msgstr "" -"%s:%d-এ উপস্থিত অভিধান সার্ভারের সাথে সংযোগ স্থাপনের প্রচেষ্টার সময় সীমা অতিক্রান্ত " -"হয়েছে" +"%s:%d-এ উপস্থিত অভিধান সার্ভারের সাথে সংযোগ স্থাপনের প্রচেষ্টার সময় সীমা " +"অতিক্রান্ত হয়েছে" #: mate-dictionary/libgdict/gdict-client-context.c:1878 msgid "No hostname defined for the dictionary server" @@ -3024,7 +3046,8 @@ msgid "Save images of your desktop or individual windows" msgstr "ডেস্কটপ অথবা স্বতন্ত্র উইন্ডোর ছবি সংরক্ষণ করুন" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3082,8 +3105,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"সীমারেখার বাহির অংশে যে ইফেক্ট প্রয়োগ করা হবে। সম্ভাব্য মান \"shadow (ছায়া)\", " -"\"none(শূণ্য)\" এবং \"black-line(কালো-রেখা)\"।" +"সীমারেখার বাহির অংশে যে ইফেক্ট প্রয়োগ করা হবে। সম্ভাব্য মান \"shadow " +"(ছায়া)\", \"none(শূণ্য)\" এবং \"black-line(কালো-রেখা)\"।" #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3201,7 +3224,8 @@ #: mate-screenshot/src/mate-screenshot.c:1321 msgid "Effect to add to the border (shadow, border or none)" -msgstr "সীমারেখার জন্য প্রয়োগের উদ্দেশ্যে ইফেক্ট (ছায়া, প্রান্তরেখা অথবা শূণ্য)" +msgstr "" +"সীমারেখার জন্য প্রয়োগের উদ্দেশ্যে ইফেক্ট (ছায়া, প্রান্তরেখা অথবা শূণ্য)" #: mate-screenshot/src/mate-screenshot.c:1321 msgid "effect" @@ -3221,15 +3245,17 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 msgid "" "Conflicting options: --window and --area should not be used at the same " "time.\n" -msgstr "দ্বন্দ্বপূর্ণ অপশন: --window ও --area অপশন দুটি একসাথে ব্যবহার করা যাবে না।\n" +msgstr "" +"দ্বন্দ্বপূর্ণ অপশন: --window ও --area অপশন দুটি একসাথে ব্যবহার করা যাবে " +"না।\n" #: mate-screenshot/src/screenshot-dialog.c:210 #, c-format @@ -3263,8 +3289,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"সংরক্ষণের উদ্দেশ্যে চলমান চাইল্ড প্রসেস অপ্রত্যাশিতভাবে বন্ধ হওয়ার ফলে পর্দার ছবি " -"ডিস্কে সংরক্ষণ করা যায়নি।" +"সংরক্ষণের উদ্দেশ্যে চলমান চাইল্ড প্রসেস অপ্রত্যাশিতভাবে বন্ধ হওয়ার ফলে " +"পর্দার ছবি ডিস্কে সংরক্ষণ করা যায়নি।" #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" diff -Nru mate-utils-1.26.0/po/boldquot.sed mate-utils-1.26.1/po/boldquot.sed --- mate-utils-1.26.0/po/boldquot.sed 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/po/boldquot.sed 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -s/"\([^"]*\)"/“\1”/g -s/`\([^`']*\)'/‘\1’/g -s/ '\([^`']*\)' / ‘\1’ /g -s/ '\([^`']*\)'$/ ‘\1’/g -s/^'\([^`']*\)' /‘\1’ /g -s/“”/""/g -s/“/“/g -s/”/”/g -s/‘/‘/g -s/’/’/g Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/br.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/br.gmo differ diff -Nru mate-utils-1.26.0/po/br.po mate-utils-1.26.1/po/br.po --- mate-utils-1.26.0/po/br.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/br.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,29 +2,25 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Denis ARNAUD , 2018 -# Alan Monfort , 2019 +# Denis ARNAUD , 2021 # Stefano Karapetsas , 2021 -# +# Alan Monfort , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Breton (https://www.transifex.com/mate/teams/13566/br/)\n" -"Language: br\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Alan Monfort , 2021\n" +"Language-Team: Breton (https://app.transifex.com/mate/teams/13566/br/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !" -"=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n" -"%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > " -"19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 " -"&& n % 1000000 == 0) ? 3 : 4);\n" +"Language: br\n" +"Plural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -35,7 +31,8 @@ msgid "Check folder sizes and available disk space" msgstr "Gwiriañ mentoù an teuliadoù ha plas hegerz war ar gantennad" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -199,7 +196,8 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:27 msgid "Whether the status bar at the bottom of main window should be visible." -msgstr "Menegiñ a ra hag eñ e vo hewel ar varrenn stad eus ar prenestr pennañ." +msgstr "" +"Menegiñ a ra hag eñ e vo hewel ar varrenn stad eus ar prenestr pennañ." #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:31 msgid "Subfolder tips visible" @@ -225,8 +223,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -492,8 +490,8 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"Kemmet en deus endalc'had ho kavlec'hiad personel. Diuzit adc'hwilervañ a-" -"benn hizivaat munudoù arver ar gantennad." +"Kemmet en deus endalc'had ho kavlec'hiad personel. Diuzit adc'hwilervañ " +"a-benn hizivaat munudoù arver ar gantennad." #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -598,15 +596,15 @@ "more details." msgstr "" "Dasparzhet eo ar meziant-mañ gant ar spi e vo talvoudus met GANT GWARANT " -"EBET ; hep ar gwarant enpleg a-fet TALVOUDEGEZH KENWERZHEL pe VARREGEZH EVIT " -"UR PAL PERSONEL. Taolit ur sell war Lañvaz Foran Hollek GNU evit gouzout " +"EBET ; hep ar gwarant enpleg a-fet TALVOUDEGEZH KENWERZHEL pe VARREGEZH EVIT" +" UR PAL PERSONEL. Taolit ur sell war Lañvaz Foran Hollek GNU evit gouzout " "hiroc'h." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -650,9 +648,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -661,7 +659,8 @@ "Lec'hiaduriñ an teulioù hag an teuliadoù war an urzhiataer-mañ dre anv pe " "dre endalc'had" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -698,9 +697,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Gant an alc'hwez-mañ ez eo erspizet an treugoù a vo ezlakaet diouzh ur " "c'hlask herrek gant ar benveg klask. Skoret eo an arouezennoù rumm '*' ha " @@ -728,15 +727,15 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Gant an alc'hwez-mañ ez eo erspizet an treugoù a vo ezlakaet diouzh un eil " -"c'hwilervadur pa vez sevenet ur c'hlask herrek gant ar benveg klask. Arveret " -"e vez an arc'had klask gant an eil c'hwilervadur a-benn klask restroù. " +"c'hwilervadur pa vez sevenet ur c'hlask herrek gant ar benveg klask. Arveret" +" e vez an arc'had klask gant an eil c'hwilervadur a-benn klask restroù. " "Kavout ar restroù nad int ket bet lakaet war an ibil eo pal an eil " -"c'hwilervadur. Skoret eo an arouezennoù rumm '*' ha '?'. Ar werzh dre ziouer " -"zo /." +"c'hwilervadur. Skoret eo an arouezennoù rumm '*' ha '?'. Ar werzh dre ziouer" +" zo /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -756,13 +755,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Led ar prenestr zo erspizet gant an alc'hwez-mañ hag arveret eo a-benn " -"derc'hel soñj er benveg klask dre anestezioù. Mar bez arventennet da -1 e vo " -"arveret al led dre ziouer gant ar benveg klask." +"derc'hel soñj er benveg klask dre anestezioù. Mar bez arventennet da -1 e vo" +" arveret al led dre ziouer gant ar benveg klask." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -771,12 +770,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Sav ar prenestr zo erspizet gant an alc'hwez-mañ hag arveret eo a-benn " -"derc'hel soñj er benveg klask dre anestezioù. Mar bez arventennet da -1 e vo " -"arveret ar sav dre ziouer gant ar benveg klask." +"derc'hel soñj er benveg klask dre anestezioù. Mar bez arventennet da -1 e vo" +" arveret ar sav dre ziouer gant ar benveg klask." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -834,8 +833,8 @@ "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"An alc'hwez-mañ a zespiz hag-eñ e vo diuzet an dibarzh klask \"Ment uc'hek\" " -"pa vo loc'het ar benveg da glask." +"An alc'hwez-mañ a zespiz hag-eñ e vo diuzet an dibarzh klask \"Ment uc'hek\"" +" pa vo loc'het ar benveg da glask." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" @@ -855,8 +854,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "An alc'hwez-mañ a zespiz hag-eñ e vo diuzet an dibarzh klask \"Perc'hennet " "gant ur strollad\" pa vo loc'het ar benveg da glask." @@ -866,8 +865,8 @@ "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"An alc'hwez-mañ a zespiz hag-eñ e vo diuzet an dibarzh klask \"Dianavezet eo " -"ar perc'henner\" pa vo loc'het ar benveg da glask." +"An alc'hwez-mañ a zespiz hag-eñ e vo diuzet an dibarzh klask \"Dianavezet eo" +" ar perc'henner\" pa vo loc'het ar benveg da glask." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" @@ -879,8 +878,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "An alc'hwez-mañ a zespiz hag-eñ e vo diuzet an dibarzh klask \"An anv a " "genglot gant ar bomm reoliek\" pa vo loc'het ar benveg da glask." @@ -909,63 +908,64 @@ "An alc'hwez-mañ a zespiz hag-eñ e vo diuzet an dibarzh klask \"Ezlakaat ar " "reizhiad restroù all\" pa vo loc'het ar benveg da glask." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "N'eo ket ur restr mod .desktop talvoudek" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Handelv '%s' restr ar burev n'eo ket bet anavezet" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "O loc'hañ %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "An arload ne zegemer ket an teulioù dre arc'had" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Dibarzh loc'hañ dianavezet : %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -"N'hall ket lakaat URIioù un teul d'un enankad mod .desktop e rizh 'Type=Link'" +"N'hall ket lakaat URIioù un teul d'un enankad mod .desktop e rizh " +"'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "N'eo ket un dra da loc'hañ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Lazhañ kennask ouzh ardoer an estez" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Erspizit ar restr gant ar c'hefluniadur enrollet enni" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "RESTR" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Dibab ID ardoadur an estez" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Dibarzhioù ardeiñ an estez :" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Diskouez dibarzhioù ardeiñ an estez" @@ -1160,7 +1160,8 @@ #: gsearchtool/src/gsearchtool.c:1445 msgid "Invalid option passed to sortby command line argument." -msgstr "Dibarzh didalvoudek lakaet da arguzenn an arc'had rummañ dre (sortby)." +msgstr "" +"Dibarzh didalvoudek lakaet da arguzenn an arc'had rummañ dre (sortby)." #: gsearchtool/src/gsearchtool.c:1737 msgid "" @@ -1175,8 +1176,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"Marteze ez eo didalvoudek disoc'hoù ar c'hlask. Degouezhet ez eus fazioù e-" -"pad ma oa o seveniñ ar c'hlask-mañ." +"Marteze ez eo didalvoudek disoc'hoù ar c'hlask. Degouezhet ez eus fazioù " +"e-pad ma oa o seveniñ ar c'hlask-mañ." #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1303,8 +1304,8 @@ #: gsearchtool/src/gsearchtool.c:2858 msgid "Select the folder or device from which you want to begin the search." msgstr "" -"Diuzañ an teuliad pe an drobarzhell ma fell deoc'h kregiñ ar c'hlask dioutañ/" -"diouti." +"Diuzañ an teuliad pe an drobarzhell ma fell deoc'h kregiñ ar c'hlask " +"dioutañ/diouti." #: gsearchtool/src/gsearchtool.c:2876 msgid "Select more _options" @@ -1482,7 +1483,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "If you replace an existing file, its contents will be overwritten." -msgstr "Mar bez amsavet ur restr ez eus anezhi e vo flastret hec'h endalc'had." +msgstr "" +"Mar bez amsavet ur restr ez eus anezhi e vo flastret hec'h endalc'had." #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 @@ -1599,7 +1601,8 @@ msgid "View or monitor system log files" msgstr "Gwelout pe deurel evezh ouzh kerzhlevrioù ar reizhiad" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1610,8 +1613,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "Erspizañ a ra ar roll kerzhlevrioù da skrammañ gant al loc'hañ. An hini dre " "ziouer zo pe /var/adm/messages pe /var/log/messages, hervez ho reizhiad " @@ -1626,9 +1629,9 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"Erspizañ a ra ment an nodrezh e led fest da skrammañ ar c'herzhlevr war gwel " -"pennañ dre wezennad. Diouzh ment nodrezh an dermenell dre ziouer eo tapet ar " -"vent dre ziouer." +"Erspizañ a ra ment an nodrezh e led fest da skrammañ ar c'herzhlevr war gwel" +" pennañ dre wezennad. Diouzh ment nodrezh an dermenell dre ziouer eo tapet " +"ar vent dre ziouer." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -2021,7 +2024,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Gwiriañ termenadurioù ha skritur gerioù dre ur geriadur enlinenn" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -2033,8 +2037,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2064,8 +2068,8 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"Anv ar stlennvon hiniennel dre ziouer pe meta-stlennvon da arverañ war tarzh " -"ur geriadur. Ar poent estlamm (\"!\") a dalv e tlefe klasket an holl " +"Anv ar stlennvon hiniennel dre ziouer pe meta-stlennvon da arverañ war tarzh" +" ur geriadur. Ar poent estlamm (\"!\") a dalv e tlefe klasket an holl " "stlennvonioù a zo e tarzh ur geriadur" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 @@ -2166,8 +2170,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"N'eo ket gouest da gennaskañ ouzh dafariad ar geriadur da '%s : %d'. Gant ar " -"voneg %d en deus respontet an dafariad (dafariad sac'het)" +"N'eo ket gouest da gennaskañ ouzh dafariad ar geriadur da '%s : %d'. Gant ar" +" voneg %d en deus respontet an dafariad (dafariad sac'het)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -3077,7 +3081,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Enrollañ ar skeudennoù eus ho purev pe brenestroù hiniennel" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3274,8 +3279,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3294,8 +3299,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Fazi e-pad ma oa o kargañ restr diarunusted ketal an arveriad evit ar goulev " -"pakañ :\n" +"Fazi e-pad ma oa o kargañ restr diarunusted ketal an arveriad evit ar goulev pakañ :\n" "%s\n" "\n" "Mar plij, gwiriit staliadur mate-utils. " Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/bs.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/bs.gmo differ diff -Nru mate-utils-1.26.0/po/bs.po mate-utils-1.26.1/po/bs.po --- mate-utils-1.26.0/po/bs.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/bs.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,25 +2,24 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2019 -# Sky Lion , 2019 -# +# Stefano Karapetsas , 2021 +# Sky Lion , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Sky Lion , 2019\n" -"Language-Team: Bosnian (https://www.transifex.com/mate/teams/13566/bs/)\n" -"Language: bs\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Sky Lion , 2021\n" +"Language-Team: Bosnian (https://app.transifex.com/mate/teams/13566/bs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -31,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -215,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -581,8 +581,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -626,16 +626,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -669,9 +670,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -693,8 +694,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -713,9 +714,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -725,8 +726,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -790,8 +791,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -808,8 +809,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -830,62 +831,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Fajl nije validni .desktop fajl" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Nepoznat desktop fajl Verzija '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Pokrećem %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Aplikacija ne prihvaća dokumente na komandnoj liniji" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Nije moguće pokrenuti" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Onemogući spajanje sa upraviteljem sesije" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FAJL" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Navedi ID upravitelja sesije" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1074,7 +1075,8 @@ #: gsearchtool/src/gsearchtool.c:1445 msgid "Invalid option passed to sortby command line argument." -msgstr "Nevažeća vrijednost predata preko sortby argumenta u komandnoj liniji." +msgstr "" +"Nevažeća vrijednost predata preko sortby argumenta u komandnoj liniji." #: gsearchtool/src/gsearchtool.c:1737 msgid "" @@ -1501,7 +1503,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1512,8 +1515,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1911,7 +1914,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1923,8 +1927,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2939,7 +2943,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3131,8 +3136,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ca.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ca.gmo differ diff -Nru mate-utils-1.26.0/po/ca.po mate-utils-1.26.1/po/ca.po --- mate-utils-1.26.0/po/ca.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/ca.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,26 +2,26 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Daniel , 2018 -# Pere Orga , 2018 -# Francesc Famadas, 2018 -# Robert Antoni Buj i Gelonch , 2021 +# Francesc Famadas, 2021 +# Daniel , 2021 +# Pere O. , 2021 # Stefano Karapetsas , 2021 -# +# Robert Antoni Buj i Gelonch , 2022 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Catalan (https://www.transifex.com/mate/teams/13566/ca/)\n" -"Language: ca\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Robert Antoni Buj i Gelonch , 2022\n" +"Language-Team: Catalan (https://app.transifex.com/mate/teams/13566/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -33,7 +33,8 @@ msgid "Check folder sizes and available disk space" msgstr "Comproveu la mida de les carpetes i l'espai disponible al disc" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "MATE;comprovar;disc;ús;anàlisi;mida;espai;" @@ -179,7 +180,8 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:15 msgid "A list of URIs for partitions to be excluded from scanning." -msgstr "Una llista dels URI de les particions que s'exclouran de l'exploració." +msgstr "" +"Una llista dels URI de les particions que s'exclouran de l'exploració." #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:21 msgid "Toolbar is Visible" @@ -222,8 +224,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" "Com el seu nom indica, l'analitzador d'ús de disc és una utilitat gràfica " @@ -237,10 +239,10 @@ "local or remote. There is also an option to constantly monitor any external " "changes to the home directory and warn the user if a file is added/removed." msgstr "" -"Podeu realitzar exploracions en un sistema de fitxers, en la carpeta d'inici " -"de l'usuari o en qualsevol altra carpeta - local o remota. També hi ha una " -"opció per monitorar constantment qualsevol canvi extern al directori d'inici " -"de l'usuari i advertir a l'usuari si s'afegeix o s'elimina un fitxer." +"Podeu realitzar exploracions en un sistema de fitxers, en la carpeta d'inici" +" de l'usuari o en qualsevol altra carpeta - local o remota. També hi ha una " +"opció per monitorar constantment qualsevol canvi extern al directori d'inici" +" de l'usuari i advertir a l'usuari si s'afegeix o s'elimina un fitxer." #: baobab/src/baobab.c:141 baobab/src/baobab.c:358 msgid "Scanning..." @@ -494,8 +496,8 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"El contingut de la carpeta del vostre usuari ha canviat. Seleccioneu torna a " -"explorar per actualitzar els detalls d'ús del disc." +"El contingut de la carpeta del vostre usuari ha canviat. Seleccioneu torna a" +" explorar per actualitzar els detalls d'ús del disc." #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -507,7 +509,7 @@ #: baobab/src/baobab-treeview.c:244 msgid "Usage" -msgstr "Ús" +msgstr "Utilització" #: baobab/src/baobab-treeview.c:258 gsearchtool/src/gsearchtool.c:2466 msgid "Size" @@ -586,8 +588,8 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"Aquest programa és programari lliure; podeu redistribuir-lo i/o modificar-lo " -"sota els termes de la Llicència Pública General GNU tal com ha estat " +"Aquest programa és programari lliure; podeu redistribuir-lo i/o modificar-lo" +" sota els termes de la Llicència Pública General GNU tal com ha estat " "publicada per la Free Software Foundation; ja sigui la versió 2 de la " "Llicència o bé (si ho preferiu) qualsevol altra versió posterior." @@ -607,8 +609,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" "Hauríeu d'haver rebut una còpia de la Llicència pública general de GNU amb " "aquest programa. Si no és el cas, vegeu ." @@ -633,11 +635,8 @@ #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" msgstr "" -"Francesc Famadas \n" -"Gil Forcada \n" -"Jordi Mallach \n" -"Josep Puigdemont \n" -"Robert Antoni Buj Gelonch " +"Aniol Gervasi , 2009\n" +"Robert Antoni Buj Gelonch , 2018, 2019, 2020, 2021" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -661,15 +660,15 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" "L'eina de cerca de MATE és una utilitat simple però potent que us permet " "cercar fitxers i carpetes en qualsevol sistema de fitxers muntat. La seva " "interfície us dóna accés instantani a una àmplia varietat de paràmetres per " -"a cada cerca, com ara el text contingut en un fitxer, el propietari, la data " -"de modificació, la mida del fitxer, l'exclusió de carpetes, etc." +"a cada cerca, com ara el text contingut en un fitxer, el propietari, la data" +" de modificació, la mida del fitxer, l'exclusió de carpetes, etc." #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" @@ -677,13 +676,13 @@ "Localitzeu els documents i les carpetes en aquest ordinador pel nom o " "contingut" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" -"MATE;cerca;fitxers;trobar;documents;carpetes;ordinador;nom;contingut;buscar;" -"eina;" +"MATE;cerca;fitxers;trobar;documents;carpetes;ordinador;nom;contingut;buscar;eina;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -715,13 +714,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Aquesta clau defineix quins camins exclourà l'eina de cerca de la cerca " -"ràpida. Els comodins «*» i «?» valen. Els valors per defecte són /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, i /var/*." +"ràpida. Els comodins «*» i «?» valen. Els valors per defecte són /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, i /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -744,13 +743,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"Aquesta clau defineix quins camins exclourà l'eina de cerca del segon pas de " -"la cerca ràpida. El segon pas utilitza l'ordre find per cercar fitxers. La " -"idea del segon pas és cercar fitxers que no estan indexats. Els comodins «*» " -"i «?» valen. El valor per defecte és /." +"Aquesta clau defineix quins camins exclourà l'eina de cerca del segon pas de" +" la cerca ràpida. El segon pas utilitza l'ordre find per cercar fitxers. La " +"idea del segon pas és cercar fitxers que no estan indexats. Els comodins «*»" +" i «?» valen. El valor per defecte és /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -770,12 +769,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -"Aquesta clau defineix l'amplada de la finestra, i s'utilitza per recordar la " -"mida de l'eina de cerca entre sessions. Si ho establiu a -1, s'utilitzarà " +"Aquesta clau defineix l'amplada de la finestra, i s'utilitza per recordar la" +" mida de l'eina de cerca entre sessions. Si ho establiu a -1, s'utilitzarà " "l'amplada per defecte." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -785,8 +784,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Aquesta clau defineix l'alçada de la finestra, i s'utilitza per recordar la " "mida de l'eina de cerca entre sessions. Si ho establiu a -1, s'utilitzarà " @@ -810,15 +809,16 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 msgid "This key defines the default value of the \"Look in Folder\" widget." msgstr "" -"Aquesta clau defineix el valor predeterminat de l'estri «Cerca a la carpeta»." +"Aquesta clau defineix el valor predeterminat de l'estri «Cerca a la " +"carpeta»." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 msgid "" "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"Aquesta clau determina si l'opció de cerca «Conté el text» està seleccionada " -"quan s'inicia l'eina de cerca." +"Aquesta clau determina si l'opció de cerca «Conté el text» està seleccionada" +" quan s'inicia l'eina de cerca." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" @@ -870,8 +870,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Aquesta clau determina si l'opció de cerca «Grup del fitxer» està " "seleccionada quan s'inicia l'eina de cerca." @@ -881,8 +881,8 @@ "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"Aquesta clau determina si l'opció de cerca «No es coneix el propietari» està " -"seleccionada quan s'inicia l'eina de cerca." +"Aquesta clau determina si l'opció de cerca «No es coneix el propietari» està" +" seleccionada quan s'inicia l'eina de cerca." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" @@ -894,8 +894,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Aquesta clau determina si l'opció de cerca «El nom coincideix amb " "l'expressió regular» està seleccionada quan s'inicia l'eina de cerca." @@ -924,63 +924,64 @@ "Aquesta clau determina si l'opció de cerca «Exclou altres sistemes de " "fitxers» està seleccionada quan s'inicia l'eina de cerca." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "El fitxer no és un fitxer .desktop vàlid" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "No es reconeix la versió «%s» del fitxer d'escriptori" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "S'està iniciant %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "L'aplicació no accepta documents des de la línia d'ordres" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "No es reconeix l'opció de llançament: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -"No es poden passar els URI de document a una entrada d'escriptori «Type=Link»" +"No es poden passar els URI de document a una entrada d'escriptori " +"«Type=Link»" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "No és un element executable" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Inhabilita la connexió al gestor de sessions" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Especifica el fitxer que conté la configuració desada" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FITXER" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Especifica l'ID de gestió de la sessió" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "id." -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opcions de gestió de la sessió:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Mostra les opcions de gestió de la sessió" @@ -1193,8 +1194,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"Els resultats de les cerques poden estar desactualitzades o no ser vàlides. " -"Voleu inhabilitar la funcionalitat de cerca ràpida?" +"Els resultats de les cerques poden estar desactualitzades o no ser vàlides." +" Voleu inhabilitar la funcionalitat de cerca ràpida?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1594,7 +1595,8 @@ msgid "View or monitor system log files" msgstr "Visualitzeu o monitoreu els fitxers de registre del sistema" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "MATE;monitor;veure;sistema;registre;fitxers;visualitzador;" @@ -1605,11 +1607,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Especifica el fitxer de registre a obrir a l'inici. Per defecte, és /var/adm/" -"messages o /var/log/messages, en funció del vostre sistema operatiu." +"Especifica el fitxer de registre a obrir a l'inici. Per defecte, és " +"/var/adm/messages o /var/log/messages, en funció del vostre sistema " +"operatiu." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1631,8 +1634,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:16 msgid "Specifies the height of the log viewer main window in pixels." msgstr "" -"Especifica l'alçada de la finestra principal del visualitzador de fitxers de " -"registres." +"Especifica l'alçada de la finestra principal del visualitzador de fitxers de" +" registres." #: logview/data/org.mate.system-log.gschema.xml.in:20 msgid "Width of the main window in pixels" @@ -1641,8 +1644,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:21 msgid "Specifies the width of the log viewer main window in pixels." msgstr "" -"Especifica l'amplada en píxels de la finestra principal del visualitzador de " -"fitxers de registre." +"Especifica l'amplada en píxels de la finestra principal del visualitzador de" +" fitxers de registre." #: logview/data/org.mate.system-log.gschema.xml.in:25 msgid "Log files to open up on startup" @@ -2029,10 +2032,12 @@ "Comproveu les definicions de paraules i l'ortografia en un diccionari en " "línia" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" -msgstr "MATE;diccionari;miniaplicació;separació;paraules;definicions;Internet;" +msgstr "" +"MATE;diccionari;miniaplicació;separació;paraules;definicions;Internet;" #: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 msgid "A dictionary for MATE Desktop" @@ -2041,14 +2046,14 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" -"El diccionari de MATE us permet consultar paraules als diccionaris en línia. " -"Ve preconfigurat amb una llista de servidors de diccionaris (RFC 2229), als " -"que podeu afegir les vostres pròpies fonts, mentre que podeu seleccionar els " -"servidors específics per a una consulta específica." +"El diccionari de MATE us permet consultar paraules als diccionaris en línia." +" Ve preconfigurat amb una llista de servidors de diccionaris (RFC 2229), als" +" que podeu afegir les vostres pròpies fonts, mentre que podeu seleccionar " +"els servidors específics per a una consulta específica." #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 msgid "Dictionary Applet Factory" @@ -2109,8 +2114,8 @@ msgid "" "The name of the dictionary source used to retrieve the definitions of words." msgstr "" -"El nom de la font de diccionari utilitzat per obtenir les definicions de les " -"paraules." +"El nom de la font de diccionari utilitzat per obtenir les definicions de les" +" paraules." #: mate-dictionary/data/thai.desktop.in:3 msgid "Thai" @@ -2161,7 +2166,8 @@ #, c-format msgid "Lookup failed for hostname '%s': no suitable resources found" msgstr "" -"Ha fallat la cerca del nom d'amfitrió «%s»: no s'ha trobat cap recurs adequat" +"Ha fallat la cerca del nom d'amfitrió «%s»: no s'ha trobat cap recurs " +"adequat" #: mate-dictionary/libgdict/gdict-client-context.c:1083 #, c-format @@ -2782,7 +2788,7 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "S'ha trobat una definició" +msgstr[0] "S'ha trobat %d definició" msgstr[1] "S'han trobat %d definicions" #: mate-dictionary/src/gdict-window.c:578 @@ -2829,7 +2835,7 @@ #: mate-dictionary/src/gdict-window.c:1282 msgid "Find a word or phrase in the document" -msgstr "Troba una paraula o frase al document" +msgstr "Cerca una paraula o frase al document" #: mate-dictionary/src/gdict-window.c:1284 msgid "Find Ne_xt" @@ -3038,8 +3044,8 @@ "If checked, the mount will be read-only. This is useful if you don't want " "the underlying disk image to be modified" msgstr "" -"Si es marca, el muntatge serà de només lectura. Això és útil si no voleu que " -"es modifiqui la imatge del disc subjacent" +"Si es marca, el muntatge serà de només lectura. Això és útil si no voleu que" +" es modifiqui la imatge del disc subjacent" #: mate-disk-image-mounter/src/main.c:178 #, c-format @@ -3095,7 +3101,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Deseu imatges del vostre escriptori o de finestres individuals" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "MATE;captura;pantalla;escriptori;finestra;imatge;" @@ -3153,8 +3160,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Efecte que s'afegirà a fora del contorn. Els valors possibles són " -"«shadow» (ombra), «none» (cap), i «border» (contorn)." +"Efecte que s'afegirà a fora del contorn. Els valors possibles són «shadow» " +"(ombra), «none» (cap), i «border» (contorn)." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3162,7 +3169,7 @@ #: mate-screenshot/src/mate-screenshot.c:250 msgid "None" -msgstr "Sense" +msgstr "Cap" #: mate-screenshot/src/mate-screenshot.c:251 msgid "Drop shadow" @@ -3292,19 +3299,19 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" -"Conflicte d'opcions: no es poden utilitzar al mateix temps --clipboard i --" -"interactive.\n" +"Conflicte d'opcions: no es poden utilitzar al mateix temps --clipboard i " +"--interactive.\n" #: mate-screenshot/src/mate-screenshot.c:1363 msgid "" "Conflicting options: --window and --area should not be used at the same " "time.\n" msgstr "" -"Conflicte d'opcions: no es poden utilitzar al mateix temps --window i --" -"area.\n" +"Conflicte d'opcions: no es poden utilitzar al mateix temps --window i " +"--area.\n" #: mate-screenshot/src/screenshot-dialog.c:210 #, c-format @@ -3314,8 +3321,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"S'ha produït un error en carregar el fitxer de definició de la interfície " -"gràfica per al programa de captura de pantalla: \n" +"S'ha produït un error en carregar el fitxer de definició de la interfície gràfica per al programa de captura de pantalla: \n" "%s\n" "\n" "Comproveu la instal·lació de mate-utils." Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ca@valencia.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ca@valencia.gmo differ diff -Nru mate-utils-1.26.0/po/ca@valencia.po mate-utils-1.26.1/po/ca@valencia.po --- mate-utils-1.26.0/po/ca@valencia.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/ca@valencia.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,26 +2,25 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Empar Montoro , 2019 -# Pilar Embid , 2019 +# Empar Montoro , 2021 # Stefano Karapetsas , 2021 # Jose Alfredo Murcia Andrés , 2021 -# +# Pilar Embid , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Jose Alfredo Murcia Andrés , 2021\n" -"Language-Team: Catalan (Valencian) (https://www.transifex.com/mate/" -"teams/13566/ca@valencia/)\n" -"Language: ca@valencia\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Pilar Embid , 2021\n" +"Language-Team: Catalan (Valencian) (https://app.transifex.com/mate/teams/13566/ca@valencia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ca@valencia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -33,7 +32,8 @@ msgid "Check folder sizes and available disk space" msgstr "Comprova la mida de les carpetes i l'espai disponible al disc" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -223,8 +223,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -275,8 +275,8 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d element" -msgstr[1] "%5d elements" +msgstr[0] "" +msgstr[1] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -579,8 +579,8 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"Aquest programa és programari lliure; podeu redistribuir-lo i/o modificar-lo " -"sota els termes de la Llicència Pública General GNU tal com ha estat " +"Aquest programa és programari lliure; podeu redistribuir-lo i/o modificar-lo" +" sota els termes de la Llicència Pública General GNU tal com ha estat " "publicada per la Free Software Foundation; ja siga la versió 2 de la " "Llicència o bé (si ho preferiu) qualsevol altra versió posterior." @@ -600,8 +600,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -651,9 +651,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -661,7 +661,8 @@ msgstr "" "Localitzeu documents i carpetes en aquest ordinador pel nom o contingut" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -697,13 +698,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Aquesta clau defineix quins camins exclourà l'eina de cerca de la cerca " -"ràpida. Els comodins «*» i «?» valen. Els valors per defecte són /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, i /var/*." +"ràpida. Els comodins «*» i «?» valen. Els valors per defecte són /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, i /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -726,13 +727,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"Aquesta clau defineix quins camins exclourà l'eina de cerca del segon pas de " -"la cerca ràpida. El segon pas utilitza l'ordre find per a cercar fitxers. La " -"idea del segon pas és cercar fitxers que no estan indexats. Els comodins «*» " -"i «?» valen. El valor per defecte és /." +"Aquesta clau defineix quins camins exclourà l'eina de cerca del segon pas de" +" la cerca ràpida. El segon pas utilitza l'ordre find per a cercar fitxers. " +"La idea del segon pas és cercar fitxers que no estan indexats. Els comodins " +"«*» i «?» valen. El valor per defecte és /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -752,13 +753,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"Aquesta clau defineix l'amplària de la finestra, i s'utilitza per a recordar " -"la mida de l'eina de cerca entre sessions. Si ho establiu a -1, s'utilitzarà " -"l'amplària per defecte." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"Aquesta clau defineix l'amplària de la finestra, i s'utilitza per a recordar" +" la mida de l'eina de cerca entre sessions. Si ho establiu a -1, " +"s'utilitzarà l'amplària per defecte." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -767,12 +768,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Aquesta clau defineix l'alçària de la finestra, i s'utilitza per a recordar " -"la mida de l'eina de cerca entre sessions. Si ho establiu a -1, s'utilitzarà " -"l'alçària per defecte." +"la mida de l'eina de cerca entre sessions. Si ho establiu a -1, s'utilitzarà" +" l'alçària per defecte." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -799,8 +800,8 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"Aquesta clau determina si l'opció de cerca «Conté el text» està seleccionada " -"en iniciar l'eina de cerca." +"Aquesta clau determina si l'opció de cerca «Conté el text» està seleccionada" +" en iniciar l'eina de cerca." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" @@ -852,8 +853,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Aquesta clau determina si l'opció de cerca «Grup del fitxer» està " "seleccionada en iniciar l'eina de cerca." @@ -863,8 +864,8 @@ "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"Aquesta clau determina si l'opció de cerca «No es coneix el propietari» està " -"seleccionada en iniciar l'eina de cerca." +"Aquesta clau determina si l'opció de cerca «No es coneix el propietari» està" +" seleccionada en iniciar l'eina de cerca." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" @@ -876,8 +877,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Aquesta clau determina si l'opció de cerca «El nom coincideix amb una " "expressió regular» està seleccionada en iniciar l'eina de cerca." @@ -906,64 +907,64 @@ "Aquesta clau determina si l'opció de cerca «Exclou altres sistemes de " "fitxers» està seleccionada en iniciar l'eina de cerca." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Aquest no és un fitxer .desktop vàlid" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "No es reconeix la versió «%s» del fitxer d'escriptori" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "S'està iniciant %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "L'aplicació no accepta documents des de la línia d'ordres" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "No és reconeix l'opció d'execució: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "No es poden especificar URI de document en una entrada d'escriptori " "«Type=Link»" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "No és un element executable" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Inhabilita la connexió al gestor de la sessió" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Especifiqueu el fitxer que conté la configuració guardada" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FITXER" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Especifiqueu l'identificador del gestor de la sessió" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opcions del gestor de la sessió:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Mostra les opcions del gestor de la sessió" @@ -1102,15 +1103,15 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "S'ha trobat %'d fitxer" -msgstr[1] "S'han trobat %'d fitxers" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "S'ha trobat %'d fitxer" -msgstr[1] "S'han trobat %'d fitxers" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1339,16 +1340,16 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Esteu segur que voleu obrir %d document?" -msgstr[1] "Esteu segur que voleu obrir %d documents?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Això obrirà %d finestra separada." -msgstr[1] "Això obrirà %d finestres separades." +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1372,8 +1373,8 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Esteu segur que voleu obrir %d carpeta?" -msgstr[1] "Esteu segur que voleu obrir %d carpetes?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1578,7 +1579,8 @@ msgid "View or monitor system log files" msgstr "Visualitza o fes un seguiment dels fitxers de registre del sistema" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1589,8 +1591,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "Especifica el fitxer de registre que s'ha d'obrir en iniciar. Per defecte, " "és /var/adm/messages o /var/log/messages, depenent del vostre sistema " @@ -1770,8 +1772,8 @@ #: logview/src/logview-log.c:743 msgid "This version of System Log does not support GZipped logs." msgstr "" -"Aquesta versió del registre del sistema no admet registres comprimits amb el " -"Gzip." +"Aquesta versió del registre del sistema no admet registres comprimits amb el" +" Gzip." #: logview/src/logview-loglist.c:103 msgid "%A, %e %b" @@ -2005,9 +2007,11 @@ #: mate-dictionary/data/mate-dictionary.desktop.in.in:4 msgid "Check word definitions and spellings in an online dictionary" msgstr "" -"Comprova les definicions de paraules i l'ortografia en un diccionari en línia" +"Comprova les definicions de paraules i l'ortografia en un diccionari en " +"línia" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -2019,8 +2023,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2063,9 +2067,9 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"El nom de l'estratègia de cerca per defecte que s'utilitzarà en un origen de " -"diccionari, si està disponible. L'estratègia predeterminada és «exact», que " -"busca paraules exactes." +"El nom de l'estratègia de cerca per defecte que s'utilitzarà en un origen de" +" diccionari, si està disponible. L'estratègia predeterminada és «exact», que" +" busca paraules exactes." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2218,8 +2222,8 @@ #, c-format msgid "Connection timeout for the dictionary server at '%s:%d'" msgstr "" -"S'ha excedit el temps d'espera per a la connexió al servidor de diccionari a " -"«%s:%d»" +"S'ha excedit el temps d'espera per a la connexió al servidor de diccionari a" +" «%s:%d»" #: mate-dictionary/libgdict/gdict-client-context.c:1878 msgid "No hostname defined for the dictionary server" @@ -2415,7 +2419,8 @@ #: mate-dictionary/libgdict/gdict-speller.c:376 msgid "The database used to query the GdictContext" -msgstr "La base de dades que vulgueu utilitzar per a consultar el GdictContext" +msgstr "" +"La base de dades que vulgueu utilitzar per a consultar el GdictContext" #: mate-dictionary/libgdict/gdict-speller.c:383 msgid "The strategy used to query the GdictContext" @@ -2755,8 +2760,8 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "S'ha trobat una definició" -msgstr[1] "S'han trobat %d definicions" +msgstr[0] "" +msgstr[1] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -3062,7 +3067,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Guarda imatges del vostre escriptori o de finestres individuals" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3120,8 +3126,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Efecte que s'afegirà fora de la vora. Els valors possibles són " -"«shadow» (ombra), «none» (cap), i «border» (vora)." +"Efecte que s'afegirà fora de la vora. Els valors possibles són «shadow» " +"(ombra), «none» (cap), i «border» (vora)." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3259,8 +3265,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3268,8 +3274,8 @@ "Conflicting options: --window and --area should not be used at the same " "time.\n" msgstr "" -"Conflicte d'opcions: no es poden utilitzar al mateix temps --window i --" -"area.\n" +"Conflicte d'opcions: no es poden utilitzar al mateix temps --window i " +"--area.\n" #: mate-screenshot/src/screenshot-dialog.c:210 #, c-format @@ -3279,8 +3285,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"S'ha produït un error en carregar el fitxer de definició de la interfície " -"gràfica per al programa de captura de pantalla: \n" +"S'ha produït un error en carregar el fitxer de definició de la interfície gràfica per al programa de captura de pantalla: \n" "%s\n" "\n" "Reviseu la instal·lació de mate-utils." Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/cmn.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/cmn.gmo differ diff -Nru mate-utils-1.26.0/po/cmn.po mate-utils-1.26.1/po/cmn.po --- mate-utils-1.26.0/po/cmn.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/cmn.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # 趙惟倫 , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: 趙惟倫 , 2021\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mate/" -"teams/13566/cmn/)\n" -"Language: cmn\n" +"Language-Team: Chinese (Mandarin) (https://app.transifex.com/mate/teams/13566/cmn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: cmn\n" "Plural-Forms: nplurals=1; plural=0;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "檢查資料夾大小與可用的磁碟空間" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -565,9 +565,8 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"這個程式是自由軟體,您可以遵照自由軟體基金會 (Free Software Foundation) 出版" -"的 GNU 通用公共許可證條款 (GNU General Public License) 第二版來修改和重新發布" -"這一程式,或者自由選擇使用任何更新的版本。" +"這個程式是自由軟體,您可以遵照自由軟體基金會 (Free Software Foundation) 出版的 GNU 通用公共許可證條款 (GNU " +"General Public License) 第二版來修改和重新發布這一程式,或者自由選擇使用任何更新的版本。" #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -576,15 +575,13 @@ "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." -msgstr "" -"發布這一程式的目的是希望它有用,但沒有任何擔保。甚至沒有適合特定目的而隱含的" -"擔保。更詳細的情況請參閱 GNU 通用公共許可證。" +msgstr "發布這一程式的目的是希望它有用,但沒有任何擔保。甚至沒有適合特定目的而隱含的擔保。更詳細的情況請參閱 GNU 通用公共許可證。" #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -631,16 +628,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "以名稱或內容尋找此電腦中的文件及資料夾" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -674,12 +672,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" -"本設定鍵決定搜尋工具在進行快速搜尋時會忽略的路徑。支援萬用字元「*」及「?」。" -"預設的數值是 /mnt/*,/media/*,/dev/*,/tmp/*,/proc/* 及/var/*。" +"本設定鍵決定搜尋工具在進行快速搜尋時會忽略的路徑。支援萬用字元「*」及「?」。預設的數值是 " +"/mnt/*,/media/*,/dev/*,/tmp/*,/proc/* 及/var/*。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -700,12 +698,11 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"本設定鍵決定搜尋工具在進行快速搜尋第二次掃描會忽略的路徑。快速搜尋第二次掃描" -"是做用 find 指令來尋找檔案。第二次掃描的目的是尋找那些沒有建構索引的檔案。支" -"援萬用字元「*」及「?」。預設的數值是 ./。" +"本設定鍵決定搜尋工具在進行快速搜尋第二次掃描會忽略的路徑。快速搜尋第二次掃描是做用 find " +"指令來尋找檔案。第二次掃描的目的是尋找那些沒有建構索引的檔案。支援萬用字元「*」及「?」。預設的數值是 ./。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -723,12 +720,10 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"本設定鍵定義視窗的寬度,而且用來在不同的執行階段間記住搜尋工具的大小。如果將" -"它的值設為 -1 則會讓搜尋工具使用預設的寬度。" +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "本設定鍵定義視窗的寬度,而且用來在不同的執行階段間記住搜尋工具的大小。如果將它的值設為 -1 則會讓搜尋工具使用預設的寬度。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -737,11 +732,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." -msgstr "" -"本設定鍵定義視窗的高度,而且用來在不同的執行階段間記住搜尋工具的大小。如果將" -"它的值設為 -1 則會讓搜尋工具使用預設的高度。" +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." +msgstr "本設定鍵定義視窗的高度,而且用來在不同的執行階段間記住搜尋工具的大小。如果將它的值設為 -1 則會讓搜尋工具使用預設的高度。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -804,8 +797,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "本設定鍵決定在搜尋工具開始搜尋時已選用了「屬於指定群組」選項。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -822,8 +815,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "本設定鍵決定在搜尋工具開始搜尋時已選用了「檔名符合正規表示式」選項。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -844,62 +837,62 @@ "selected when the search tool is started." msgstr "本設定鍵決定在搜尋工具開始搜尋時已選用了「排除其他檔案系統」選項。" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "檔案不是有效的 .desktop 檔案" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "無法辨識的桌面檔案版本「%s」" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "準備啟動 %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "應用程式不接受以命令列開啟文件" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "無法辨識的啟動選項:%d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "不能傳送文件 URI 至「Type=Link」桌面項目" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "不是可以啟動的項目" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "停用到作業階段管理程式的連線" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "指定含有已儲存組態的檔案" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "檔案" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "指定作業階段管理 ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "作業階段管理選項:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "顯示作業階段管理選項" @@ -1501,7 +1494,8 @@ msgid "View or monitor system log files" msgstr "顯示或監察系統日誌檔案" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1512,11 +1506,10 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"指定啟動時預設開啟的日誌。預設值可能是 /var/adm/messages 或 /var/log/" -"messages,取決於所使用的作業系統。" +"指定啟動時預設開啟的日誌。預設值可能是 /var/adm/messages 或 /var/log/messages,取決於所使用的作業系統。" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1552,8 +1545,7 @@ msgid "" "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." -msgstr "" -"指定啟動時預設開啟的日誌檔案列表。預設列表會根據 /etc/syslog.conf 來建構。" +msgstr "指定啟動時預設開啟的日誌檔案列表。預設列表會根據 /etc/syslog.conf 來建構。" #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1914,7 +1906,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "在線上字典中查詢字詞的解譯及拼法" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1926,8 +1919,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -1956,9 +1949,7 @@ "The name of the default individual database or meta-database to use on a " "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" -msgstr "" -"指定在字典來源所預設使用的資料庫或後設資料庫名稱。“!”表示 mate-dictionary 會" -"搜尋指字典來源中所有的資料庫。" +msgstr "指定在字典來源所預設使用的資料庫或後設資料庫名稱。“!”表示 mate-dictionary 會搜尋指字典來源中所有的資料庫。" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -1968,9 +1959,7 @@ msgid "" "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." -msgstr "" -"在字典伺服器中所使用的預設的搜尋方式名稱(如果這個名稱存在的話)。預設的搜尋" -"方式是「exact」,它會完整比對字詞。" +msgstr "在字典伺服器中所使用的預設的搜尋方式名稱(如果這個名稱存在的話)。預設的搜尋方式是「exact」,它會完整比對字詞。" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2954,7 +2943,8 @@ msgid "Save images of your desktop or individual windows" msgstr "將整個桌面或獨立的視窗儲存為圖片" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3149,8 +3139,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/crh.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/crh.gmo differ diff -Nru mate-utils-1.26.0/po/crh.po mate-utils-1.26.1/po/crh.po --- mate-utils-1.26.0/po/crh.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/crh.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Crimean Turkish (https://www.transifex.com/mate/teams/13566/" -"crh/)\n" -"Language: crh\n" +"Language-Team: Crimean Turkish (https://app.transifex.com/mate/teams/13566/crh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: crh\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "Cilbent ölçülerini ve faydalanışlı disk fezasını teşker" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -589,8 +589,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -636,9 +636,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -647,7 +647,8 @@ "Bu bilgisayardaki vesiqalarnı ve cilbentlerni isimge yaki mündericege köre " "qonumlandırıñız" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -683,13 +684,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Bu anahtar arama aracının hızlı aramasından çıkarılacak yolları tanımlar. " -"Maskeleme karakterleri '*' ve '?' desteklenmektedir. Öntanımlı değerler /mnt/" -"*, /media/*, /dev/*, /tmp/*, /proc/*, ve /var/*." +"Maskeleme karakterleri '*' ve '?' desteklenmektedir. Öntanımlı değerler " +"/mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, ve /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -712,13 +713,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"Bu anahtar ikinci kez yapılacak hızlı aramadan çıkarılacak yolları tanımlar." -"İkinci arama dosyaları aramak için bul komutunu kullanır. İkinci aramanın " -"amacı dizinlenmemiş dosyaları bulmaktadır. Maskeleme karakterleri '*' ve '?' " -"desteklenmektedir. Öntanımlı değer /'dir." +"Bu anahtar ikinci kez yapılacak hızlı aramadan çıkarılacak yolları " +"tanımlar.İkinci arama dosyaları aramak için bul komutunu kullanır. İkinci " +"aramanın amacı dizinlenmemiş dosyaları bulmaktadır. Maskeleme karakterleri " +"'*' ve '?' desteklenmektedir. Öntanımlı değer /'dir." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -736,12 +737,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -"Bu anahtar pencere genişliğini tanımlar ve oturumlar arasında arama aracının " -"boyutunu hatırlamakta kullanılır. Bunu -1 yapmak arama aracının öntanımlı " +"Bu anahtar pencere genişliğini tanımlar ve oturumlar arasında arama aracının" +" boyutunu hatırlamakta kullanılır. Bunu -1 yapmak arama aracının öntanımlı " "genişliği kullanmasını sağlar." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -751,8 +752,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Bu anahtar pencere yüksekliğini tanımlar ve oturumlar arası arama aracının " "boyutunu hatırlamak için kullanılır." @@ -774,8 +775,7 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 msgid "This key defines the default value of the \"Look in Folder\" widget." -msgstr "" -"Bu anahtar \"Klasör içinde Ara\" parçasının öntanımlı değerini tanımlar." +msgstr "Bu anahtar \"Klasör içinde Ara\" parçasının öntanımlı değerini tanımlar." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 msgid "" @@ -835,8 +835,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Bu anahtar arama aracı başladığında \"Ait olduğu grup\" arama " "seçeneğininseçili olup olmadığını belirler." @@ -859,8 +859,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Bu anahtar arama aracı başladığında \"İsim düzenli deyimlerle uyuşuyor\" " "arama seçeneğinin seçili olup olmadığını belirler." @@ -889,62 +889,62 @@ "Bu anahtar arama aracı başladığında \"Diğer dosya sistemleri hariç\" arama " "seçeneğinin seçili olup olmadığını belirler." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Dosye keçerli bir .desktop dosyesi degil" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Tanılmağan masaüstü dosyesi Sürümi '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s Başlatıla" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Uyğulama emir satrında vesiqalarnı qabul etmey" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Tanılmağan fırlatma ihtiyariyatı: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Bir 'Tür=İlişim' masaüstü kirildisine vesiqa URI'leri keçirilamaz" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Fırlatılabilir bir unsur degil" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Oturım idarecisine bağlantını ğayrı qabilleştir" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Saqlanğan ayarlamanı ihtiva etken dosyeni belirtiñiz" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "DOSYE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Oturım idaresi kimligini belirtiñiz" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "Kimlik" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Oturım idaresi ihtiyariyatı:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Oturım idaresi ihtiyariyatını köster" @@ -1559,7 +1559,8 @@ msgid "View or monitor system log files" msgstr "Sistem kütük dosyelerine baq ya da közet" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1570,8 +1571,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "Başlangıçta açılacak günlük dosyasını belirtir. Öntanımlı değer işletim " "sisteminize bağlı olarak ya /var/adm/messages ya da /var/log/messages " @@ -1586,8 +1587,8 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"Ana ağaç görünümü içindeki kaydın gösterilmesi için kullanılacak fixed-width " -"yazıtipi boyutu belirler. Öntanımlı olan öntanımlı terminal yazıtipinden " +"Ana ağaç görünümü içindeki kaydın gösterilmesi için kullanılacak fixed-width" +" yazıtipi boyutu belirler. Öntanımlı olan öntanımlı terminal yazıtipinden " "alınmıştır." #: logview/data/org.mate.system-log.gschema.xml.in:15 @@ -1616,8 +1617,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"Başlangıçta açılacak günlük dosyalarının listesini belirtir. /etc/syslog." -"conf dosyası okunarak öntanımlı bir liste oluşturulur." +"Başlangıçta açılacak günlük dosyalarının listesini belirtir. " +"/etc/syslog.conf dosyası okunarak öntanımlı bir liste oluşturulur." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1980,7 +1981,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Sözcük tanımlarını ve yazımlarını çevrimiçi bir sözlükte denetle" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1992,8 +1994,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -3024,7 +3026,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Masaüstüñiz ya da ferdiy pencereleriñizniñ suretlerini saqla" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3082,8 +3085,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Kenarlıkların dışına uygulanacak efekt. Geçerli değerler \"shadow\" (gölge), " -"\"none\" (etki yok), \"border\" (kenarlık)." +"Kenarlıkların dışına uygulanacak efekt. Geçerli değerler \"shadow\" (gölge)," +" \"none\" (etki yok), \"border\" (kenarlık)." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3221,8 +3224,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/cs.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/cs.gmo differ diff -Nru mate-utils-1.26.0/po/cs.po mate-utils-1.26.1/po/cs.po --- mate-utils-1.26.0/po/cs.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/cs.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,32 +2,32 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Ondřej Kolín , 2018 -# huskyviking , 2018 -# Michal , 2018 -# 6e833d5535e2fe0dd9dfa7fe5bf473f2_d78f422 <64c38a0ff10419c64e8e03d54c72b3bd_352524>, 2018 -# Lukáš Lommer , 2020 -# ToMáš Marný, 2020 -# Roman Horník , 2021 +# Michal , 2021 +# clefebvre , 2021 # Stefano Karapetsas , 2021 -# LiberteCzech , 2021 -# +# Ondřej Kolín , 2021 +# Lukáš Lommer , 2021 +# huskyviking , 2021 +# LiberteCzech , 2021 +# 6e833d5535e2fe0dd9dfa7fe5bf473f2_d78f422 <64c38a0ff10419c64e8e03d54c72b3bd_352524>, 2021 +# Roman Horník , 2021 +# ToMáš Marný, 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: LiberteCzech , 2021\n" -"Language-Team: Czech (https://www.transifex.com/mate/teams/13566/cs/)\n" -"Language: cs\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: ToMáš Marný, 2021\n" +"Language-Team: Czech (https://app.transifex.com/mate/teams/13566/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -38,7 +38,8 @@ msgid "Check folder sizes and available disk space" msgstr "Zkontrolovat velikost složek a dostupné místo na disku" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -223,12 +224,12 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" -"Jak jeho název napovídá, Analyzátor využití disku je grafický nástroj, který " -"můžete použít k prohlížení a sledování využití disku a struktury složek. " +"Jak jeho název napovídá, Analyzátor využití disku je grafický nástroj, který" +" můžete použít k prohlížení a sledování využití disku a struktury složek. " "Zobrazuje souhrnné informace v kruhových nebo stromových diagramech." #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 @@ -605,11 +606,11 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" -"Kopii GNU General Public License byste měli obdržet spolu s tímto programem. " -"Pokud se tak nestalo, podívejte se na ." +"Kopii GNU General Public License byste měli obdržet spolu s tímto programem." +" Pokud se tak nestalo, podívejte se na ." #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" @@ -636,12 +637,8 @@ "Miloslav Trmač \n" "Petr Tomeš \n" "Jakub Friedl \n" -"Petr Tomeš \n" -"Lukáš Novotný \n" -"Kamil Páral \n" -"Petr Kovář \n" "Lucas Lommer \n" -"Tomas Bzatek \n" +"Petr Kovář \n" "Roman Horník " #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 @@ -666,9 +663,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" "Vyhledávání souborů pro MATE je jednoduchý ale mocný nástroj umožňující vám " "vyhledávat soubory a složky na připojených souborových systémech. Jeho " @@ -680,13 +677,13 @@ msgid "Locate documents and folders on this computer by name or content" msgstr "Hledat dokumenty a složky v tomto počítači podle názvu či obsahu" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" -"MATE;vyhledávání;soubory;umístění;dokumenty;dokumentů;složky;složek;počítač;" -"název;obsah;najít;nástroj;" +"MATE;vyhledávání;soubory;umístění;dokumenty;dokumentů;složky;složek;počítač;název;obsah;najít;nástroj;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -718,13 +715,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Tento klíč definuje cesty, které nástroj hledání vyjme z rychlého hledání. " -"Jsou podporovány zástupné znaky „*“ a „?“. Výchozí hodnoty jsou /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/* a /var/*." +"Jsou podporovány zástupné znaky „*“ a „?“. Výchozí hodnoty jsou /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/* a /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -747,8 +744,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Tento klíč definuje cesty, které nástroj hledání vyjme z druhého průchodu " "při rychlém hledání. Druhý průchod používá pro hledání souborů příkaz find. " @@ -773,13 +770,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Tento klíč definuje šířku okna a používá se pro zapamatování velikosti " -"nástroje pro hledání mezi sezeními. Jeho nastavení na -1 způsobí, že nástroj " -"pro hledání bude používat výchozí šířku." +"nástroje pro hledání mezi sezeními. Jeho nastavení na -1 způsobí, že nástroj" +" pro hledání bude používat výchozí šířku." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -788,12 +785,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Tento klíč definuje výšku okna a používá se pro zapamatování velikosti " -"nástroje pro hledání mezi sezeními. Jeho nastavení na -1 způsobí, že nástroj " -"pro hledání bude používat výchozí výšku." +"nástroje pro hledání mezi sezeními. Jeho nastavení na -1 způsobí, že nástroj" +" pro hledání bude používat výchozí výšku." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -803,7 +800,8 @@ msgid "" "This key determines if the search tool window starts in a maximized state." msgstr "" -"Tento klíč určuje, jestli se nástroj hledání spouští v maximalizovaném stavu." +"Tento klíč určuje, jestli se nástroj hledání spouští v maximalizovaném " +"stavu." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -871,8 +869,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Tento klíč určuje, jestli je při spuštění nástroje hledání zvolena možnost " "hledání „Vlastněno skupinou“." @@ -895,8 +893,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Tento klíč určuje, jestli je při spuštění nástroje hledání zvolena možnost " "hledání „Název odpovídá regulárnímu výrazu“." @@ -925,62 +923,62 @@ "Tento klíč určuje, jestli je při spuštění nástroje hledání zvolena možnost " "hledání „Vyjmout jiné souborové systémy“." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Soubor není platným souborem typu .desktop" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Nerozpoznaný soubor typu .desktop ve verzi „%s“" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Spouští se %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Aplikace nepřijímá dokumenty z příkazové řádky" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Nerozpoznaná volba spuštění: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Nelze předat URI dokumentu položce .desktop „Type=Link“" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Není spustitelnou položkou" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Zakázat napojení na správce sezení" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Vyberte soubor s uloženou konfigurací" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "SOUBOR" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Zadejte ID správce sezení" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Volby správce sezení:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Zobrazit volby správce sezení" @@ -1119,10 +1117,10 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "%'d soubor nalezen" -msgstr[1] "%'d soubory nalezeny" -msgstr[2] "%'d souborů nalezeno" -msgstr[3] "%'d souborů nalezeno" +msgstr[0] "nalezen %'d soubor" +msgstr[1] "nalezeny %'d soubory" +msgstr[2] "nalezeno %'d souborů" +msgstr[3] "nalezeno %'d souborů" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format @@ -1603,7 +1601,8 @@ msgid "View or monitor system log files" msgstr "Prohlížet nebo sledovat soubory systémových protokolů" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "MATE;monitor;zobrazení;systém;log;soubory;prohlížeč protokolu;" @@ -1614,11 +1613,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Určuje soubor protokolu zobrazovaný při startu. Výchozí je buď /var/adm/" -"messages nebo /var/log/messages, podle vašeho operačního systému." +"Určuje soubor protokolu zobrazovaný při startu. Výchozí je buď " +"/var/adm/messages nebo /var/log/messages, podle vašeho operačního systému." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1630,8 +1629,8 @@ "main tree view. The default is taken from the default terminal font size." msgstr "" "Určuje velikost neproporcionálního písma používaného pro zobrazování " -"protokolů v hlavním stromovém pohledu. Výchozí hodnota je převzata z výchozí " -"velikosti písma terminálu." +"protokolů v hlavním stromovém pohledu. Výchozí hodnota je převzata z výchozí" +" velikosti písma terminálu." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -2030,7 +2029,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Kontrolovat slova a pravopis v on-line slovníku" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "MATE;slovník;applet;tezaurus;pravopis;pravopisu;definice;online;" @@ -2042,14 +2042,14 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" "Slovník MATE vám umožňuje vyhledávat slova ve slovnících dostupných online. " "Má přednastaven seznam serverů se slovníky (dle specifikace RFC 2229) ke " -"kterým můžete přidat další vlastní zdroje a máte možnost používat specifické " -"dotazy na specifické servery." +"kterým můžete přidat další vlastní zdroje a máte možnost používat specifické" +" dotazy na specifické servery." #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 msgid "Dictionary Applet Factory" @@ -2091,7 +2091,8 @@ "available. The default strategy is 'exact', that is match exact words." msgstr "" "Název výchozí metody hledání, kterou používat ve zdroji slovníku, je-li k " -"dispozici. Výchozí metoda je „exact“, to je hledat přesně odpovídající slova." +"dispozici. Výchozí metoda je „exact“, to je hledat přesně odpovídající " +"slova." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2774,9 +2775,9 @@ msgid "A definition found" msgid_plural "%d definitions found" msgstr[0] "Definice nalezena" -msgstr[1] "%d definice nalezeny" -msgstr[2] "%d definic nalezeno" -msgstr[3] "%d definic nalezeno" +msgstr[1] "%d nalezené definice" +msgstr[2] "%d nalezených definic" +msgstr[3] "%d nalezených definic" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -3088,7 +3089,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Uložit obrázky pracovní plochy nebo konkrétních oken" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "MATE;screenshot;snapshot;desktop;snímek;snímky;plocha;okno;obrázek;" @@ -3285,8 +3287,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Konfliktní možnosti: --clipboard a --interactive by se neměly používat " "současně.\n" @@ -3306,8 +3308,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Chyba při načítání definičního souboru uživatelského rozhraní pro program k " -"zachycení obrazovky:\n" +"Chyba při načítání definičního souboru uživatelského rozhraní pro program k zachycení obrazovky:\n" "%s\n" "\n" "Zkontrolujte prosím svou instalaci mate-utils." Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/cy.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/cy.gmo differ diff -Nru mate-utils-1.26.0/po/cy.po mate-utils-1.26.1/po/cy.po --- mate-utils-1.26.0/po/cy.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/cy.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,25 +2,24 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# ciaran, 2019 # Stefano Karapetsas , 2021 -# +# ciaran, 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Welsh (https://www.transifex.com/mate/teams/13566/cy/)\n" -"Language: cy\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: ciaran, 2021\n" +"Language-Team: Welsh (https://app.transifex.com/mate/teams/13566/cy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " -"11) ? 2 : 3;\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -31,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -215,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -582,8 +582,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -629,9 +629,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -639,7 +639,8 @@ msgstr "" "Lleoli dogfennau neu blygellau ar y cyfrifiadur hwn yn ôl enw neu gynnwys" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -675,13 +676,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Mae'r allwedd yn penderfynu'r llwybrau bydd yr offer chwilio yn eu hepgor o " -"chwiliad cyflym. Cynhelir y gwylltnodau '*' a '?'. Y gwerthoedd rhagosodedig " -"yw /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, a /var/*." +"chwiliad cyflym. Cynhelir y gwylltnodau '*' a '?'. Y gwerthoedd rhagosodedig" +" yw /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, a /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -704,8 +705,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Mae'r allwedd yn penderfynu'r llwybrau bydd yr offer chwilio yn eu hepgor " "o'r ail chwiliad yn ystod y chwiliad cyflym. Mae'r ail chwiliad yn " @@ -731,9 +732,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Mae'r allwedd hon yn diffinio lled y ffenestr. Fe'i defnyddir i gofio maint " "yr arf chwilio o un sesiwn i'r llall. Os caiff ei osod i -1, bydd yr arf " @@ -746,8 +747,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Mae'r allwedd hon yn diffinio uchder y ffenestr. Fe'i defnyddir i gofio " "maint yr arf chwilio o un sesiwn i'r llall. Os caiff ei osod i -1, bydd yr " @@ -830,19 +831,19 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"Allwedd sy'n penderfynu a yw'r opsiwn \"Yn berchen i grŵp\" wedi'i ddewis ar " -"gychwyn yr offer chwilio." +"Allwedd sy'n penderfynu a yw'r opsiwn \"Yn berchen i grŵp\" wedi'i ddewis ar" +" gychwyn yr offer chwilio." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"Allwedd sy'n penderfynu a yw'r opsiwn \"Heb berchennog adnabyddedig\" wedi'i " -"ddewis ar gychwyn yr offer chwilio." +"Allwedd sy'n penderfynu a yw'r opsiwn \"Heb berchennog adnabyddedig\" wedi'i" +" ddewis ar gychwyn yr offer chwilio." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" @@ -854,8 +855,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Allwedd sy'n penderfynu a yw'r opsiwn \"Ffeil yn cydweddu â mynegiad " "rheolaidd\" wedi'i ddewis ar gychwyn yr offer chwilio." @@ -882,62 +883,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Nid yw hon yn ffeil .desktop ddilys" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Wrthi'n dechrau %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Nid yw'r rhaglen yn derbyn dogfennau ar y llinell orchymyn" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Nid yw'n eitem y gellir lansio" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Analluogi cysylltiad â'r rheolwr sesiynau" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FFEIL" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Penodi ID rheolaeth sesiynau" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Dewisiadau rheoli sesiynau:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Dangos dewisiadau rheoli sesiynau" @@ -1564,7 +1565,8 @@ msgid "View or monitor system log files" msgstr "Gweld neu fonitro'r ffeiliau cofnod system" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1575,11 +1577,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Dewis y ffeil gofnod i'w hagor wrth gychwyn. Naill ai /var/adm/messages neu /" -"var/log/messages sy'n rhagosodiad, yn dibynnu ar eich system reoli." +"Dewis y ffeil gofnod i'w hagor wrth gychwyn. Naill ai /var/adm/messages neu " +"/var/log/messages sy'n rhagosodiad, yn dibynnu ar eich system reoli." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1980,7 +1982,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Chwilio am ddiffiniadau geiriau a'u sillafiad mewn geiriadur ar-lein" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1992,8 +1995,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2055,7 +2058,8 @@ #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22 msgid "" "The name of the dictionary source used to retrieve the definitions of words." -msgstr "Enw'r ffynhonnell geiriadur a ddefnyddir i gyrchu diffiniadau geiriau." +msgstr "" +"Enw'r ffynhonnell geiriadur a ddefnyddir i gyrchu diffiniadau geiriau." #: mate-dictionary/data/thai.desktop.in:3 msgid "Thai" @@ -2339,7 +2343,8 @@ msgid "" "Unable to get the '%s' key inside the dictionary source definition file: %s" msgstr "" -"Methu cael yr allwedd '%s' o fewn y ffeil diffiniad ffynhonnell geiriadur: %s" +"Methu cael yr allwedd '%s' o fewn y ffeil diffiniad ffynhonnell geiriadur: " +"%s" #: mate-dictionary/libgdict/gdict-source.c:736 msgid "Dictionary source does not have name" @@ -3029,7 +3034,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Cadw delweddau o'r bwrdd gwaith neu o ffenestri unigol" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3221,8 +3227,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/da.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/da.gmo differ diff -Nru mate-utils-1.26.0/po/da.po mate-utils-1.26.1/po/da.po --- mate-utils-1.26.0/po/da.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/da.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,26 +2,26 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Aputsiak Niels Janussen , 2018 -# Louis Tim Larsen , 2018 -# Allan Nordhøy , 2018 -# Joe Hansen , 2021 +# Aputsiak Niels Janussen , 2021 +# Louis Tim Larsen , 2021 # Stefano Karapetsas , 2021 -# +# Allan Nordhøy , 2021 +# Joe Hansen , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Danish (https://www.transifex.com/mate/teams/13566/da/)\n" -"Language: da\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Joe Hansen , 2021\n" +"Language-Team: Danish (https://app.transifex.com/mate/teams/13566/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -33,12 +33,12 @@ msgid "Check folder sizes and available disk space" msgstr "Kontroller mappestørrelser og tilgængelig diskplads" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" -"MATE;check;disk;usage;analyze;size;space;kontrol;forbrug;analyser;størrelse;" -"plads;" +"MATE;check;disk;usage;analyze;size;space;kontrol;forbrug;analyser;størrelse;plads;" #: baobab/data/baobab-dialog-scan-props.ui:18 msgid "Disk Usage Analyzer Preferences" @@ -219,8 +219,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" "Som navnet antyder, er Disk Usage Analyzer et grafisk redskab, som du kan " @@ -278,8 +278,8 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d objekt" -msgstr[1] "%5d objekter" +msgstr[0] "%5d element" +msgstr[1] "%5d elementer" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -428,7 +428,8 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." -msgstr "Kan ikke forbinde til serveren. Du skal indtaste et navn for serveren." +msgstr "" +"Kan ikke forbinde til serveren. Du skal indtaste et navn for serveren." #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -501,7 +502,7 @@ #: baobab/src/baobab-treeview.c:244 msgid "Usage" -msgstr "Forbrug" +msgstr "Brug" #: baobab/src/baobab-treeview.c:258 gsearchtool/src/gsearchtool.c:2466 msgid "Size" @@ -601,8 +602,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" "Du bør have modtaget en kopi af GNU General Public License sammen med dette " "program. Er dette ikke tilfældet, så se ." @@ -627,10 +628,10 @@ #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" msgstr "" -"\"Joe Hansen, 2012, 2013, 2014, 2015, 2016, 2017, 2018.\\n\"\n" -"\"\\n\"\n" -"\"Dansk-gruppen \\n\"\n" -"\"Mere info: http://www.dansk-gruppen.dk\"" +"Joe Hansen 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021.\n" +"\n" +"Dansk-gruppen \n" +"Mere info: http://www.dansk-gruppen.dk" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -654,9 +655,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" "MATE Search Tool er et simpelt redskab men fuld af funktioner, hvor du kan " "søge efter filer og mapper på ethvert monteret filsystem. Dets grænseflade " @@ -668,13 +669,13 @@ msgid "Locate documents and folders on this computer by name or content" msgstr "Find dokumenter og mapper på denne computer ved navn eller indhold" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" -"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" -"søg;søgning;filer:find;dokumenter;mapper;navn;indhold;værktøj;" +"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;søg;søgning;filer:find;dokumenter;mapper;navn;indhold;værktøj;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -706,13 +707,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Denne nøgle definerer stierne som søgeværktøjet ekskluderer fra " -"hurtigsøgningen. Jokerne »*« og »?« er understøttet. De forvalgte værdier " -"er /mnt/*, /media/*, /dev/*, /tmp/*, /proc/* og /var/*." +"hurtigsøgningen. Jokerne »*« og »?« er understøttet. De forvalgte værdier er" +" /mnt/*, /media/*, /dev/*, /tmp/*, /proc/* og /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -723,8 +724,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"Denne nøgle bestemmer om søgeværktøjet deaktiverer brugen af find-kommandoen " -"efter udførsel af en hurtigsøgning." +"Denne nøgle bestemmer om søgeværktøjet deaktiverer brugen af find-kommandoen" +" efter udførsel af en hurtigsøgning." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -735,8 +736,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Denne nøgle definerer stierne som søgeværktøjet ekskluderer fra den anden " "skanning ved udførsel af en hurtigsøgning. Den anden skanning bruger find-" @@ -762,13 +763,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Denne nøgle bestemmer vinduesbredden, og den bruges til at huske størrelsen " -"af søgeværktøjet på tværs af sessioner. Sættes den til -1, vil søgeværktøjet " -"bruge standardbredden." +"af søgeværktøjet på tværs af sessioner. Sættes den til -1, vil søgeværktøjet" +" bruge standardbredden." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -777,12 +778,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Denne nøgle definerer vindueshøjden, og den bruges til at huske størrelsen " -"af søgeværktøjet på tværs af sessioner. Sættes den til -1, vil søgeværktøjet " -"bruge standardhøjden." +"af søgeværktøjet på tværs af sessioner. Sættes den til -1, vil søgeværktøjet" +" bruge standardhøjden." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -839,8 +840,8 @@ "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"Denne nøgle bestemmer om søgevalgmuligheden »Størrelse højst« er udvalgt når " -"søgeværktøjet startes." +"Denne nøgle bestemmer om søgevalgmuligheden »Størrelse højst« er udvalgt når" +" søgeværktøjet startes." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" @@ -860,8 +861,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Denne nøgle bestemmer om søgevalgmuligheden »Ejet af gruppe« er udvalgt når " "søgeværktøjet startes." @@ -884,8 +885,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Denne nøgle bestemmer om søgevalgmuligheden »Navn matcher regulært udtryk« " "er udvalgt når søgeværktøjet startes." @@ -895,16 +896,16 @@ "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"Denne nøgle bestemmer om søgevalgmuligheden »Vis skjulte filer og mapper« er " -"udvalgt når søgeværktøjet startes." +"Denne nøgle bestemmer om søgevalgmuligheden »Vis skjulte filer og mapper« er" +" udvalgt når søgeværktøjet startes." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"Denne nøgle bestemmer om søgevalgmuligheden »Følg symbolske henvisninger« er " -"udvalgt når søgeværktøjet startes." +"Denne nøgle bestemmer om søgevalgmuligheden »Følg symbolske henvisninger« er" +" udvalgt når søgeværktøjet startes." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" @@ -914,62 +915,62 @@ "Denne nøgle bestemmer om søgevalgmuligheden »Medtag andre filsystemer« er " "udvalgt når søgeværktøjet startes." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Filen er ikke en gyldig .desktop-fil" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Skrivebordsfilversion »%s« ikke genkendt" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Starter %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Programmet accepterer ikke dokumenter på kommandolinjen" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Ukendt opstartstilvalg: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Kan ikke give dokument-URI'er til et »Type=Link«-skrivebordselement" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Ikke et kørbart element" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Deaktiver forbindelse til sessionshåndtering" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Specificer fil som indeholder gemt konfiguration" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FIL" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Specificer sessionshåndterings-ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "Id" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Sessionhåndteringsindstillinger:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Vis sessionhåndteringsindstillinger" @@ -1378,7 +1379,7 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Er du sikker på, at du ønsker at åbne %d mapper?" +msgstr[0] "Er du sikker på, at du ønsker at åbne %d mappe?" msgstr[1] "Er du sikker på, at du ønsker at åbne %d mapper?" #: gsearchtool/src/gsearchtool-callbacks.c:725 @@ -1585,7 +1586,8 @@ msgid "View or monitor system log files" msgstr "Gennemse eller overvåg systemets logfiler" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1597,11 +1599,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Angiver logfilen der skal vises når programmet startes. Forvalg er enten /" -"var/adm/messages eller /var/log/messages, afhængigt af din styresystem." +"Angiver logfilen der skal vises når programmet startes. Forvalg er enten " +"/var/adm/messages eller /var/log/messages, afhængigt af din styresystem." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -2008,12 +2010,12 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Slå orddefinitioner og stavning op i en ordbog på internettet" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" -"MATE;dictionary;applet;thesaurus;spelling;definitions;online;ordbog;" -"panelprogram;ordbog;stavning;definitioner;netadgang;" +"MATE;dictionary;applet;thesaurus;spelling;definitions;online;ordbog;panelprogram;ordbog;stavning;definitioner;netadgang;" #: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 msgid "A dictionary for MATE Desktop" @@ -2022,12 +2024,12 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" -"MATE-ordbogen giver dig mulighed for at slå ord op i ordbøger på nettet. Den " -"har en forudfyldt liste med Dict-servere (RFC 2229) hvortil du kan tilføje " +"MATE-ordbogen giver dig mulighed for at slå ord op i ordbøger på nettet. Den" +" har en forudfyldt liste med Dict-servere (RFC 2229) hvortil du kan tilføje " "dine egne kilder, mens du kan vælge specifikke servere for en specifik " "forespørgsel." @@ -2156,8 +2158,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"Kan ikke forbinde til ordbogsserveren »%s:%d«. Denne server svarede med kode " -"%d (server nede)" +"Kan ikke forbinde til ordbogsserveren »%s:%d«. Denne server svarede med kode" +" %d (server nede)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2672,7 +2674,7 @@ #: mate-dictionary/src/gdict-applet.c:1170 msgid "Preferences" -msgstr "Præferencer" +msgstr "Indstillinger" #: mate-dictionary/src/gdict-common.c:77 #, c-format @@ -3066,12 +3068,12 @@ msgid "Save images of your desktop or individual windows" msgstr "Gem billeder af dit skrivebord eller individuelle vinduer" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" -"MATE;screenshot;snapshot;desktop;window;image;skærmbillede;skrivebord;vindue;" -"billede;" +"MATE;screenshot;snapshot;desktop;window;image;skærmbillede;skrivebord;vindue;billede;" #: mate-screenshot/data/mate-screenshot.ui:24 msgid "Save Screenshot" @@ -3265,8 +3267,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Indstillinger i konflikt: --clipboard og --interactive må ikke bruges på " "samme tid.\n" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/de.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/de.gmo differ diff -Nru mate-utils-1.26.0/po/de.po mate-utils-1.26.1/po/de.po --- mate-utils-1.26.0/po/de.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/de.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,30 +2,31 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# nautilusx, 2018 -# Xpistian , 2018 -# Wolfgang Ulbrich , 2018 -# Julian Rüger , 2019 -# clefebvre , 2019 -# Tobias Bannert , 2019 -# Ettore Atalan , 2019 -# Stefano Karapetsas , 2021 +# nautilusx, 2021 # valsu , 2021 -# +# Marcel Artz , 2021 +# Xpistian , 2021 +# Stefano Karapetsas , 2021 +# Ettore Atalan , 2021 +# Tobias Bannert , 2021 +# clefebvre , 2021 +# Wolfgang Ulbrich , 2021 +# Julian Rüger , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: valsu , 2021\n" -"Language-Team: German (https://www.transifex.com/mate/teams/13566/de/)\n" -"Language: de\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Julian Rüger , 2021\n" +"Language-Team: German (https://app.transifex.com/mate/teams/13566/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -37,7 +38,8 @@ msgid "Check folder sizes and available disk space" msgstr "Ordnergrößen und freien Festplattenplatz analysieren" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -212,8 +214,8 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:32 msgid "Whether the subfolder tooltips of the selected folder are drawn." msgstr "" -"Legt fest, ob die Unterordnerhinweise eines ausgewählten Ordners dargestellt " -"werden." +"Legt fest, ob die Unterordnerhinweise eines ausgewählten Ordners dargestellt" +" werden." #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:36 msgid "Active Chart" @@ -230,8 +232,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -282,8 +284,8 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d Objekt" -msgstr[1] "%5d Objekte" +msgstr[0] "" +msgstr[1] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -512,7 +514,7 @@ #: baobab/src/baobab-treeview.c:244 msgid "Usage" -msgstr "Verbrauch" +msgstr "Verwendung" #: baobab/src/baobab-treeview.c:258 gsearchtool/src/gsearchtool.c:2466 msgid "Size" @@ -613,8 +615,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -641,7 +643,8 @@ "Hendrik Richter\n" "Christian Kirbach\n" "Wolfgang Stoeggl\n" -"Tobias Bannert" +"Tobias Bannert\n" +"Marcel Artz" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -665,16 +668,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Dateien und Ordner, auf diesem Rechner, nach Namen oder Inhalt suchen" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -710,9 +714,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Dieser Schlüssel legt die Pfade fest, welche bei einer schnellen Suche " "ausgelassen werden. Die Joker-Zeichen »*« und »?« werden unterstützt. Der " @@ -739,8 +743,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Dieser Schlüssel legt die Pfade fest, welche beim zweiten Suchvorgang einer " "schnellen Suche ausgelassen werden. Der zweite Suchvorgang verwendet das " @@ -765,12 +769,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -"Dieser Schlüssel legt die Breite des Suchfunktionsfensters fest, damit diese " -"bei weiteren Starts wiederhergestellt werden kann. Bei einem Wert von »-1« " +"Dieser Schlüssel legt die Breite des Suchfunktionsfensters fest, damit diese" +" bei weiteren Starts wiederhergestellt werden kann. Bei einem Wert von »-1« " "wird die Vorgabebreite verwendet." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -780,8 +784,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Dieser Schlüssel legt die Höhe des Suchfunktionsfensters fest, damit diese " "bei weiteren Starts wiederhergestellt werden kann. Bei einem Wert von »-1« " @@ -810,8 +814,8 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"Dieser Schlüssel legt fest, ob die Option »Enthält den Text« ausgewählt ist, " -"wenn das Suchwerkzeug gestartet wird." +"Dieser Schlüssel legt fest, ob die Option »Enthält den Text« ausgewählt ist," +" wenn das Suchwerkzeug gestartet wird." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" @@ -826,8 +830,8 @@ "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"Dieser Schlüssel legt fest, ob die Option »Geändert vor mehr als« ausgewählt " -"ist, wenn das Suchwerkzeug gestartet wird." +"Dieser Schlüssel legt fest, ob die Option »Geändert vor mehr als« ausgewählt" +" ist, wenn das Suchwerkzeug gestartet wird." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" @@ -863,8 +867,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Dieser Schlüssel legt fest, ob die Option »Gehört Gruppe« ausgewählt ist, " "wenn das Suchwerkzeug gestartet wird." @@ -887,8 +891,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Dieser Schlüssel legt fest, ob die Option »Dateiname stimmt mit regulärem " "Ausdruck überein« ausgewählt ist, wenn das Suchwerkzeug gestartet wird." @@ -914,67 +918,68 @@ "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"Dieser Schlüssel legt fest, ob die Option »Andere Dateisysteme ausschließen« " -"ausgewählt ist, wenn das Suchwerkzeug gestartet wird." +"Dieser Schlüssel legt fest, ob die Option »Andere Dateisysteme ausschließen«" +" ausgewählt ist, wenn das Suchwerkzeug gestartet wird." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Datei ist keine gültige .desktop-Datei" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Unbekannte .desktop-Dateiversion »%s«" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s wird gestartet" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Anwendung akzeptiert keine Dokumente als Befehlszeilenargument" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Nicht erkannte Startoption: »%d«" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Dokumentadressen können nicht auf einen Schreibtischeintrag des Typs »Link« " "angewendet werden" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Das ist kein ausführbares Objekt" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Verbindung zur Sitzungsverwaltung deaktivieren" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" -msgstr "Bitte die Datei angeben, welche die gespeicherte Konfiguration enthält" +msgstr "" +"Bitte die Datei angeben, welche die gespeicherte Konfiguration enthält" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "DATEI" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Bitte die Kennung der Sitzungsverwaltung angeben" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "Kennung" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Optionen der Sitzungsverwaltung:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Optionen der Sitzungsverwaltung anzeigen" @@ -1113,15 +1118,15 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "%'d Dateien gefunden" -msgstr[1] "%'d Datei gefunden" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "%'d Datei gefunden" -msgstr[1] "%'d Dateien gefunden" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1357,16 +1362,16 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Sind Sie sicher, dass Sie %d Dokument öffnen wollen?" -msgstr[1] "Sind Sie sicher, dass Sie %d Dokumente öffnen wollen?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Das würde %d Einzelfenster öffnen." -msgstr[1] "Das würde %d Einzelfenster öffnen." +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1391,8 +1396,8 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Sind Sie sicher, dass Sie %d Ordner öffnen wollen?" -msgstr[1] "Sind Sie sicher, dass Sie %d Ordner öffnen wollen?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1599,7 +1604,8 @@ msgid "View or monitor system log files" msgstr "Systemprotokolle anzeigen oder überwachen" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1610,8 +1616,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "Gibt an, welche Protokolldatei beim Start geöffnet werden soll. Die Vorgabe " "ist entweder »/var/adm/messages« oder »/var/log/messages«. Dieses ist von " @@ -1627,8 +1633,8 @@ "main tree view. The default is taken from the default terminal font size." msgstr "" "Legt die Größe dicktengleicher Schriften zur Anzeige der Protokolle im " -"Systemprotokollfenster fest. Die Vorgabe wird der Vorgabe »Terminal-Schrift« " -"entnommen." +"Systemprotokollfenster fest. Die Vorgabe wird der Vorgabe »Terminal-Schrift«" +" entnommen." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -2022,7 +2028,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Definitionen und Schreibweisen im Internetwörterbuch nachschlagen" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -2034,8 +2041,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2779,8 +2786,8 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Eine Bedeutung gefunden" -msgstr[1] "%d Bedeutungen gefunden" +msgstr[0] "" +msgstr[1] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -3067,7 +3074,8 @@ #: mate-screenshot/data/mate-screenshot.appdata.xml.in:8 msgid "A screenshot utility for MATE Desktop" msgstr "" -"Ein Werkzeug zur Anfertigung von Bildschirmfotos für die MATE-Arbeitsumgebung" +"Ein Werkzeug zur Anfertigung von Bildschirmfotos für die MATE-" +"Arbeitsumgebung" #: mate-screenshot/data/mate-screenshot.appdata.xml.in:10 msgid "" @@ -3085,9 +3093,11 @@ #: mate-screenshot/data/mate-screenshot.desktop.in:4 msgid "Save images of your desktop or individual windows" -msgstr "Bildschirmfotos Ihrer Arbeitsumgebung oder einzelner Fenster speichern" +msgstr "" +"Bildschirmfotos Ihrer Arbeitsumgebung oder einzelner Fenster speichern" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3129,7 +3139,8 @@ #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:16 msgid "Include the window manager border along with the screenshot" msgstr "" -"Bezieht den Fensterrahmen der Fensterverwaltung mit in das Bildschirmfoto ein" +"Bezieht den Fensterrahmen der Fensterverwaltung mit in das Bildschirmfoto " +"ein" #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:20 msgid "Include Pointer" @@ -3291,8 +3302,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3339,8 +3350,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"Der Kindprozess zum Abspeichern wurde unerwartet beendet. Das Bildschirmfoto " -"konnte nicht auf den Datenträger geschrieben werden." +"Der Kindprozess zum Abspeichern wurde unerwartet beendet. Das Bildschirmfoto" +" konnte nicht auf den Datenträger geschrieben werden." #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/dz.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/dz.gmo differ diff -Nru mate-utils-1.26.0/po/dz.po mate-utils-1.26.1/po/dz.po --- mate-utils-1.26.0/po/dz.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/dz.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Dzongkha (https://www.transifex.com/mate/teams/13566/dz/)\n" -"Language: dz\n" +"Language-Team: Dzongkha (https://app.transifex.com/mate/teams/13566/dz/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: dz\n" "Plural-Forms: nplurals=1; plural=0;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "ཡིག་སྣོད་ཀྱི་ཚད་ཚུ་དང་འཐོབ་ཚུགས་པའི་ཌིཀསི་ས་སྟོང་ཞིབ་དཔྱད་འབད" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -53,7 +54,9 @@ #: baobab/data/baobab-dialog-scan-props.ui:81 msgid "Select _devices to include in filesystem scan:" -msgstr "ཡིག་སྣོད་རིམ་ལུགས་ཞིབ་ལྟའི་ནང་ གྲངས་སུ་བཙུགས་ནིའི་དོན་ལས་ ཐབས་འཕྲུལ་སེལ་འཐུ་འབད་:(_d)" +msgstr "" +"ཡིག་སྣོད་རིམ་ལུགས་ཞིབ་ལྟའི་ནང་ གྲངས་སུ་བཙུགས་ནིའི་དོན་ལས་ " +"ཐབས་འཕྲུལ་སེལ་འཐུ་འབད་:(_d)" #: baobab/data/baobab-dialog-scan-props.ui:119 msgid "_Monitor changes to your home folder" @@ -165,7 +168,8 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:10 msgid "Whether any change to the home directory should be monitored." -msgstr "ཁྱིམ་གྱི་སྣོད་ཐོ་ལུ་ བསྒྱུར་བཅོས་གང་རུང་འབད་མི་ལུ་ དོ་དམ་འབད་དགོཔ་ཨིན་ན་མེན།" +msgstr "" +"ཁྱིམ་གྱི་སྣོད་ཐོ་ལུ་ བསྒྱུར་བཅོས་གང་རུང་འབད་མི་ལུ་ དོ་དམ་འབད་དགོཔ་ཨིན་ན་མེན།" #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:14 msgid "Excluded partitions URIs" @@ -181,7 +185,8 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:22 msgid "Whether the toolbar should be visible in main window." -msgstr "ཁྱིམ་གྱི་སྣོད་ཐོ་ལུ་ བསྒྱུར་བཅོས་གང་རུང་འབད་མི་ལུ་ དོ་དམ་འབད་དགོ་ག་མིན་དགོ" +msgstr "" +"ཁྱིམ་གྱི་སྣོད་ཐོ་ལུ་ བསྒྱུར་བཅོས་གང་རུང་འབད་མི་ལུ་ དོ་དམ་འབད་དགོ་ག་མིན་དགོ" #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:26 msgid "Statusbar is Visible" @@ -213,8 +218,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -474,8 +479,9 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"ཁྱོད་ཀྱི་ཁྱིམ་སྣོད་འཛིན་གྱི་ནང་དོན་དེ་ བསྒྱུར་བཅོས་འབད་ནུག ཌིཀསི་བད་སྤྱོད་རྒྱས་བཤད་ཚུ་ དུས་མཐུན་བཟོ་ནིའི་" -"དོན་ལས་ ལོག་ཞིབ་ལྟ་འབད་ནི་སེལ་འཐུ་འབད།" +"ཁྱོད་ཀྱི་ཁྱིམ་སྣོད་འཛིན་གྱི་ནང་དོན་དེ་ བསྒྱུར་བཅོས་འབད་ནུག " +"ཌིཀསི་བད་སྤྱོད་རྒྱས་བཤད་ཚུ་ དུས་མཐུན་བཟོ་ནིའི་དོན་ལས་ " +"ལོག་ཞིབ་ལྟ་འབད་ནི་སེལ་འཐུ་འབད།" #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -534,7 +540,8 @@ #: baobab/src/baobab-utils.c:381 msgid "There is no installed viewer capable of displaying the folder." msgstr "" -"སྣོད་འཛིན་དེ་ བཀྲམ་སྟོན་འབད་ནིའི་དོན་ལས་ ལྕོགས་གྲུབ་ཡོད་པའི་མཐོང་བྱེད་ གཞི་བཙུགས་འབད་འབདཝ་མིན་འདུག" +"སྣོད་འཛིན་དེ་ བཀྲམ་སྟོན་འབད་ནིའི་དོན་ལས་ ལྕོགས་གྲུབ་ཡོད་པའི་མཐོང་བྱེད་ " +"གཞི་བཙུགས་འབད་འབདཝ་མིན་འདུག" #: baobab/src/baobab-utils.c:448 #, c-format @@ -580,8 +587,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -602,8 +609,9 @@ #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" msgstr "" -"ཨའི་ཌི་ཨར་སི་གི་མ་དངུལ་རྒྱབ་སྐྱོར་ཐོག་ལས་ བརྡ་དོན་འཕྲུལ་རིག་ལས་ཁུངས་ནང་ སྐད་བསྒྱུར་འབད་ཡི། ཁ་གསལ་གྱི་" -"དོན་ལུ་ འབྲེལ་བ་འཐབ་ས་: /(_c)" +"ཨའི་ཌི་ཨར་སི་གི་མ་དངུལ་རྒྱབ་སྐྱོར་ཐོག་ལས་ བརྡ་དོན་འཕྲུལ་རིག་ལས་ཁུངས་ནང་ " +"སྐད་བསྒྱུར་འབད་ཡི། ཁ་གསལ་གྱི་དོན་ལུ་ འབྲེལ་བ་འཐབ་ས་: " +"/(_c)" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -627,18 +635,19 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -"གློག་རིག་འདི་གུ་ཡོད་པའི་ ཡིག་ཆ་དང་སྣོད་འཛིན་ཚུ་ མིང་གི་ཐོག་ལས་ ཡང་ན་ ནང་དོན་གྱི་ཐོག་ལས་ ག་ཡོད་" -"འཚོལ།" +"གློག་རིག་འདི་གུ་ཡོད་པའི་ ཡིག་ཆ་དང་སྣོད་འཛིན་ཚུ་ མིང་གི་ཐོག་ལས་ ཡང་ན་ " +"ནང་དོན་གྱི་ཐོག་ལས་ ག་ཡོད་འཚོལ།" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -665,8 +674,9 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"ལྡེ་མིག་འདི་གིས་ ཡིག་སྣོད་མིང་ འཇམ་སམ་འཚོལ་ཞིབ་འབད་བའི་སྐབས་ འཚོལ་ཞིབ་ལག་ཆས་ཀྱིས་ ག་ཡོད་བལྟ་ནིའི་" -"བརྡ་བཀོད་ལག་ལེན་དེ་ ལྕོགས་མིན་བཟོ་མི་བཟོ་ ངེས་འཛིན་འབདཝ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་ ཡིག་སྣོད་མིང་ འཇམ་སམ་འཚོལ་ཞིབ་འབད་བའི་སྐབས་ " +"འཚོལ་ཞིབ་ལག་ཆས་ཀྱིས་ ག་ཡོད་བལྟ་ནིའི་བརྡ་བཀོད་ལག་ལེན་དེ་ " +"ལྕོགས་མིན་བཟོ་མི་བཟོ་ ངེས་འཛིན་འབདཝ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -674,13 +684,15 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ཀྱིས་ འཕྲལ་མྱུར་འཚོལ་ཞིབ་ཅིག་གི་གྲས་ལས་བཏོན་ནིའི་ འགྲུལ་ལམ་ངེས་འཛིན་" -"འབདཝ་ཨིན།ཝའིལ་ཀཌིསི་ '*' དང་' ?' ཚུ་ལུ་རྒྱབ་སྐྱོར་ཡོད། སྔོན་སྒྲིག་ལེ་བུསི་ /mnt/*, /media/*, /" -"dev/*, /tmp/*, /proc/*, and /var/*ཚུ་ཨིན།" +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ཀྱིས་ " +"འཕྲལ་མྱུར་འཚོལ་ཞིབ་ཅིག་གི་གྲས་ལས་བཏོན་ནིའི་ " +"འགྲུལ་ལམ་ངེས་འཛིན་འབདཝ་ཨིན།ཝའིལ་ཀཌིསི་ '*' དང་' ?' ཚུ་ལུ་རྒྱབ་སྐྱོར་ཡོད། " +"སྔོན་སྒྲིག་ལེ་བུསི་ /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, and " +"/var/*ཚུ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -691,8 +703,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཕྲལ་མྱུར་འཚོལ་ཞིབ་འབད་བའི་ཤུལ་ལུ་ འཚོལ་ཞིབ་ལག་ཆས་ཀྱིས་ འཚོལ་ནིའི་་བརྡ་བཀོད་ལག་ལེན་" -"དེ་ ལྕོགས་མིན་བཟོ་མི་བཟོ་ ངེས་འཛིན་འབདཝ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་ འཕྲལ་མྱུར་འཚོལ་ཞིབ་འབད་བའི་ཤུལ་ལུ་ འཚོལ་ཞིབ་ལག་ཆས་ཀྱིས་ " +"འཚོལ་ནིའི་་བརྡ་བཀོད་ལག་ལེན་དེ་ ལྕོགས་མིན་བཟོ་མི་བཟོ་ ངེས་འཛིན་འབདཝ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -703,13 +715,15 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ཀྱིས་ འཕྲལ་མྱུར་འཚོལ་ཞིབ་འབད་བའི་སྐབས་ ཟིབ་འཚག་གཉིས་པའི་གྲངས་ལས་" -"བཏོན་ནིའི་ འགྲུལ་ལམ་ངེས་འཛིན་འབདཝ་ཨིན། ཞིབ་ལྟ་གཉིས་པ་གིས་ ཡིག་སྣོད་འཚོལ་ཞིབ་འབད་ནི་ལུ་ འཚོལ་བའི་" -"བརྡ་བཀོད་ ལག་ལེན་འཐབ་ཨིན། ཞིབ་ལྟ་གཉིས་པའི་དགོས་དོན་དེ་ ཟུར་སྦྲགས་མེད་པའི་ཡིག་སྣོད་ཚུ་ འཚོལ་ནིའི་དོན་" -"ལུ་ཨིན། ཝའིལ་ཀཌིསི་ *' དང་ '?' ལུ་རྒྱབ་སྐྱོར་ཡོད། སྔོན་སྒྲིག་ལེ་བུ་དེ་ / ཨིན།" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ཀྱིས་ འཕྲལ་མྱུར་འཚོལ་ཞིབ་འབད་བའི་སྐབས་ " +"ཟིབ་འཚག་གཉིས་པའི་གྲངས་ལས་བཏོན་ནིའི་ འགྲུལ་ལམ་ངེས་འཛིན་འབདཝ་ཨིན། " +"ཞིབ་ལྟ་གཉིས་པ་གིས་ ཡིག་སྣོད་འཚོལ་ཞིབ་འབད་ནི་ལུ་ འཚོལ་བའི་བརྡ་བཀོད་ " +"ལག་ལེན་འཐབ་ཨིན། ཞིབ་ལྟ་གཉིས་པའི་དགོས་དོན་དེ་ ཟུར་སྦྲགས་མེད་པའི་ཡིག་སྣོད་ཚུ་ " +"འཚོལ་ནིའི་དོན་ལུ་ཨིན། ཝའིལ་ཀཌིསི་ *' དང་ '?' ལུ་རྒྱབ་སྐྱོར་ཡོད། " +"སྔོན་སྒྲིག་ལེ་བུ་དེ་ / ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -720,8 +734,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་གྲུབ་འབྲས་ནང་ ཀེར་ཐིག་གི་གོ་རིམ་ངེས་འཛིན་འབདཝ་ཨིན། ལྡེ་མིག་འདི་ལག་ལེན་པ་" -"གིས་ ལེགས་བཅོས་འབད་ནི་མི་འོང་།" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་གྲུབ་འབྲས་ནང་ ཀེར་ཐིག་གི་གོ་རིམ་ངེས་འཛིན་འབདཝ་ཨིན།" +" ལྡེ་མིག་འདི་ལག་ལེན་པ་གིས་ ལེགས་བཅོས་འབད་ནི་མི་འོང་།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -729,13 +743,14 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"ལྡེ་མིག་འདི་གིས་སྒོ་སྒྲིག་གི་རྒྱ་ཚད་ངེས་འཛིན་འབདཝ་ཨིནམ་ད་ འདི་ལཱ་ཡུན་ཚུ་གི་བར་ན་ འཚོལ་ཞིབ་ལག་ཆས་ཀྱི་" -"ཚད་སེམས་ཁར་བཞག་ནི་ལུ་ ལག་ལེན་འཐབ་ཨིན། -༡ གུ་གཞི་སྒྲིག་འབདཝ་ད་ འཚོལ་ཞིབ་ལག་ཆས་ལུ་ སྔོན་སྒྲིག་རྒྱ་" -"ཚད་དེ་ ལག་ལེན་འཐབ་བཅུགཔ་ཨིན།" +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"ལྡེ་མིག་འདི་གིས་སྒོ་སྒྲིག་གི་རྒྱ་ཚད་ངེས་འཛིན་འབདཝ་ཨིནམ་ད་ " +"འདི་ལཱ་ཡུན་ཚུ་གི་བར་ན་ འཚོལ་ཞིབ་ལག་ཆས་ཀྱི་ཚད་སེམས་ཁར་བཞག་ནི་ལུ་ " +"ལག་ལེན་འཐབ་ཨིན། -༡ གུ་གཞི་སྒྲིག་འབདཝ་ད་ འཚོལ་ཞིབ་ལག་ཆས་ལུ་ " +"སྔོན་སྒྲིག་རྒྱ་ཚད་དེ་ ལག་ལེན་འཐབ་བཅུགཔ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -744,12 +759,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"ལྡེ་མིག་འདི་གིས་སྒོ་སྒྲིག་གི་མཐོ་ཚད་ངེས་འཛིན་འབདཝ་ཨིནམ་ད་ འདི་ལཱ་ཡུན་ཚུ་གི་བར་ན་ འཚོལ་ཞིབ་ལག་ཆས་ཀྱི་" -"ཚད་སེམས་ཁར་བཞག་ནི་ལུ་ ལག་ལེན་འཐབ་ཨིན། -༡ གུ་གཞི་སྒྲིག་འབདཝ་ད་ འཚོལ་ཞིབ་ལག་ཆས་ལུ་ སྔོན་སྒྲིག་མཐོ་" -"ཚད་དེ་ ལག་ལེན་འཐབ་བཅུགཔ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་སྒོ་སྒྲིག་གི་མཐོ་ཚད་ངེས་འཛིན་འབདཝ་ཨིནམ་ད་ " +"འདི་ལཱ་ཡུན་ཚུ་གི་བར་ན་ འཚོལ་ཞིབ་ལག་ཆས་ཀྱི་ཚད་སེམས་ཁར་བཞག་ནི་ལུ་ " +"ལག་ལེན་འཐབ་ཨིན། -༡ གུ་གཞི་སྒྲིག་འབདཝ་ད་ འཚོལ་ཞིབ་ལག་ཆས་ལུ་ " +"སྔོན་སྒྲིག་མཐོ་ཚད་དེ་ ལག་ལེན་འཐབ་བཅུགཔ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -759,7 +775,8 @@ msgid "" "This key determines if the search tool window starts in a maximized state." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་སྒོ་སྒྲིག་དེ་ སྦོམ་གྱི་གནས་ལུགས་ནང་ འགོ་བཙུགས་མི་བཙུགས་ ཐག་བཅདཔ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་སྒོ་སྒྲིག་དེ་ སྦོམ་གྱི་གནས་ལུགས་ནང་ " +"འགོ་བཙུགས་མི་བཙུགས་ ཐག་བཅདཔ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -774,104 +791,106 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Contains the text\" ཟེར་མི་ འཚོལ་ཞིབ་" -"གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Contains the text\" " +"ཟེར་མི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Date modified less than\" ཟེར་མི་ " -"འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Date modified less " +"than\" ཟེར་མི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Date modified more than\"ཟེར་མི་ " -"འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Date modified more " +"than\"ཟེར་མི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Size at least\" ཟེར་མི་ འཚོལ་ཞིབ་" -"གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Size at least\" " +"ཟེར་མི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Size at most\" ཟེར་མི་ འཚོལ་ཞིབ་གདམ་" -"ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Size at most\" " +"ཟེར་མི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"File is empty\" ཟེར་མི་ འཚོལ་ཞིབ་" -"གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"File is empty\" " +"ཟེར་མི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Owned by user\"ཟེར་མི་ འཚོལ་ཞིབ་གདམ་" -"ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Owned by " +"user\"ཟེར་མི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Owned by group\" ཟེར་མི་ འཚོལ་ཞིབ་" -"གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Owned by group\" " +"ཟེར་མི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Owner is unrecognized\" ཟེར་མི་ " -"འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Owner is " +"unrecognized\" ཟེར་མི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ " +"ངེས་འཛིན་འབདཝ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Name does not contain\" ཟེར་མི་ " -"འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Name does not " +"contain\" ཟེར་མི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Name matches regular expression" -"\" ཟེར་མི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Name matches regular " +"expression\" ཟེར་མི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ " +"ངེས་འཛིན་འབདཝ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Show hidden files and folders\" " -"ཟེར་མི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Show hidden files and" +" folders\" ཟེར་མི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Follow symbolic links\" ཟེར་མི་ " -"འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" +"ལྡེ་མིག་འདི་གིས་ འཚོལ་ཞིབ་ལག་ཆས་ འགོ་བཙུགས་པའི་སྐབས་ \"Follow symbolic " +"links\" ཟེར་མི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ སེལ་འཐུ་འབད་མ་འབད་ ངེས་འཛིན་འབདཝ་ཨིན།" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" @@ -879,62 +898,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s འགོ་བཙུགས་དོ།" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "གསར་བཙུགས་འབད་བཏུབ་པའི་ རྣམ་གྲངས་ཅིག་མེན་པས།" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "ལཱ་ཡུན་འཛིན་སྐྱོང་པ་ལུ་ མཐུད་ལམ་ལྕོགས་མིན་བཟོ།" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "ལཱ་ཡུན་འཛིན་སྐྱོང་གིཨའི་ཌི་ གསལ་བཀོད་འབད།" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ཨའི་ཌི།" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "ལཱ་ཡུན་འཛིན་སྐྱོང༌གི་གདམ་ཁ་ཚུ་སྟོན།" @@ -1083,7 +1102,9 @@ #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" -msgstr "ཐོ་བཀོད་བསྒྱུར་བཅོས་འབད་ཡོད་མི་གིས་ ཐོ་བཀོད་མིན་པའི་གདམ་ཁ་ཅིག་གི་ ཞུ་བ་འབད་ཡི།" +msgstr "" +"ཐོ་བཀོད་བསྒྱུར་བཅོས་འབད་ཡོད་མི་གིས་ ཐོ་བཀོད་མིན་པའི་གདམ་ཁ་ཅིག་གི་ " +"ཞུ་བ་འབད་ཡི།" #: gsearchtool/src/gsearchtool.c:1325 msgid "Set the text of \"Name contains\" search option" @@ -1096,11 +1117,13 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"འོག་གི་གཅིག་གི་ཐོག་ལས་ ཡིག་སྣོད་ཚུ་དབྱེ་སེལ་འབད: མིང་, སྣོད་འཛིན་, ཚད་, དབྱེ་བ་, ཡང་ན་ ཚེས་གྲངས།" +"འོག་གི་གཅིག་གི་ཐོག་ལས་ ཡིག་སྣོད་ཚུ་དབྱེ་སེལ་འབད: མིང་, སྣོད་འཛིན་, ཚད་, " +"དབྱེ་བ་, ཡང་ན་ ཚེས་གྲངས།" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" -msgstr "དབྱེ་སེལ་གོ་རིམ་ མར་འབབ་ལུ་ གཞི་སྒྲིག་འབད། སྔོན་སྒྲིག་དེ་ ཡར་འཛེགས་ཨིན།" +msgstr "" +"དབྱེ་སེལ་གོ་རིམ་ མར་འབབ་ལུ་ གཞི་སྒྲིག་འབད། སྔོན་སྒྲིག་དེ་ ཡར་འཛེགས་ཨིན།" #: gsearchtool/src/gsearchtool.c:1329 msgid "Automatically start a search" @@ -1133,7 +1156,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"འཚོལ་ཞིབ་གྲུབ་འབྲས་དེ་ཚུ་ ནུས་མེད་འོང་ནི་མས། འཚོལ་ཞིབ་འདི་ ལག་ལེན་འཐབ་པའི་སྐབས་ འཛོལ་བ་ཚུ་འདུག" +"འཚོལ་ཞིབ་གྲུབ་འབྲས་དེ་ཚུ་ ནུས་མེད་འོང་ནི་མས། འཚོལ་ཞིབ་འདི་ " +"ལག་ལེན་འཐབ་པའི་སྐབས་ འཛོལ་བ་ཚུ་འདུག" #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1144,8 +1168,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"འཚོལ་ཞིབ་གྲུབ་འབྲས་དེ་ཚུ་ ཚེས་གྲགས་ཡོལ་བའམ་ ནུས་མེད་འོང་ནི་མས། ཁྱོད་ཀྱི་འཕྲལ་མྱུར་ འཚོལ་ཞིབ་ཁྱད་རྣམ་" -"དེ་ ལྕོགས་མིན་བཟོ་ནི་ཨིན་ན?" +"འཚོལ་ཞིབ་གྲུབ་འབྲས་དེ་ཚུ་ ཚེས་གྲགས་ཡོལ་བའམ་ ནུས་མེད་འོང་ནི་མས། " +"ཁྱོད་ཀྱི་འཕྲལ་མྱུར་ འཚོལ་ཞིབ་ཁྱད་རྣམ་དེ་ ལྕོགས་མིན་བཟོ་ནི་ཨིན་ན?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1209,7 +1233,9 @@ #: gsearchtool/src/gsearchtool.c:2237 msgid "Click to add the selected available search option." -msgstr "སེལ་འཐུ་འབད་མི་ འཐོབ་ཚུགས་པའི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ ཁ་སྐོང་བརྐྱབ་ནི་ལུ་ ཨེབ་གཏང་འབད།" +msgstr "" +"སེལ་འཐུ་འབད་མི་ འཐོབ་ཚུགས་པའི་ འཚོལ་ཞིབ་གདམ་ཁ་དེ་ ཁ་སྐོང་བརྐྱབ་ནི་ལུ་ " +"ཨེབ་གཏང་འབད།" #: gsearchtool/src/gsearchtool.c:2326 msgid "S_earch results:" @@ -1238,7 +1264,9 @@ #: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 msgid "Enter a filename or partial filename with or without wildcards." -msgstr "ཡིག་སྣོད་མིང་ཅིག་ ཡང་ཅིན་ མིང་གི་ཆ་ཤས་ཅིག་ ཝ་ཡིལཌི་ཀཌི་ ཡོད་པའམ་མེད་པའི་ཐོག་ལས་བཙུགས།" +msgstr "" +"ཡིག་སྣོད་མིང་ཅིག་ ཡང་ཅིན་ མིང་གི་ཆ་ཤས་ཅིག་ ཝ་ཡིལཌི་ཀཌི་ " +"ཡོད་པའམ་མེད་པའི་ཐོག་ལས་བཙུགས།" #: gsearchtool/src/gsearchtool.c:2836 msgid "Name contains" @@ -1259,7 +1287,8 @@ #: gsearchtool/src/gsearchtool.c:2858 msgid "Select the folder or device from which you want to begin the search." msgstr "" -"ཁྱོད་ཀྱིས་འཚོལ་ཞིབ་ ག་ཏེ་ལས་འགོ་བཙུག་ནི་ཨིན་ན་ སྣོད་འཛིན་ ཡང་ན་ ཐབས་འཕྲུལ་དེ་ སེལ་འཐུ་འབད།" +"ཁྱོད་ཀྱིས་འཚོལ་ཞིབ་ ག་ཏེ་ལས་འགོ་བཙུག་ནི་ཨིན་ན་ སྣོད་འཛིན་ ཡང་ན་ " +"ཐབས་འཕྲུལ་དེ་ སེལ་འཐུ་འབད།" #: gsearchtool/src/gsearchtool.c:2876 msgid "Select more _options" @@ -1271,7 +1300,9 @@ #: gsearchtool/src/gsearchtool.c:2885 msgid "Click to expand or collapse the list of available options." -msgstr "འཐོབ་ཚུགས་པའི་གདམ་ཁ་ཚུ་གི་ཐོ་ཡིག་ རྒྱ་བསྐྱེད་འབད་ནིའམ་ ཧྲམ་གཏང་ནིའི་དོན་ལུ་ ཨེབ་གཏང་འབད།" +msgstr "" +"འཐོབ་ཚུགས་པའི་གདམ་ཁ་ཚུ་གི་ཐོ་ཡིག་ རྒྱ་བསྐྱེད་འབད་ནིའམ་ ཧྲམ་གཏང་ནིའི་དོན་ལུ་ " +"ཨེབ་གཏང་འབད།" #: gsearchtool/src/gsearchtool.c:2916 msgid "Click to display the help manual." @@ -1331,7 +1362,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:521 msgid "There is no installed viewer capable of displaying the document." -msgstr "ཡིག་ཆ་དེ་ བཀྲམ་སྟོན་འབད་ཚུགས་པའི་མཐོང་བྱེད་ གཞི་བཙུགས་འབད་འབདཝ་མིན་འདུག" +msgstr "" +"ཡིག་ཆ་དེ་ བཀྲམ་སྟོན་འབད་ཚུགས་པའི་མཐོང་བྱེད་ གཞི་བཙུགས་འབད་འབདཝ་མིན་འདུག" #: gsearchtool/src/gsearchtool-callbacks.c:543 #, c-format @@ -1424,7 +1456,9 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "If you replace an existing file, its contents will be overwritten." -msgstr "ཁྱོད་ཀྱིས་ད་ལྟོ་ཡོད་མི་ ཡིག་སྣོད་ཅིག་གི་ ཚབ་བཙུགས་པ་ཅིན་ དེ་གི་ནང་དོན་ཚུ་ སླར་སྲུང་འབད་འོང་།" +msgstr "" +"ཁྱོད་ཀྱིས་ད་ལྟོ་ཡོད་མི་ ཡིག་སྣོད་ཅིག་གི་ ཚབ་བཙུགས་པ་ཅིན་ དེ་གི་ནང་དོན་ཚུ་ " +"སླར་སྲུང་འབད་འོང་།" #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 @@ -1541,7 +1575,8 @@ msgid "View or monitor system log files" msgstr "རིམ་ལུགས་དྲན་དེབ་ཡིག་སྣོད་ལུ་བལྟ་ ཡང་ན་ ལྟ་རྟོག་འབད།" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1552,11 +1587,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"འགོ་བཙུགས་སྐབས་ལུ་ བཀྲམ་སྟོན་འབད་མི་དརན་དེབ་ཡིག་སྣོད་དེ་ གསལ་བཀོད་འབདཝ་ཨིན། སྔོན་སྒྲིག་དེ་ཁྱོད་རའི་" -"བཀོལ་སྤྱོད་རིམ་ལུགས་དང་འཁྲིལ་ཏེ་ /var/adm/འཕྲིན་དོན་ ཡང་ན་ /var/log/འཕྲིན་དོན་ཨིན།" +"འགོ་བཙུགས་སྐབས་ལུ་ བཀྲམ་སྟོན་འབད་མི་དརན་དེབ་ཡིག་སྣོད་དེ་ གསལ་བཀོད་འབདཝ་ཨིན། " +"སྔོན་སྒྲིག་དེ་ཁྱོད་རའི་བཀོལ་སྤྱོད་རིམ་ལུགས་དང་འཁྲིལ་ཏེ་ /var/adm/འཕྲིན་དོན་" +" ཡང་ན་ /var/log/འཕྲིན་དོན་ཨིན།" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1567,8 +1603,10 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"རྩ་འབྲེལ་མཐོང་སྣང་གཙོ་བོའི་ནང་ དྲན་དེབ་བཀྲམ་སྟོན་འབད་ནི་ལུ་ལག་ལེན་འཐབ་མི་རྒྱ་ཚད་གཏན་བཟོས་ཡིག་གཟུགས་" -"ཀྱི་ཚད་ གསལ་བཀོད་འབདཝ་ཨིན། སྔོན་སྒྲིག་དེ་ སྔོན་སྒྲིག་ཊར་མི་ནཱལ་ཡིག་གཟུགས་ཀྱི་ཚད་ནང་ལས་བཏོནམ་ཨིན།" +"རྩ་འབྲེལ་མཐོང་སྣང་གཙོ་བོའི་ནང་ " +"དྲན་དེབ་བཀྲམ་སྟོན་འབད་ནི་ལུ་ལག་ལེན་འཐབ་མི་རྒྱ་ཚད་གཏན་བཟོས་ཡིག་གཟུགས་ཀྱི་ཚད་ " +"གསལ་བཀོད་འབདཝ་ཨིན། སྔོན་སྒྲིག་དེ་ " +"སྔོན་སྒྲིག་ཊར་མི་ནཱལ་ཡིག་གཟུགས་ཀྱི་ཚད་ནང་ལས་བཏོནམ་ཨིན།" #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1584,7 +1622,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:21 msgid "Specifies the width of the log viewer main window in pixels." -msgstr "སྒོ་སྒྲིག་གཙོ་བོ་མཐོང་བྱེད་དྲན་དེབ་ཀྱི་རྒྱ་ཚད་ པིག་སེལ་ནང་གསལ་བཀོལ་འབདཝ་ཨིན།" +msgstr "" +"སྒོ་སྒྲིག་གཙོ་བོ་མཐོང་བྱེད་དྲན་དེབ་ཀྱི་རྒྱ་ཚད་ པིག་སེལ་ནང་གསལ་བཀོལ་འབདཝ་ཨིན།" #: logview/data/org.mate.system-log.gschema.xml.in:25 msgid "Log files to open up on startup" @@ -1595,8 +1634,9 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"འགོ་བཙུགས་སྐབས་ལུ་ཁ་ཕྱེ་ནིའི་ དྲན་དེབ་ཡིག་སྣོད་ཚུ་གི་ཐོ་ཡིག་ཅིག་ གསལ་བཀོད་འབདཝ་ཨིན། སྔོན་སྒྲིག་དེ་ /" -"etc/syslog.conf. ལྷག་པའི་ཐོག་ལས་ གསར་བསྐྲུན་འབདཝ་ཨིན།" +"འགོ་བཙུགས་སྐབས་ལུ་ཁ་ཕྱེ་ནིའི་ དྲན་དེབ་ཡིག་སྣོད་ཚུ་གི་ཐོ་ཡིག་ཅིག་ " +"གསལ་བཀོད་འབདཝ་ཨིན། སྔོན་སྒྲིག་དེ་ /etc/syslog.conf. ལྷག་པའི་ཐོག་ལས་ " +"གསར་བསྐྲུན་འབདཝ་ཨིན།" #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1955,9 +1995,12 @@ #: mate-dictionary/data/mate-dictionary.desktop.in.in:4 msgid "Check word definitions and spellings in an online dictionary" -msgstr "གློག་ཐོག་ཚིག་མཛོད་ཅིག་ནང་ མིང་ཚིག་གི་ངེས་ཚིག་དང་ སྡེབ་སྦྱོར་ཚུ་ཞིབ་དཔྱད་རྐྱབས།" +msgstr "" +"གློག་ཐོག་ཚིག་མཛོད་ཅིག་ནང་ མིང་ཚིག་གི་ངེས་ཚིག་དང་ " +"སྡེབ་སྦྱོར་ཚུ་ཞིབ་དཔྱད་རྐྱབས།" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1969,8 +2012,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2000,9 +2043,11 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"ཚིག་མཛོད་འབྱུང་ཁུངས་ཅིག་གུ་ ལག་ལེན་འཐབ་ནིའི་དོན་ལུ་ སྔོན་སྒྲིག་གི་་ངོ་རྐྱང་གཞི་རྟེན་གནད་སྡུད་ ཡང་ན་ མེ་" -"ཊ་གཞི་རྟེན་གནད་སྡུད་ཀྱི་མིང་། ཚོར་རྟགས་ (\"!\") ཅིག་གིས་ ཚིག་མཛོད་འབྱུང་ཁུངས་ཅིག་ནང་ཡོད་པའི་ གནད་" -"སྡུད་གཞི་རྟེན་ཆ་མཉམ་ འཚོལ་ཞིབ་འབད་དགོ་པའི་བརྡ་སྟོནམ་ཨིན།" +"ཚིག་མཛོད་འབྱུང་ཁུངས་ཅིག་གུ་ ལག་ལེན་འཐབ་ནིའི་དོན་ལུ་ " +"སྔོན་སྒྲིག་གི་་ངོ་རྐྱང་གཞི་རྟེན་གནད་སྡུད་ ཡང་ན་ " +"མེ་ཊ་གཞི་རྟེན་གནད་སྡུད་ཀྱི་མིང་། ཚོར་རྟགས་ (\"!\") ཅིག་གིས་ " +"ཚིག་མཛོད་འབྱུང་ཁུངས་ཅིག་ནང་ཡོད་པའི་ གནད་སྡུད་གཞི་རྟེན་ཆ་མཉམ་ " +"འཚོལ་ཞིབ་འབད་དགོ་པའི་བརྡ་སྟོནམ་ཨིན།" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2013,8 +2058,10 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"ཚིག་མཛོད་འབྱུང་ཁུངས་ཡོད་པ་ཅིན ལག་ལེན་འཐབ་ནིའི་སྔོན་སྒྲིག་འཚོལ་ཞིབ་ཐབས་བྱུས་ཀྱི་མིང་། སྔོན་སྒྲིག་ཐབས་བྱུས་" -"དེ་ 'ངེས་ཏིག' ཨིནམ་ད་ དེ་ཡང་ མིང་ཚིག་ངེས་ཏིག་མཐུན་སྒྲིག་འབད་ནི་ཨིན།" +"ཚིག་མཛོད་འབྱུང་ཁུངས་ཡོད་པ་ཅིན " +"ལག་ལེན་འཐབ་ནིའི་སྔོན་སྒྲིག་འཚོལ་ཞིབ་ཐབས་བྱུས་ཀྱི་མིང་། " +"སྔོན་སྒྲིག་ཐབས་བྱུས་དེ་ 'ངེས་ཏིག' ཨིནམ་ད་ དེ་ཡང་ " +"མིང་ཚིག་ངེས་ཏིག་མཐུན་སྒྲིག་འབད་ནི་ཨིན།" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2031,7 +2078,9 @@ #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22 msgid "" "The name of the dictionary source used to retrieve the definitions of words." -msgstr "མིང་ཚིག་གི་ངེས་ཚིག་ སླར་འདྲེན་འབད་ནི་ལུ་ ལག་ལེན་འཐབ་མི་ ཚིག་མཛོད་འབྱུང་ཁུངས་ཀྱི་མིང་།" +msgstr "" +"མིང་ཚིག་གི་ངེས་ཚིག་ སླར་འདྲེན་འབད་ནི་ལུ་ ལག་ལེན་འཐབ་མི་ " +"ཚིག་མཛོད་འབྱུང་ཁུངས་ཀྱི་མིང་།" #: mate-dictionary/data/thai.desktop.in:3 msgid "Thai" @@ -2082,7 +2131,8 @@ #, c-format msgid "Lookup failed for hostname '%s': no suitable resources found" msgstr "" -"ཧོསཊི་ནེམ་ '%s'གི་དོན་ལུ་ བལྟ་ནི་འཐུས་ཤོར་བྱུང་ཡོད། འོས་འབབ་ལྡན་པའི་ཐོན་ཁུངས་ག་ནི་ཡང་མ་ཐོབ།" +"ཧོསཊི་ནེམ་ '%s'གི་དོན་ལུ་ བལྟ་ནི་འཐུས་ཤོར་བྱུང་ཡོད། " +"འོས་འབབ་ལྡན་པའི་ཐོན་ཁུངས་ག་ནི་ཡང་མ་ཐོབ།" #: mate-dictionary/libgdict/gdict-client-context.c:1083 #, c-format @@ -2100,8 +2150,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"'%s:%d'ལུ་ ཚིག་མཛོད་སར་བར་ལུ་ མཐུད་མ་ཚུགས། སར་བར་གྱིས་ ཀོཌི་%dགི་ཐོག་ལས་ལན་གསལ་འབད་ཡི། " -"(སར་བར་ཉམས་ཡོད)" +"'%s:%d'ལུ་ ཚིག་མཛོད་སར་བར་ལུ་ མཐུད་མ་ཚུགས། སར་བར་གྱིས་ " +"ཀོཌི་%dགི་ཐོག་ལས་ལན་གསལ་འབད་ཡི། (སར་བར་ཉམས་ཡོད)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2191,7 +2241,8 @@ #: mate-dictionary/libgdict/gdict-context.c:221 msgid "Whether the context uses only local dictionaries or not" -msgstr "སྐབས་དོན་དེ་གིས་ ཉེ་གནས་ཀྱི་ཚིག་མཛོད་རྐྱངམ་གཅིག་ ལག་ལེན་འཐབ་ནི་ཨིན་ན་མེན།" +msgstr "" +"སྐབས་དོན་དེ་གིས་ ཉེ་གནས་ཀྱི་ཚིག་མཛོད་རྐྱངམ་གཅིག་ ལག་ལེན་འཐབ་ནི་ཨིན་ན་མེན།" #: mate-dictionary/libgdict/gdict-database-chooser.c:376 msgid "Reload the list of available databases" @@ -2314,7 +2365,8 @@ #, c-format msgid "" "Unable to get the '%s' key inside the dictionary source definition file: %s" -msgstr "ཚིག་མཛོད་འབྱུང་ཁུངས་ཀྱི་ངེས་ཚིག་ཡིག་སྣོད་ནང་ལུ་ ལྡེ་མིག'%s ཐོབ་མ་ཚུགས་%s།" +msgstr "" +"ཚིག་མཛོད་འབྱུང་ཁུངས་ཀྱི་ངེས་ཚིག་ཡིག་སྣོད་ནང་ལུ་ ལྡེ་མིག'%s ཐོབ་མ་ཚུགས་%s།" #: mate-dictionary/libgdict/gdict-source.c:736 msgid "Dictionary source does not have name" @@ -2351,11 +2403,13 @@ #: mate-dictionary/libgdict/gdict-speller.c:369 msgid "The GdictContext object used to get the word definition" -msgstr "མིང་ཚིག་གི་ངེས་ཚིག་ལེན་ནི་ལུ་ ལག་ལེན་འཐབ་མི་ ཇི་ཌིཀ་ཀཱོན་ཊེགསི་དངོས་པོ།" +msgstr "" +"མིང་ཚིག་གི་ངེས་ཚིག་ལེན་ནི་ལུ་ ལག་ལེན་འཐབ་མི་ ཇི་ཌིཀ་ཀཱོན་ཊེགསི་དངོས་པོ།" #: mate-dictionary/libgdict/gdict-speller.c:376 msgid "The database used to query the GdictContext" -msgstr "ཇི་ཌིཀ་ཀཱོན་ཊེགསི་ལུ་ དྲི་དཔྱད་འབད་ནི་ལུ་ ལག་ལེན་འཐབ་ནིའི་གནད་སྡུད་གཞི་རྟེན།" +msgstr "" +"ཇི་ཌིཀ་ཀཱོན་ཊེགསི་ལུ་ དྲི་དཔྱད་འབད་ནི་ལུ་ ལག་ལེན་འཐབ་ནིའི་གནད་སྡུད་གཞི་རྟེན།" #: mate-dictionary/libgdict/gdict-speller.c:383 msgid "The strategy used to query the GdictContext" @@ -3001,7 +3055,8 @@ msgid "Save images of your desktop or individual windows" msgstr "ཁྱོད་རའི་ཌེཀསི་ཊོཔ་ ཡང་ན་ སྒོ་སྒྲིག་སོ་སོའི་གཟུགས་བརྙན་ཚུ་སྲུངས།" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3040,7 +3095,8 @@ #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:16 msgid "Include the window manager border along with the screenshot" -msgstr "གསལ་གཞིའི་པར་དང་གཅིག་ཁར་ སྒོ་སྒྲིག་འཛིན་སྐྱོང་པའི་མཐའ་མཚམས་ གྲངས་སུ་བཙུགས།" +msgstr "" +"གསལ་གཞིའི་པར་དང་གཅིག་ཁར་ སྒོ་སྒྲིག་འཛིན་སྐྱོང་པའི་མཐའ་མཚམས་ གྲངས་སུ་བཙུགས།" #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:20 msgid "Include Pointer" @@ -3059,8 +3115,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"མཐའ་མཚམས་ཅིག་གི་ཕྱི་ཁར་ ཁ་སྐོང་རྐྱབ་ནིའི་ནུས་པ་། སྲིད་པའི་བེ་ལུསི་ཚུ་ \"shadow\", \"none\", " -"and \"black-line\"." +"མཐའ་མཚམས་ཅིག་གི་ཕྱི་ཁར་ ཁ་སྐོང་རྐྱབ་ནིའི་ནུས་པ་། སྲིད་པའི་བེ་ལུསི་ཚུ་ " +"\"shadow\", \"none\", and \"black-line\"." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3195,8 +3251,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3237,8 +3293,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"ཆ་ལག་བསྲུང་ནིའི་ལས་སྦྱོར་དེ་ རེ་བ་མེད་པར་ ཕྱིར་ཐོན་ཡར་སོ་ནུག ང་བཅས་ཀྱིས་ གསལ་གཞིའི་པར་ ཌིཀསི་གུ་འབྲི་" -"མི་ཚུགས།" +"ཆ་ལག་བསྲུང་ནིའི་ལས་སྦྱོར་དེ་ རེ་བ་མེད་པར་ ཕྱིར་ཐོན་ཡར་སོ་ནུག ང་བཅས་ཀྱིས་ " +"གསལ་གཞིའི་པར་ ཌིཀསི་གུ་འབྲི་མི་ཚུགས།" #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/el.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/el.gmo differ diff -Nru mate-utils-1.26.0/po/el.po mate-utils-1.26.1/po/el.po --- mate-utils-1.26.0/po/el.po 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/el.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,35 +2,37 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# alexandros_ , 2018 -# Panos Panagiotopoulos , 2018 -# Timos Zacharatos , 2018 -# geost , 2018 -# Angelos Chraniotis , 2018 -# Le Pa , 2018 -# Christos Pappis , 2018 -# Efstathios Iosifidis , 2018 -# thunk , 2018 -# TheDimitris15, 2019 -# Alexandros Kapetanios , 2019 -# Constantinos Tsakiris, 2019 +# Timos Zacharatos , 2021 +# geost , 2021 +# clefebvre , 2021 +# alexandros_ , 2021 +# Angelos Chraniotis, 2021 +# Constantinos Tsakiris, 2021 +# TheDimitris15, 2021 +# Panos Panagiotopoulos , 2021 +# Le Pa , 2021 +# Christos Pappis , 2021 # Stefano Karapetsas , 2021 +# thunk , 2021 +# Alexandros Kapetanios , 2021 # 437c9d6e19936ed69f57bed9e0fe4716, 2021 -# +# Efstathios Iosifidis , 2021 +# Alkis Georgopoulos , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: 437c9d6e19936ed69f57bed9e0fe4716, 2021\n" -"Language-Team: Greek (https://www.transifex.com/mate/teams/13566/el/)\n" -"Language: el\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Alkis Georgopoulos , 2021\n" +"Language-Team: Greek (https://app.transifex.com/mate/teams/13566/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -42,7 +44,8 @@ msgid "Check folder sizes and available disk space" msgstr "Έλεγχος μεγέθους φακέλων και διαθέσιμου χώρου στο δίσκο" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -232,8 +235,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -345,7 +348,8 @@ #: baobab/src/baobab-chart.c:205 msgid "The maximum depth drawn in the chart from the root" -msgstr "Το μέγιστος βάος που θα σχεδιάζεται στο διάγραμμα από το κατάλογο root" +msgstr "" +"Το μέγιστος βάος που θα σχεδιάζεται στο διάγραμμα από το κατάλογο root" #: baobab/src/baobab-chart.c:214 msgid "Chart model" @@ -556,7 +560,8 @@ #: baobab/src/baobab-utils.c:381 msgid "There is no installed viewer capable of displaying the folder." msgstr "" -"Δεν υπάρχει εγκατεστημένο πρόγραμμα παρουσίασης για την εμφάνιση του φακέλου." +"Δεν υπάρχει εγκατεστημένο πρόγραμμα παρουσίασης για την εμφάνιση του " +"φακέλου." #: baobab/src/baobab-utils.c:448 #, c-format @@ -589,8 +594,8 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"Αυτό το πρόγραμμα είναι ελεύθερο λογισμικό. Επιτρέπεται η αναδιανομή ή/και η " -"τροποποίησή του υπό τους όρους της Γενικής Άδειας Δημόσιας Χρήσης GNU (GNU " +"Αυτό το πρόγραμμα είναι ελεύθερο λογισμικό. Επιτρέπεται η αναδιανομή ή/και η" +" τροποποίησή του υπό τους όρους της Γενικής Άδειας Δημόσιας Χρήσης GNU (GNU " "General Public License) όπως αυτή δημοσιεύεται από το Ίδρυμα Ελεύθερου " "Λογισμικού (Free Software Foundation) -είτε της έκδοσης 2 της άδειας, είτε " "(κατ' επιλογήν) οποιασδήποτε μεταγενέστερης έκδοσης." @@ -605,14 +610,14 @@ msgstr "" "Αυτό το πρόγραμμα διανέμεται με την ελπίδα οτι θα είναι χρήσιμο, αλλά ΧΩΡΙΣ " "ΚΑΜΙΑ ΑΠΟΛΥΤΩΣ ΕΓΓΥΗΣΗ -χωρίς ακόμη και την έμμεση εγγύηση ΕΜΠΟΡΕΥΣΙΜΟΤΗΤΑΣ " -"ή ΚΑΤΑΛΛΗΛΟΤΗΤΑΣ ΓΙΑ ΣΥΓΚΕΚΡΙΜΕΝΟ ΣΚΟΠΟ. Δείτε για περισσότερες λεπτομέρειες " -"τη Γενική Άδεια Δημόσιας Χρήσης GNU (GNU General Public License)." +"ή ΚΑΤΑΛΛΗΛΟΤΗΤΑΣ ΓΙΑ ΣΥΓΚΕΚΡΙΜΕΝΟ ΣΚΟΠΟ. Δείτε για περισσότερες λεπτομέρειες" +" τη Γενική Άδεια Δημόσιας Χρήσης GNU (GNU General Public License)." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -660,18 +665,19 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -"Εντοπισμός εγγράφων και φακέλων σε αυτό τον υπολογιστή με βάση το όνομα ή το " -"περιεχόμενο" +"Εντοπισμός εγγράφων και φακέλων σε αυτό τον υπολογιστή με βάση το όνομα ή το" +" περιεχόμενο" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -708,14 +714,14 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Αυτό το κλειδί καθορίζει τις διαδρομές του εργαλείου αναζήτησης που θα " "εξαιρούνται από την γρήγορη αναζήτηση. Τα wildcards '*' και '?' " -"υποστηρίζονται. Οι προεπιλεγμένες τιμές είναι /mnt/*, /media/*, /dev/*, /" -"tmp/*, /proc/*, and /var/*." +"υποστηρίζονται. Οι προεπιλεγμένες τιμές είναι /mnt/*, /media/*, /dev/*, " +"/tmp/*, /proc/*, and /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -738,12 +744,12 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Αυτό το κλειδί καθορίζει τις διαδρομές του εργαλείου αναζήτησης που θα " -"εξαιρούνται από την δεύτερη σάρωση όταν γίνεται γρήγορη αναζήτηση. Η δεύτερη " -"σάρωση χρησιμοποιεί την εντολή find για την αναζήτηση αρχείων και ο σκοπός " +"εξαιρούνται από την δεύτερη σάρωση όταν γίνεται γρήγορη αναζήτηση. Η δεύτερη" +" σάρωση χρησιμοποιεί την εντολή find για την αναζήτηση αρχείων και ο σκοπός " "της είναι να βρεθούν τα αρχεία που δεν έχουν ταξινομηθεί. Τα wildcards '*' " "και '?' υποστηρίζονται. Η προεπιλεγμένη τιμή είναι /." @@ -765,9 +771,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Αυτό το κλειδί καθορίζει το πλάτος του παραθύρου, και χρησιμοποιείται για " "την απομνημόνευση τουμεγέθους του εργαλείου αναζήτησης ανάμεσα στις " @@ -781,12 +787,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Αυτό το κλειδί καθορίζει το ύψος του παραθύρου, και χρησιμοποιείται για την " -"απομνημόνευση τουμεγέθους του εργαλείου αναζήτησης ανάμεσα στις συνεδρίες. Ο " -"ορισμός του σε -1 θα κάνει το εργαλείοαναζήτησης να χρησιμοποιεί το " +"απομνημόνευση τουμεγέθους του εργαλείου αναζήτησης ανάμεσα στις συνεδρίες. Ο" +" ορισμός του σε -1 θα κάνει το εργαλείοαναζήτησης να χρησιμοποιεί το " "προεπιλεγμένο ύψος." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -868,8 +874,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Αυτό το κλειδί καθορίζει αν η επιλογή αναζήτησης \"Ανήκει σε ομάδα\" είναι " "επιλεγμένη όταν εκκινείται το εργαλείο αναζήτησης." @@ -879,8 +885,8 @@ "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"Αυτό το κλειδί καθορίζει αν η επιλογή αναζήτησης \"Μη αναγνωρίσιμος χρήστης" -"\" είναι επιλεγμένη όταν εκκινείται το εργαλείο αναζήτησης." +"Αυτό το κλειδί καθορίζει αν η επιλογή αναζήτησης \"Μη αναγνωρίσιμος " +"χρήστης\" είναι επιλεγμένη όταν εκκινείται το εργαλείο αναζήτησης." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" @@ -892,8 +898,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Αυτό το κλειδί καθορίζει αν η επιλογή αναζήτησης \"'Ονομα ταιριάζει με " "κανονική έκφραση\" είναι επιλεγμένη όταν εκκινείται το εργαλείο αναζήτησης." @@ -923,64 +929,64 @@ "άλλα συστήματα αρχείων\" είναι επιλεγμένη όταν εκκινείται το εργαλείο " "αναζήτησης." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Το αρχείο δεν είναι έγκυρο αρχείο .desktop" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Μη αναγνωρίσιμη έκδοση αρχείου desktop '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Εκκίνηση %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Η εφαρμογή δεν δέχεται έγγραφα από τη γραμμή εντολών" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Μη αναγνωρίσιμη επιλογή εκκίνησης: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Δεν επιτρέπεται το πέρασμα διευθύνσεων (URI) εγγράφων σε εγγραφές της " "επιφάνειας εργασίας τύπου 'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Μη εκκινήσιμο αντικείμενο" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Απενεργοποίηση σύνδεσης με τον διαχειριστή συνεδρίας" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Καθορισμός του αρχείου που περιέχει τις αποθηκευμένες ρυθμίσεις" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ΑΡΧΕΙΟ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Καθορισμός ID διαχείρισης συνεδρίας" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Επιλογές διαχείρισης συνεδρίας" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Εμφάνιση επιλογών διαχείρισης συνεδρίας" @@ -1144,8 +1150,8 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"Ταξινόμηση αρχείων σύμφωνα με τα ακόλουθα: όνομα, φάκελος. μέγεθος, τύπος, ή " -"ημερομηνία" +"Ταξινόμηση αρχείων σύμφωνα με τα ακόλουθα: όνομα, φάκελος. μέγεθος, τύπος, ή" +" ημερομηνία" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1182,8 +1188,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"Τα αποτελέσματα αναζήτησης μπορεί να μην είναι έγκυρα. Υπήρξαν σφάλματα κατα " -"την εκτέλεση αυτής της αναζήτησης." +"Τα αποτελέσματα αναζήτησης μπορεί να μην είναι έγκυρα. Υπήρξαν σφάλματα κατα" +" την εκτέλεση αυτής της αναζήτησης." #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1483,7 +1489,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "If you replace an existing file, its contents will be overwritten." msgstr "" -"Αν αντικαταστήσετε ένα υπάρχον αρχείο, τα περιεχόμενα του θα αντικατασταθούν." +"Αν αντικαταστήσετε ένα υπάρχον αρχείο, τα περιεχόμενα του θα " +"αντικατασταθούν." #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 @@ -1600,7 +1607,8 @@ msgid "View or monitor system log files" msgstr "Εμφάνιση ή παρακολούθηση των αρχείων καταγραφής συστήματος" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1611,8 +1619,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "Καθορίζει το αρχείο καταγραφής που θα ανοίγει κατά την εκκίνηση. Η " "προεπιλογή είναι μηνύματα /var/log/, ανάλογα με τη διανομή σας." @@ -1626,8 +1634,8 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"Καθορίζει το μέγεθος της σταθερού πλάτους γραμματοσειράς που χρησιμοποιείται " -"για την απεικόνισης της καταγραφής στη προβολή του κύριου δέντρου.Το " +"Καθορίζει το μέγεθος της σταθερού πλάτους γραμματοσειράς που χρησιμοποιείται" +" για την απεικόνισης της καταγραφής στη προβολή του κύριου δέντρου.Το " "προεπιλεγμένο μέγεθος είναι το προεπιλεγμένο μέγεθος γραμματοσειράς " "τερματικού." @@ -1677,7 +1685,7 @@ #: logview/data/logview-filter.ui:48 msgid "_Apply" -msgstr "" +msgstr "_Εφαρμογή" #: logview/data/logview-filter.ui:91 #: mate-screenshot/data/mate-screenshot.ui:178 @@ -1958,7 +1966,8 @@ #: logview/src/logview-window.c:851 msgid "Open the help contents for the log viewer" -msgstr "Άνοιγμα των περιεχομένων βοήθειας για την εφαρμογή προβολής καταγραφών" +msgstr "" +"Άνοιγμα των περιεχομένων βοήθειας για την εφαρμογή προβολής καταγραφών" #: logview/src/logview-window.c:853 mate-dictionary/src/gdict-applet.c:1176 #: mate-dictionary/src/gdict-window.c:1314 @@ -2025,7 +2034,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Έλεγχος ορισμών λέξεων και ορθογραφίας σε ένα λεξικό του Διαδικτύου" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -2037,8 +2047,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2081,8 +2091,8 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"Το όνομα της προεπιλεγμένης στρατηγικής αναζήτησης που θα χρησιμοποιείται σε " -"μια πηγή λεξικού,αν είναι διαθέσιμη. Η προεπιλεγμένη στρατηγική είναι " +"Το όνομα της προεπιλεγμένης στρατηγικής αναζήτησης που θα χρησιμοποιείται σε" +" μια πηγή λεξικού,αν είναι διαθέσιμη. Η προεπιλεγμένη στρατηγική είναι " "'ακριβώς', που σημαίνει ότι θα ταιριάζει τις λέξεις με ακρίβεια." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 @@ -2427,7 +2437,8 @@ #: mate-dictionary/libgdict/gdict-speller.c:369 msgid "The GdictContext object used to get the word definition" msgstr "" -"Το αντικείμενο GdictContext που χρησιμοποιείται για τη λήψη του ορισμού λέξης" +"Το αντικείμενο GdictContext που χρησιμοποιείται για τη λήψη του ορισμού " +"λέξης" #: mate-dictionary/libgdict/gdict-speller.c:376 msgid "The database used to query the GdictContext" @@ -2814,7 +2825,7 @@ #: mate-dictionary/src/gdict-window.c:1281 msgid "_Find" -msgstr "" +msgstr "_Εύρεση" #: mate-dictionary/src/gdict-window.c:1282 msgid "Find a word or phrase in the document" @@ -3078,7 +3089,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Αποθήκευση εικόνων της επιφάνειας εργασίας σας ή ξεχωριστών παραθύρων" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3138,8 +3150,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Εφέ για προσθήκη στο εξωτερικό του περιγράμματος. Πιθανές τιμές είναι \"σκιά" -"\", \"τίποτα\", και \"περίγραμμα\"." +"Εφέ για προσθήκη στο εξωτερικό του περιγράμματος. Πιθανές τιμές είναι " +"\"σκιά\", \"τίποτα\", και \"περίγραμμα\"." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3279,8 +3291,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/en_AU.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/en_AU.gmo differ diff -Nru mate-utils-1.26.0/po/en_AU.po mate-utils-1.26.1/po/en_AU.po --- mate-utils-1.26.0/po/en_AU.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/en_AU.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Michael Findlay , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Michael Findlay , 2021\n" -"Language-Team: English (Australia) (https://www.transifex.com/mate/" -"teams/13566/en_AU/)\n" -"Language: en_AU\n" +"Language-Team: English (Australia) (https://app.transifex.com/mate/teams/13566/en_AU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: en_AU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "Check folder sizes and available disk space" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -190,7 +190,8 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:27 msgid "Whether the status bar at the bottom of main window should be visible." -msgstr "Whether the status bar at the bottom of main window should be visible." +msgstr "" +"Whether the status bar at the bottom of main window should be visible." #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:31 msgid "Subfolder tips visible" @@ -214,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -589,8 +590,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -634,16 +635,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Locate documents and folders on this computer by name or content" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -679,13 +681,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -708,14 +710,14 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -735,13 +737,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -750,12 +752,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -833,11 +835,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" @@ -857,11 +859,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" @@ -887,62 +889,62 @@ "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "File is not a valid .desktop file" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Unrecognised desktop file Version '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Starting %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Application does not accept documents on command line" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Unrecognised launch option: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Can't pass document URIs to a 'Type=Link' desktop entry" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Not a launchable item" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Disable connection to session manager" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Specify file containing saved configuration" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Specify session management ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Session management options:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Show session management options" @@ -1553,7 +1555,8 @@ msgid "View or monitor system log files" msgstr "View or monitor system log files" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1564,11 +1567,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1969,7 +1972,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Check word definitions and spellings in an online dictionary" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1981,8 +1985,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2320,7 +2324,8 @@ #: mate-dictionary/libgdict/gdict-source.c:525 #, c-format msgid "Unable to get the '%s' key inside the dictionary source definition: %s" -msgstr "Unable to get the '%s' key inside the dictionary source definition: %s" +msgstr "" +"Unable to get the '%s' key inside the dictionary source definition: %s" #: mate-dictionary/libgdict/gdict-source.c:550 #, c-format @@ -3015,7 +3020,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Save images of your desktop or individual windows" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3212,8 +3218,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 diff -Nru mate-utils-1.26.0/po/en@boldquot.header mate-utils-1.26.1/po/en@boldquot.header --- mate-utils-1.26.0/po/en@boldquot.header 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/po/en@boldquot.header 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -# All this catalog "translates" are quotation characters. -# The msgids must be ASCII and therefore cannot contain real quotation -# characters, only substitutes like grave accent (0x60), apostrophe (0x27) -# and double quote (0x22). These substitutes look strange; see -# https://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html -# -# This catalog translates grave accent (0x60) and apostrophe (0x27) to -# left single quotation mark (U+2018) and right single quotation mark (U+2019). -# It also translates pairs of apostrophe (0x27) to -# left single quotation mark (U+2018) and right single quotation mark (U+2019) -# and pairs of quotation mark (0x22) to -# left double quotation mark (U+201C) and right double quotation mark (U+201D). -# -# When output to an UTF-8 terminal, the quotation characters appear perfectly. -# When output to an ISO-8859-1 terminal, the single quotation marks are -# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to -# grave/acute accent (by libiconv), and the double quotation marks are -# transliterated to 0x22. -# When output to an ASCII terminal, the single quotation marks are -# transliterated to apostrophes, and the double quotation marks are -# transliterated to 0x22. -# -# This catalog furthermore displays the text between the quotation marks in -# bold face, assuming the VT100/XTerm escape sequences. -# Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/en_CA.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/en_CA.gmo differ diff -Nru mate-utils-1.26.0/po/en_CA.po mate-utils-1.26.1/po/en_CA.po --- mate-utils-1.26.0/po/en_CA.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/en_CA.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: English (Canada) (https://www.transifex.com/mate/teams/13566/" -"en_CA/)\n" -"Language: en_CA\n" +"Language-Team: English (Canada) (https://app.transifex.com/mate/teams/13566/en_CA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: en_CA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -579,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -624,16 +624,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Locate documents and folders on this computer by name or content" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -669,13 +670,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -698,14 +699,14 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -725,13 +726,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -740,12 +741,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -823,11 +824,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" @@ -847,11 +848,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" @@ -875,62 +876,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Starting %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Not a launchable item" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Disable connection to session manager" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Specify session management ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Show session management options" @@ -1541,7 +1542,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1552,11 +1554,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1957,7 +1959,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1969,8 +1972,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2308,7 +2311,8 @@ #: mate-dictionary/libgdict/gdict-source.c:525 #, c-format msgid "Unable to get the '%s' key inside the dictionary source definition: %s" -msgstr "Unable to get the '%s' key inside the dictionary source definition: %s" +msgstr "" +"Unable to get the '%s' key inside the dictionary source definition: %s" #: mate-dictionary/libgdict/gdict-source.c:550 #, c-format @@ -2999,7 +3003,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3191,8 +3196,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/en_GB.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/en_GB.gmo differ diff -Nru mate-utils-1.26.0/po/en_GB.po mate-utils-1.26.1/po/en_GB.po --- mate-utils-1.26.0/po/en_GB.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/en_GB.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,26 +2,25 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Martin Wimpress , 2018 -# Steven Maddox , 2019 # Stefano Karapetsas , 2021 -# Andi Chandler , 2021 -# +# Martin Wimpress , 2021 +# Steven Maddox , 2021 +# Andi Chandler , 2023 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Andi Chandler , 2021\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mate/" -"teams/13566/en_GB/)\n" -"Language: en_GB\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Andi Chandler , 2023\n" +"Language-Team: English (United Kingdom) (https://app.transifex.com/mate/teams/13566/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -33,10 +32,11 @@ msgid "Check folder sizes and available disk space" msgstr "Check folder sizes and available disk space" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" -msgstr "" +msgstr "MATE;check;disk;usage;analyze;size;space;" #: baobab/data/baobab-dialog-scan-props.ui:18 msgid "Disk Usage Analyzer Preferences" @@ -193,7 +193,8 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:27 msgid "Whether the status bar at the bottom of main window should be visible." -msgstr "Whether the status bar at the bottom of main window should be visible." +msgstr "" +"Whether the status bar at the bottom of main window should be visible." #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:31 msgid "Subfolder tips visible" @@ -217,10 +218,13 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" +"As its name implies, Disk Usage Analyser is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " +"summary information in ring or treemap charts." #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 msgid "" @@ -228,6 +232,9 @@ "local or remote. There is also an option to constantly monitor any external " "changes to the home directory and warn the user if a file is added/removed." msgstr "" +"You can perform scans on a file system, your home or any other folder - " +"local or remote. There is also an option to constantly monitor any external " +"changes to the home directory and warn the user if a file is added/removed." #: baobab/src/baobab.c:141 baobab/src/baobab.c:358 msgid "Scanning..." @@ -269,8 +276,8 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%5d item" +msgstr[1] "%5d items" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -592,28 +599,34 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" +"You should have received a copy of the GNU General Public Licence along with" +" this program. If not, see ." #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" -msgstr "" +msgstr "About Disk Usage Analyser" #: baobab/src/callbacks.c:106 msgid "Analyze your disk usage through a graphical tool." -msgstr "" +msgstr "Analyse your disk usage through a graphical tool." #: baobab/src/callbacks.c:107 msgid "" "Copyright © 2005-2010 Fabio Marzocca\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Copyright © 2005-2010 Fabio Marzocca\n" +"Copyright © 2011-2021 MATE developers" #: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" -msgstr "Martin Wimpress" +msgstr "" +"Martin Wimpress\n" +"Andi Chandler" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -637,20 +650,27 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" +"MATE Search Tool is a simple but powerful utility that allows you to search " +"for files and folders on any mounted file system. Its interface gives you " +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Locate documents and folders on this computer by name or content" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" +"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -682,13 +702,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -711,14 +731,14 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -738,13 +758,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -753,12 +773,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -836,11 +856,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" @@ -860,11 +880,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" @@ -890,62 +910,62 @@ "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "File is not a valid .desktop file" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Unrecognised desktop file Version '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Starting %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Application does not accept documents on the command line" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Unrecognised launch option: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Can't pass document URIs to a 'Type=Link' desktop entry" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Not a launchable item" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Disable connection to session manager" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Specify file containing saved configuration" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Specify session management ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Session management options:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Show session management options" @@ -1084,15 +1104,15 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%'d File Found" +msgstr[1] "%'d Files Found" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%'d file found" +msgstr[1] "%'d files found" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1318,16 +1338,16 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Are you sure you want to open %d document?" +msgstr[1] "Are you sure you want to open %d documents?" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "This will open %d separate window." +msgstr[1] "This will open %d separate windows." #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1351,8 +1371,8 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Are you sure you want to open %d folder?" +msgstr[1] "Are you sure you want to open %d folders?" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1409,7 +1429,7 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1310 msgid "Copy _Path" -msgstr "" +msgstr "Copy _Path" #: gsearchtool/src/gsearchtool-callbacks.c:1344 msgid "_Save Results As..." @@ -1556,10 +1576,11 @@ msgid "View or monitor system log files" msgstr "View or monitor system log files" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" -msgstr "" +msgstr "MATE;monitor;view;system;log;files;logviewer;" #: logview/data/org.mate.system-log.gschema.xml.in:5 msgid "Log file to open up on startup" @@ -1567,11 +1588,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1628,7 +1649,7 @@ #: logview/data/logview-filter.ui:48 msgid "_Apply" -msgstr "" +msgstr "_Apply" #: logview/data/logview-filter.ui:91 #: mate-screenshot/data/mate-screenshot.ui:178 @@ -1661,7 +1682,7 @@ #: logview/src/logview-about.h:41 mate-dictionary/src/gdict-about.c:46 msgid "Sun GNOME Documentation Team " -msgstr "" +msgstr "Sun GNOME Documentation Team " #: logview/src/logview-app.c:369 #, c-format @@ -1743,7 +1764,7 @@ #: logview/src/logview-loglist.c:103 msgid "%A, %e %b" -msgstr "" +msgstr "%A, %e %b" #: logview/src/logview-loglist.c:314 msgid "Loading..." @@ -1756,6 +1777,9 @@ "Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n" "Copyright (C) 2011-2021 MATE developers.\n" msgstr "" +"%s - Version %s\n" +"Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n" +"Copyright (C) 2011-2021 MATE developers.\n" #: logview/src/logview-main.c:64 msgid "Show the application's version" @@ -1809,17 +1833,19 @@ #: logview/src/logview-window.c:773 msgid "About System Log Viewer" -msgstr "" +msgstr "About System Log Viewer" #: logview/src/logview-window.c:774 msgid "" "Copyright © 1998-2008 Free Software Foundation, Inc.\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Copyright © 1998-2008 Free Software Foundation, Inc.\n" +"Copyright © 2011-2021 MATE developers" #: logview/src/logview-window.c:778 msgid "View, monitor or analyze your system logs in a gradual manner." -msgstr "" +msgstr "View, monitor or analyse your system logs in a gradual manner." #: logview/src/logview-window.c:821 mate-dictionary/src/gdict-window.c:1258 msgid "_File" @@ -1972,10 +1998,11 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Check word definitions and spellings in an online dictionary" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" -msgstr "" +msgstr "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" #: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 msgid "A dictionary for MATE Desktop" @@ -1984,10 +2011,14 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" +"MATE Dictionary allows you to look up words in on-line dictionaries. It " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " +"query." #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 msgid "Dictionary Applet Factory" @@ -2323,7 +2354,8 @@ #: mate-dictionary/libgdict/gdict-source.c:525 #, c-format msgid "Unable to get the '%s' key inside the dictionary source definition: %s" -msgstr "Unable to get the '%s' key inside the dictionary source definition: %s" +msgstr "" +"Unable to get the '%s' key inside the dictionary source definition: %s" #: mate-dictionary/libgdict/gdict-source.c:550 #, c-format @@ -2408,7 +2440,7 @@ #: mate-dictionary/src/gdict-about.c:54 msgid "Look up words or terms in a dictionary source." -msgstr "" +msgstr "Look up words or terms in a dictionary source." #: mate-dictionary/src/gdict-about.c:82 mate-dictionary/src/gdict-app.c:363 #: mate-dictionary/src/gdict-window.c:580 @@ -2418,13 +2450,15 @@ #: mate-dictionary/src/gdict-about.c:84 msgid "About Dictionary" -msgstr "" +msgstr "About Dictionary" #: mate-dictionary/src/gdict-about.c:85 msgid "" "Copyright © 2005-2006 Emmanuele Bassi\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Copyright © 2005-2006 Emmanuele Bassi\n" +"Copyright © 2011-2021 MATE developers" #. Translators: the first is the word found, the second is the #. * database name and the last is the definition's text; please @@ -2711,8 +2745,8 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "A definition found" +msgstr[1] "%d definitions found" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -2928,11 +2962,11 @@ #: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:3 #: mate-disk-image-mounter/src/main.c:62 msgid "MATE Disk Image Mounter" -msgstr "" +msgstr "MATE Disk Image Mounter" #: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:4 msgid "Attach and mount one or more disk image files" -msgstr "" +msgstr "Attach and mount one or more disk image files" #: mate-disk-image-mounter/src/main.c:60 msgid "An error occurred" @@ -2940,7 +2974,7 @@ #: mate-disk-image-mounter/src/main.c:81 msgid "Allow writing to the image" -msgstr "" +msgstr "Allow writing to the image" #: mate-disk-image-mounter/src/main.c:101 msgid "All Files" @@ -2948,11 +2982,11 @@ #: mate-disk-image-mounter/src/main.c:105 msgid "Disk Images (*.img, *.iso)" -msgstr "" +msgstr "Disk Images (*.img, *.iso)" #: mate-disk-image-mounter/src/main.c:121 msgid "Select Disk Image(s) to Mount" -msgstr "" +msgstr "Select Disk Image(s) to Mount" #: mate-disk-image-mounter/src/main.c:125 msgid "_Mount" @@ -2960,41 +2994,43 @@ #: mate-disk-image-mounter/src/main.c:131 msgid "Set up _read-only mount" -msgstr "" +msgstr "Set up _read-only mount" #: mate-disk-image-mounter/src/main.c:132 msgid "" "If checked, the mount will be read-only. This is useful if you don't want " "the underlying disk image to be modified" msgstr "" +"If checked, the mount will be read-only. This is useful if you don't want " +"the underlying disk image to be modified" #: mate-disk-image-mounter/src/main.c:178 #, c-format msgid "Error connecting to udisks daemon: %s (%s, %d)" -msgstr "" +msgstr "Error connecting to udisks daemon: %s (%s, %d)" #: mate-disk-image-mounter/src/main.c:186 msgid "Attach and mount one or more disk image files." -msgstr "" +msgstr "Attach and mount one or more disk image files." #: mate-disk-image-mounter/src/main.c:234 #, c-format msgid "Cannot open `%s' - maybe the volume isn't mounted?" -msgstr "" +msgstr "Cannot open `%s' - maybe the volume isn't mounted?" #: mate-disk-image-mounter/src/main.c:241 #, c-format msgid "Error opening `%s': %m" -msgstr "" +msgstr "Error opening `%s': %m" #: mate-disk-image-mounter/src/main.c:262 #, c-format msgid "Error attaching disk image: %s (%s, %d)" -msgstr "" +msgstr "Error attaching disk image: %s (%s, %d)" #: mate-screenshot/data/mate-screenshot.appdata.xml.in:7 msgid "MATE Screenshot" -msgstr "" +msgstr "MATE Screenshot" #: mate-screenshot/data/mate-screenshot.appdata.xml.in:8 msgid "A screenshot utility for MATE Desktop" @@ -3007,6 +3043,10 @@ "system clipboard or save them in Portable Network Graphics (.png) image " "format." msgstr "" +"MATE Screenshot is a simple utility that lets you capture screenshots of " +"your desktop or of application windows. You can select to copy them to the " +"system clipboard or save them in Portable Network Graphics (.png) image " +"format." #: mate-screenshot/data/mate-screenshot.desktop.in:3 #: mate-screenshot/src/mate-screenshot.c:519 @@ -3018,10 +3058,11 @@ msgid "Save images of your desktop or individual windows" msgstr "Save images of your desktop or individual windows" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" -msgstr "" +msgstr "MATE;screenshot;snapshot;desktop;window;image;" #: mate-screenshot/data/mate-screenshot.ui:24 msgid "Save Screenshot" @@ -3179,7 +3220,7 @@ #: mate-screenshot/src/mate-screenshot.c:1317 msgid "Send grabbed area directly to the clipboard" -msgstr "" +msgstr "Send grabbed area directly to the clipboard" #: mate-screenshot/src/mate-screenshot.c:1318 msgid "Include the window border with the screenshot" @@ -3215,9 +3256,11 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" #: mate-screenshot/src/mate-screenshot.c:1363 msgid "" diff -Nru mate-utils-1.26.0/po/en@quot.header mate-utils-1.26.1/po/en@quot.header --- mate-utils-1.26.0/po/en@quot.header 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/po/en@quot.header 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -# All this catalog "translates" are quotation characters. -# The msgids must be ASCII and therefore cannot contain real quotation -# characters, only substitutes like grave accent (0x60), apostrophe (0x27) -# and double quote (0x22). These substitutes look strange; see -# https://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html -# -# This catalog translates grave accent (0x60) and apostrophe (0x27) to -# left single quotation mark (U+2018) and right single quotation mark (U+2019). -# It also translates pairs of apostrophe (0x27) to -# left single quotation mark (U+2018) and right single quotation mark (U+2019) -# and pairs of quotation mark (0x22) to -# left double quotation mark (U+201C) and right double quotation mark (U+201D). -# -# When output to an UTF-8 terminal, the quotation characters appear perfectly. -# When output to an ISO-8859-1 terminal, the single quotation marks are -# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to -# grave/acute accent (by libiconv), and the double quotation marks are -# transliterated to 0x22. -# When output to an ASCII terminal, the single quotation marks are -# transliterated to apostrophes, and the double quotation marks are -# transliterated to 0x22. -# diff -Nru mate-utils-1.26.0/po/en_US.po mate-utils-1.26.1/po/en_US.po --- mate-utils-1.26.0/po/en_US.po 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/po/en_US.po 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,3184 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR MATE Desktop Environment team +# This file is distributed under the same license as the mate-utils package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Christopher Patrick , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: mate-utils 1.25.1\n" +"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Christopher Patrick , 2021\n" +"Language-Team: English (United States) (https://app.transifex.com/mate/teams/13566/en_US/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_US\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 +#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 +msgid "MATE Disk Usage Analyzer" +msgstr "" + +#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:4 +msgid "Check folder sizes and available disk space" +msgstr "" + +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! +#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 +msgid "MATE;check;disk;usage;analyze;size;space;" +msgstr "" + +#: baobab/data/baobab-dialog-scan-props.ui:18 +msgid "Disk Usage Analyzer Preferences" +msgstr "" + +#: baobab/data/baobab-dialog-scan-props.ui:32 +#: baobab/data/baobab-main-window.ui:129 logview/src/logview-window.c:825 +#: mate-dictionary/src/gdict-applet.c:1173 +#: mate-dictionary/src/gdict-window.c:1262 +#: mate-screenshot/data/mate-screenshot.ui:41 +msgid "_Help" +msgstr "Help" + +#: baobab/data/baobab-dialog-scan-props.ui:48 logview/src/logview-window.c:829 +#: mate-dictionary/src/gdict-window.c:1273 +msgid "_Close" +msgstr "_Close" + +#: baobab/data/baobab-dialog-scan-props.ui:81 +msgid "Select _devices to include in filesystem scan:" +msgstr "" + +#: baobab/data/baobab-dialog-scan-props.ui:119 +msgid "_Monitor changes to your home folder" +msgstr "" + +#: baobab/data/baobab-main-window.ui:10 +msgid "_Analyzer" +msgstr "" + +#: baobab/data/baobab-main-window.ui:17 +msgid "Scan _Home Folder" +msgstr "" + +#: baobab/data/baobab-main-window.ui:26 +msgid "Scan _Filesystem" +msgstr "" + +#: baobab/data/baobab-main-window.ui:35 +msgid "Scan F_older..." +msgstr "" + +#: baobab/data/baobab-main-window.ui:44 +msgid "S_can Remote Folder..." +msgstr "" + +#: baobab/data/baobab-main-window.ui:74 logview/src/logview-window.c:822 +#: mate-dictionary/src/gdict-window.c:1259 +msgid "_Edit" +msgstr "_Edit" + +#: baobab/data/baobab-main-window.ui:80 +msgid "_Expand All" +msgstr "" + +#: baobab/data/baobab-main-window.ui:87 +msgid "_Collapse All" +msgstr "" + +#: baobab/data/baobab-main-window.ui:101 logview/src/logview-window.c:823 +#: mate-dictionary/src/gdict-window.c:1260 +msgid "_View" +msgstr "_View" + +#: baobab/data/baobab-main-window.ui:108 +msgid "_Toolbar" +msgstr "_Toolbar" + +#: baobab/data/baobab-main-window.ui:115 +msgid "St_atusbar" +msgstr "" + +#: baobab/data/baobab-main-window.ui:122 +msgid "All_ocated Space" +msgstr "" + +#: baobab/data/baobab-main-window.ui:136 logview/src/logview-window.c:851 +#: mate-dictionary/src/gdict-window.c:1312 +msgid "_Contents" +msgstr "Contents" + +#: baobab/data/baobab-main-window.ui:183 baobab/src/baobab.c:1237 +#: baobab/src/callbacks.c:103 +msgid "Disk Usage Analyzer" +msgstr "" + +#: baobab/data/baobab-main-window.ui:224 baobab/data/baobab-main-window.ui:236 +msgid "Scan home folder" +msgstr "" + +#: baobab/data/baobab-main-window.ui:225 +msgid "Scan Home" +msgstr "" + +#: baobab/data/baobab-main-window.ui:248 +msgid "Scan filesystem" +msgstr "" + +#: baobab/data/baobab-main-window.ui:249 +msgid "Scan Filesystem" +msgstr "" + +#: baobab/data/baobab-main-window.ui:265 +msgid "Scan a folder" +msgstr "" + +#: baobab/data/baobab-main-window.ui:266 +msgid "Scan Folder" +msgstr "" + +#: baobab/data/baobab-main-window.ui:282 +msgid "Scan a remote folder" +msgstr "" + +#: baobab/data/baobab-main-window.ui:283 +msgid "Scan Remote Folder" +msgstr "" + +#: baobab/data/baobab-main-window.ui:312 +msgid "Stop scanning" +msgstr "" + +#: baobab/data/baobab-main-window.ui:328 +msgid "Refresh" +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:9 +msgid "Monitor Home" +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:10 +msgid "Whether any change to the home directory should be monitored." +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:14 +msgid "Excluded partitions URIs" +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:15 +msgid "A list of URIs for partitions to be excluded from scanning." +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:21 +msgid "Toolbar is Visible" +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:22 +msgid "Whether the toolbar should be visible in main window." +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:26 +msgid "Statusbar is Visible" +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:27 +msgid "Whether the status bar at the bottom of main window should be visible." +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:31 +msgid "Subfolder tips visible" +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:32 +msgid "Whether the subfolder tooltips of the selected folder are drawn." +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:36 +msgid "Active Chart" +msgstr "" + +#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:37 +msgid "Which type of chart should be displayed." +msgstr "" + +#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:8 +msgid "A disk usage analyzing tool for MATE Desktop" +msgstr "" + +#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 +msgid "" +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " +"summary information in ring or treemap charts." +msgstr "" + +#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 +msgid "" +"You can perform scans on a file system, your home or any other folder - " +"local or remote. There is also an option to constantly monitor any external " +"changes to the home directory and warn the user if a file is added/removed." +msgstr "" + +#: baobab/src/baobab.c:141 baobab/src/baobab.c:358 +msgid "Scanning..." +msgstr "" + +#: baobab/src/baobab.c:186 +msgid "Total filesystem capacity:" +msgstr "" + +#: baobab/src/baobab.c:187 +msgid "used:" +msgstr "" + +#: baobab/src/baobab.c:188 +msgid "available:" +msgstr "" + +#: baobab/src/baobab.c:243 baobab/src/baobab.c:300 baobab/src/callbacks.c:268 +msgid "Calculating percentage bars..." +msgstr "" + +#: baobab/src/baobab.c:254 baobab/src/baobab.c:1300 baobab/src/callbacks.c:272 +msgid "Ready" +msgstr "" + +#: baobab/src/baobab.c:392 +msgid "Total filesystem capacity" +msgstr "" + +#: baobab/src/baobab.c:416 +msgid "Total filesystem usage" +msgstr "" + +#: baobab/src/baobab.c:458 +msgid "contains hardlinks for:" +msgstr "" + +#: baobab/src/baobab.c:467 +#, c-format +msgid "%5d item" +msgid_plural "%5d items" +msgstr[0] "" +msgstr[1] "" + +#: baobab/src/baobab.c:593 +msgid "Could not initialize monitoring" +msgstr "" + +#: baobab/src/baobab.c:594 +msgid "Changes to your home folder will not be monitored." +msgstr "" + +#: baobab/src/baobab.c:913 +msgid "Move to parent folder" +msgstr "" + +#: baobab/src/baobab.c:917 +msgid "Zoom in" +msgstr "" + +#: baobab/src/baobab.c:921 +msgid "Zoom out" +msgstr "" + +#: baobab/src/baobab.c:925 +msgid "Save screenshot" +msgstr "" + +#: baobab/src/baobab.c:1111 +msgid "View as Rings Chart" +msgstr "" + +#: baobab/src/baobab.c:1113 +msgid "View as Treemap Chart" +msgstr "" + +#: baobab/src/baobab.c:1224 +msgid "Show version" +msgstr "" + +#: baobab/src/baobab.c:1225 +msgid "[DIRECTORY]" +msgstr "" + +#: baobab/src/baobab.c:1257 +msgid "Too many arguments. Only one directory can be specified." +msgstr "" + +#: baobab/src/baobab.c:1274 +msgid "Could not detect any mount point." +msgstr "" + +#: baobab/src/baobab.c:1276 +msgid "Without mount points disk usage cannot be analyzed." +msgstr "" + +#: baobab/src/baobab-chart.c:204 +msgid "Maximum depth" +msgstr "" + +#: baobab/src/baobab-chart.c:205 +msgid "The maximum depth drawn in the chart from the root" +msgstr "" + +#: baobab/src/baobab-chart.c:214 +msgid "Chart model" +msgstr "" + +#: baobab/src/baobab-chart.c:215 +msgid "Set the model of the chart" +msgstr "" + +#: baobab/src/baobab-chart.c:222 +msgid "Chart root node" +msgstr "" + +#: baobab/src/baobab-chart.c:223 +msgid "Set the root node from the model" +msgstr "" + +#: baobab/src/baobab-chart.c:1713 +msgid "Cannot create pixbuf image!" +msgstr "" + +#: baobab/src/baobab-chart.c:1723 +msgid "Save Snapshot" +msgstr "" + +#: baobab/src/baobab-chart.c:1750 +msgid "_Image type:" +msgstr "" + +#: baobab/src/baobab-prefs.c:171 +msgid "Scan" +msgstr "" + +#: baobab/src/baobab-prefs.c:178 +msgid "Device" +msgstr "" + +#: baobab/src/baobab-prefs.c:186 +msgid "Mount Point" +msgstr "" + +#: baobab/src/baobab-prefs.c:194 +msgid "Filesystem Type" +msgstr "" + +#: baobab/src/baobab-prefs.c:202 +msgid "Total Size" +msgstr "" + +#: baobab/src/baobab-prefs.c:211 +msgid "Available" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:70 +#, c-format +msgid "Cannot scan location \"%s\"" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:168 +msgid "Custom Location" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:170 +msgid "SSH" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:173 +msgid "Public FTP" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:175 +msgid "FTP (with login)" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:178 +msgid "Windows share" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:180 +msgid "WebDAV (HTTP)" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:182 +msgid "Secure WebDAV (HTTPS)" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:242 +msgid "Cannot Connect to Server. You must enter a name for the server." +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:245 +msgid "Please enter a name and try again." +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:439 +msgid "_Location (URI):" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:455 +msgid "_Server:" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:468 +msgid "Optional information:" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:477 +msgid "_Share:" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:492 +#: mate-dictionary/data/mate-dictionary-source.ui:121 +msgid "_Port:" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:506 +msgid "_Folder:" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:520 +msgid "_User Name:" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:535 +msgid "_Domain Name:" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:592 +msgid "Connect to Server" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:608 +msgid "Service _type:" +msgstr "" + +#: baobab/src/baobab-remote-connect-dialog.c:726 +msgid "_Scan" +msgstr "" + +#: baobab/src/baobab-treeview.c:83 +msgid "Rescan your home folder?" +msgstr "" + +#: baobab/src/baobab-treeview.c:84 +msgid "" +"The content of your home folder has changed. Select rescan to update the " +"disk usage details." +msgstr "" + +#: baobab/src/baobab-treeview.c:85 +msgid "_Rescan" +msgstr "" + +#: baobab/src/baobab-treeview.c:222 gsearchtool/src/gsearchtool.c:2453 +msgid "Folder" +msgstr "" + +#: baobab/src/baobab-treeview.c:244 +msgid "Usage" +msgstr "" + +#: baobab/src/baobab-treeview.c:258 gsearchtool/src/gsearchtool.c:2466 +msgid "Size" +msgstr "Size" + +#: baobab/src/baobab-treeview.c:274 +msgid "Contents" +msgstr "" + +#: baobab/src/baobab-utils.c:105 +msgid "Select Folder" +msgstr "" + +#: baobab/src/baobab-utils.c:117 +msgid "_Show hidden folders" +msgstr "" + +#: baobab/src/baobab-utils.c:280 +msgid "Cannot check an excluded folder!" +msgstr "" + +#: baobab/src/baobab-utils.c:304 +#, c-format +msgid "\"%s\" is not a valid folder" +msgstr "" + +#: baobab/src/baobab-utils.c:307 +msgid "Could not analyze disk usage." +msgstr "" + +#: baobab/src/baobab-utils.c:343 +msgid "_Open Folder" +msgstr "" + +#: baobab/src/baobab-utils.c:349 gsearchtool/src/gsearchtool-callbacks.c:1330 +msgid "Mo_ve to Trash" +msgstr "" + +#: baobab/src/baobab-utils.c:378 +#, c-format +msgid "Could not open folder \"%s\"" +msgstr "" + +#: baobab/src/baobab-utils.c:381 +msgid "There is no installed viewer capable of displaying the folder." +msgstr "" + +#: baobab/src/baobab-utils.c:448 +#, c-format +msgid "Could not move \"%s\" to the Trash" +msgstr "" + +#: baobab/src/baobab-utils.c:456 +msgid "Could not move file to the Trash" +msgstr "" + +#: baobab/src/baobab-utils.c:458 +#, c-format +msgid "Details: %s" +msgstr "" + +#: baobab/src/baobab-utils.c:496 +msgid "There was an error displaying help." +msgstr "" + +#: baobab/src/callbacks.c:74 logview/src/logview-about.h:44 +#: mate-dictionary/src/gdict-about.c:49 +msgid "MATE Documentation Team" +msgstr "" + +#: baobab/src/callbacks.c:79 logview/src/logview-about.h:49 +#: mate-dictionary/src/gdict-about.c:57 +msgid "" +"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 2 of the License, or (at your option) " +"any later version." +msgstr "" + +#: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 +#: mate-dictionary/src/gdict-about.c:62 +msgid "" +"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." +msgstr "" + +#: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 +#: mate-dictionary/src/gdict-about.c:67 +msgid "" +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." +msgstr "" + +#: baobab/src/callbacks.c:105 +msgid "About Disk Usage Analyzer" +msgstr "" + +#: baobab/src/callbacks.c:106 +msgid "Analyze your disk usage through a graphical tool." +msgstr "" + +#: baobab/src/callbacks.c:107 +msgid "" +"Copyright © 2005-2010 Fabio Marzocca\n" +"Copyright © 2011-2021 MATE developers" +msgstr "" + +#: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 +#: mate-dictionary/src/gdict-about.c:53 +msgid "translator-credits" +msgstr "translator-credits" + +#: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 +#: gsearchtool/src/gsearchtool-callbacks.c:879 +msgid "The document does not exist." +msgstr "" + +#: baobab/src/callbacks.c:292 +msgid "The folder does not exist." +msgstr "" + +#: gsearchtool/data/mate-search-tool.appdata.xml.in:7 +#: gsearchtool/data/mate-search-tool.desktop.in:3 +msgid "MATE Search Tool" +msgstr "" + +#: gsearchtool/data/mate-search-tool.appdata.xml.in:8 +msgid "A file searching tool for MATE Desktop" +msgstr "" + +#: gsearchtool/data/mate-search-tool.appdata.xml.in:10 +msgid "" +"MATE Search Tool is a simple but powerful utility that allows you to search " +"for files and folders on any mounted file system. Its interface gives you " +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." +msgstr "" + +#: gsearchtool/data/mate-search-tool.desktop.in:4 +msgid "Locate documents and folders on this computer by name or content" +msgstr "" + +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! +#: gsearchtool/data/mate-search-tool.desktop.in:13 +msgid "" +"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 +msgid "Search history" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:6 +msgid "This key defines the items which were searched for in the past." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:10 +msgid "Show Additional Options" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:14 +msgid "Disable Quick Search" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:15 +msgid "" +"This key determines if the search tool disables the use of the locate " +"command when performing simple file name searches." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 +msgid "Quick Search Excluded Paths" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 +msgid "" +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 +msgid "Disable Quick Search Second Scan" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:25 +msgid "" +"This key determines if the search tool disables the use of the find command " +"after performing a quick search." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 +msgid "Quick Search Second Scan Excluded Paths" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:30 +msgid "" +"This key defines the paths the search tool will exclude from a second scan " +"when performing a quick search. The second scan uses the find command to " +"search for files. The purpose of the second scan is to find files that have " +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 +msgid "Search Result Columns Order" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:35 +msgid "" +"This key defines the order of the columns in the search results. This key " +"should not be modified by the user." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 +msgid "Default Window Width" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 +msgid "" +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 +msgid "Default Window Height" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 +msgid "" +"This key defines the window height, and it's used to remember the size of " +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 +msgid "Default Window Maximized" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:50 +msgid "" +"This key determines if the search tool window starts in a maximized state." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 +msgid "Look in Folder" +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 +msgid "This key defines the default value of the \"Look in Folder\" widget." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 +msgid "" +"This key determines if the \"Contains the text\" search option is selected " +"when the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 +msgid "" +"This key determines if the \"Date modified less than\" search option is " +"selected when the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 +msgid "" +"This key determines if the \"Date modified more than\" search option is " +"selected when the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 +msgid "" +"This key determines if the \"Size at least\" search option is selected when " +"the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 +msgid "" +"This key determines if the \"Size at most\" search option is selected when " +"the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 +msgid "" +"This key determines if the \"File is empty\" search option is selected when " +"the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 +msgid "" +"This key determines if the \"Owned by user\" search option is selected when " +"the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 +msgid "" +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 +msgid "" +"This key determines if the \"Owner is unrecognized\" search option is " +"selected when the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 +msgid "" +"This key determines if the \"Name does not contain\" search option is " +"selected when the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 +msgid "" +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 +msgid "" +"This key determines if the \"Show hidden files and folders\" search option " +"is selected when the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 +msgid "" +"This key determines if the \"Follow symbolic links\" search option is " +"selected when the search tool is started." +msgstr "" + +#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 +msgid "" +"This key determines if the \"Exclude other filesystems\" search option is " +"selected when the search tool is started." +msgstr "" + +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 +msgid "File is not a valid .desktop file" +msgstr "File is not a valid .desktop file" + +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 +#, c-format +msgid "Unrecognized desktop file Version '%s'" +msgstr "Unrecognized desktop file Version '%s'" + +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 +#, c-format +msgid "Starting %s" +msgstr "Starting %s" + +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 +msgid "Application does not accept documents on command line" +msgstr "Application does not accept documents on command line" + +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 +#, c-format +msgid "Unrecognized launch option: %d" +msgstr "Unrecognized launch option: %d" + +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 +msgid "Can't pass document URIs to a 'Type=Link' desktop entry" +msgstr "Can't pass document URIs to a 'Type=Link' desktop entry" + +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 +msgid "Not a launchable item" +msgstr "Not a launchable item" + +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 +msgid "Disable connection to session manager" +msgstr "Disable connection to session manager" + +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 +msgid "Specify file containing saved configuration" +msgstr "Specify file containing saved configuration" + +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 +msgid "FILE" +msgstr "FILE" + +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 +msgid "Specify session management ID" +msgstr "Specify session management ID" + +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 +msgid "ID" +msgstr "ID" + +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +msgid "Session management options:" +msgstr "Session management options:" + +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 +msgid "Show session management options" +msgstr "Show session management options" + +#: gsearchtool/src/gsearchtool.c:82 +msgid "Contains the _text" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:84 +msgid "_Date modified less than" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:84 gsearchtool/src/gsearchtool.c:85 +msgid "days" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:85 +msgid "Date modified more than" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:87 +msgid "S_ize at least" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:87 gsearchtool/src/gsearchtool.c:88 +msgid "kilobytes" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:88 +msgid "Si_ze at most" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:89 +msgid "File is empty" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:91 +msgid "Owned by _user" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:92 +msgid "Owned by _group" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:93 +msgid "Owner is unrecognized" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:95 +msgid "Na_me does not contain" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:96 +msgid "Name matches regular e_xpression" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:98 +msgid "Show hidden and backup files" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:99 +msgid "Follow symbolic links" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:100 +msgid "Exclude other filesystems" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:158 +msgid "Show version of the application" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:159 gsearchtool/src/gsearchtool.c:164 +#: gsearchtool/src/gsearchtool.c:173 +msgid "STRING" +msgstr "STRING" + +#: gsearchtool/src/gsearchtool.c:160 +msgid "PATH" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:161 +msgid "VALUE" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:165 gsearchtool/src/gsearchtool.c:166 +msgid "DAYS" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:167 gsearchtool/src/gsearchtool.c:168 +msgid "KILOBYTES" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:170 +msgid "USER" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:171 +msgid "GROUP" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:174 +msgid "PATTERN" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:385 +msgid "A locate database has probably not been created." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:487 +#, c-format +msgid "Character set conversion failed for \"%s\"" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:511 +msgid "Searching..." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:511 gsearchtool/src/gsearchtool.c:1048 +#: gsearchtool/src/gsearchtool.c:3078 +msgid "Search for Files" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:994 gsearchtool/src/gsearchtool.c:1023 +msgid "No files found" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1016 +msgid "(stopped)" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1022 +msgid "No Files Found" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1027 +#, c-format +msgid "%'d File Found" +msgid_plural "%'d Files Found" +msgstr[0] "" +msgstr[1] "" + +#: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 +#, c-format +msgid "%'d file found" +msgid_plural "%'d files found" +msgstr[0] "" +msgstr[1] "" + +#: gsearchtool/src/gsearchtool.c:1160 +msgid "Entry changed called for a non entry option!" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1325 +msgid "Set the text of \"Name contains\" search option" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1326 +msgid "Set the text of \"Look in folder\" search option" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1327 +msgid "Sort files by one of the following: name, folder, size, type, or date" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1328 +msgid "Set sort order to descending, the default is ascending" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1329 +msgid "Automatically start a search" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1335 +#, c-format +msgid "Select the \"%s\" search option" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1338 +#, c-format +msgid "Select and set the \"%s\" search option" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1445 +msgid "Invalid option passed to sortby command line argument." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1737 +msgid "" +"\n" +"... Too many errors to display ..." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1751 +msgid "" +"The search results may be invalid. There were errors while performing this " +"search." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 +msgid "Show more _details" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1793 +msgid "" +"The search results may be out of date or invalid. Do you want to disable " +"the quick search feature?" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1818 +msgid "Disable _Quick Search" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1845 +#, c-format +msgid "Failed to set process group id of child %d: %s.\n" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1870 +msgid "Error parsing the search command." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:1902 +msgid "Error running the search command." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2025 +#, c-format +msgid "Enter a text value for the \"%s\" search option." +msgstr "" + +#. Translators: Below is a string displaying the search options name +#. and unit value. For example, "\"Date modified less than\" in days". +#: gsearchtool/src/gsearchtool.c:2030 +#, c-format +msgid "\"%s\" in %s" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2032 +#, c-format +msgid "Enter a value in %s for the \"%s\" search option." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2095 +#, c-format +msgid "Remove \"%s\"" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2096 +#, c-format +msgid "Click to remove the \"%s\" search option." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2189 +msgid "A_vailable options:" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2218 +msgid "Available options" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2219 +msgid "Select a search option from the drop-down list." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2236 +msgid "Add search option" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2237 +msgid "Click to add the selected available search option." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2326 +msgid "S_earch results:" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2369 +msgid "List View" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2429 +#: mate-dictionary/libgdict/gdict-source.c:243 +msgid "Name" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2478 +msgid "Type" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2490 +msgid "Date Modified" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2820 +msgid "_Name contains:" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 +msgid "Enter a filename or partial filename with or without wildcards." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2836 +msgid "Name contains" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2842 +msgid "_Look in folder:" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2848 +msgid "Browse" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2858 +msgid "Look in folder" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2858 +msgid "Select the folder or device from which you want to begin the search." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2876 +msgid "Select more _options" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2885 +msgid "Select more options" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2885 +msgid "Click to expand or collapse the list of available options." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2916 +msgid "Click to display the help manual." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2929 +msgid "Click to close \"Search for Files\"." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2964 +msgid "Click to perform a search." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:2965 +msgid "Click to stop a search." +msgstr "" + +#: gsearchtool/src/gsearchtool.c:3061 +msgid "- the MATE Search Tool" +msgstr "" + +#: gsearchtool/src/gsearchtool.c:3072 +#, c-format +msgid "Failed to parse command line arguments: %s\n" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:192 +msgid "Could not open help document." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:343 +#, c-format +msgid "Are you sure you want to open %d document?" +msgid_plural "Are you sure you want to open %d documents?" +msgstr[0] "" +msgstr[1] "" + +#: gsearchtool/src/gsearchtool-callbacks.c:348 +#: gsearchtool/src/gsearchtool-callbacks.c:548 +#, c-format +msgid "This will open %d separate window." +msgid_plural "This will open %d separate windows." +msgstr[0] "" +msgstr[1] "" + +#: gsearchtool/src/gsearchtool-callbacks.c:393 +#, c-format +msgid "Could not open document \"%s\"." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:422 +#, c-format +msgid "Could not open folder \"%s\"." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:430 +msgid "The caja file manager is not running." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:521 +msgid "There is no installed viewer capable of displaying the document." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:543 +#, c-format +msgid "Are you sure you want to open %d folder?" +msgid_plural "Are you sure you want to open %d folders?" +msgstr[0] "" +msgstr[1] "" + +#: gsearchtool/src/gsearchtool-callbacks.c:725 +#, c-format +msgid "Could not move \"%s\" to trash." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:756 +#, c-format +msgid "Do you want to delete \"%s\" permanently?" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:759 +#, c-format +msgid "Trash is unavailable. Could not move \"%s\" to the trash." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:803 +#, c-format +msgid "Could not delete \"%s\"." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:915 +#, c-format +msgid "Deleting \"%s\" failed: %s." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:927 +#, c-format +msgid "Moving \"%s\" failed: %s." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1143 +#: gsearchtool/src/gsearchtool-callbacks.c:1169 +msgid "_Open" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1199 +#, c-format +msgid "_Open with %s" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1220 +#, c-format +msgid "Open with %s" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1249 +msgid "Open Wit_h" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1299 +msgid "Open Containing _Folder" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1310 +msgid "Copy _Path" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1344 +msgid "_Save Results As..." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1722 +msgid "Save Search Results As..." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1751 +msgid "Could not save document." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1752 +msgid "You did not select a document name." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1782 +#, c-format +msgid "Could not save \"%s\" document to \"%s\"." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1815 +#, c-format +msgid "The document \"%s\" already exists. Would you like to replace it?" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1819 +msgid "If you replace an existing file, its contents will be overwritten." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1834 +#: mate-screenshot/src/screenshot-xfer.c:84 +msgid "_Replace" +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1883 +msgid "The document name you selected is a folder." +msgstr "" + +#: gsearchtool/src/gsearchtool-callbacks.c:1919 +msgid "You may not have write permissions to the document." +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:427 +msgid "today at %-I:%M %p" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:429 +msgid "yesterday at %-I:%M %p" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:431 +msgid "%A, %B %-d %Y at %-I:%M:%S %p" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:478 +msgid "link (broken)" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:482 +#, c-format +msgid "link to %s" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1101 +msgid " (copy)" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1103 +msgid " (another copy)" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1106 +#: gsearchtool/src/gsearchtool-support.c:1108 +#: gsearchtool/src/gsearchtool-support.c:1110 +#: gsearchtool/src/gsearchtool-support.c:1120 +msgid "th copy)" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1113 +msgid "st copy)" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1115 +msgid "nd copy)" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1117 +msgid "rd copy)" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1134 +#, c-format +msgid "%s (copy)%s" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1136 +#, c-format +msgid "%s (another copy)%s" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1139 +#: gsearchtool/src/gsearchtool-support.c:1141 +#: gsearchtool/src/gsearchtool-support.c:1143 +#: gsearchtool/src/gsearchtool-support.c:1152 +#, c-format +msgid "%s (%dth copy)%s" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1146 +#, c-format +msgid "%s (%dst copy)%s" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1148 +#, c-format +msgid "%s (%dnd copy)%s" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1150 +#, c-format +msgid "%s (%drd copy)%s" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1197 +msgid " (invalid Unicode)" +msgstr " (invalid Unicode)" + +#: gsearchtool/src/gsearchtool-support.c:1286 +msgid " (" +msgstr "" + +#: gsearchtool/src/gsearchtool-support.c:1294 +#, c-format +msgid " (%d" +msgstr "" + +#: logview/data/mate-system-log.desktop.in.in:3 +msgid "Log File Viewer" +msgstr "" + +#: logview/data/mate-system-log.desktop.in.in:4 +msgid "View or monitor system log files" +msgstr "" + +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! +#: logview/data/mate-system-log.desktop.in.in:13 +msgid "MATE;monitor;view;system;log;files;logviewer;" +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:5 +msgid "Log file to open up on startup" +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:6 +msgid "" +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:10 +msgid "Size of the font used to display the log" +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:11 +msgid "" +"Specifies the size of the fixed-width font used to display the log in the " +"main tree view. The default is taken from the default terminal font size." +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:15 +msgid "Height of the main window in pixels" +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:16 +msgid "Specifies the height of the log viewer main window in pixels." +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:20 +msgid "Width of the main window in pixels" +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:21 +msgid "Specifies the width of the log viewer main window in pixels." +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:25 +msgid "Log files to open up on startup" +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:26 +msgid "" +"Specifies a list of log files to open up at startup. A default list is " +"created by reading /etc/syslog.conf." +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:30 +msgid "List of saved filters" +msgstr "" + +#: logview/data/org.mate.system-log.gschema.xml.in:31 +msgid "List of saved regexp filters" +msgstr "" + +#: logview/data/logview-filter.ui:32 mate-disk-image-mounter/src/main.c:124 +#: mate-screenshot/data/mate-screenshot.ui:92 +msgid "_Cancel" +msgstr "" + +#: logview/data/logview-filter.ui:48 +msgid "_Apply" +msgstr "" + +#: logview/data/logview-filter.ui:91 +#: mate-screenshot/data/mate-screenshot.ui:178 +msgid "_Name:" +msgstr "_Name:" + +#: logview/data/logview-filter.ui:108 +msgid "_Regular Expression:" +msgstr "" + +#: logview/data/logview-filter.ui:180 +msgid "Highlight" +msgstr "" + +#: logview/data/logview-filter.ui:205 +msgid "Foreground:" +msgstr "" + +#: logview/data/logview-filter.ui:220 +msgid "Background:" +msgstr "" + +#: logview/data/logview-filter.ui:274 +msgid "Hide" +msgstr "" + +#: logview/data/logview-filter.ui:296 +msgid "Effect:" +msgstr "" + +#: logview/src/logview-about.h:41 mate-dictionary/src/gdict-about.c:46 +msgid "Sun GNOME Documentation Team " +msgstr "" + +#: logview/src/logview-app.c:369 +#, c-format +msgid "Impossible to open the file %s" +msgstr "" + +#: logview/src/logview-filter-manager.c:93 +msgid "Filter name is empty!" +msgstr "" + +#: logview/src/logview-filter-manager.c:106 +msgid "Filter name may not contain the ':' character" +msgstr "" + +#: logview/src/logview-filter-manager.c:129 +msgid "Regular expression is empty!" +msgstr "" + +#: logview/src/logview-filter-manager.c:145 +#, c-format +msgid "Regular expression is invalid: %s" +msgstr "" + +#: logview/src/logview-filter-manager.c:207 +msgid "Please specify either foreground or background color!" +msgstr "" + +#: logview/src/logview-filter-manager.c:282 +msgid "Edit filter" +msgstr "" + +#: logview/src/logview-filter-manager.c:282 +msgid "Add new filter" +msgstr "" + +#: logview/src/logview-filter-manager.c:469 +msgid "Filters" +msgstr "" + +#: logview/src/logview-findbar.c:169 +msgid "_Find:" +msgstr "" + +#: logview/src/logview-findbar.c:184 +msgid "Find Previous" +msgstr "" + +#: logview/src/logview-findbar.c:187 +msgid "Find previous occurrence of the search string" +msgstr "" + +#: logview/src/logview-findbar.c:192 +msgid "Find Next" +msgstr "" + +#: logview/src/logview-findbar.c:195 +msgid "Find next occurrence of the search string" +msgstr "" + +#: logview/src/logview-findbar.c:202 +msgid "Clear the search string" +msgstr "" + +#: logview/src/logview-log.c:589 +msgid "Error while uncompressing the GZipped log. The file might be corrupt." +msgstr "" + +#: logview/src/logview-log.c:635 +msgid "You don't have enough permissions to read the file." +msgstr "" + +#: logview/src/logview-log.c:650 +msgid "The file is not a regular file or is not a text file." +msgstr "" + +#: logview/src/logview-log.c:743 +msgid "This version of System Log does not support GZipped logs." +msgstr "" + +#: logview/src/logview-loglist.c:103 +msgid "%A, %e %b" +msgstr "" + +#: logview/src/logview-loglist.c:314 +msgid "Loading..." +msgstr "" + +#: logview/src/logview-main.c:48 +#, c-format +msgid "" +"%s - Version %s\n" +"Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n" +"Copyright (C) 2011-2021 MATE developers.\n" +msgstr "" + +#: logview/src/logview-main.c:64 +msgid "Show the application's version" +msgstr "Show the application's version" + +#: logview/src/logview-main.c:66 +msgid "[LOGFILE...]" +msgstr "" + +#: logview/src/logview-main.c:70 +msgid " - Browse and monitor logs" +msgstr "" + +#: logview/src/logview-main.c:107 +msgid "Log Viewer" +msgstr "" + +#: logview/src/logview-window.c:41 logview/src/logview-window.c:771 +msgid "System Log Viewer" +msgstr "" + +#: logview/src/logview-window.c:216 +#, c-format +msgid "last update: %s" +msgstr "" + +#: logview/src/logview-window.c:220 +#, c-format +msgid "%d lines (%s) - %s" +msgstr "" + +#: logview/src/logview-window.c:325 +msgid "Open Log" +msgstr "" + +#: logview/src/logview-window.c:364 +#, c-format +msgid "There was an error displaying help: %s" +msgstr "" + +#: logview/src/logview-window.c:478 +msgid "Wrapped" +msgstr "" + +#: logview/src/logview-window.c:493 +#: mate-dictionary/libgdict/gdict-defbox.c:1125 +#: mate-dictionary/libgdict/gdict-defbox.c:1219 +#: mate-dictionary/libgdict/gdict-defbox.c:1253 +msgid "Not found" +msgstr "" + +#: logview/src/logview-window.c:773 +msgid "About System Log Viewer" +msgstr "" + +#: logview/src/logview-window.c:774 +msgid "" +"Copyright © 1998-2008 Free Software Foundation, Inc.\n" +"Copyright © 2011-2021 MATE developers" +msgstr "" + +#: logview/src/logview-window.c:778 +msgid "View, monitor or analyze your system logs in a gradual manner." +msgstr "" + +#: logview/src/logview-window.c:821 mate-dictionary/src/gdict-window.c:1258 +msgid "_File" +msgstr "" + +#: logview/src/logview-window.c:824 +msgid "_Filters" +msgstr "" + +#: logview/src/logview-window.c:827 +msgid "_Open..." +msgstr "" + +#: logview/src/logview-window.c:827 +msgid "Open a log from file" +msgstr "" + +#: logview/src/logview-window.c:829 +msgid "Close this log" +msgstr "" + +#: logview/src/logview-window.c:831 +msgid "_Quit" +msgstr "" + +#: logview/src/logview-window.c:831 +msgid "Quit the log viewer" +msgstr "" + +#: logview/src/logview-window.c:834 mate-dictionary/src/gdict-window.c:1277 +msgid "_Copy" +msgstr "" + +#: logview/src/logview-window.c:834 +msgid "Copy the selection" +msgstr "" + +#: logview/src/logview-window.c:836 mate-dictionary/src/gdict-window.c:1279 +msgid "Select _All" +msgstr "" + +#: logview/src/logview-window.c:836 +msgid "Select the entire log" +msgstr "" + +#: logview/src/logview-window.c:838 +msgid "_Find..." +msgstr "" + +#: logview/src/logview-window.c:838 +msgid "Find a word or phrase in the log" +msgstr "" + +#: logview/src/logview-window.c:841 +msgid "Zoom _In" +msgstr "" + +#: logview/src/logview-window.c:841 +msgid "Bigger text size" +msgstr "" + +#: logview/src/logview-window.c:843 +msgid "Zoom _Out" +msgstr "Zoom _Out" + +#: logview/src/logview-window.c:843 +msgid "Smaller text size" +msgstr "" + +#: logview/src/logview-window.c:845 +msgid "_Normal Size" +msgstr "Normal Size" + +#: logview/src/logview-window.c:845 +msgid "Normal text size" +msgstr "" + +#: logview/src/logview-window.c:848 +msgid "Manage Filters" +msgstr "" + +#: logview/src/logview-window.c:848 +msgid "Manage filters" +msgstr "" + +#: logview/src/logview-window.c:851 +msgid "Open the help contents for the log viewer" +msgstr "" + +#: logview/src/logview-window.c:853 mate-dictionary/src/gdict-applet.c:1176 +#: mate-dictionary/src/gdict-window.c:1314 +msgid "_About" +msgstr "About" + +#: logview/src/logview-window.c:853 +msgid "Show the about dialog for the log viewer" +msgstr "" + +#: logview/src/logview-window.c:858 +msgid "_Statusbar" +msgstr "Statusbar" + +#: logview/src/logview-window.c:858 +msgid "Show Status Bar" +msgstr "" + +#: logview/src/logview-window.c:860 +msgid "Side _Pane" +msgstr "Side _Pane" + +#: logview/src/logview-window.c:860 +msgid "Show Side Pane" +msgstr "" + +#: logview/src/logview-window.c:862 +msgid "Show matches only" +msgstr "" + +#: logview/src/logview-window.c:862 +msgid "Only show lines that match one of the given filters" +msgstr "" + +#: logview/src/logview-window.c:994 +#, c-format +msgid "Can't read from \"%s\"" +msgstr "" + +#: logview/src/logview-window.c:1419 +msgid "Version: " +msgstr "" + +#: logview/src/logview-window.c:1525 +msgid "Could not open the following files:" +msgstr "" + +#: mate-dictionary/data/default.desktop.in:3 +msgid "Default" +msgstr "" + +#: mate-dictionary/data/default.desktop.in:4 +msgid "Default Dictionary Server" +msgstr "" + +#: mate-dictionary/data/mate-dictionary.desktop.in.in:3 +#: mate-dictionary/data/mate-dictionary.appdata.xml.in:7 +msgid "MATE Dictionary" +msgstr "" + +#: mate-dictionary/data/mate-dictionary.desktop.in.in:4 +msgid "Check word definitions and spellings in an online dictionary" +msgstr "" + +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! +#: mate-dictionary/data/mate-dictionary.desktop.in.in:13 +msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" +msgstr "" + +#: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 +msgid "A dictionary for MATE Desktop" +msgstr "" + +#: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 +msgid "" +"MATE Dictionary allows you to look up words in on-line dictionaries. It " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " +"query." +msgstr "" + +#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 +msgid "Dictionary Applet Factory" +msgstr "" + +#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:6 +msgid "Factory for the dictionary applet" +msgstr "" + +#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:9 +msgid "Dictionary Look up" +msgstr "" + +#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:10 +msgid "Look up words in a dictionary" +msgstr "" + +#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:6 +msgid "The default database to use" +msgstr "" + +#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:7 +msgid "" +"The name of the default individual database or meta-database to use on a " +"dictionary source. An exclamation mark (\"!\") means that all the databases " +"present in a dictionary source should be searched" +msgstr "" + +#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 +msgid "The default search strategy to use" +msgstr "" + +#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:12 +msgid "" +"The name of the default search strategy to use on a dictionary source, if " +"available. The default strategy is 'exact', that is match exact words." +msgstr "" + +#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 +msgid "The font to be used when printing" +msgstr "" + +#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:17 +msgid "The font to be used when printing a definition." +msgstr "" + +#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:21 +msgid "The name of the dictionary source used" +msgstr "" + +#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22 +msgid "" +"The name of the dictionary source used to retrieve the definitions of words." +msgstr "" + +#: mate-dictionary/data/thai.desktop.in:3 +msgid "Thai" +msgstr "" + +#: mate-dictionary/data/thai.desktop.in:4 +msgid "Longdo Thai-English Dictionaries" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:283 +msgid "Client Name" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:284 +msgid "The name of the client of the context object" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:297 +msgid "Hostname" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:298 +msgid "The hostname of the dictionary server to connect to" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:311 +msgid "Port" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:312 +msgid "The port of the dictionary server to connect to" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:327 +msgid "Status" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:328 +msgid "The status code as returned by the dictionary server" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:772 +#, c-format +msgid "No connection to the dictionary server at '%s:%d'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1052 +#, c-format +msgid "Lookup failed for hostname '%s': no suitable resources found" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1083 +#, c-format +msgid "Lookup failed for host '%s': %s" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1117 +#, c-format +msgid "Lookup failed for host '%s': host not found" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1169 +#, c-format +msgid "" +"Unable to connect to the dictionary server at '%s:%d'. The server replied " +"with code %d (server down)" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1188 +#, c-format +msgid "" +"Unable to parse the dictionary server reply\n" +": '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1217 +#, c-format +msgid "No definitions found for '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1232 +#, c-format +msgid "Invalid database '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1247 +#, c-format +msgid "Invalid strategy '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1262 +#, c-format +msgid "Bad command '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1277 +#, c-format +msgid "Bad parameters for command '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1292 +#, c-format +msgid "No databases found on dictionary server at '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1307 +#, c-format +msgid "No strategies found on dictionary server at '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1732 +#, c-format +msgid "Connection failed to the dictionary server at %s:%d" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1771 +#, c-format +msgid "" +"Error while reading reply from server:\n" +"%s" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1844 +#, c-format +msgid "Connection timeout for the dictionary server at '%s:%d'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1878 +msgid "No hostname defined for the dictionary server" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1914 +#: mate-dictionary/libgdict/gdict-client-context.c:1929 +msgid "Unable to create socket" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1955 +#, c-format +msgid "Unable to set the channel as non-blocking: %s" +msgstr "" + +#: mate-dictionary/libgdict/gdict-client-context.c:1970 +#, c-format +msgid "Unable to connect to the dictionary server at '%s:%d'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-context.c:220 +msgid "Local Only" +msgstr "" + +#: mate-dictionary/libgdict/gdict-context.c:221 +msgid "Whether the context uses only local dictionaries or not" +msgstr "" + +#: mate-dictionary/libgdict/gdict-database-chooser.c:376 +msgid "Reload the list of available databases" +msgstr "" + +#: mate-dictionary/libgdict/gdict-database-chooser.c:388 +msgid "Clear the list of available databases" +msgstr "" + +#: mate-dictionary/libgdict/gdict-database-chooser.c:836 +#: mate-dictionary/libgdict/gdict-speller.c:773 +#: mate-dictionary/libgdict/gdict-strategy-chooser.c:783 +msgid "Error while matching" +msgstr "" + +#: mate-dictionary/libgdict/gdict-defbox.c:1314 +msgid "F_ind:" +msgstr "" + +#: mate-dictionary/libgdict/gdict-defbox.c:1327 +msgid "_Previous" +msgstr "_Previous" + +#: mate-dictionary/libgdict/gdict-defbox.c:1335 +msgid "_Next" +msgstr "_Next" + +#: mate-dictionary/libgdict/gdict-defbox.c:2483 +msgid "Error while looking up definition" +msgstr "" + +#: mate-dictionary/libgdict/gdict-defbox.c:2525 +#: mate-dictionary/libgdict/gdict-speller.c:731 +msgid "Another search is in progress" +msgstr "" + +#: mate-dictionary/libgdict/gdict-defbox.c:2526 +#: mate-dictionary/libgdict/gdict-speller.c:732 +msgid "Please wait until the current search ends." +msgstr "" + +#: mate-dictionary/libgdict/gdict-defbox.c:2565 +msgid "Error while retrieving the definition" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:229 +msgid "Filename" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:230 +msgid "The filename used by this dictionary source" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:244 +msgid "The display name of this dictionary source" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:257 +msgid "Description" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:258 +msgid "The description of this dictionary source" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:271 +#: mate-dictionary/libgdict/gdict-speller.c:375 +msgid "Database" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:272 +msgid "The default database of this dictionary source" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:285 +#: mate-dictionary/libgdict/gdict-speller.c:382 +msgid "Strategy" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:286 +msgid "The default strategy of this dictionary source" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:299 +msgid "Transport" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:300 +msgid "The transport mechanism used by this dictionary source" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:314 +#: mate-dictionary/libgdict/gdict-speller.c:368 +msgid "Context" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:315 +msgid "The GdictContext bound to this source" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:408 +#, c-format +msgid "Invalid transport type '%d'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:436 +#, c-format +msgid "No '%s' group found inside the dictionary source definition" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:452 +#: mate-dictionary/libgdict/gdict-source.c:476 +#: mate-dictionary/libgdict/gdict-source.c:500 +#: mate-dictionary/libgdict/gdict-source.c:525 +#, c-format +msgid "Unable to get the '%s' key inside the dictionary source definition: %s" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:550 +#, c-format +msgid "" +"Unable to get the '%s' key inside the dictionary source definition file: %s" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:736 +msgid "Dictionary source does not have name" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source.c:745 +#, c-format +msgid "Dictionary source '%s' has invalid transport '%s'" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source-chooser.c:283 +msgid "Reload the list of available sources" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source-loader.c:163 +msgid "Paths" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source-loader.c:164 +msgid "Search paths used by this object" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source-loader.c:176 +msgid "Sources" +msgstr "" + +#: mate-dictionary/libgdict/gdict-source-loader.c:177 +msgid "Dictionary sources found" +msgstr "" + +#: mate-dictionary/libgdict/gdict-speller.c:347 +msgid "Clear the list of similar words" +msgstr "" + +#: mate-dictionary/libgdict/gdict-speller.c:369 +msgid "The GdictContext object used to get the word definition" +msgstr "" + +#: mate-dictionary/libgdict/gdict-speller.c:376 +msgid "The database used to query the GdictContext" +msgstr "" + +#: mate-dictionary/libgdict/gdict-speller.c:383 +msgid "The strategy used to query the GdictContext" +msgstr "" + +#: mate-dictionary/libgdict/gdict-strategy-chooser.c:358 +msgid "Reload the list of available strategies" +msgstr "" + +#: mate-dictionary/libgdict/gdict-strategy-chooser.c:370 +msgid "Clear the list of available strategies" +msgstr "" + +#: mate-dictionary/libgdict/gdict-utils.c:97 +msgid "GDict debugging flags to set" +msgstr "" + +#: mate-dictionary/libgdict/gdict-utils.c:97 +#: mate-dictionary/libgdict/gdict-utils.c:99 +msgid "FLAGS" +msgstr "" + +#: mate-dictionary/libgdict/gdict-utils.c:99 +msgid "GDict debugging flags to unset" +msgstr "" + +#: mate-dictionary/libgdict/gdict-utils.c:153 +msgid "GDict Options" +msgstr "" + +#: mate-dictionary/libgdict/gdict-utils.c:154 +msgid "Show GDict Options" +msgstr "" + +#: mate-dictionary/src/gdict-about.c:54 +msgid "Look up words or terms in a dictionary source." +msgstr "" + +#: mate-dictionary/src/gdict-about.c:82 mate-dictionary/src/gdict-app.c:363 +#: mate-dictionary/src/gdict-window.c:580 +#: mate-dictionary/src/gdict-window.c:1864 +msgid "Dictionary" +msgstr "" + +#: mate-dictionary/src/gdict-about.c:84 +msgid "About Dictionary" +msgstr "" + +#: mate-dictionary/src/gdict-about.c:85 +msgid "" +"Copyright © 2005-2006 Emmanuele Bassi\n" +"Copyright © 2011-2021 MATE developers" +msgstr "" + +#. Translators: the first is the word found, the second is the +#. * database name and the last is the definition's text; please +#. * keep the new lines. +#: mate-dictionary/src/gdict-app.c:207 +#, c-format +msgid "" +"Definition for '%s'\n" +" From '%s':\n" +"\n" +"%s\n" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:221 +#, c-format +msgid "Error: %s\n" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:247 +msgid "See mate-dictionary --help for usage\n" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:260 +msgid "Unable to find a suitable dictionary source" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:294 +#, c-format +msgid "" +"Error while looking up the definition of \"%s\":\n" +"%s" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:323 mate-dictionary/src/gdict-app.c:333 +msgid "Words to look up" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:323 mate-dictionary/src/gdict-app.c:325 +#: mate-dictionary/src/gdict-app.c:333 +msgid "word" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:325 +msgid "Words to match" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:327 +msgid "Dictionary source to use" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:327 +msgid "source" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:329 +msgid "Print result to the console" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:331 +msgid "Database to use" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:331 +msgid "db" +msgstr "" + +#: mate-dictionary/src/gdict-app.c:343 +msgid " - Look up words in dictionaries" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:194 +#: mate-dictionary/src/gdict-window.c:935 +msgid "Save a Copy" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:204 +#: mate-dictionary/src/gdict-window.c:945 +msgid "Untitled document" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:225 +#: mate-dictionary/src/gdict-window.c:966 +#, c-format +msgid "Error while writing to '%s'" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:350 +msgid "Clear the definitions found" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:352 +msgid "Clear definition" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:353 +msgid "Clear the text of the definition" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:365 +msgid "Print the definitions found" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:367 +msgid "Print definition" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:368 +msgid "Print the text of the definition" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:380 +msgid "Save the definitions found" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:382 +msgid "Save definition" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:383 +msgid "Save the text of the definition to a file" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:520 +msgid "Click to view the dictionary window" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:522 +msgid "Toggle dictionary window" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:523 +msgid "Show or hide the definition window" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:574 +msgid "Type the word you want to look up" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:576 +msgid "Dictionary entry" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:577 +msgid "Look up words in dictionaries" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:705 +#: mate-dictionary/src/gdict-window.c:1077 +msgid "Dictionary Preferences" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:729 +#: mate-dictionary/src/gdict-pref-dialog.c:496 +#: mate-dictionary/src/gdict-source-dialog.c:477 +#: mate-dictionary/src/gdict-window.c:1224 +msgid "There was an error while displaying help" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:868 +#: mate-dictionary/src/gdict-window.c:495 +#, c-format +msgid "No dictionary source available with name '%s'" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:872 +#: mate-dictionary/src/gdict-window.c:499 +msgid "Unable to find dictionary source" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:888 +#: mate-dictionary/src/gdict-window.c:515 +#, c-format +msgid "No context available for source '%s'" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:892 +#: mate-dictionary/src/gdict-window.c:519 +msgid "Unable to create a context" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:1158 +msgid "_Look Up Selected Text" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:1161 +msgid "Cl_ear" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:1164 +msgid "_Print" +msgstr "" + +#: mate-dictionary/src/gdict-applet.c:1167 +#: mate-screenshot/data/mate-screenshot.ui:109 +msgid "_Save" +msgstr "Save" + +#: mate-dictionary/src/gdict-applet.c:1170 +msgid "Preferences" +msgstr "" + +#: mate-dictionary/src/gdict-common.c:77 +#, c-format +msgid "Unable to rename file '%s' to '%s': %s" +msgstr "" + +#: mate-dictionary/src/gdict-common.c:101 +#: mate-dictionary/src/gdict-common.c:124 +#, c-format +msgid "Unable to create the data directory '%s': %s" +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:238 +#: mate-dictionary/src/gdict-pref-dialog.c:427 +msgid "Edit Dictionary Source" +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:302 +msgid "Add Dictionary Source" +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:347 +#, c-format +msgid "Remove \"%s\"?" +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:349 +msgid "This will permanently remove the dictionary source from the list." +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:379 +#, c-format +msgid "Unable to remove source '%s'" +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:713 +msgid "Add a new dictionary source" +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:719 +msgid "Remove the currently selected dictionary source" +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:725 +msgid "Edit the currently selected dictionary source" +msgstr "" + +#: mate-dictionary/src/gdict-pref-dialog.c:733 +msgid "Set the font used for printing the definitions" +msgstr "" + +#: mate-dictionary/src/gdict-print.c:238 mate-dictionary/src/gdict-print.c:302 +#, c-format +msgid "Unable to display the preview: %s" +msgstr "" + +#: mate-dictionary/src/gdict-source-dialog.c:339 +#: mate-dictionary/src/gdict-source-dialog.c:432 +msgid "Unable to create a source file" +msgstr "" + +#: mate-dictionary/src/gdict-source-dialog.c:357 +#: mate-dictionary/src/gdict-source-dialog.c:450 +msgid "Unable to save source file" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:290 +#, c-format +msgid "Searching for '%s'..." +msgstr "" + +#: mate-dictionary/src/gdict-window.c:322 +#: mate-dictionary/src/gdict-window.c:379 +msgid "No definitions found" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:324 +#, c-format +msgid "A definition found" +msgid_plural "%d definitions found" +msgstr[0] "" +msgstr[1] "" + +#: mate-dictionary/src/gdict-window.c:578 +#, c-format +msgid "%s - Dictionary" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1261 +msgid "_Go" +msgstr "_Go" + +#: mate-dictionary/src/gdict-window.c:1265 +#: mate-screenshot/data/mate-screenshot.ui:58 +msgid "_New" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1266 +msgid "New look up" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1267 +msgid "_Save a Copy..." +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1269 +msgid "P_review..." +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1270 +msgid "Preview this document" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1271 +msgid "_Print..." +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1272 +msgid "Print this document" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1281 +msgid "_Find" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1282 +msgid "Find a word or phrase in the document" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1284 +msgid "Find Ne_xt" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1286 +msgid "Find Pre_vious" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1288 +msgid "_Preferences" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1292 +msgid "_Previous Definition" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1293 +msgid "Go to the previous definition" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1294 +msgid "_Next Definition" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1295 +msgid "Go to the next definition" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1296 +msgid "_First Definition" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1297 +msgid "Go to the first definition" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1298 +msgid "_Last Definition" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1299 +msgid "Go to the last definition" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1302 +msgid "Similar _Words" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1304 +msgid "Dictionary Sources" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1306 +msgid "Available _Databases" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1308 +msgid "Available St_rategies" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1325 +msgid "_Sidebar" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1327 +msgid "S_tatusbar" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1392 +#, c-format +msgid "Dictionary source `%s' selected" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1413 +#, c-format +msgid "Strategy `%s' selected" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1433 +#, c-format +msgid "Database `%s' selected" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1453 +#, c-format +msgid "Word `%s' selected" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1478 +msgid "Double-click on the word to look up" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1484 +msgid "Double-click on the matching strategy to use" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1489 +msgid "Double-click on the source to use" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1498 +msgid "Double-click on the database to use" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1670 +msgid "Look _up:" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1745 +msgid "Similar words" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1758 +msgid "Available dictionaries" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1776 +msgid "Available strategies" +msgstr "" + +#: mate-dictionary/src/gdict-window.c:1792 +msgid "Dictionary sources" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-preferences.ui:27 +msgid "_Select a dictionary source for looking up words:" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-preferences.ui:132 +#: mate-dictionary/data/mate-dictionary-source.ui:148 +msgid "Source" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-preferences.ui:162 +msgid "_Print font:" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-preferences.ui:216 +msgid "Print" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-source.ui:38 +msgid "_Description:" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-source.ui:53 +msgid "Source Name" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-source.ui:65 +msgid "_Transport:" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-source.ui:96 +msgid "H_ostname:" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-source.ui:175 +msgid "Dictionaries" +msgstr "" + +#: mate-dictionary/data/mate-dictionary-source.ui:200 +msgid "Strategies" +msgstr "" + +#: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:3 +#: mate-disk-image-mounter/src/main.c:62 +msgid "MATE Disk Image Mounter" +msgstr "" + +#: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:4 +msgid "Attach and mount one or more disk image files" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:60 +msgid "An error occurred" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:81 +msgid "Allow writing to the image" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:101 +msgid "All Files" +msgstr "All Files" + +#: mate-disk-image-mounter/src/main.c:105 +msgid "Disk Images (*.img, *.iso)" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:121 +msgid "Select Disk Image(s) to Mount" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:125 +msgid "_Mount" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:131 +msgid "Set up _read-only mount" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:132 +msgid "" +"If checked, the mount will be read-only. This is useful if you don't want " +"the underlying disk image to be modified" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:178 +#, c-format +msgid "Error connecting to udisks daemon: %s (%s, %d)" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:186 +msgid "Attach and mount one or more disk image files." +msgstr "" + +#: mate-disk-image-mounter/src/main.c:234 +#, c-format +msgid "Cannot open `%s' - maybe the volume isn't mounted?" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:241 +#, c-format +msgid "Error opening `%s': %m" +msgstr "" + +#: mate-disk-image-mounter/src/main.c:262 +#, c-format +msgid "Error attaching disk image: %s (%s, %d)" +msgstr "" + +#: mate-screenshot/data/mate-screenshot.appdata.xml.in:7 +msgid "MATE Screenshot" +msgstr "" + +#: mate-screenshot/data/mate-screenshot.appdata.xml.in:8 +msgid "A screenshot utility for MATE Desktop" +msgstr "" + +#: mate-screenshot/data/mate-screenshot.appdata.xml.in:10 +msgid "" +"MATE Screenshot is a simple utility that lets you capture screenshots of " +"your desktop or of application windows. You can select to copy them to the " +"system clipboard or save them in Portable Network Graphics (.png) image " +"format." +msgstr "" + +#: mate-screenshot/data/mate-screenshot.desktop.in:3 +#: mate-screenshot/src/mate-screenshot.c:519 +#: mate-screenshot/src/mate-screenshot.c:527 +msgid "Take Screenshot" +msgstr "" + +#: mate-screenshot/data/mate-screenshot.desktop.in:4 +msgid "Save images of your desktop or individual windows" +msgstr "" + +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! +#: mate-screenshot/data/mate-screenshot.desktop.in:13 +msgid "MATE;screenshot;snapshot;desktop;window;image;" +msgstr "" + +#: mate-screenshot/data/mate-screenshot.ui:24 +msgid "Save Screenshot" +msgstr "" + +#: mate-screenshot/data/mate-screenshot.ui:74 +msgid "C_opy to Clipboard" +msgstr "" + +#: mate-screenshot/data/mate-screenshot.ui:192 +msgid "Save in _folder:" +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:5 +msgid "Screenshot delay" +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:6 +msgid "The number of seconds to wait before taking the screenshot." +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:10 +msgid "Screenshot directory" +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:11 +msgid "The directory the last screenshot was saved in." +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:15 +msgid "Include Border" +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:16 +msgid "Include the window manager border along with the screenshot" +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:20 +msgid "Include Pointer" +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:21 +msgid "Include the pointer in the screenshot" +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:25 +msgid "Border Effect" +msgstr "" + +#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:26 +msgid "" +"Effect to add to the outside of a border. Possible values are \"shadow\", " +"\"none\", and \"border\"." +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:138 +msgid "Error loading the help page" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:250 +msgid "None" +msgstr "None" + +#: mate-screenshot/src/mate-screenshot.c:251 +msgid "Drop shadow" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:252 +msgid "Border" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:353 +msgid "Include _pointer" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:362 +msgid "Include the window _border" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:377 +msgid "Apply _effect:" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:437 +msgid "Grab the whole _desktop" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:449 +msgid "Grab the current _window" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:461 +msgid "Select _area to grab" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:479 +msgid "Grab _after a delay of" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:500 +#: mate-screenshot/src/mate-screenshot.c:1320 +msgid "seconds" +msgstr "seconds" + +#: mate-screenshot/src/mate-screenshot.c:528 +msgid "Effects" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:532 +msgid "Take _Screenshot" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:651 +msgid "Error while saving screenshot" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:654 +#, c-format +msgid "" +"Impossible to save the screenshot to %s.\n" +" Error was %s.\n" +" Please choose another location and retry." +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:796 +msgid "Screenshot taken" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:851 +msgid "Unable to take a screenshot of the current window" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:916 +#, c-format +msgid "Screenshot at %s.png" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:923 +#, c-format +msgid "Screenshot at %s - %d.png" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1315 +msgid "Grab a window instead of the entire screen" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1316 +msgid "Grab an area of the screen instead of the entire screen" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1317 +msgid "Send grabbed area directly to the clipboard" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1318 +msgid "Include the window border with the screenshot" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1319 +msgid "Remove the window border from the screenshot" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1320 +msgid "Take screenshot after specified delay [in seconds]" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1321 +msgid "Effect to add to the border (shadow, border or none)" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1321 +msgid "effect" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1322 +msgid "Interactively set options" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1323 +msgid "Print version information and exit" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1334 +msgid "Take a picture of the screen" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1357 +msgid "" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" +msgstr "" + +#: mate-screenshot/src/mate-screenshot.c:1363 +msgid "" +"Conflicting options: --window and --area should not be used at the same " +"time.\n" +msgstr "" + +#: mate-screenshot/src/screenshot-dialog.c:210 +#, c-format +msgid "" +"Error loading UI definition file for the screenshot program: \n" +"%s\n" +"\n" +"Please check your installation of mate-utils." +msgstr "" + +#: mate-screenshot/src/screenshot-dialog.c:233 +msgid "Select a folder" +msgstr "" + +#: mate-screenshot/src/screenshot-dialog.c:328 +#: mate-screenshot/src/screenshot-save.c:202 +msgid "Screenshot.png" +msgstr "" + +#: mate-screenshot/src/screenshot-save.c:60 +#, c-format +msgid "" +"Unable to clear the temporary folder:\n" +"%s" +msgstr "" + +#: mate-screenshot/src/screenshot-save.c:98 +msgid "" +"The child save process unexpectedly exited. We are unable to write the " +"screenshot to disk." +msgstr "" + +#: mate-screenshot/src/screenshot-save.c:231 +msgid "Unknown error saving screenshot to disk" +msgstr "" + +#: mate-screenshot/src/screenshot-xfer.c:74 +msgid "File already exists" +msgstr "" + +#: mate-screenshot/src/screenshot-xfer.c:77 +#, c-format +msgid "The file \"%s\" already exists. Would you like to replace it?" +msgstr "" + +#: mate-screenshot/src/screenshot-xfer.c:122 +msgid "Saving file..." +msgstr "" + +#: mate-screenshot/src/screenshot-xfer.c:292 +msgid "Can't access source file" +msgstr "" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/eo.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/eo.gmo differ diff -Nru mate-utils-1.26.0/po/eo.po mate-utils-1.26.1/po/eo.po --- mate-utils-1.26.0/po/eo.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/eo.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,27 +2,29 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# 9a7df1f0a3f5f4de7c0fff80f6fa8bdc_64f795c , 2018 -# Robin van der Vliet , 2018 -# Michael Moroni , 2018 -# fenris , 2019 -# Stefano Karapetsas , 2019 -# Forecast , 2020 -# +# kristjan , 2021 +# 9a7df1f0a3f5f4de7c0fff80f6fa8bdc_64f795c , 2021 +# Michael Moroni , 2021 +# fenris , 2021 +# Stefano Karapetsas , 2021 +# Forecast , 2021 +# Robin van der Vliet , 2021 +# Alexander Richards, 2022 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Forecast , 2020\n" -"Language-Team: Esperanto (https://www.transifex.com/mate/teams/13566/eo/)\n" -"Language: eo\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Alexander Richards, 2022\n" +"Language-Team: Esperanto (https://app.transifex.com/mate/teams/13566/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -34,7 +36,8 @@ msgid "Check folder sizes and available disk space" msgstr "Kontroli dosierujajn grandojn kaj disponeblan diskmemoron" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -54,7 +57,7 @@ #: baobab/data/baobab-dialog-scan-props.ui:48 logview/src/logview-window.c:829 #: mate-dictionary/src/gdict-window.c:1273 msgid "_Close" -msgstr "_Fermu" +msgstr "_Fermi" #: baobab/data/baobab-dialog-scan-props.ui:81 msgid "Select _devices to include in filesystem scan:" @@ -218,8 +221,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -570,9 +573,10 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"Tiu programo estas libera programo; vi povas distribui ĝin kaj/aŭ modifi ĝin " -"laŭ la termoj de la GNUa Ĝenerala Publika Permesilo kiel elsendita de la " -"Free Software Foundation; dua versio de la permesilo aŭ laŭvole iu-ajn lasta." +"Tiu programo estas libera programo; vi povas distribui ĝin kaj/aŭ modifi ĝin" +" laŭ la termoj de la GNUa Ĝenerala Publika Permesilo kiel elsendita de la " +"Free Software Foundation; dua versio de la permesilo aŭ laŭvole iu-ajn " +"lasta." #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -589,8 +593,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -642,9 +646,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -652,7 +656,8 @@ msgstr "" "Trovi dokumentojn kaj dosierujojn en ĉi tiu komputilo laŭ nomo aŭ enhavo" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -686,9 +691,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -710,8 +715,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -730,9 +735,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -742,8 +747,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -807,8 +812,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -825,8 +830,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -847,62 +852,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Dosiero ne estas valida .desktop-dosiero" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Nerekonata versio de labortabla dosiero '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Startigado de %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Aplikaĵo ne akceptas dokumentojn per komandlinio" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Nerekonata rulparametro: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "URI-dokumentoj al labortabla elemento 'Type=Link' ne transdoneblas" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Nelanĉebla ero" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Malŝalti konekton al seanco-administrilo" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Specifi dosieron, kiun enhavas konservitan agordon" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "DOSIERO" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Specifi identigilon de seancoadministrilo" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "Identigilo" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opcioj de seancoadministrilo:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Montri seancoadministrilajn opciojn" @@ -1507,7 +1512,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1518,8 +1524,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1836,7 +1842,7 @@ #: logview/src/logview-window.c:845 msgid "_Normal Size" -msgstr "" +msgstr "_Normala grando" #: logview/src/logview-window.c:845 msgid "Normal text size" @@ -1917,7 +1923,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1929,8 +1936,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2680,7 +2687,7 @@ #: mate-dictionary/src/gdict-window.c:1281 msgid "_Find" -msgstr "" +msgstr "_Trovi" #: mate-dictionary/src/gdict-window.c:1282 msgid "Find a word or phrase in the document" @@ -2944,7 +2951,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3136,8 +3144,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/es_AR.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/es_AR.gmo differ diff -Nru mate-utils-1.26.0/po/es_AR.po mate-utils-1.26.1/po/es_AR.po --- mate-utils-1.26.0/po/es_AR.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/es_AR.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,28 +2,27 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Patricio Castagnaro , 2018 -# Germán Herrou , 2018 -# Reshi Starkey , 2019 -# mbarbero , 2019 -# Stefano Karapetsas , 2019 -# +# Germán Herrou , 2021 +# Stefano Karapetsas , 2021 +# Reshi Starkey , 2021 +# mbarbero , 2021 +# Patricio Castagnaro , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2019\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mate/" -"teams/13566/es_AR/)\n" -"Language: es_AR\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Patricio Castagnaro , 2021\n" +"Language-Team: Spanish (Argentina) (https://app.transifex.com/mate/teams/13566/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -34,7 +33,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -218,8 +218,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -272,6 +272,7 @@ msgid_plural "%5d items" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -583,8 +584,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -630,16 +631,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -673,9 +675,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -697,8 +699,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -717,9 +719,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -729,8 +731,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -794,8 +796,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -812,8 +814,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -834,63 +836,64 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "El archivo no posee un formato .desktop válido" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "No se reconoce la versión del archivo '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Empezando %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "La aplicación no acepta documentos en la línea de comandos." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "No se reconoce la opción de lanzamiento: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -"No se pueden pasar URIs de documentos a una entrada de escritorio 'Type=Link'" +"No se pueden pasar URIs de documentos a una entrada de escritorio " +"'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "No es un ítem de lanzamiento" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Deshabilitar la conexión a la sesión de manager" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Especifique el archivo que contiene la configuración guardada" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ARCHIVO" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Especifique el ID de la sesión de management" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1031,6 +1034,7 @@ msgid_plural "%'d Files Found" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format @@ -1038,6 +1042,7 @@ msgid_plural "%'d files found" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1259,6 +1264,7 @@ msgid_plural "Are you sure you want to open %d documents?" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 @@ -1267,6 +1273,7 @@ msgid_plural "This will open %d separate windows." msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1292,6 +1299,7 @@ msgid_plural "Are you sure you want to open %d folders?" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1495,7 +1503,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1506,8 +1515,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1905,7 +1914,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1917,8 +1927,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2627,6 +2637,7 @@ msgid_plural "%d definitions found" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -2932,7 +2943,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3124,8 +3136,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/es_CL.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/es_CL.gmo differ diff -Nru mate-utils-1.26.0/po/es_CL.po mate-utils-1.26.1/po/es_CL.po --- mate-utils-1.26.0/po/es_CL.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/es_CL.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,27 +2,27 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2018 -# Alejo_K , 2018 -# Robert Petitpas , 2019 -# prflr88 , 2019 -# +# clefebvre , 2021 +# Alejo_K , 2021 +# Stefano Karapetsas , 2021 +# Pablo Lezaeta Reyes , 2021 +# Robert Petitpas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: prflr88 , 2019\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/mate/teams/13566/" -"es_CL/)\n" -"Language: es_CL\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Robert Petitpas , 2021\n" +"Language-Team: Spanish (Chile) (https://app.transifex.com/mate/teams/13566/es_CL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -33,7 +33,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -217,8 +218,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -271,6 +272,7 @@ msgid_plural "%5d items" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -582,8 +584,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -627,16 +629,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -670,9 +673,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -694,8 +697,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -714,9 +717,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -726,8 +729,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -791,8 +794,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -809,8 +812,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -831,62 +834,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1027,6 +1030,7 @@ msgid_plural "%'d Files Found" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format @@ -1034,6 +1038,7 @@ msgid_plural "%'d files found" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1255,6 +1260,7 @@ msgid_plural "Are you sure you want to open %d documents?" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 @@ -1263,6 +1269,7 @@ msgid_plural "This will open %d separate windows." msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1288,6 +1295,7 @@ msgid_plural "Are you sure you want to open %d folders?" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1491,7 +1499,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1502,8 +1511,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1901,7 +1910,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1913,8 +1923,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2623,6 +2633,7 @@ msgid_plural "%d definitions found" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -2928,7 +2939,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3120,8 +3132,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/es_CO.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/es_CO.gmo differ diff -Nru mate-utils-1.26.0/po/es_CO.po mate-utils-1.26.1/po/es_CO.po --- mate-utils-1.26.0/po/es_CO.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/es_CO.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,30 +2,29 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Daniel Aranda , 2018 -# Stefano Karapetsas , 2018 -# Jose Barakat , 2018 -# John Toro , 2018 -# Sergio Alejandro Bayona Becerra , 2019 -# Julian Borrero , 2019 -# Julio E Tamara P , 2020 -# +# Julio E Tamara P , 2021 +# Stefano Karapetsas , 2021 +# Jose Barakat , 2021 +# John Toro , 2021 +# Sergio Alejandro Bayona Becerra , 2021 +# Julian Borrero , 2021 +# Daniel Aranda , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Julio E Tamara P , 2020\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/mate/" -"teams/13566/es_CO/)\n" -"Language: es_CO\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Daniel Aranda , 2021\n" +"Language-Team: Spanish (Colombia) (https://app.transifex.com/mate/teams/13566/es_CO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es_CO\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -36,7 +35,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -220,8 +220,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -274,6 +274,7 @@ msgid_plural "%5d items" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -585,8 +586,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -630,16 +631,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Buscar documentos y carpetas en este equipo por nombre o contenido" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -673,9 +675,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -697,8 +699,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -717,9 +719,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -729,8 +731,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -794,8 +796,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -812,8 +814,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -834,64 +836,64 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "El archivo no es un archivo .desktop válido" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Versión \"%s\" del archivo .desktop no reconocida" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Iniciando %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "La aplicación no acepta documentos por línea de comandos" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Opción de inicio no reconocida: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "No se pueden pasar los URI de documentos a entradas de escritorio con " "'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "No es un elemento lanzable" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Deshabilite la conexión al administrador de sesiones" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Especifique el archivo que contiene la configuración guardada" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ARCHIVO" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Especifique el identificador de administración de la sesión" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opciones del administrador de sesiones:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Muestre las opciones del administrador de sesiones" @@ -1032,6 +1034,7 @@ msgid_plural "%'d Files Found" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format @@ -1039,6 +1042,7 @@ msgid_plural "%'d files found" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1260,6 +1264,7 @@ msgid_plural "Are you sure you want to open %d documents?" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 @@ -1268,6 +1273,7 @@ msgid_plural "This will open %d separate windows." msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1293,6 +1299,7 @@ msgid_plural "Are you sure you want to open %d folders?" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1496,7 +1503,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1507,8 +1515,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1906,7 +1914,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1918,8 +1927,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2628,6 +2637,7 @@ msgid_plural "%d definitions found" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -2933,7 +2943,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3125,8 +3136,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/es_ES.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/es_ES.gmo differ diff -Nru mate-utils-1.26.0/po/es_ES.po mate-utils-1.26.1/po/es_ES.po --- mate-utils-1.26.0/po/es_ES.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/es_ES.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,567 +2,553 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefano Karapetsas , 2018 # Jose11091 , 2018 # Mario Verdin , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" -"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-12-25 12:31+0100\n" "PO-Revision-Date: 2018-03-12 09:18+0000\n" "Last-Translator: Mario Verdin , 2018\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/mate/teams/13566/" -"es_ES/)\n" -"Language: es_ES\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/mate/teams/13566/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 +#: ../baobab/data/mate-disk-usage-analyzer.desktop.in.in.h:1 msgid "MATE Disk Usage Analyzer" msgstr "" -#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:4 +#: ../baobab/data/mate-disk-usage-analyzer.desktop.in.in.h:2 msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 -msgid "MATE;check;disk;usage;analyze;size;space;" -msgstr "" - -#: baobab/data/baobab-dialog-scan-props.ui:18 +#: ../baobab/data/baobab-dialog-scan-props.ui.h:1 msgid "Disk Usage Analyzer Preferences" msgstr "" -#: baobab/data/baobab-dialog-scan-props.ui:32 -#: baobab/data/baobab-main-window.ui:129 logview/src/logview-window.c:825 -#: mate-dictionary/src/gdict-applet.c:1173 -#: mate-dictionary/src/gdict-window.c:1262 -#: mate-screenshot/data/mate-screenshot.ui:41 -msgid "_Help" -msgstr "Ay_uda" - -#: baobab/data/baobab-dialog-scan-props.ui:48 logview/src/logview-window.c:829 -#: mate-dictionary/src/gdict-window.c:1273 -msgid "_Close" -msgstr "" - -#: baobab/data/baobab-dialog-scan-props.ui:81 +#: ../baobab/data/baobab-dialog-scan-props.ui.h:2 msgid "Select _devices to include in filesystem scan:" msgstr "" -#: baobab/data/baobab-dialog-scan-props.ui:119 +#: ../baobab/data/baobab-dialog-scan-props.ui.h:3 msgid "_Monitor changes to your home folder" msgstr "" -#: baobab/data/baobab-main-window.ui:10 +#: ../baobab/data/baobab-main-window.ui.h:1 msgid "_Analyzer" msgstr "" -#: baobab/data/baobab-main-window.ui:17 +#: ../baobab/data/baobab-main-window.ui.h:2 msgid "Scan _Home Folder" msgstr "" -#: baobab/data/baobab-main-window.ui:26 +#: ../baobab/data/baobab-main-window.ui.h:3 msgid "Scan _Filesystem" msgstr "" -#: baobab/data/baobab-main-window.ui:35 +#: ../baobab/data/baobab-main-window.ui.h:4 msgid "Scan F_older..." msgstr "" -#: baobab/data/baobab-main-window.ui:44 +#: ../baobab/data/baobab-main-window.ui.h:5 msgid "S_can Remote Folder..." msgstr "" -#: baobab/data/baobab-main-window.ui:74 logview/src/logview-window.c:822 -#: mate-dictionary/src/gdict-window.c:1259 +#: ../baobab/data/baobab-main-window.ui.h:6 +#: ../logview/src/logview-window.c:817 +#: ../mate-dictionary/src/gdict-window.c:1288 msgid "_Edit" msgstr "_Editar" -#: baobab/data/baobab-main-window.ui:80 +#: ../baobab/data/baobab-main-window.ui.h:7 msgid "_Expand All" msgstr "" -#: baobab/data/baobab-main-window.ui:87 +#: ../baobab/data/baobab-main-window.ui.h:8 msgid "_Collapse All" msgstr "" -#: baobab/data/baobab-main-window.ui:101 logview/src/logview-window.c:823 -#: mate-dictionary/src/gdict-window.c:1260 +#: ../baobab/data/baobab-main-window.ui.h:9 +#: ../logview/src/logview-window.c:818 +#: ../mate-dictionary/src/gdict-window.c:1289 msgid "_View" msgstr "" -#: baobab/data/baobab-main-window.ui:108 +#: ../baobab/data/baobab-main-window.ui.h:10 msgid "_Toolbar" msgstr "" -#: baobab/data/baobab-main-window.ui:115 +#: ../baobab/data/baobab-main-window.ui.h:11 msgid "St_atusbar" msgstr "" -#: baobab/data/baobab-main-window.ui:122 +#: ../baobab/data/baobab-main-window.ui.h:12 msgid "All_ocated Space" msgstr "" -#: baobab/data/baobab-main-window.ui:136 logview/src/logview-window.c:851 -#: mate-dictionary/src/gdict-window.c:1312 +#: ../baobab/data/baobab-main-window.ui.h:13 +#: ../logview/src/logview-window.c:820 +#: ../mate-dictionary/src/gdict-applet.c:1187 +#: ../mate-dictionary/src/gdict-window.c:1291 +msgid "_Help" +msgstr "Ay_uda" + +#. Help menu +#: ../baobab/data/baobab-main-window.ui.h:14 +#: ../logview/src/logview-window.c:846 +#: ../mate-dictionary/src/gdict-window.c:1341 msgid "_Contents" msgstr "" -#: baobab/data/baobab-main-window.ui:183 baobab/src/baobab.c:1237 -#: baobab/src/callbacks.c:103 +#: ../baobab/data/baobab-main-window.ui.h:15 ../baobab/src/baobab.c:1241 msgid "Disk Usage Analyzer" msgstr "" -#: baobab/data/baobab-main-window.ui:224 baobab/data/baobab-main-window.ui:236 +#: ../baobab/data/baobab-main-window.ui.h:16 msgid "Scan home folder" msgstr "" -#: baobab/data/baobab-main-window.ui:225 +#: ../baobab/data/baobab-main-window.ui.h:17 msgid "Scan Home" msgstr "" -#: baobab/data/baobab-main-window.ui:248 +#: ../baobab/data/baobab-main-window.ui.h:18 msgid "Scan filesystem" msgstr "" -#: baobab/data/baobab-main-window.ui:249 +#: ../baobab/data/baobab-main-window.ui.h:19 msgid "Scan Filesystem" msgstr "" -#: baobab/data/baobab-main-window.ui:265 +#: ../baobab/data/baobab-main-window.ui.h:20 msgid "Scan a folder" msgstr "" -#: baobab/data/baobab-main-window.ui:266 +#: ../baobab/data/baobab-main-window.ui.h:21 msgid "Scan Folder" msgstr "" -#: baobab/data/baobab-main-window.ui:282 +#: ../baobab/data/baobab-main-window.ui.h:22 msgid "Scan a remote folder" msgstr "" -#: baobab/data/baobab-main-window.ui:283 +#: ../baobab/data/baobab-main-window.ui.h:23 msgid "Scan Remote Folder" msgstr "" -#: baobab/data/baobab-main-window.ui:312 +#: ../baobab/data/baobab-main-window.ui.h:24 msgid "Stop scanning" msgstr "" -#: baobab/data/baobab-main-window.ui:328 +#: ../baobab/data/baobab-main-window.ui.h:25 msgid "Refresh" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:9 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:1 msgid "Monitor Home" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:10 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:2 msgid "Whether any change to the home directory should be monitored." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:14 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:3 msgid "Excluded partitions URIs" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:15 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:4 msgid "A list of URIs for partitions to be excluded from scanning." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:21 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:5 msgid "Toolbar is Visible" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:22 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:6 msgid "Whether the toolbar should be visible in main window." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:26 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:7 msgid "Statusbar is Visible" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:27 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:8 msgid "Whether the status bar at the bottom of main window should be visible." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:31 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:9 msgid "Subfolder tips visible" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:32 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:10 msgid "Whether the subfolder tooltips of the selected folder are drawn." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:36 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:11 msgid "Active Chart" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:37 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:12 msgid "Which type of chart should be displayed." msgstr "" -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:8 +#: ../baobab/data/mate-disk-usage-analyzer.appdata.xml.in.h:1 msgid "A disk usage analyzing tool for MATE Desktop" msgstr "" -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 +#: ../baobab/data/mate-disk-usage-analyzer.appdata.xml.in.h:2 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " -"summary information in ring or treemap charts." +"

As its name implies, Disk Usage Analyzer is a graphical utility that you" +" can use to view and monitor your disk usage and folder structure. It " +"displays summary information in ring or treemap charts.

You can " +"perform scans on a file system, your home or any other folder - local or " +"remote. There is also an option to constantly monitor any external changes " +"to the home directory and warn the user if a file is added/removed.

" msgstr "" -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 -msgid "" -"You can perform scans on a file system, your home or any other folder - " -"local or remote. There is also an option to constantly monitor any external " -"changes to the home directory and warn the user if a file is added/removed." -msgstr "" - -#: baobab/src/baobab.c:141 baobab/src/baobab.c:358 +#: ../baobab/src/baobab.c:137 ../baobab/src/baobab.c:357 msgid "Scanning..." msgstr "" -#: baobab/src/baobab.c:186 +#: ../baobab/src/baobab.c:183 msgid "Total filesystem capacity:" msgstr "" -#: baobab/src/baobab.c:187 +#: ../baobab/src/baobab.c:184 msgid "used:" msgstr "" -#: baobab/src/baobab.c:188 +#: ../baobab/src/baobab.c:185 msgid "available:" msgstr "" -#: baobab/src/baobab.c:243 baobab/src/baobab.c:300 baobab/src/callbacks.c:268 +#. set statusbar, percentage and allocated/normal size +#: ../baobab/src/baobab.c:242 ../baobab/src/baobab.c:299 +#: ../baobab/src/callbacks.c:259 msgid "Calculating percentage bars..." msgstr "" -#: baobab/src/baobab.c:254 baobab/src/baobab.c:1300 baobab/src/callbacks.c:272 +#: ../baobab/src/baobab.c:253 ../baobab/src/baobab.c:1305 +#: ../baobab/src/callbacks.c:263 msgid "Ready" msgstr "" -#: baobab/src/baobab.c:392 +#: ../baobab/src/baobab.c:391 msgid "Total filesystem capacity" msgstr "" -#: baobab/src/baobab.c:416 +#: ../baobab/src/baobab.c:415 msgid "Total filesystem usage" msgstr "" -#: baobab/src/baobab.c:458 +#: ../baobab/src/baobab.c:457 msgid "contains hardlinks for:" msgstr "" -#: baobab/src/baobab.c:467 +#: ../baobab/src/baobab.c:466 #, c-format msgid "%5d item" msgid_plural "%5d items" msgstr[0] "" msgstr[1] "" -#: baobab/src/baobab.c:593 +#: ../baobab/src/baobab.c:592 msgid "Could not initialize monitoring" msgstr "" -#: baobab/src/baobab.c:594 +#: ../baobab/src/baobab.c:593 msgid "Changes to your home folder will not be monitored." msgstr "" -#: baobab/src/baobab.c:913 +#: ../baobab/src/baobab.c:921 msgid "Move to parent folder" msgstr "" -#: baobab/src/baobab.c:917 +#: ../baobab/src/baobab.c:925 msgid "Zoom in" msgstr "" -#: baobab/src/baobab.c:921 +#: ../baobab/src/baobab.c:929 msgid "Zoom out" msgstr "" -#: baobab/src/baobab.c:925 +#: ../baobab/src/baobab.c:933 msgid "Save screenshot" msgstr "" -#: baobab/src/baobab.c:1111 +#: ../baobab/src/baobab.c:1119 msgid "View as Rings Chart" msgstr "" -#: baobab/src/baobab.c:1113 +#: ../baobab/src/baobab.c:1121 msgid "View as Treemap Chart" msgstr "" -#: baobab/src/baobab.c:1224 +#: ../baobab/src/baobab.c:1230 msgid "Show version" msgstr "" -#: baobab/src/baobab.c:1225 +#: ../baobab/src/baobab.c:1231 msgid "[DIRECTORY]" msgstr "" -#: baobab/src/baobab.c:1257 +#: ../baobab/src/baobab.c:1261 msgid "Too many arguments. Only one directory can be specified." msgstr "" -#: baobab/src/baobab.c:1274 +#: ../baobab/src/baobab.c:1278 msgid "Could not detect any mount point." msgstr "" -#: baobab/src/baobab.c:1276 +#: ../baobab/src/baobab.c:1280 msgid "Without mount points disk usage cannot be analyzed." msgstr "" -#: baobab/src/baobab-chart.c:204 +#: ../baobab/src/baobab-chart.c:209 msgid "Maximum depth" msgstr "" -#: baobab/src/baobab-chart.c:205 +#: ../baobab/src/baobab-chart.c:210 msgid "The maximum depth drawn in the chart from the root" msgstr "" -#: baobab/src/baobab-chart.c:214 +#: ../baobab/src/baobab-chart.c:219 msgid "Chart model" msgstr "" -#: baobab/src/baobab-chart.c:215 +#: ../baobab/src/baobab-chart.c:220 msgid "Set the model of the chart" msgstr "" -#: baobab/src/baobab-chart.c:222 +#: ../baobab/src/baobab-chart.c:227 msgid "Chart root node" msgstr "" -#: baobab/src/baobab-chart.c:223 +#: ../baobab/src/baobab-chart.c:228 msgid "Set the root node from the model" msgstr "" -#: baobab/src/baobab-chart.c:1713 +#: ../baobab/src/baobab-chart.c:1714 msgid "Cannot create pixbuf image!" msgstr "" -#: baobab/src/baobab-chart.c:1723 +#. Popup the File chooser dialog +#: ../baobab/src/baobab-chart.c:1724 msgid "Save Snapshot" msgstr "" -#: baobab/src/baobab-chart.c:1750 +#: ../baobab/src/baobab-chart.c:1751 msgid "_Image type:" msgstr "" -#: baobab/src/baobab-prefs.c:171 +#: ../baobab/src/baobab-prefs.c:172 msgid "Scan" msgstr "" -#: baobab/src/baobab-prefs.c:178 +#: ../baobab/src/baobab-prefs.c:179 msgid "Device" msgstr "" -#: baobab/src/baobab-prefs.c:186 +#: ../baobab/src/baobab-prefs.c:187 msgid "Mount Point" msgstr "" -#: baobab/src/baobab-prefs.c:194 +#: ../baobab/src/baobab-prefs.c:195 msgid "Filesystem Type" msgstr "" -#: baobab/src/baobab-prefs.c:202 +#: ../baobab/src/baobab-prefs.c:203 msgid "Total Size" msgstr "" -#: baobab/src/baobab-prefs.c:211 +#: ../baobab/src/baobab-prefs.c:212 msgid "Available" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:70 +#: ../baobab/src/baobab-remote-connect-dialog.c:75 #, c-format msgid "Cannot scan location \"%s\"" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:168 +#: ../baobab/src/baobab-remote-connect-dialog.c:173 msgid "Custom Location" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:170 +#: ../baobab/src/baobab-remote-connect-dialog.c:175 msgid "SSH" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:173 +#: ../baobab/src/baobab-remote-connect-dialog.c:178 msgid "Public FTP" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:175 +#: ../baobab/src/baobab-remote-connect-dialog.c:180 msgid "FTP (with login)" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:178 +#: ../baobab/src/baobab-remote-connect-dialog.c:183 msgid "Windows share" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:180 +#: ../baobab/src/baobab-remote-connect-dialog.c:185 msgid "WebDAV (HTTP)" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:182 +#: ../baobab/src/baobab-remote-connect-dialog.c:187 msgid "Secure WebDAV (HTTPS)" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:242 +#: ../baobab/src/baobab-remote-connect-dialog.c:247 msgid "Cannot Connect to Server. You must enter a name for the server." msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:245 +#: ../baobab/src/baobab-remote-connect-dialog.c:250 msgid "Please enter a name and try again." msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:439 +#: ../baobab/src/baobab-remote-connect-dialog.c:438 msgid "_Location (URI):" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:455 +#: ../baobab/src/baobab-remote-connect-dialog.c:454 msgid "_Server:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:468 +#: ../baobab/src/baobab-remote-connect-dialog.c:467 msgid "Optional information:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:477 +#: ../baobab/src/baobab-remote-connect-dialog.c:476 msgid "_Share:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:492 -#: mate-dictionary/data/mate-dictionary-source.ui:121 +#: ../baobab/src/baobab-remote-connect-dialog.c:491 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:4 msgid "_Port:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:506 +#: ../baobab/src/baobab-remote-connect-dialog.c:505 msgid "_Folder:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:520 +#: ../baobab/src/baobab-remote-connect-dialog.c:519 msgid "_User Name:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:535 +#: ../baobab/src/baobab-remote-connect-dialog.c:534 msgid "_Domain Name:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:592 +#: ../baobab/src/baobab-remote-connect-dialog.c:595 msgid "Connect to Server" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:608 +#: ../baobab/src/baobab-remote-connect-dialog.c:611 msgid "Service _type:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:726 +#: ../baobab/src/baobab-remote-connect-dialog.c:729 msgid "_Scan" msgstr "" -#: baobab/src/baobab-treeview.c:83 +#: ../baobab/src/baobab-treeview.c:82 msgid "Rescan your home folder?" msgstr "" -#: baobab/src/baobab-treeview.c:84 +#: ../baobab/src/baobab-treeview.c:83 msgid "" "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -#: baobab/src/baobab-treeview.c:85 +#: ../baobab/src/baobab-treeview.c:84 msgid "_Rescan" msgstr "" -#: baobab/src/baobab-treeview.c:222 gsearchtool/src/gsearchtool.c:2453 +#: ../baobab/src/baobab-treeview.c:222 ../gsearchtool/src/gsearchtool.c:2436 msgid "Folder" msgstr "" -#: baobab/src/baobab-treeview.c:244 +#: ../baobab/src/baobab-treeview.c:244 msgid "Usage" msgstr "" -#: baobab/src/baobab-treeview.c:258 gsearchtool/src/gsearchtool.c:2466 +#: ../baobab/src/baobab-treeview.c:258 ../gsearchtool/src/gsearchtool.c:2449 msgid "Size" msgstr "Tamaño" -#: baobab/src/baobab-treeview.c:274 +#: ../baobab/src/baobab-treeview.c:274 msgid "Contents" msgstr "" -#: baobab/src/baobab-utils.c:105 +#: ../baobab/src/baobab-utils.c:106 msgid "Select Folder" msgstr "" -#: baobab/src/baobab-utils.c:117 +#. add extra widget +#: ../baobab/src/baobab-utils.c:118 msgid "_Show hidden folders" msgstr "" -#: baobab/src/baobab-utils.c:280 +#: ../baobab/src/baobab-utils.c:299 msgid "Cannot check an excluded folder!" msgstr "" -#: baobab/src/baobab-utils.c:304 +#: ../baobab/src/baobab-utils.c:323 #, c-format msgid "\"%s\" is not a valid folder" msgstr "" -#: baobab/src/baobab-utils.c:307 +#: ../baobab/src/baobab-utils.c:326 msgid "Could not analyze disk usage." msgstr "" -#: baobab/src/baobab-utils.c:343 +#: ../baobab/src/baobab-utils.c:362 msgid "_Open Folder" msgstr "" -#: baobab/src/baobab-utils.c:349 gsearchtool/src/gsearchtool-callbacks.c:1330 +#: ../baobab/src/baobab-utils.c:368 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1226 msgid "Mo_ve to Trash" msgstr "" -#: baobab/src/baobab-utils.c:378 +#: ../baobab/src/baobab-utils.c:402 #, c-format msgid "Could not open folder \"%s\"" msgstr "" -#: baobab/src/baobab-utils.c:381 +#: ../baobab/src/baobab-utils.c:405 msgid "There is no installed viewer capable of displaying the folder." msgstr "" -#: baobab/src/baobab-utils.c:448 +#: ../baobab/src/baobab-utils.c:474 #, c-format msgid "Could not move \"%s\" to the Trash" msgstr "" -#: baobab/src/baobab-utils.c:456 +#: ../baobab/src/baobab-utils.c:482 msgid "Could not move file to the Trash" msgstr "" -#: baobab/src/baobab-utils.c:458 +#: ../baobab/src/baobab-utils.c:484 #, c-format msgid "Details: %s" msgstr "" -#: baobab/src/baobab-utils.c:496 +#: ../baobab/src/baobab-utils.c:522 msgid "There was an error displaying help." msgstr "" -#: baobab/src/callbacks.c:74 logview/src/logview-about.h:44 -#: mate-dictionary/src/gdict-about.c:49 -msgid "MATE Documentation Team" -msgstr "" - -#: baobab/src/callbacks.c:79 logview/src/logview-about.h:49 -#: mate-dictionary/src/gdict-about.c:57 +#: ../baobab/src/callbacks.c:76 ../logview/src/logview-about.h:49 msgid "" "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 " @@ -570,8 +556,7 @@ "any later version." msgstr "" -#: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 -#: mate-dictionary/src/gdict-about.c:62 +#: ../baobab/src/callbacks.c:81 ../logview/src/logview-about.h:53 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " @@ -579,1775 +564,1745 @@ "more details." msgstr "" -#: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 -#: mate-dictionary/src/gdict-about.c:67 +#: ../baobab/src/callbacks.c:86 ../logview/src/logview-about.h:57 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." -msgstr "" - -#: baobab/src/callbacks.c:105 -msgid "About Disk Usage Analyzer" +"You should have received a copy of the GNU General Public License along with" +" this program; if not, write to the Free Software Foundation, Inc., 51 " +"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA" msgstr "" -#: baobab/src/callbacks.c:106 -msgid "Analyze your disk usage through a graphical tool." +#: ../baobab/src/callbacks.c:98 +msgid "A graphical tool to analyze disk usage." msgstr "" -#: baobab/src/callbacks.c:107 -msgid "" -"Copyright © 2005-2010 Fabio Marzocca\n" -"Copyright © 2011-2021 MATE developers" -msgstr "" - -#: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 -#: mate-dictionary/src/gdict-about.c:53 +#. translator credits +#: ../baobab/src/callbacks.c:104 ../logview/src/logview-about.h:63 +#: ../mate-dictionary/src/gdict-about.c:55 msgid "translator-credits" msgstr "" "Jorge González \n" "Francisco Javier F. Serrador " -#: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 -#: gsearchtool/src/gsearchtool-callbacks.c:879 +#: ../baobab/src/callbacks.c:202 +#: ../gsearchtool/src/gsearchtool-callbacks.c:514 +#: ../gsearchtool/src/gsearchtool-callbacks.c:864 msgid "The document does not exist." msgstr "" -#: baobab/src/callbacks.c:292 +#: ../baobab/src/callbacks.c:283 msgid "The folder does not exist." msgstr "" -#: gsearchtool/data/mate-search-tool.appdata.xml.in:7 -#: gsearchtool/data/mate-search-tool.desktop.in:3 -msgid "MATE Search Tool" -msgstr "" - -#: gsearchtool/data/mate-search-tool.appdata.xml.in:8 +#: ../gsearchtool/data/mate-search-tool.appdata.xml.in.h:1 msgid "A file searching tool for MATE Desktop" msgstr "" -#: gsearchtool/data/mate-search-tool.appdata.xml.in:10 +#: ../gsearchtool/data/mate-search-tool.appdata.xml.in.h:2 msgid "" -"MATE Search Tool is a simple but powerful utility that allows you to search " -"for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"

MATE Search Tool is a simple but powerful utility that allows you to " +"search for files and folders on any mounted file system. Its interface gives" +" you instant access to a wide variety of parameters for each search, such as" +" text contained within a file, ownership, date of modification, file size, " +"folder exclusion, etc..

" msgstr "" -#: gsearchtool/data/mate-search-tool.desktop.in:4 -msgid "Locate documents and folders on this computer by name or content" +#: ../gsearchtool/data/mate-search-tool.desktop.in.h:1 +msgid "MATE Search Tool" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: gsearchtool/data/mate-search-tool.desktop.in:13 -msgid "" -"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" +#: ../gsearchtool/data/mate-search-tool.desktop.in.h:2 +msgid "Locate documents and folders on this computer by name or content" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:1 msgid "Search history" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:6 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:2 msgid "This key defines the items which were searched for in the past." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:10 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:3 msgid "Show Additional Options" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:14 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:4 msgid "Disable Quick Search" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:15 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:5 msgid "" "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:6 msgid "Quick Search Excluded Paths" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:7 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:8 msgid "Disable Quick Search Second Scan" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:25 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:9 msgid "" "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:10 msgid "Quick Search Second Scan Excluded Paths" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:30 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:11 msgid "" "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:12 msgid "Search Result Columns Order" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:35 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:13 msgid "" "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:14 msgid "Default Window Width" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:15 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:16 msgid "Default Window Height" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:17 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:18 msgid "Default Window Maximized" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:50 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:19 msgid "" "This key determines if the search tool window starts in a maximized state." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:20 msgid "Look in Folder" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:21 msgid "This key defines the default value of the \"Look in Folder\" widget." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:22 msgid "" "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:23 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:24 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:25 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:26 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:27 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:28 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:29 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:30 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:31 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:32 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:33 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:34 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:35 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:165 +#, c-format msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:188 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:957 #, c-format msgid "Starting %s" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1098 +#, c-format msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1166 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1364 +#, c-format msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1383 +#, c-format msgid "Not a launchable item" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:225 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:228 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:228 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:231 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:231 msgid "ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:252 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:253 msgid "Show session management options" msgstr "" -#: gsearchtool/src/gsearchtool.c:82 +#: ../gsearchtool/src/gsearchtool.c:82 msgid "Contains the _text" msgstr "" -#: gsearchtool/src/gsearchtool.c:84 +#: ../gsearchtool/src/gsearchtool.c:84 msgid "_Date modified less than" msgstr "" -#: gsearchtool/src/gsearchtool.c:84 gsearchtool/src/gsearchtool.c:85 +#: ../gsearchtool/src/gsearchtool.c:84 ../gsearchtool/src/gsearchtool.c:85 msgid "days" msgstr "" -#: gsearchtool/src/gsearchtool.c:85 +#: ../gsearchtool/src/gsearchtool.c:85 msgid "Date modified more than" msgstr "" -#: gsearchtool/src/gsearchtool.c:87 +#: ../gsearchtool/src/gsearchtool.c:87 msgid "S_ize at least" msgstr "" -#: gsearchtool/src/gsearchtool.c:87 gsearchtool/src/gsearchtool.c:88 +#: ../gsearchtool/src/gsearchtool.c:87 ../gsearchtool/src/gsearchtool.c:88 msgid "kilobytes" msgstr "" -#: gsearchtool/src/gsearchtool.c:88 +#: ../gsearchtool/src/gsearchtool.c:88 msgid "Si_ze at most" msgstr "" -#: gsearchtool/src/gsearchtool.c:89 +#: ../gsearchtool/src/gsearchtool.c:89 msgid "File is empty" msgstr "" -#: gsearchtool/src/gsearchtool.c:91 +#: ../gsearchtool/src/gsearchtool.c:91 msgid "Owned by _user" msgstr "" -#: gsearchtool/src/gsearchtool.c:92 +#: ../gsearchtool/src/gsearchtool.c:92 msgid "Owned by _group" msgstr "" -#: gsearchtool/src/gsearchtool.c:93 +#: ../gsearchtool/src/gsearchtool.c:93 msgid "Owner is unrecognized" msgstr "" -#: gsearchtool/src/gsearchtool.c:95 +#: ../gsearchtool/src/gsearchtool.c:95 msgid "Na_me does not contain" msgstr "" -#: gsearchtool/src/gsearchtool.c:96 +#: ../gsearchtool/src/gsearchtool.c:96 msgid "Name matches regular e_xpression" msgstr "" -#: gsearchtool/src/gsearchtool.c:98 +#: ../gsearchtool/src/gsearchtool.c:98 msgid "Show hidden and backup files" msgstr "" -#: gsearchtool/src/gsearchtool.c:99 +#: ../gsearchtool/src/gsearchtool.c:99 msgid "Follow symbolic links" msgstr "" -#: gsearchtool/src/gsearchtool.c:100 +#: ../gsearchtool/src/gsearchtool.c:100 msgid "Exclude other filesystems" msgstr "" -#: gsearchtool/src/gsearchtool.c:158 +#: ../gsearchtool/src/gsearchtool.c:158 msgid "Show version of the application" msgstr "" -#: gsearchtool/src/gsearchtool.c:159 gsearchtool/src/gsearchtool.c:164 -#: gsearchtool/src/gsearchtool.c:173 +#: ../gsearchtool/src/gsearchtool.c:159 ../gsearchtool/src/gsearchtool.c:164 +#: ../gsearchtool/src/gsearchtool.c:173 msgid "STRING" msgstr "" -#: gsearchtool/src/gsearchtool.c:160 +#: ../gsearchtool/src/gsearchtool.c:160 msgid "PATH" msgstr "" -#: gsearchtool/src/gsearchtool.c:161 +#: ../gsearchtool/src/gsearchtool.c:161 msgid "VALUE" msgstr "" -#: gsearchtool/src/gsearchtool.c:165 gsearchtool/src/gsearchtool.c:166 +#: ../gsearchtool/src/gsearchtool.c:165 ../gsearchtool/src/gsearchtool.c:166 msgid "DAYS" msgstr "" -#: gsearchtool/src/gsearchtool.c:167 gsearchtool/src/gsearchtool.c:168 +#: ../gsearchtool/src/gsearchtool.c:167 ../gsearchtool/src/gsearchtool.c:168 msgid "KILOBYTES" msgstr "" -#: gsearchtool/src/gsearchtool.c:170 +#: ../gsearchtool/src/gsearchtool.c:170 msgid "USER" msgstr "" -#: gsearchtool/src/gsearchtool.c:171 +#: ../gsearchtool/src/gsearchtool.c:171 msgid "GROUP" msgstr "" -#: gsearchtool/src/gsearchtool.c:174 +#: ../gsearchtool/src/gsearchtool.c:174 msgid "PATTERN" msgstr "" -#: gsearchtool/src/gsearchtool.c:385 +#: ../gsearchtool/src/gsearchtool.c:385 msgid "A locate database has probably not been created." msgstr "" -#: gsearchtool/src/gsearchtool.c:487 +#: ../gsearchtool/src/gsearchtool.c:487 #, c-format msgid "Character set conversion failed for \"%s\"" msgstr "" -#: gsearchtool/src/gsearchtool.c:511 +#: ../gsearchtool/src/gsearchtool.c:511 msgid "Searching..." msgstr "" -#: gsearchtool/src/gsearchtool.c:511 gsearchtool/src/gsearchtool.c:1048 -#: gsearchtool/src/gsearchtool.c:3078 +#: ../gsearchtool/src/gsearchtool.c:511 ../gsearchtool/src/gsearchtool.c:1031 +#: ../gsearchtool/src/gsearchtool.c:3062 msgid "Search for Files" msgstr "" -#: gsearchtool/src/gsearchtool.c:994 gsearchtool/src/gsearchtool.c:1023 +#: ../gsearchtool/src/gsearchtool.c:977 ../gsearchtool/src/gsearchtool.c:1006 msgid "No files found" msgstr "" -#: gsearchtool/src/gsearchtool.c:1016 +#: ../gsearchtool/src/gsearchtool.c:999 msgid "(stopped)" msgstr "" -#: gsearchtool/src/gsearchtool.c:1022 +#: ../gsearchtool/src/gsearchtool.c:1005 msgid "No Files Found" msgstr "" -#: gsearchtool/src/gsearchtool.c:1027 +#: ../gsearchtool/src/gsearchtool.c:1010 #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 +#: ../gsearchtool/src/gsearchtool.c:1014 ../gsearchtool/src/gsearchtool.c:1052 #, c-format msgid "%'d file found" msgid_plural "%'d files found" msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool.c:1160 +#: ../gsearchtool/src/gsearchtool.c:1143 msgid "Entry changed called for a non entry option!" msgstr "" -#: gsearchtool/src/gsearchtool.c:1325 +#: ../gsearchtool/src/gsearchtool.c:1308 msgid "Set the text of \"Name contains\" search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:1326 +#: ../gsearchtool/src/gsearchtool.c:1309 msgid "Set the text of \"Look in folder\" search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:1327 +#: ../gsearchtool/src/gsearchtool.c:1310 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -#: gsearchtool/src/gsearchtool.c:1328 +#: ../gsearchtool/src/gsearchtool.c:1311 msgid "Set sort order to descending, the default is ascending" msgstr "" -#: gsearchtool/src/gsearchtool.c:1329 +#: ../gsearchtool/src/gsearchtool.c:1312 msgid "Automatically start a search" msgstr "" -#: gsearchtool/src/gsearchtool.c:1335 +#: ../gsearchtool/src/gsearchtool.c:1318 #, c-format msgid "Select the \"%s\" search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:1338 +#: ../gsearchtool/src/gsearchtool.c:1321 #, c-format msgid "Select and set the \"%s\" search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:1445 +#: ../gsearchtool/src/gsearchtool.c:1428 msgid "Invalid option passed to sortby command line argument." msgstr "" -#: gsearchtool/src/gsearchtool.c:1737 +#: ../gsearchtool/src/gsearchtool.c:1720 msgid "" "\n" "... Too many errors to display ..." msgstr "" -#: gsearchtool/src/gsearchtool.c:1751 +#: ../gsearchtool/src/gsearchtool.c:1734 msgid "" "The search results may be invalid. There were errors while performing this " "search." msgstr "" -#: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 +#: ../gsearchtool/src/gsearchtool.c:1746 ../gsearchtool/src/gsearchtool.c:1790 msgid "Show more _details" msgstr "" -#: gsearchtool/src/gsearchtool.c:1793 +#: ../gsearchtool/src/gsearchtool.c:1776 msgid "" "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -#: gsearchtool/src/gsearchtool.c:1818 +#: ../gsearchtool/src/gsearchtool.c:1801 msgid "Disable _Quick Search" msgstr "" -#: gsearchtool/src/gsearchtool.c:1845 +#: ../gsearchtool/src/gsearchtool.c:1828 #, c-format msgid "Failed to set process group id of child %d: %s.\n" msgstr "" -#: gsearchtool/src/gsearchtool.c:1870 +#: ../gsearchtool/src/gsearchtool.c:1853 msgid "Error parsing the search command." msgstr "" -#: gsearchtool/src/gsearchtool.c:1902 +#: ../gsearchtool/src/gsearchtool.c:1885 msgid "Error running the search command." msgstr "" -#: gsearchtool/src/gsearchtool.c:2025 +#: ../gsearchtool/src/gsearchtool.c:2008 #, c-format msgid "Enter a text value for the \"%s\" search option." msgstr "" #. Translators: Below is a string displaying the search options name #. and unit value. For example, "\"Date modified less than\" in days". -#: gsearchtool/src/gsearchtool.c:2030 +#: ../gsearchtool/src/gsearchtool.c:2013 #, c-format msgid "\"%s\" in %s" msgstr "" -#: gsearchtool/src/gsearchtool.c:2032 +#: ../gsearchtool/src/gsearchtool.c:2015 #, c-format msgid "Enter a value in %s for the \"%s\" search option." msgstr "" -#: gsearchtool/src/gsearchtool.c:2095 +#: ../gsearchtool/src/gsearchtool.c:2078 #, c-format msgid "Remove \"%s\"" msgstr "" -#: gsearchtool/src/gsearchtool.c:2096 +#: ../gsearchtool/src/gsearchtool.c:2079 #, c-format msgid "Click to remove the \"%s\" search option." msgstr "" -#: gsearchtool/src/gsearchtool.c:2189 +#: ../gsearchtool/src/gsearchtool.c:2172 msgid "A_vailable options:" msgstr "" -#: gsearchtool/src/gsearchtool.c:2218 +#: ../gsearchtool/src/gsearchtool.c:2201 msgid "Available options" msgstr "" -#: gsearchtool/src/gsearchtool.c:2219 +#: ../gsearchtool/src/gsearchtool.c:2202 msgid "Select a search option from the drop-down list." msgstr "" -#: gsearchtool/src/gsearchtool.c:2236 +#: ../gsearchtool/src/gsearchtool.c:2219 msgid "Add search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:2237 +#: ../gsearchtool/src/gsearchtool.c:2220 msgid "Click to add the selected available search option." msgstr "" -#: gsearchtool/src/gsearchtool.c:2326 +#: ../gsearchtool/src/gsearchtool.c:2309 msgid "S_earch results:" msgstr "" -#: gsearchtool/src/gsearchtool.c:2369 +#: ../gsearchtool/src/gsearchtool.c:2352 msgid "List View" msgstr "" -#: gsearchtool/src/gsearchtool.c:2429 -#: mate-dictionary/libgdict/gdict-source.c:243 +#: ../gsearchtool/src/gsearchtool.c:2412 +#: ../mate-dictionary/libgdict/gdict-source.c:246 msgid "Name" msgstr "Nombre" -#: gsearchtool/src/gsearchtool.c:2478 +#: ../gsearchtool/src/gsearchtool.c:2461 msgid "Type" msgstr "" -#: gsearchtool/src/gsearchtool.c:2490 +#: ../gsearchtool/src/gsearchtool.c:2473 msgid "Date Modified" msgstr "" -#: gsearchtool/src/gsearchtool.c:2820 +#: ../gsearchtool/src/gsearchtool.c:2808 msgid "_Name contains:" msgstr "" -#: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 +#: ../gsearchtool/src/gsearchtool.c:2823 ../gsearchtool/src/gsearchtool.c:2824 msgid "Enter a filename or partial filename with or without wildcards." msgstr "" -#: gsearchtool/src/gsearchtool.c:2836 +#: ../gsearchtool/src/gsearchtool.c:2824 msgid "Name contains" msgstr "" -#: gsearchtool/src/gsearchtool.c:2842 +#: ../gsearchtool/src/gsearchtool.c:2830 msgid "_Look in folder:" msgstr "" -#: gsearchtool/src/gsearchtool.c:2848 +#: ../gsearchtool/src/gsearchtool.c:2836 msgid "Browse" msgstr "" -#: gsearchtool/src/gsearchtool.c:2858 +#: ../gsearchtool/src/gsearchtool.c:2846 msgid "Look in folder" msgstr "" -#: gsearchtool/src/gsearchtool.c:2858 +#: ../gsearchtool/src/gsearchtool.c:2846 msgid "Select the folder or device from which you want to begin the search." msgstr "" -#: gsearchtool/src/gsearchtool.c:2876 +#: ../gsearchtool/src/gsearchtool.c:2864 msgid "Select more _options" msgstr "" -#: gsearchtool/src/gsearchtool.c:2885 +#: ../gsearchtool/src/gsearchtool.c:2873 msgid "Select more options" msgstr "" -#: gsearchtool/src/gsearchtool.c:2885 +#: ../gsearchtool/src/gsearchtool.c:2873 msgid "Click to expand or collapse the list of available options." msgstr "" -#: gsearchtool/src/gsearchtool.c:2916 +#: ../gsearchtool/src/gsearchtool.c:2904 msgid "Click to display the help manual." msgstr "" -#: gsearchtool/src/gsearchtool.c:2929 +#: ../gsearchtool/src/gsearchtool.c:2917 msgid "Click to close \"Search for Files\"." msgstr "" -#: gsearchtool/src/gsearchtool.c:2964 +#: ../gsearchtool/src/gsearchtool.c:2952 msgid "Click to perform a search." msgstr "" -#: gsearchtool/src/gsearchtool.c:2965 +#: ../gsearchtool/src/gsearchtool.c:2953 msgid "Click to stop a search." msgstr "" -#: gsearchtool/src/gsearchtool.c:3061 +#: ../gsearchtool/src/gsearchtool.c:3047 msgid "- the MATE Search Tool" msgstr "" -#: gsearchtool/src/gsearchtool.c:3072 +#: ../gsearchtool/src/gsearchtool.c:3056 #, c-format msgid "Failed to parse command line arguments: %s\n" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:192 +#: ../gsearchtool/src/gsearchtool-callbacks.c:199 msgid "Could not open help document." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:343 +#: ../gsearchtool/src/gsearchtool-callbacks.c:350 #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool-callbacks.c:348 -#: gsearchtool/src/gsearchtool-callbacks.c:548 +#: ../gsearchtool/src/gsearchtool-callbacks.c:355 +#: ../gsearchtool/src/gsearchtool-callbacks.c:557 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool-callbacks.c:393 +#: ../gsearchtool/src/gsearchtool-callbacks.c:400 #, c-format msgid "Could not open document \"%s\"." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:422 +#: ../gsearchtool/src/gsearchtool-callbacks.c:429 #, c-format msgid "Could not open folder \"%s\"." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:430 +#: ../gsearchtool/src/gsearchtool-callbacks.c:437 msgid "The caja file manager is not running." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:521 +#: ../gsearchtool/src/gsearchtool-callbacks.c:529 msgid "There is no installed viewer capable of displaying the document." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:543 +#: ../gsearchtool/src/gsearchtool-callbacks.c:552 #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool-callbacks.c:725 +#: ../gsearchtool/src/gsearchtool-callbacks.c:710 #, c-format msgid "Could not move \"%s\" to trash." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:756 +#: ../gsearchtool/src/gsearchtool-callbacks.c:741 #, c-format msgid "Do you want to delete \"%s\" permanently?" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:759 +#: ../gsearchtool/src/gsearchtool-callbacks.c:744 #, c-format msgid "Trash is unavailable. Could not move \"%s\" to the trash." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:803 +#: ../gsearchtool/src/gsearchtool-callbacks.c:788 #, c-format msgid "Could not delete \"%s\"." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:915 +#: ../gsearchtool/src/gsearchtool-callbacks.c:900 #, c-format msgid "Deleting \"%s\" failed: %s." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:927 +#: ../gsearchtool/src/gsearchtool-callbacks.c:912 #, c-format msgid "Moving \"%s\" failed: %s." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1143 -#: gsearchtool/src/gsearchtool-callbacks.c:1169 +#. Popup menu item: Open +#: ../gsearchtool/src/gsearchtool-callbacks.c:1040 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1070 msgid "_Open" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1199 +#. Popup menu item: Open with (default) +#: ../gsearchtool/src/gsearchtool-callbacks.c:1095 #, c-format msgid "_Open with %s" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1220 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1130 #, c-format msgid "Open with %s" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1249 +#. Popup menu item: Open With +#: ../gsearchtool/src/gsearchtool-callbacks.c:1163 msgid "Open Wit_h" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1299 +#. Popup menu item: Open Containing Folder +#: ../gsearchtool/src/gsearchtool-callbacks.c:1208 msgid "Open Containing _Folder" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1310 -msgid "Copy _Path" -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1344 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1248 msgid "_Save Results As..." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1722 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1633 msgid "Save Search Results As..." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1751 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1662 msgid "Could not save document." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1752 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1663 msgid "You did not select a document name." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1782 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1693 #, c-format msgid "Could not save \"%s\" document to \"%s\"." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1815 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1726 #, c-format msgid "The document \"%s\" already exists. Would you like to replace it?" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1819 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1730 msgid "If you replace an existing file, its contents will be overwritten." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1834 -#: mate-screenshot/src/screenshot-xfer.c:84 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1745 +#: ../mate-screenshot/src/screenshot-xfer.c:82 msgid "_Replace" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1883 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1794 msgid "The document name you selected is a folder." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1919 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1830 msgid "You may not have write permissions to the document." msgstr "" -#: gsearchtool/src/gsearchtool-support.c:427 +#. Translators: Below are the strings displayed in the 'Date Modified' +#. column of the list view. The format of this string can vary depending +#. on age of a file. Please modify the format of the timestamp to match +#. your locale. For example, to display 24 hour time replace the '%-I' +#. with '%-H' and remove the '%p'. (See bugzilla report #120434.) +#: ../gsearchtool/src/gsearchtool-support.c:448 msgid "today at %-I:%M %p" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:429 +#: ../gsearchtool/src/gsearchtool-support.c:450 msgid "yesterday at %-I:%M %p" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:431 +#: ../gsearchtool/src/gsearchtool-support.c:452 +#: ../gsearchtool/src/gsearchtool-support.c:454 msgid "%A, %B %-d %Y at %-I:%M:%S %p" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:478 +#: ../gsearchtool/src/gsearchtool-support.c:641 msgid "link (broken)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:482 +#: ../gsearchtool/src/gsearchtool-support.c:645 #, c-format msgid "link to %s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1101 +#. START OF CAJA/EEL FUNCTIONS: USED FOR HANDLING OF DUPLICATE FILENAMES +#. Localizers: +#. * Feel free to leave out the st, nd, rd and th suffix or +#. * make some or all of them match. +#. localizers: tag used to detect the first copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1260 msgid " (copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1103 +#. localizers: tag used to detect the second copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1262 msgid " (another copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1106 -#: gsearchtool/src/gsearchtool-support.c:1108 -#: gsearchtool/src/gsearchtool-support.c:1110 -#: gsearchtool/src/gsearchtool-support.c:1120 +#. localizers: tag used to detect the x11th copy of a file +#. localizers: tag used to detect the x12th copy of a file +#. localizers: tag used to detect the x13th copy of a file +#. localizers: tag used to detect the xxth copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1265 +#: ../gsearchtool/src/gsearchtool-support.c:1267 +#: ../gsearchtool/src/gsearchtool-support.c:1269 +#: ../gsearchtool/src/gsearchtool-support.c:1279 msgid "th copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1113 +#. localizers: tag used to detect the x1st copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1272 msgid "st copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1115 +#. localizers: tag used to detect the x2nd copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1274 msgid "nd copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1117 +#. localizers: tag used to detect the x3rd copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1276 msgid "rd copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1134 +#. localizers: appended to first file copy +#: ../gsearchtool/src/gsearchtool-support.c:1293 #, c-format msgid "%s (copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1136 +#. localizers: appended to second file copy +#: ../gsearchtool/src/gsearchtool-support.c:1295 #, c-format msgid "%s (another copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1139 -#: gsearchtool/src/gsearchtool-support.c:1141 -#: gsearchtool/src/gsearchtool-support.c:1143 -#: gsearchtool/src/gsearchtool-support.c:1152 +#. localizers: appended to x11th file copy +#. localizers: appended to x12th file copy +#. localizers: appended to x13th file copy +#. localizers: appended to xxth file copy +#: ../gsearchtool/src/gsearchtool-support.c:1298 +#: ../gsearchtool/src/gsearchtool-support.c:1300 +#: ../gsearchtool/src/gsearchtool-support.c:1302 +#: ../gsearchtool/src/gsearchtool-support.c:1311 #, c-format msgid "%s (%dth copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1146 +#. localizers: appended to x1st file copy +#: ../gsearchtool/src/gsearchtool-support.c:1305 #, c-format msgid "%s (%dst copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1148 +#. localizers: appended to x2nd file copy +#: ../gsearchtool/src/gsearchtool-support.c:1307 #, c-format msgid "%s (%dnd copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1150 +#. localizers: appended to x3rd file copy +#: ../gsearchtool/src/gsearchtool-support.c:1309 #, c-format msgid "%s (%drd copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1197 +#: ../gsearchtool/src/gsearchtool-support.c:1356 msgid " (invalid Unicode)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1286 +#. localizers: opening parentheses to match the "th copy)" string +#: ../gsearchtool/src/gsearchtool-support.c:1445 msgid " (" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1294 +#. localizers: opening parentheses of the "th copy)" string +#: ../gsearchtool/src/gsearchtool-support.c:1453 #, c-format msgid " (%d" msgstr "" -#: logview/data/mate-system-log.desktop.in.in:3 +#: ../logview/data/mate-system-log.desktop.in.in.h:1 msgid "Log File Viewer" msgstr "" -#: logview/data/mate-system-log.desktop.in.in:4 +#: ../logview/data/mate-system-log.desktop.in.in.h:2 msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: logview/data/mate-system-log.desktop.in.in:13 -msgid "MATE;monitor;view;system;log;files;logviewer;" -msgstr "" - -#: logview/data/org.mate.system-log.gschema.xml.in:5 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:1 msgid "Log file to open up on startup" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:6 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:2 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:10 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:3 msgid "Size of the font used to display the log" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:11 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:4 msgid "" "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:15 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:5 msgid "Height of the main window in pixels" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:16 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:6 msgid "Specifies the height of the log viewer main window in pixels." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:20 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:7 msgid "Width of the main window in pixels" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:21 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:8 msgid "Specifies the width of the log viewer main window in pixels." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:25 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:9 msgid "Log files to open up on startup" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:26 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:10 msgid "" "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:30 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:11 msgid "List of saved filters" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:31 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:12 msgid "List of saved regexp filters" msgstr "" -#: logview/data/logview-filter.ui:32 mate-disk-image-mounter/src/main.c:124 -#: mate-screenshot/data/mate-screenshot.ui:92 -msgid "_Cancel" -msgstr "" - -#: logview/data/logview-filter.ui:48 -msgid "_Apply" -msgstr "" - -#: logview/data/logview-filter.ui:91 -#: mate-screenshot/data/mate-screenshot.ui:178 +#: ../logview/data/logview-filter.ui.h:1 +#: ../mate-screenshot/data/mate-screenshot.ui.h:3 msgid "_Name:" msgstr "" -#: logview/data/logview-filter.ui:108 +#: ../logview/data/logview-filter.ui.h:2 msgid "_Regular Expression:" msgstr "" -#: logview/data/logview-filter.ui:180 +#: ../logview/data/logview-filter.ui.h:3 msgid "Highlight" msgstr "" -#: logview/data/logview-filter.ui:205 -msgid "Foreground:" +#: ../logview/data/logview-filter.ui.h:4 +msgid "Hide" msgstr "" -#: logview/data/logview-filter.ui:220 -msgid "Background:" +#: ../logview/data/logview-filter.ui.h:5 +msgid "Foreground:" msgstr "" -#: logview/data/logview-filter.ui:274 -msgid "Hide" +#: ../logview/data/logview-filter.ui.h:6 +msgid "Background:" msgstr "" -#: logview/data/logview-filter.ui:296 +#: ../logview/data/logview-filter.ui.h:7 msgid "Effect:" msgstr "" -#: logview/src/logview-about.h:41 mate-dictionary/src/gdict-about.c:46 -msgid "Sun GNOME Documentation Team " -msgstr "" - -#: logview/src/logview-app.c:369 +#: ../logview/src/logview-app.c:377 #, c-format msgid "Impossible to open the file %s" msgstr "" -#: logview/src/logview-filter-manager.c:93 +#: ../logview/src/logview-filter-manager.c:94 msgid "Filter name is empty!" msgstr "" -#: logview/src/logview-filter-manager.c:106 +#: ../logview/src/logview-filter-manager.c:107 msgid "Filter name may not contain the ':' character" msgstr "" -#: logview/src/logview-filter-manager.c:129 +#: ../logview/src/logview-filter-manager.c:130 msgid "Regular expression is empty!" msgstr "" -#: logview/src/logview-filter-manager.c:145 +#: ../logview/src/logview-filter-manager.c:146 #, c-format msgid "Regular expression is invalid: %s" msgstr "" -#: logview/src/logview-filter-manager.c:207 +#: ../logview/src/logview-filter-manager.c:242 msgid "Please specify either foreground or background color!" msgstr "" -#: logview/src/logview-filter-manager.c:282 +#: ../logview/src/logview-filter-manager.c:296 msgid "Edit filter" msgstr "" -#: logview/src/logview-filter-manager.c:282 +#: ../logview/src/logview-filter-manager.c:296 msgid "Add new filter" msgstr "" -#: logview/src/logview-filter-manager.c:469 +#: ../logview/src/logview-filter-manager.c:524 msgid "Filters" msgstr "" -#: logview/src/logview-findbar.c:169 +#: ../logview/src/logview-findbar.c:172 msgid "_Find:" msgstr "_Buscar:" -#: logview/src/logview-findbar.c:184 +#: ../logview/src/logview-findbar.c:187 msgid "Find Previous" msgstr "" -#: logview/src/logview-findbar.c:187 +#: ../logview/src/logview-findbar.c:190 msgid "Find previous occurrence of the search string" msgstr "" -#: logview/src/logview-findbar.c:192 +#: ../logview/src/logview-findbar.c:195 msgid "Find Next" msgstr "" -#: logview/src/logview-findbar.c:195 +#: ../logview/src/logview-findbar.c:198 msgid "Find next occurrence of the search string" msgstr "" -#: logview/src/logview-findbar.c:202 +#: ../logview/src/logview-findbar.c:205 msgid "Clear the search string" msgstr "" -#: logview/src/logview-log.c:589 +#: ../logview/src/logview-log.c:598 msgid "Error while uncompressing the GZipped log. The file might be corrupt." msgstr "" -#: logview/src/logview-log.c:635 +#: ../logview/src/logview-log.c:645 msgid "You don't have enough permissions to read the file." msgstr "" -#: logview/src/logview-log.c:650 +#: ../logview/src/logview-log.c:660 msgid "The file is not a regular file or is not a text file." msgstr "" -#: logview/src/logview-log.c:743 +#: ../logview/src/logview-log.c:742 msgid "This version of System Log does not support GZipped logs." msgstr "" -#: logview/src/logview-loglist.c:103 -msgid "%A, %e %b" -msgstr "" - -#: logview/src/logview-loglist.c:314 +#: ../logview/src/logview-loglist.c:316 msgid "Loading..." msgstr "" -#: logview/src/logview-main.c:48 -#, c-format -msgid "" -"%s - Version %s\n" -"Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n" -"Copyright (C) 2011-2021 MATE developers.\n" -msgstr "" - -#: logview/src/logview-main.c:64 +#: ../logview/src/logview-main.c:61 msgid "Show the application's version" msgstr "" -#: logview/src/logview-main.c:66 +#: ../logview/src/logview-main.c:63 msgid "[LOGFILE...]" msgstr "" -#: logview/src/logview-main.c:70 +#: ../logview/src/logview-main.c:67 msgid " - Browse and monitor logs" msgstr "" -#: logview/src/logview-main.c:107 +#: ../logview/src/logview-main.c:100 msgid "Log Viewer" msgstr "" -#: logview/src/logview-window.c:41 logview/src/logview-window.c:771 +#: ../logview/src/logview-window.c:38 ../logview/src/logview-window.c:767 msgid "System Log Viewer" msgstr "" -#: logview/src/logview-window.c:216 +#: ../logview/src/logview-window.c:217 #, c-format msgid "last update: %s" msgstr "" -#: logview/src/logview-window.c:220 +#: ../logview/src/logview-window.c:221 #, c-format msgid "%d lines (%s) - %s" msgstr "" -#: logview/src/logview-window.c:325 +#: ../logview/src/logview-window.c:325 msgid "Open Log" msgstr "" -#: logview/src/logview-window.c:364 +#: ../logview/src/logview-window.c:364 #, c-format msgid "There was an error displaying help: %s" msgstr "Hubo un error al mostrar la ayuda: %s" -#: logview/src/logview-window.c:478 +#: ../logview/src/logview-window.c:478 msgid "Wrapped" msgstr "" -#: logview/src/logview-window.c:493 -#: mate-dictionary/libgdict/gdict-defbox.c:1125 -#: mate-dictionary/libgdict/gdict-defbox.c:1219 -#: mate-dictionary/libgdict/gdict-defbox.c:1253 +#: ../logview/src/logview-window.c:493 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1127 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1221 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1255 msgid "Not found" msgstr "" -#: logview/src/logview-window.c:773 -msgid "About System Log Viewer" -msgstr "" - -#: logview/src/logview-window.c:774 -msgid "" -"Copyright © 1998-2008 Free Software Foundation, Inc.\n" -"Copyright © 2011-2021 MATE developers" -msgstr "" - -#: logview/src/logview-window.c:778 -msgid "View, monitor or analyze your system logs in a gradual manner." +#: ../logview/src/logview-window.c:773 +msgid "A system log viewer for MATE." msgstr "" -#: logview/src/logview-window.c:821 mate-dictionary/src/gdict-window.c:1258 +#: ../logview/src/logview-window.c:816 +#: ../mate-dictionary/src/gdict-window.c:1287 msgid "_File" msgstr "" -#: logview/src/logview-window.c:824 +#: ../logview/src/logview-window.c:819 msgid "_Filters" msgstr "" -#: logview/src/logview-window.c:827 +#: ../logview/src/logview-window.c:822 msgid "_Open..." msgstr "" -#: logview/src/logview-window.c:827 +#: ../logview/src/logview-window.c:822 msgid "Open a log from file" msgstr "" -#: logview/src/logview-window.c:829 +#: ../logview/src/logview-window.c:824 +#: ../mate-dictionary/src/gdict-window.c:1302 +msgid "_Close" +msgstr "" + +#: ../logview/src/logview-window.c:824 msgid "Close this log" msgstr "" -#: logview/src/logview-window.c:831 +#: ../logview/src/logview-window.c:826 msgid "_Quit" msgstr "" -#: logview/src/logview-window.c:831 +#: ../logview/src/logview-window.c:826 msgid "Quit the log viewer" msgstr "" -#: logview/src/logview-window.c:834 mate-dictionary/src/gdict-window.c:1277 +#. Edit menu +#: ../logview/src/logview-window.c:829 +#: ../mate-dictionary/src/gdict-window.c:1306 msgid "_Copy" msgstr "" -#: logview/src/logview-window.c:834 +#: ../logview/src/logview-window.c:829 msgid "Copy the selection" msgstr "" -#: logview/src/logview-window.c:836 mate-dictionary/src/gdict-window.c:1279 +#: ../logview/src/logview-window.c:831 +#: ../mate-dictionary/src/gdict-window.c:1308 msgid "Select _All" msgstr "" -#: logview/src/logview-window.c:836 +#: ../logview/src/logview-window.c:831 msgid "Select the entire log" msgstr "" -#: logview/src/logview-window.c:838 +#: ../logview/src/logview-window.c:833 msgid "_Find..." msgstr "" -#: logview/src/logview-window.c:838 +#: ../logview/src/logview-window.c:833 msgid "Find a word or phrase in the log" msgstr "" -#: logview/src/logview-window.c:841 +#: ../logview/src/logview-window.c:836 msgid "Zoom _In" msgstr "" -#: logview/src/logview-window.c:841 +#: ../logview/src/logview-window.c:836 msgid "Bigger text size" msgstr "" -#: logview/src/logview-window.c:843 +#: ../logview/src/logview-window.c:838 msgid "Zoom _Out" msgstr "" -#: logview/src/logview-window.c:843 +#: ../logview/src/logview-window.c:838 msgid "Smaller text size" msgstr "" -#: logview/src/logview-window.c:845 +#: ../logview/src/logview-window.c:840 msgid "_Normal Size" msgstr "" -#: logview/src/logview-window.c:845 +#: ../logview/src/logview-window.c:840 msgid "Normal text size" msgstr "" -#: logview/src/logview-window.c:848 +#: ../logview/src/logview-window.c:843 msgid "Manage Filters" msgstr "" -#: logview/src/logview-window.c:848 +#: ../logview/src/logview-window.c:843 msgid "Manage filters" msgstr "" -#: logview/src/logview-window.c:851 +#: ../logview/src/logview-window.c:846 msgid "Open the help contents for the log viewer" msgstr "" -#: logview/src/logview-window.c:853 mate-dictionary/src/gdict-applet.c:1176 -#: mate-dictionary/src/gdict-window.c:1314 +#: ../logview/src/logview-window.c:848 +#: ../mate-dictionary/src/gdict-applet.c:1190 +#: ../mate-dictionary/src/gdict-window.c:1343 msgid "_About" msgstr "Acerca _de" -#: logview/src/logview-window.c:853 +#: ../logview/src/logview-window.c:848 msgid "Show the about dialog for the log viewer" msgstr "" -#: logview/src/logview-window.c:858 +#: ../logview/src/logview-window.c:853 msgid "_Statusbar" msgstr "" -#: logview/src/logview-window.c:858 +#: ../logview/src/logview-window.c:853 msgid "Show Status Bar" msgstr "" -#: logview/src/logview-window.c:860 +#: ../logview/src/logview-window.c:855 msgid "Side _Pane" msgstr "" -#: logview/src/logview-window.c:860 +#: ../logview/src/logview-window.c:855 msgid "Show Side Pane" msgstr "" -#: logview/src/logview-window.c:862 +#: ../logview/src/logview-window.c:857 msgid "Show matches only" msgstr "" -#: logview/src/logview-window.c:862 +#: ../logview/src/logview-window.c:857 msgid "Only show lines that match one of the given filters" msgstr "" -#: logview/src/logview-window.c:994 +#: ../logview/src/logview-window.c:989 #, c-format msgid "Can't read from \"%s\"" msgstr "" -#: logview/src/logview-window.c:1419 +#: ../logview/src/logview-window.c:1414 msgid "Version: " msgstr "" -#: logview/src/logview-window.c:1525 +#: ../logview/src/logview-window.c:1522 msgid "Could not open the following files:" msgstr "" -#: mate-dictionary/data/default.desktop.in:3 -msgid "Default" -msgstr "" - -#: mate-dictionary/data/default.desktop.in:4 +#: ../mate-dictionary/data/default.desktop.in.h:1 msgid "Default Dictionary Server" msgstr "" -#: mate-dictionary/data/mate-dictionary.desktop.in.in:3 -#: mate-dictionary/data/mate-dictionary.appdata.xml.in:7 +#: ../mate-dictionary/data/mate-dictionary.desktop.in.in.h:1 msgid "MATE Dictionary" msgstr "" -#: mate-dictionary/data/mate-dictionary.desktop.in.in:4 +#: ../mate-dictionary/data/mate-dictionary.desktop.in.in.h:2 msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: mate-dictionary/data/mate-dictionary.desktop.in.in:13 -msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" -msgstr "" - -#: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 +#: ../mate-dictionary/data/mate-dictionary.appdata.xml.in.h:1 msgid "A dictionary for MATE Desktop" msgstr "" -#: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 +#: ../mate-dictionary/data/mate-dictionary.appdata.xml.in.h:2 msgid "" -"MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " -"query." +"

MATE Dictionary allows you to look up words in on-line dictionaries. It " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " +"query.

" msgstr "" -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 +#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:1 msgid "Dictionary Applet Factory" msgstr "" -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:6 +#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:2 msgid "Factory for the dictionary applet" msgstr "" -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:9 +#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:3 msgid "Dictionary Look up" msgstr "" -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:10 +#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:4 msgid "Look up words in a dictionary" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:6 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:1 msgid "The default database to use" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:7 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:2 msgid "" "The name of the default individual database or meta-database to use on a " "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:3 msgid "The default search strategy to use" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:12 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:4 msgid "" "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:5 msgid "The font to be used when printing" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:17 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:6 msgid "The font to be used when printing a definition." msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:21 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:7 msgid "The name of the dictionary source used" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:8 msgid "" "The name of the dictionary source used to retrieve the definitions of words." msgstr "" -#: mate-dictionary/data/thai.desktop.in:3 -msgid "Thai" -msgstr "" - -#: mate-dictionary/data/thai.desktop.in:4 +#: ../mate-dictionary/data/thai.desktop.in.h:1 msgid "Longdo Thai-English Dictionaries" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:283 +#: ../mate-dictionary/libgdict/gdict-client-context.c:283 msgid "Client Name" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:284 +#: ../mate-dictionary/libgdict/gdict-client-context.c:284 msgid "The name of the client of the context object" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:297 +#: ../mate-dictionary/libgdict/gdict-client-context.c:297 msgid "Hostname" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:298 +#: ../mate-dictionary/libgdict/gdict-client-context.c:298 msgid "The hostname of the dictionary server to connect to" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:311 +#: ../mate-dictionary/libgdict/gdict-client-context.c:311 msgid "Port" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:312 +#: ../mate-dictionary/libgdict/gdict-client-context.c:312 msgid "The port of the dictionary server to connect to" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:327 +#: ../mate-dictionary/libgdict/gdict-client-context.c:327 msgid "Status" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:328 +#: ../mate-dictionary/libgdict/gdict-client-context.c:328 msgid "The status code as returned by the dictionary server" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:772 +#: ../mate-dictionary/libgdict/gdict-client-context.c:777 #, c-format msgid "No connection to the dictionary server at '%s:%d'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1052 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1060 #, c-format msgid "Lookup failed for hostname '%s': no suitable resources found" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1083 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1091 #, c-format msgid "Lookup failed for host '%s': %s" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1117 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1125 #, c-format msgid "Lookup failed for host '%s': host not found" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1169 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1177 #, c-format msgid "" "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1188 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1196 #, c-format msgid "" "Unable to parse the dictionary server reply\n" ": '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1217 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1225 #, c-format msgid "No definitions found for '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1232 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1240 #, c-format msgid "Invalid database '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1247 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1255 #, c-format msgid "Invalid strategy '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1262 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1270 #, c-format msgid "Bad command '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1277 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1285 #, c-format msgid "Bad parameters for command '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1292 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1300 #, c-format msgid "No databases found on dictionary server at '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1307 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1315 #, c-format msgid "No strategies found on dictionary server at '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1732 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1740 #, c-format msgid "Connection failed to the dictionary server at %s:%d" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1771 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1779 #, c-format msgid "" "Error while reading reply from server:\n" "%s" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1844 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1852 #, c-format msgid "Connection timeout for the dictionary server at '%s:%d'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1878 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1886 +#, c-format msgid "No hostname defined for the dictionary server" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1914 -#: mate-dictionary/libgdict/gdict-client-context.c:1929 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1922 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1937 +#, c-format msgid "Unable to create socket" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1955 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1963 #, c-format msgid "Unable to set the channel as non-blocking: %s" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1970 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1978 #, c-format msgid "Unable to connect to the dictionary server at '%s:%d'" msgstr "" -#: mate-dictionary/libgdict/gdict-context.c:220 +#: ../mate-dictionary/libgdict/gdict-context.c:218 msgid "Local Only" msgstr "" -#: mate-dictionary/libgdict/gdict-context.c:221 +#: ../mate-dictionary/libgdict/gdict-context.c:219 msgid "Whether the context uses only local dictionaries or not" msgstr "" -#: mate-dictionary/libgdict/gdict-database-chooser.c:376 +#: ../mate-dictionary/libgdict/gdict-database-chooser.c:379 msgid "Reload the list of available databases" msgstr "" -#: mate-dictionary/libgdict/gdict-database-chooser.c:388 +#: ../mate-dictionary/libgdict/gdict-database-chooser.c:391 msgid "Clear the list of available databases" msgstr "" -#: mate-dictionary/libgdict/gdict-database-chooser.c:836 -#: mate-dictionary/libgdict/gdict-speller.c:773 -#: mate-dictionary/libgdict/gdict-strategy-chooser.c:783 +#: ../mate-dictionary/libgdict/gdict-database-chooser.c:841 +#: ../mate-dictionary/libgdict/gdict-speller.c:773 +#: ../mate-dictionary/libgdict/gdict-strategy-chooser.c:783 msgid "Error while matching" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:1314 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1316 msgid "F_ind:" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:1327 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1329 msgid "_Previous" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:1335 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1337 msgid "_Next" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:2483 +#: ../mate-dictionary/libgdict/gdict-defbox.c:2485 msgid "Error while looking up definition" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:2525 -#: mate-dictionary/libgdict/gdict-speller.c:731 +#: ../mate-dictionary/libgdict/gdict-defbox.c:2527 +#: ../mate-dictionary/libgdict/gdict-speller.c:731 msgid "Another search is in progress" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:2526 -#: mate-dictionary/libgdict/gdict-speller.c:732 +#: ../mate-dictionary/libgdict/gdict-defbox.c:2528 +#: ../mate-dictionary/libgdict/gdict-speller.c:732 msgid "Please wait until the current search ends." msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:2565 +#: ../mate-dictionary/libgdict/gdict-defbox.c:2567 msgid "Error while retrieving the definition" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:229 +#: ../mate-dictionary/libgdict/gdict-source.c:232 msgid "Filename" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:230 +#: ../mate-dictionary/libgdict/gdict-source.c:233 msgid "The filename used by this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:244 +#: ../mate-dictionary/libgdict/gdict-source.c:247 msgid "The display name of this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:257 +#: ../mate-dictionary/libgdict/gdict-source.c:260 msgid "Description" msgstr "Descripción" -#: mate-dictionary/libgdict/gdict-source.c:258 +#: ../mate-dictionary/libgdict/gdict-source.c:261 msgid "The description of this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:271 -#: mate-dictionary/libgdict/gdict-speller.c:375 +#: ../mate-dictionary/libgdict/gdict-source.c:274 +#: ../mate-dictionary/libgdict/gdict-speller.c:375 msgid "Database" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:272 +#: ../mate-dictionary/libgdict/gdict-source.c:275 msgid "The default database of this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:285 -#: mate-dictionary/libgdict/gdict-speller.c:382 +#: ../mate-dictionary/libgdict/gdict-source.c:288 +#: ../mate-dictionary/libgdict/gdict-speller.c:382 msgid "Strategy" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:286 +#: ../mate-dictionary/libgdict/gdict-source.c:289 msgid "The default strategy of this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:299 +#: ../mate-dictionary/libgdict/gdict-source.c:302 msgid "Transport" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:300 +#: ../mate-dictionary/libgdict/gdict-source.c:303 msgid "The transport mechanism used by this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:314 -#: mate-dictionary/libgdict/gdict-speller.c:368 +#: ../mate-dictionary/libgdict/gdict-source.c:317 +#: ../mate-dictionary/libgdict/gdict-speller.c:368 msgid "Context" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:315 +#: ../mate-dictionary/libgdict/gdict-source.c:318 msgid "The GdictContext bound to this source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:408 +#: ../mate-dictionary/libgdict/gdict-source.c:413 #, c-format msgid "Invalid transport type '%d'" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:436 +#: ../mate-dictionary/libgdict/gdict-source.c:441 #, c-format msgid "No '%s' group found inside the dictionary source definition" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:452 -#: mate-dictionary/libgdict/gdict-source.c:476 -#: mate-dictionary/libgdict/gdict-source.c:500 -#: mate-dictionary/libgdict/gdict-source.c:525 +#: ../mate-dictionary/libgdict/gdict-source.c:457 +#: ../mate-dictionary/libgdict/gdict-source.c:481 +#: ../mate-dictionary/libgdict/gdict-source.c:505 +#: ../mate-dictionary/libgdict/gdict-source.c:530 #, c-format msgid "Unable to get the '%s' key inside the dictionary source definition: %s" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:550 +#: ../mate-dictionary/libgdict/gdict-source.c:555 #, c-format msgid "" "Unable to get the '%s' key inside the dictionary source definition file: %s" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:736 +#: ../mate-dictionary/libgdict/gdict-source.c:741 +#, c-format msgid "Dictionary source does not have name" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:745 +#: ../mate-dictionary/libgdict/gdict-source.c:750 #, c-format msgid "Dictionary source '%s' has invalid transport '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-source-chooser.c:283 +#: ../mate-dictionary/libgdict/gdict-source-chooser.c:283 msgid "Reload the list of available sources" msgstr "" -#: mate-dictionary/libgdict/gdict-source-loader.c:163 +#: ../mate-dictionary/libgdict/gdict-source-loader.c:171 msgid "Paths" msgstr "" -#: mate-dictionary/libgdict/gdict-source-loader.c:164 +#: ../mate-dictionary/libgdict/gdict-source-loader.c:172 msgid "Search paths used by this object" msgstr "" -#: mate-dictionary/libgdict/gdict-source-loader.c:176 +#: ../mate-dictionary/libgdict/gdict-source-loader.c:184 msgid "Sources" msgstr "" -#: mate-dictionary/libgdict/gdict-source-loader.c:177 +#: ../mate-dictionary/libgdict/gdict-source-loader.c:185 msgid "Dictionary sources found" msgstr "" -#: mate-dictionary/libgdict/gdict-speller.c:347 +#: ../mate-dictionary/libgdict/gdict-speller.c:347 msgid "Clear the list of similar words" msgstr "" -#: mate-dictionary/libgdict/gdict-speller.c:369 +#: ../mate-dictionary/libgdict/gdict-speller.c:369 msgid "The GdictContext object used to get the word definition" msgstr "" -#: mate-dictionary/libgdict/gdict-speller.c:376 +#: ../mate-dictionary/libgdict/gdict-speller.c:376 msgid "The database used to query the GdictContext" msgstr "" -#: mate-dictionary/libgdict/gdict-speller.c:383 +#: ../mate-dictionary/libgdict/gdict-speller.c:383 msgid "The strategy used to query the GdictContext" msgstr "" -#: mate-dictionary/libgdict/gdict-strategy-chooser.c:358 +#: ../mate-dictionary/libgdict/gdict-strategy-chooser.c:358 msgid "Reload the list of available strategies" msgstr "" -#: mate-dictionary/libgdict/gdict-strategy-chooser.c:370 +#: ../mate-dictionary/libgdict/gdict-strategy-chooser.c:370 msgid "Clear the list of available strategies" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:97 +#: ../mate-dictionary/libgdict/gdict-utils.c:97 msgid "GDict debugging flags to set" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:97 -#: mate-dictionary/libgdict/gdict-utils.c:99 +#: ../mate-dictionary/libgdict/gdict-utils.c:97 +#: ../mate-dictionary/libgdict/gdict-utils.c:99 msgid "FLAGS" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:99 +#: ../mate-dictionary/libgdict/gdict-utils.c:99 msgid "GDict debugging flags to unset" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:153 +#: ../mate-dictionary/libgdict/gdict-utils.c:157 msgid "GDict Options" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:154 +#: ../mate-dictionary/libgdict/gdict-utils.c:158 msgid "Show GDict Options" msgstr "" -#: mate-dictionary/src/gdict-about.c:54 -msgid "Look up words or terms in a dictionary source." +#: ../mate-dictionary/src/gdict-about.c:58 +#: ../mate-dictionary/src/gdict-applet.c:589 +msgid "Look up words in dictionaries" msgstr "" -#: mate-dictionary/src/gdict-about.c:82 mate-dictionary/src/gdict-app.c:363 -#: mate-dictionary/src/gdict-window.c:580 -#: mate-dictionary/src/gdict-window.c:1864 +#: ../mate-dictionary/src/gdict-about.c:79 +#: ../mate-dictionary/src/gdict-app.c:371 +#: ../mate-dictionary/src/gdict-window.c:607 +#: ../mate-dictionary/src/gdict-window.c:1896 msgid "Dictionary" msgstr "" -#: mate-dictionary/src/gdict-about.c:84 -msgid "About Dictionary" -msgstr "" - -#: mate-dictionary/src/gdict-about.c:85 -msgid "" -"Copyright © 2005-2006 Emmanuele Bassi\n" -"Copyright © 2011-2021 MATE developers" -msgstr "" - #. Translators: the first is the word found, the second is the #. * database name and the last is the definition's text; please #. * keep the new lines. -#: mate-dictionary/src/gdict-app.c:207 +#: ../mate-dictionary/src/gdict-app.c:217 #, c-format msgid "" "Definition for '%s'\n" @@ -2356,701 +2311,639 @@ "%s\n" msgstr "" -#: mate-dictionary/src/gdict-app.c:221 +#: ../mate-dictionary/src/gdict-app.c:231 #, c-format msgid "Error: %s\n" msgstr "" -#: mate-dictionary/src/gdict-app.c:247 +#: ../mate-dictionary/src/gdict-app.c:257 +#, c-format msgid "See mate-dictionary --help for usage\n" msgstr "" -#: mate-dictionary/src/gdict-app.c:260 +#: ../mate-dictionary/src/gdict-app.c:270 msgid "Unable to find a suitable dictionary source" msgstr "" -#: mate-dictionary/src/gdict-app.c:294 +#: ../mate-dictionary/src/gdict-app.c:304 #, c-format msgid "" "Error while looking up the definition of \"%s\":\n" "%s" msgstr "" -#: mate-dictionary/src/gdict-app.c:323 mate-dictionary/src/gdict-app.c:333 +#: ../mate-dictionary/src/gdict-app.c:333 +#: ../mate-dictionary/src/gdict-app.c:343 msgid "Words to look up" msgstr "" -#: mate-dictionary/src/gdict-app.c:323 mate-dictionary/src/gdict-app.c:325 -#: mate-dictionary/src/gdict-app.c:333 +#: ../mate-dictionary/src/gdict-app.c:333 +#: ../mate-dictionary/src/gdict-app.c:335 +#: ../mate-dictionary/src/gdict-app.c:343 msgid "word" msgstr "" -#: mate-dictionary/src/gdict-app.c:325 +#: ../mate-dictionary/src/gdict-app.c:335 msgid "Words to match" msgstr "" -#: mate-dictionary/src/gdict-app.c:327 +#: ../mate-dictionary/src/gdict-app.c:337 msgid "Dictionary source to use" msgstr "" -#: mate-dictionary/src/gdict-app.c:327 +#: ../mate-dictionary/src/gdict-app.c:337 msgid "source" msgstr "" -#: mate-dictionary/src/gdict-app.c:329 +#: ../mate-dictionary/src/gdict-app.c:339 msgid "Print result to the console" msgstr "" -#: mate-dictionary/src/gdict-app.c:331 +#: ../mate-dictionary/src/gdict-app.c:341 msgid "Database to use" msgstr "" -#: mate-dictionary/src/gdict-app.c:331 +#: ../mate-dictionary/src/gdict-app.c:341 msgid "db" msgstr "" -#: mate-dictionary/src/gdict-app.c:343 +#. create the new option context +#: ../mate-dictionary/src/gdict-app.c:353 msgid " - Look up words in dictionaries" msgstr "" -#: mate-dictionary/src/gdict-applet.c:194 -#: mate-dictionary/src/gdict-window.c:935 +#: ../mate-dictionary/src/gdict-applet.c:206 +#: ../mate-dictionary/src/gdict-window.c:964 msgid "Save a Copy" msgstr "" -#: mate-dictionary/src/gdict-applet.c:204 -#: mate-dictionary/src/gdict-window.c:945 +#: ../mate-dictionary/src/gdict-applet.c:216 +#: ../mate-dictionary/src/gdict-window.c:974 msgid "Untitled document" msgstr "" -#: mate-dictionary/src/gdict-applet.c:225 -#: mate-dictionary/src/gdict-window.c:966 +#: ../mate-dictionary/src/gdict-applet.c:237 +#: ../mate-dictionary/src/gdict-window.c:995 #, c-format msgid "Error while writing to '%s'" msgstr "" -#: mate-dictionary/src/gdict-applet.c:350 +#: ../mate-dictionary/src/gdict-applet.c:362 msgid "Clear the definitions found" msgstr "" -#: mate-dictionary/src/gdict-applet.c:352 +#: ../mate-dictionary/src/gdict-applet.c:364 msgid "Clear definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:353 +#: ../mate-dictionary/src/gdict-applet.c:365 msgid "Clear the text of the definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:365 +#: ../mate-dictionary/src/gdict-applet.c:377 msgid "Print the definitions found" msgstr "" -#: mate-dictionary/src/gdict-applet.c:367 +#: ../mate-dictionary/src/gdict-applet.c:379 msgid "Print definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:368 +#: ../mate-dictionary/src/gdict-applet.c:380 msgid "Print the text of the definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:380 +#: ../mate-dictionary/src/gdict-applet.c:392 msgid "Save the definitions found" msgstr "" -#: mate-dictionary/src/gdict-applet.c:382 +#: ../mate-dictionary/src/gdict-applet.c:394 msgid "Save definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:383 +#: ../mate-dictionary/src/gdict-applet.c:395 msgid "Save the text of the definition to a file" msgstr "" -#: mate-dictionary/src/gdict-applet.c:520 +#: ../mate-dictionary/src/gdict-applet.c:532 msgid "Click to view the dictionary window" msgstr "" -#: mate-dictionary/src/gdict-applet.c:522 +#: ../mate-dictionary/src/gdict-applet.c:534 msgid "Toggle dictionary window" msgstr "" -#: mate-dictionary/src/gdict-applet.c:523 +#: ../mate-dictionary/src/gdict-applet.c:535 msgid "Show or hide the definition window" msgstr "" -#: mate-dictionary/src/gdict-applet.c:574 +#: ../mate-dictionary/src/gdict-applet.c:586 msgid "Type the word you want to look up" msgstr "" -#: mate-dictionary/src/gdict-applet.c:576 +#: ../mate-dictionary/src/gdict-applet.c:588 msgid "Dictionary entry" msgstr "" -#: mate-dictionary/src/gdict-applet.c:577 -msgid "Look up words in dictionaries" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:705 -#: mate-dictionary/src/gdict-window.c:1077 +#: ../mate-dictionary/src/gdict-applet.c:717 +#: ../mate-dictionary/src/gdict-window.c:1106 msgid "Dictionary Preferences" msgstr "" -#: mate-dictionary/src/gdict-applet.c:729 -#: mate-dictionary/src/gdict-pref-dialog.c:496 -#: mate-dictionary/src/gdict-source-dialog.c:477 -#: mate-dictionary/src/gdict-window.c:1224 +#: ../mate-dictionary/src/gdict-applet.c:741 +#: ../mate-dictionary/src/gdict-pref-dialog.c:498 +#: ../mate-dictionary/src/gdict-source-dialog.c:478 +#: ../mate-dictionary/src/gdict-window.c:1253 +#, c-format msgid "There was an error while displaying help" msgstr "" -#: mate-dictionary/src/gdict-applet.c:868 -#: mate-dictionary/src/gdict-window.c:495 +#: ../mate-dictionary/src/gdict-applet.c:880 +#: ../mate-dictionary/src/gdict-window.c:522 #, c-format msgid "No dictionary source available with name '%s'" msgstr "" -#: mate-dictionary/src/gdict-applet.c:872 -#: mate-dictionary/src/gdict-window.c:499 +#: ../mate-dictionary/src/gdict-applet.c:884 +#: ../mate-dictionary/src/gdict-window.c:526 msgid "Unable to find dictionary source" msgstr "" -#: mate-dictionary/src/gdict-applet.c:888 -#: mate-dictionary/src/gdict-window.c:515 +#: ../mate-dictionary/src/gdict-applet.c:900 +#: ../mate-dictionary/src/gdict-window.c:542 #, c-format msgid "No context available for source '%s'" msgstr "" -#: mate-dictionary/src/gdict-applet.c:892 -#: mate-dictionary/src/gdict-window.c:519 +#: ../mate-dictionary/src/gdict-applet.c:904 +#: ../mate-dictionary/src/gdict-window.c:546 msgid "Unable to create a context" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1158 +#: ../mate-dictionary/src/gdict-applet.c:1172 msgid "_Look Up Selected Text" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1161 +#: ../mate-dictionary/src/gdict-applet.c:1175 msgid "Cl_ear" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1164 +#: ../mate-dictionary/src/gdict-applet.c:1178 msgid "_Print" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1167 -#: mate-screenshot/data/mate-screenshot.ui:109 +#: ../mate-dictionary/src/gdict-applet.c:1181 msgid "_Save" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1170 +#: ../mate-dictionary/src/gdict-applet.c:1184 msgid "Preferences" msgstr "Preferencias" -#: mate-dictionary/src/gdict-common.c:77 +#: ../mate-dictionary/src/gdict-common.c:80 #, c-format msgid "Unable to rename file '%s' to '%s': %s" msgstr "" -#: mate-dictionary/src/gdict-common.c:101 -#: mate-dictionary/src/gdict-common.c:124 +#: ../mate-dictionary/src/gdict-common.c:104 +#: ../mate-dictionary/src/gdict-common.c:127 #, c-format msgid "Unable to create the data directory '%s': %s" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:238 -#: mate-dictionary/src/gdict-pref-dialog.c:427 +#: ../mate-dictionary/src/gdict-pref-dialog.c:240 +#: ../mate-dictionary/src/gdict-pref-dialog.c:429 msgid "Edit Dictionary Source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:302 +#: ../mate-dictionary/src/gdict-pref-dialog.c:304 msgid "Add Dictionary Source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:347 +#: ../mate-dictionary/src/gdict-pref-dialog.c:349 #, c-format msgid "Remove \"%s\"?" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:349 +#: ../mate-dictionary/src/gdict-pref-dialog.c:351 msgid "This will permanently remove the dictionary source from the list." msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:379 +#: ../mate-dictionary/src/gdict-pref-dialog.c:381 #, c-format msgid "Unable to remove source '%s'" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:713 +#: ../mate-dictionary/src/gdict-pref-dialog.c:645 msgid "Add a new dictionary source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:719 +#: ../mate-dictionary/src/gdict-pref-dialog.c:651 msgid "Remove the currently selected dictionary source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:725 +#: ../mate-dictionary/src/gdict-pref-dialog.c:657 msgid "Edit the currently selected dictionary source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:733 +#: ../mate-dictionary/src/gdict-pref-dialog.c:665 msgid "Set the font used for printing the definitions" msgstr "" -#: mate-dictionary/src/gdict-print.c:238 mate-dictionary/src/gdict-print.c:302 +#: ../mate-dictionary/src/gdict-print.c:241 +#: ../mate-dictionary/src/gdict-print.c:305 #, c-format msgid "Unable to display the preview: %s" msgstr "" -#: mate-dictionary/src/gdict-source-dialog.c:339 -#: mate-dictionary/src/gdict-source-dialog.c:432 +#: ../mate-dictionary/src/gdict-source-dialog.c:340 +#: ../mate-dictionary/src/gdict-source-dialog.c:433 msgid "Unable to create a source file" msgstr "" -#: mate-dictionary/src/gdict-source-dialog.c:357 -#: mate-dictionary/src/gdict-source-dialog.c:450 +#: ../mate-dictionary/src/gdict-source-dialog.c:358 +#: ../mate-dictionary/src/gdict-source-dialog.c:451 msgid "Unable to save source file" msgstr "" -#: mate-dictionary/src/gdict-window.c:290 +#: ../mate-dictionary/src/gdict-window.c:317 #, c-format msgid "Searching for '%s'..." msgstr "" -#: mate-dictionary/src/gdict-window.c:322 -#: mate-dictionary/src/gdict-window.c:379 +#: ../mate-dictionary/src/gdict-window.c:349 +#: ../mate-dictionary/src/gdict-window.c:406 msgid "No definitions found" msgstr "" -#: mate-dictionary/src/gdict-window.c:324 +#: ../mate-dictionary/src/gdict-window.c:351 #, c-format msgid "A definition found" msgid_plural "%d definitions found" msgstr[0] "" msgstr[1] "" -#: mate-dictionary/src/gdict-window.c:578 +#: ../mate-dictionary/src/gdict-window.c:605 #, c-format msgid "%s - Dictionary" msgstr "" -#: mate-dictionary/src/gdict-window.c:1261 +#: ../mate-dictionary/src/gdict-window.c:1290 msgid "_Go" msgstr "" -#: mate-dictionary/src/gdict-window.c:1265 -#: mate-screenshot/data/mate-screenshot.ui:58 +#. File menu +#: ../mate-dictionary/src/gdict-window.c:1294 msgid "_New" msgstr "" -#: mate-dictionary/src/gdict-window.c:1266 +#: ../mate-dictionary/src/gdict-window.c:1295 msgid "New look up" msgstr "" -#: mate-dictionary/src/gdict-window.c:1267 +#: ../mate-dictionary/src/gdict-window.c:1296 msgid "_Save a Copy..." msgstr "" -#: mate-dictionary/src/gdict-window.c:1269 +#: ../mate-dictionary/src/gdict-window.c:1298 msgid "P_review..." msgstr "" -#: mate-dictionary/src/gdict-window.c:1270 +#: ../mate-dictionary/src/gdict-window.c:1299 msgid "Preview this document" msgstr "" -#: mate-dictionary/src/gdict-window.c:1271 +#: ../mate-dictionary/src/gdict-window.c:1300 msgid "_Print..." msgstr "" -#: mate-dictionary/src/gdict-window.c:1272 +#: ../mate-dictionary/src/gdict-window.c:1301 msgid "Print this document" msgstr "" -#: mate-dictionary/src/gdict-window.c:1281 +#: ../mate-dictionary/src/gdict-window.c:1310 msgid "_Find" msgstr "" -#: mate-dictionary/src/gdict-window.c:1282 +#: ../mate-dictionary/src/gdict-window.c:1311 msgid "Find a word or phrase in the document" msgstr "" -#: mate-dictionary/src/gdict-window.c:1284 +#: ../mate-dictionary/src/gdict-window.c:1313 msgid "Find Ne_xt" msgstr "" -#: mate-dictionary/src/gdict-window.c:1286 +#: ../mate-dictionary/src/gdict-window.c:1315 msgid "Find Pre_vious" msgstr "" -#: mate-dictionary/src/gdict-window.c:1288 +#: ../mate-dictionary/src/gdict-window.c:1317 msgid "_Preferences" msgstr "Prefere_ncias" -#: mate-dictionary/src/gdict-window.c:1292 +#. Go menu +#: ../mate-dictionary/src/gdict-window.c:1321 msgid "_Previous Definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1293 +#: ../mate-dictionary/src/gdict-window.c:1322 msgid "Go to the previous definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1294 +#: ../mate-dictionary/src/gdict-window.c:1323 msgid "_Next Definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1295 +#: ../mate-dictionary/src/gdict-window.c:1324 msgid "Go to the next definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1296 +#: ../mate-dictionary/src/gdict-window.c:1325 msgid "_First Definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1297 +#: ../mate-dictionary/src/gdict-window.c:1326 msgid "Go to the first definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1298 +#: ../mate-dictionary/src/gdict-window.c:1327 msgid "_Last Definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1299 +#: ../mate-dictionary/src/gdict-window.c:1328 msgid "Go to the last definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1302 +#. View menu +#: ../mate-dictionary/src/gdict-window.c:1331 msgid "Similar _Words" msgstr "" -#: mate-dictionary/src/gdict-window.c:1304 +#: ../mate-dictionary/src/gdict-window.c:1333 msgid "Dictionary Sources" msgstr "" -#: mate-dictionary/src/gdict-window.c:1306 +#: ../mate-dictionary/src/gdict-window.c:1335 msgid "Available _Databases" msgstr "" -#: mate-dictionary/src/gdict-window.c:1308 +#: ../mate-dictionary/src/gdict-window.c:1337 msgid "Available St_rategies" msgstr "" -#: mate-dictionary/src/gdict-window.c:1325 +#. View menu +#: ../mate-dictionary/src/gdict-window.c:1354 msgid "_Sidebar" msgstr "" -#: mate-dictionary/src/gdict-window.c:1327 +#: ../mate-dictionary/src/gdict-window.c:1356 msgid "S_tatusbar" msgstr "" -#: mate-dictionary/src/gdict-window.c:1392 +#: ../mate-dictionary/src/gdict-window.c:1421 #, c-format msgid "Dictionary source `%s' selected" msgstr "" -#: mate-dictionary/src/gdict-window.c:1413 +#: ../mate-dictionary/src/gdict-window.c:1442 #, c-format msgid "Strategy `%s' selected" msgstr "" -#: mate-dictionary/src/gdict-window.c:1433 +#: ../mate-dictionary/src/gdict-window.c:1462 #, c-format msgid "Database `%s' selected" msgstr "" -#: mate-dictionary/src/gdict-window.c:1453 +#: ../mate-dictionary/src/gdict-window.c:1482 #, c-format msgid "Word `%s' selected" msgstr "" -#: mate-dictionary/src/gdict-window.c:1478 +#. speller +#: ../mate-dictionary/src/gdict-window.c:1507 msgid "Double-click on the word to look up" msgstr "" -#: mate-dictionary/src/gdict-window.c:1484 +#. strat-chooser +#: ../mate-dictionary/src/gdict-window.c:1513 msgid "Double-click on the matching strategy to use" msgstr "" -#: mate-dictionary/src/gdict-window.c:1489 +#. source-chooser +#: ../mate-dictionary/src/gdict-window.c:1518 msgid "Double-click on the source to use" msgstr "" -#: mate-dictionary/src/gdict-window.c:1498 +#. db-chooser +#: ../mate-dictionary/src/gdict-window.c:1527 msgid "Double-click on the database to use" msgstr "" -#: mate-dictionary/src/gdict-window.c:1670 +#: ../mate-dictionary/src/gdict-window.c:1702 msgid "Look _up:" msgstr "" -#: mate-dictionary/src/gdict-window.c:1745 +#: ../mate-dictionary/src/gdict-window.c:1777 msgid "Similar words" msgstr "" -#: mate-dictionary/src/gdict-window.c:1758 +#: ../mate-dictionary/src/gdict-window.c:1790 msgid "Available dictionaries" msgstr "" -#: mate-dictionary/src/gdict-window.c:1776 +#: ../mate-dictionary/src/gdict-window.c:1808 msgid "Available strategies" msgstr "" -#: mate-dictionary/src/gdict-window.c:1792 +#: ../mate-dictionary/src/gdict-window.c:1824 msgid "Dictionary sources" msgstr "" -#: mate-dictionary/data/mate-dictionary-preferences.ui:27 +#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:1 msgid "_Select a dictionary source for looking up words:" msgstr "" -#: mate-dictionary/data/mate-dictionary-preferences.ui:132 -#: mate-dictionary/data/mate-dictionary-source.ui:148 +#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:2 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:6 msgid "Source" msgstr "" -#: mate-dictionary/data/mate-dictionary-preferences.ui:162 +#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:3 msgid "_Print font:" msgstr "" -#: mate-dictionary/data/mate-dictionary-preferences.ui:216 +#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:4 msgid "Print" msgstr "" -#: mate-dictionary/data/mate-dictionary-source.ui:38 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:1 msgid "_Description:" msgstr "" -#: mate-dictionary/data/mate-dictionary-source.ui:53 -msgid "Source Name" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-source.ui:65 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:2 msgid "_Transport:" msgstr "" -#: mate-dictionary/data/mate-dictionary-source.ui:96 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:3 msgid "H_ostname:" msgstr "" -#: mate-dictionary/data/mate-dictionary-source.ui:175 -msgid "Dictionaries" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-source.ui:200 -msgid "Strategies" -msgstr "" - -#: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:3 -#: mate-disk-image-mounter/src/main.c:62 -msgid "MATE Disk Image Mounter" -msgstr "" - -#: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:4 -msgid "Attach and mount one or more disk image files" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:60 -msgid "An error occurred" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:81 -msgid "Allow writing to the image" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:101 -msgid "All Files" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:105 -msgid "Disk Images (*.img, *.iso)" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:121 -msgid "Select Disk Image(s) to Mount" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:125 -msgid "_Mount" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:131 -msgid "Set up _read-only mount" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:132 -msgid "" -"If checked, the mount will be read-only. This is useful if you don't want " -"the underlying disk image to be modified" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:178 -#, c-format -msgid "Error connecting to udisks daemon: %s (%s, %d)" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:186 -msgid "Attach and mount one or more disk image files." -msgstr "" - -#: mate-disk-image-mounter/src/main.c:234 -#, c-format -msgid "Cannot open `%s' - maybe the volume isn't mounted?" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:241 -#, c-format -msgid "Error opening `%s': %m" +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:5 +msgid "Source Name" msgstr "" -#: mate-disk-image-mounter/src/main.c:262 -#, c-format -msgid "Error attaching disk image: %s (%s, %d)" +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:7 +msgid "Dictionaries" msgstr "" -#: mate-screenshot/data/mate-screenshot.appdata.xml.in:7 -msgid "MATE Screenshot" +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:8 +msgid "Strategies" msgstr "" -#: mate-screenshot/data/mate-screenshot.appdata.xml.in:8 +#: ../mate-screenshot/data/mate-screenshot.appdata.xml.in.h:1 msgid "A screenshot utility for MATE Desktop" msgstr "" -#: mate-screenshot/data/mate-screenshot.appdata.xml.in:10 +#: ../mate-screenshot/data/mate-screenshot.appdata.xml.in.h:2 msgid "" -"MATE Screenshot is a simple utility that lets you capture screenshots of " -"your desktop or of application windows. You can select to copy them to the " +"

MATE Screenshot is a simple utility that lets you capture screenshots of" +" your desktop or of application windows. You can select to copy them to the " "system clipboard or save them in Portable Network Graphics (.png) image " -"format." +"format.

" msgstr "" -#: mate-screenshot/data/mate-screenshot.desktop.in:3 -#: mate-screenshot/src/mate-screenshot.c:519 -#: mate-screenshot/src/mate-screenshot.c:527 +#: ../mate-screenshot/data/mate-screenshot.desktop.in.h:1 +#: ../mate-screenshot/src/mate-screenshot.c:519 +#: ../mate-screenshot/src/mate-screenshot.c:527 msgid "Take Screenshot" msgstr "" -#: mate-screenshot/data/mate-screenshot.desktop.in:4 +#: ../mate-screenshot/data/mate-screenshot.desktop.in.h:2 msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: mate-screenshot/data/mate-screenshot.desktop.in:13 -msgid "MATE;screenshot;snapshot;desktop;window;image;" -msgstr "" - -#: mate-screenshot/data/mate-screenshot.ui:24 +#: ../mate-screenshot/data/mate-screenshot.ui.h:1 msgid "Save Screenshot" msgstr "" -#: mate-screenshot/data/mate-screenshot.ui:74 +#: ../mate-screenshot/data/mate-screenshot.ui.h:2 msgid "C_opy to Clipboard" msgstr "" -#: mate-screenshot/data/mate-screenshot.ui:192 +#: ../mate-screenshot/data/mate-screenshot.ui.h:4 msgid "Save in _folder:" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:5 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:1 msgid "Screenshot delay" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:6 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:2 msgid "The number of seconds to wait before taking the screenshot." msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:10 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:3 msgid "Screenshot directory" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:11 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:4 msgid "The directory the last screenshot was saved in." msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:15 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:5 msgid "Include Border" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:16 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:6 msgid "Include the window manager border along with the screenshot" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:20 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:7 msgid "Include Pointer" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:21 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:8 msgid "Include the pointer in the screenshot" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:25 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:9 msgid "Border Effect" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:26 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:10 msgid "" "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -#: mate-screenshot/src/mate-screenshot.c:138 +#: ../mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:250 +#: ../mate-screenshot/src/mate-screenshot.c:250 msgid "None" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:251 +#: ../mate-screenshot/src/mate-screenshot.c:251 msgid "Drop shadow" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:252 +#: ../mate-screenshot/src/mate-screenshot.c:252 msgid "Border" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:353 +#. * Include pointer * +#: ../mate-screenshot/src/mate-screenshot.c:353 msgid "Include _pointer" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:362 +#. * Include window border * +#: ../mate-screenshot/src/mate-screenshot.c:362 msgid "Include the window _border" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:377 +#: ../mate-screenshot/src/mate-screenshot.c:377 msgid "Apply _effect:" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:437 +#: ../mate-screenshot/src/mate-screenshot.c:437 msgid "Grab the whole _desktop" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:449 +#: ../mate-screenshot/src/mate-screenshot.c:449 msgid "Grab the current _window" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:461 +#: ../mate-screenshot/src/mate-screenshot.c:461 msgid "Select _area to grab" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:479 +#. translators: this is the first part of the "grab after a +#. * delay of seconds". +#: ../mate-screenshot/src/mate-screenshot.c:479 msgid "Grab _after a delay of" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:500 -#: mate-screenshot/src/mate-screenshot.c:1320 +#. translators: this is the last part of the "grab after a +#. * delay of seconds". +#: ../mate-screenshot/src/mate-screenshot.c:500 +#: ../mate-screenshot/src/mate-screenshot.c:1321 msgid "seconds" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:528 +#: ../mate-screenshot/src/mate-screenshot.c:528 msgid "Effects" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:532 +#: ../mate-screenshot/src/mate-screenshot.c:532 msgid "Take _Screenshot" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:651 +#: ../mate-screenshot/src/mate-screenshot.c:651 msgid "Error while saving screenshot" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:654 +#: ../mate-screenshot/src/mate-screenshot.c:654 #, c-format msgid "" "Impossible to save the screenshot to %s.\n" @@ -3058,81 +2951,88 @@ " Please choose another location and retry." msgstr "" -#: mate-screenshot/src/mate-screenshot.c:796 +#: ../mate-screenshot/src/mate-screenshot.c:796 msgid "Screenshot taken" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:851 +#: ../mate-screenshot/src/mate-screenshot.c:851 msgid "Unable to take a screenshot of the current window" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:916 +#. translators: this is the name of the file that gets made up +#. * with the screenshot if the entire screen is taken +#: ../mate-screenshot/src/mate-screenshot.c:916 #, c-format msgid "Screenshot at %s.png" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:923 +#. translators: this is the name of the file that gets +#. * made up with the screenshot if the entire screen is +#. * taken +#: ../mate-screenshot/src/mate-screenshot.c:923 #, c-format msgid "Screenshot at %s - %d.png" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1315 +#: ../mate-screenshot/src/mate-screenshot.c:1316 msgid "Grab a window instead of the entire screen" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1316 +#: ../mate-screenshot/src/mate-screenshot.c:1317 msgid "Grab an area of the screen instead of the entire screen" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1317 +#: ../mate-screenshot/src/mate-screenshot.c:1318 msgid "Send grabbed area directly to the clipboard" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1318 +#: ../mate-screenshot/src/mate-screenshot.c:1319 msgid "Include the window border with the screenshot" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1319 +#: ../mate-screenshot/src/mate-screenshot.c:1320 msgid "Remove the window border from the screenshot" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1320 +#: ../mate-screenshot/src/mate-screenshot.c:1321 msgid "Take screenshot after specified delay [in seconds]" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1321 +#: ../mate-screenshot/src/mate-screenshot.c:1322 msgid "Effect to add to the border (shadow, border or none)" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1321 +#: ../mate-screenshot/src/mate-screenshot.c:1322 msgid "effect" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1322 +#: ../mate-screenshot/src/mate-screenshot.c:1323 msgid "Interactively set options" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1323 +#: ../mate-screenshot/src/mate-screenshot.c:1324 msgid "Print version information and exit" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1334 +#: ../mate-screenshot/src/mate-screenshot.c:1333 msgid "Take a picture of the screen" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1357 +#: ../mate-screenshot/src/mate-screenshot.c:1356 +#, c-format msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1363 +#: ../mate-screenshot/src/mate-screenshot.c:1362 +#, c-format msgid "" "Conflicting options: --window and --area should not be used at the same " "time.\n" msgstr "" -#: mate-screenshot/src/screenshot-dialog.c:210 +#: ../mate-screenshot/src/screenshot-dialog.c:207 #, c-format msgid "" "Error loading UI definition file for the screenshot program: \n" @@ -3141,45 +3041,45 @@ "Please check your installation of mate-utils." msgstr "" -#: mate-screenshot/src/screenshot-dialog.c:233 +#: ../mate-screenshot/src/screenshot-dialog.c:230 msgid "Select a folder" msgstr "" -#: mate-screenshot/src/screenshot-dialog.c:328 -#: mate-screenshot/src/screenshot-save.c:202 +#: ../mate-screenshot/src/screenshot-dialog.c:325 +#: ../mate-screenshot/src/screenshot-save.c:199 msgid "Screenshot.png" msgstr "" -#: mate-screenshot/src/screenshot-save.c:60 +#: ../mate-screenshot/src/screenshot-save.c:57 #, c-format msgid "" "Unable to clear the temporary folder:\n" "%s" msgstr "" -#: mate-screenshot/src/screenshot-save.c:98 +#: ../mate-screenshot/src/screenshot-save.c:95 msgid "" "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -#: mate-screenshot/src/screenshot-save.c:231 +#: ../mate-screenshot/src/screenshot-save.c:225 msgid "Unknown error saving screenshot to disk" msgstr "" -#: mate-screenshot/src/screenshot-xfer.c:74 +#: ../mate-screenshot/src/screenshot-xfer.c:72 msgid "File already exists" msgstr "" -#: mate-screenshot/src/screenshot-xfer.c:77 +#: ../mate-screenshot/src/screenshot-xfer.c:75 #, c-format msgid "The file \"%s\" already exists. Would you like to replace it?" msgstr "" -#: mate-screenshot/src/screenshot-xfer.c:122 +#: ../mate-screenshot/src/screenshot-xfer.c:120 msgid "Saving file..." msgstr "" -#: mate-screenshot/src/screenshot-xfer.c:292 +#: ../mate-screenshot/src/screenshot-xfer.c:290 msgid "Can't access source file" msgstr "" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/es.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/es.gmo differ Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/es_MX.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/es_MX.gmo differ diff -Nru mate-utils-1.26.0/po/es_MX.po mate-utils-1.26.1/po/es_MX.po --- mate-utils-1.26.0/po/es_MX.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/es_MX.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,31 +2,30 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# David García , 2018 -# Stefano Karapetsas , 2018 -# Martin Hernández Ramírez , 2018 -# Luis Armando Medina , 2018 -# Luis Manuel Prado Moreno , 2018 -# Luis Medina , 2018 -# Jose Carlos Martínez Rodriguez , 2019 -# jorge becerril , 2019 -# +# Jose Carlos Martínez Rodriguez , 2021 +# Martin Hernández Ramírez , 2021 +# Stefano Karapetsas , 2021 +# jorge becerril , 2021 +# David García , 2021 +# Luis Medina , 2021 +# Luis Armando Medina , 2021 +# Luis Manuel Prado Moreno , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: jorge becerril , 2019\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mate/teams/13566/" -"es_MX/)\n" -"Language: es_MX\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Luis Manuel Prado Moreno , 2021\n" +"Language-Team: Spanish (Mexico) (https://app.transifex.com/mate/teams/13566/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es_MX\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -37,7 +36,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -221,8 +221,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -275,6 +275,7 @@ msgid_plural "%5d items" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -586,8 +587,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -638,16 +639,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -681,9 +683,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -705,8 +707,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -725,9 +727,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -737,8 +739,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -802,8 +804,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -820,8 +822,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -842,63 +844,64 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Este archivo .desktop no es válido" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Versión '%s' del archivo .desktop no reconocida" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Iniciando '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "La aplicación no acepta documentos en linea de comandos" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Opción de inicio no reconocible: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -"No se pueden pasar los URI de documentos a entradas de escritorio 'Type=Link'" +"No se pueden pasar los URI de documentos a entradas de escritorio " +"'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "No es un elemento que pueda ser lanzado" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Deshabilite la conexión con el gestor de sesiones" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Especifique el archivo que contiene la configuración guardada" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ARCHIVO" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Especifique el ID de la administración de sesiones." -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opciones de la administración de la sesión:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Mostrar opciones de la administración de sesiones" @@ -1039,6 +1042,7 @@ msgid_plural "%'d Files Found" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format @@ -1046,6 +1050,7 @@ msgid_plural "%'d files found" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1267,6 +1272,7 @@ msgid_plural "Are you sure you want to open %d documents?" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 @@ -1275,6 +1281,7 @@ msgid_plural "This will open %d separate windows." msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1300,6 +1307,7 @@ msgid_plural "Are you sure you want to open %d folders?" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1503,7 +1511,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1514,8 +1523,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1913,7 +1922,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1925,8 +1935,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2635,6 +2645,7 @@ msgid_plural "%d definitions found" msgstr[0] "" msgstr[1] "" +msgstr[2] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -2940,7 +2951,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3132,8 +3144,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 diff -Nru mate-utils-1.26.0/po/es.po mate-utils-1.26.1/po/es.po --- mate-utils-1.26.0/po/es.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/es.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,36 +2,36 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# difusion, 2018 -# Fabian Rodriguez, 2018 -# Lluís Tusquellas , 2018 -# Benjamin Perez Carrillo , 2018 -# Daniel Aranda , 2018 -# Andres Sanchez , 2018 -# seacat , 2018 -# Adolfo Jayme Barrientos, 2018 -# Emiliano Fascetti, 2018 -# Joel Barrios , 2019 -# Mario Verdin , 2019 -# Toni Estévez , 2021 -# Stefano Karapetsas , 2021 +# Fabian Rodriguez, 2021 +# Andres Sanchez , 2021 +# Lluís Tusquellas , 2021 # ebray187 , 2021 -# +# seacat , 2021 +# Benjamin Perez Carrillo , 2021 +# difusion, 2021 +# Adolfo Jayme-Barrientos, 2021 +# Stefano Karapetsas , 2021 +# clefebvre , 2021 +# Emiliano Fascetti, 2021 +# Joel Barrios , 2021 +# Daniel Aranda , 2021 +# Toni Estévez , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: ebray187 , 2021\n" -"Language-Team: Spanish (https://www.transifex.com/mate/teams/13566/es/)\n" -"Language: es\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Toni Estévez , 2021\n" +"Language-Team: Spanish (https://app.transifex.com/mate/teams/13566/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -43,7 +43,8 @@ msgstr "" "Compruebe el tamaño de las carpetas y el espacio disponible en el disco" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "MATE;comprobar;disco;uso;analizar;tamaño;espacio;" @@ -190,7 +191,8 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:15 msgid "A list of URIs for partitions to be excluded from scanning." msgstr "" -"Una lista de los URI para las particiones que se excluirán de la exploración." +"Una lista de los URI para las particiones que se excluirán de la " +"exploración." #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:21 msgid "Toolbar is Visible" @@ -230,18 +232,19 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:8 msgid "A disk usage analyzing tool for MATE Desktop" -msgstr "Una herramienta para analizar el uso del disco para el escritorio MATE" +msgstr "" +"Una herramienta para analizar el uso del disco para el escritorio MATE" #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" -"Como su nombre indica, el Analizador del uso del disco es una utilidad " +"Como su nombre indica, el Analizador del uso del disco es una herramienta " "gráfica que puede usar para ver y monitorear el uso del disco y la " -"estructura de carpetas. Muestra información resumida en gráficos de anillo o " -"de árbol." +"estructura de carpetas. Muestra información resumida en gráficos de anillo o" +" de árbol." #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 msgid "" @@ -296,6 +299,7 @@ msgid_plural "%5d items" msgstr[0] "%5d elemento" msgstr[1] "%5d elementos" +msgstr[2] "%5d elementos" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -428,7 +432,7 @@ #: baobab/src/baobab-remote-connect-dialog.c:175 msgid "FTP (with login)" -msgstr "FTP (con inicio de sesión)" +msgstr "FTP (con entrada)" #: baobab/src/baobab-remote-connect-dialog.c:178 msgid "Windows share" @@ -445,7 +449,8 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." msgstr "" -"No se puede conectar al servidor. Debe introducir un nombre para el servidor." +"No se puede conectar al servidor. Debe introducir un nombre para el " +"servidor." #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -486,7 +491,7 @@ #: baobab/src/baobab-remote-connect-dialog.c:592 msgid "Connect to Server" -msgstr "Conectarse al servidor" +msgstr "Conectar con el servidor" #: baobab/src/baobab-remote-connect-dialog.c:608 msgid "Service _type:" @@ -587,7 +592,7 @@ #: baobab/src/callbacks.c:74 logview/src/logview-about.h:44 #: mate-dictionary/src/gdict-about.c:49 msgid "MATE Documentation Team" -msgstr "Equipo de Documentación de MATE" +msgstr "Equipo de documentación de MATE" #: baobab/src/callbacks.c:79 logview/src/logview-about.h:49 #: mate-dictionary/src/gdict-about.c:57 @@ -618,8 +623,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" "Debería haber recibido una copia de la Licencia Pública General de GNU con " "este programa. Si no es así, consulte ." @@ -644,7 +649,8 @@ #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" msgstr "" -"Toni Estevez , 2019\n" +"Toni Estevez , 2020-2021\n" +"Adolfo Jayme Barrientos , 2018\n" "Jorge González , 2007-2010\n" "Francisco Javier F. Serrador , 2003-2006\n" "Pablo Gonzalo del Campo , 2002-2003" @@ -671,14 +677,14 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." -msgstr "" -"La herramienta de búsqueda MATE es una utilidad simple pero potente que le " -"permite buscar archivos y carpetas en cualquier sistema de archivos montado. " -"Su interfaz le da acceso instantáneo a una amplia variedad de parámetros " -"para cada búsqueda, como el contenido de un archivo de texto, el " +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." +msgstr "" +"La herramienta de búsqueda MATE es una herramienta simple pero potente que " +"le permite buscar archivos y carpetas en cualquier sistema de archivos " +"montado. Su interfaz le da acceso instantáneo a una amplia variedad de " +"parámetros para cada búsqueda, como el contenido de un archivo de texto, el " "propietario, la fecha de modificación, el tamaño del archivo, la exclusión " "de carpetas, etc." @@ -687,13 +693,13 @@ msgstr "" "Encuentre documentos y carpetas en este equipo por nombre o por contenido" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" -"MATE;buscar;archivos;localizar;documentos;carpetas;equipo;nombre;contenido;" -"encontrar;herramienta;" +"MATE;buscar;archivos;localizar;documentos;carpetas;equipo;nombre;contenido;encontrar;herramienta;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -725,9 +731,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Esta clave define las rutas que la herramienta de búsqueda excluirá de una " "búsqueda rápida. Se admiten los comodines «*» y «?». Los valores " @@ -754,8 +760,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Esta clave define las rutas que la herramienta de búsqueda excluirá de una " "segunda exploración al efectuar una búsqueda rápida. La segunda exploración " @@ -772,8 +778,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"Esta clave define el orden de las columnas en los resultados de la búsqueda. " -"Esta clave no debe ser modificada por el usuario." +"Esta clave define el orden de las columnas en los resultados de la búsqueda." +" Esta clave no debe ser modificada por el usuario." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -781,9 +787,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Esta clave define la anchura de la ventana y se usa para recordar el tamaño " "de la herramienta de búsqueda entre las sesiones. Si la establece en -1, la " @@ -796,8 +802,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Esta clave define la altura de la ventana y se usa para recordar el tamaño " "de la herramienta de búsqueda entre las sesiones. Si la establece en -1, la " @@ -882,11 +888,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"Esta clave determina si la opción «Perteneciente al grupo» está seleccionada " -"cuando se inicia la herramienta de búsqueda." +"Esta clave determina si la opción «Perteneciente al grupo» está seleccionada" +" cuando se inicia la herramienta de búsqueda." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" @@ -906,8 +912,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Esta clave determina si la opción «El nombre coincide con la expresión " "regular» está seleccionada cuando se inicia la herramienta de búsqueda." @@ -917,8 +923,8 @@ "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"Esta clave determina si la opción «Mostrar archivos y carpetas ocultos» está " -"seleccionada cuando se inicia la herramienta de búsqueda." +"Esta clave determina si la opción «Mostrar archivos y carpetas ocultos» está" +" seleccionada cuando se inicia la herramienta de búsqueda." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" @@ -936,65 +942,65 @@ "Esta clave determina si la opción «Excluir otros sistemas de archivos» está " "seleccionada cuando se inicia la herramienta de búsqueda." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "El archivo .desktop no es válido" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Versión «%s» del archivo .desktop no reconocida" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Iniciando %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" -msgstr "La aplicación no acepta documentos en la línea de órdenes" +msgstr "La aplicación no acepta documentos en la consola" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" -msgstr "Opción de inicio no reconocida: %d" +msgstr "Opción de apertura no reconocida: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -"No se pueden pasar los URI de documentos a una entrada .desktop «Type=Link»" +"No se pueden pasar URI de documentos a una entrada .desktop «Type=Link»" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "No es un elemento iniciable" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Desactivar la conexión con el gestor de sesiones" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Especificar el archivo que contiene la configuración guardada" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ARCHIVO" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Especificar el id. de gestión de sesión" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" -msgstr "Id." +msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" -msgstr "Opciones de gestión de sesiones:" +msgstr "Opciones de gestión de la sesión:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" -msgstr "Mostrar las opciones de gestión de sesiones" +msgstr "Mostrar las opciones de gestión de la sesión" #: gsearchtool/src/gsearchtool.c:82 msgid "Contains the _text" @@ -1131,8 +1137,9 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "%'d Archivo Encontrado" -msgstr[1] "%'d Archivos Encontrados" +msgstr[0] "%'d archivo encontrado" +msgstr[1] "%'d archivos encontrados" +msgstr[2] "%'d archivos encontrados" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format @@ -1140,6 +1147,7 @@ msgid_plural "%'d files found" msgstr[0] "%'d archivo encontrado" msgstr[1] "%'d archivos encontrados" +msgstr[2] "%'d archivos encontrados" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1194,8 +1202,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"El resultado de la búsqueda puede ser no válido. Se han producido errores al " -"realizar la búsqueda." +"El resultado de la búsqueda puede ser no válido. Se han producido errores al" +" realizar la búsqueda." #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1206,8 +1214,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"Los resultados de la búsqueda pueden estar desactualizados o no ser válidos. " -"¿Quiere desactivar la búsqueda rápida?" +"Los resultados de la búsqueda pueden estar desactualizados o no ser válidos." +" ¿Quiere desactivar la búsqueda rápida?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1373,14 +1381,16 @@ msgid_plural "Are you sure you want to open %d documents?" msgstr[0] "¿Seguro que quiere abrir %d documento?" msgstr[1] "¿Seguro que quiere abrir %d documentos?" +msgstr[2] "¿Seguro que quiere abrir %d documentos?" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Esto abrirá %d ventana separada." -msgstr[1] "Esto abrirá %d ventanas separadas." +msgstr[0] "Esta acción abrirá %d ventana separada." +msgstr[1] "Esta acción abrirá %d ventanas separadas." +msgstr[2] "Esta acción abrirá %d ventanas separadas." #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1406,6 +1416,7 @@ msgid_plural "Are you sure you want to open %d folders?" msgstr[0] "¿Seguro que quiere abrir %d carpeta?" msgstr[1] "¿Seguro que quiere abrir %d carpetas?" +msgstr[2] "¿Seguro que quiere abrir %d carpetas?" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1610,7 +1621,8 @@ msgid "View or monitor system log files" msgstr "Vea o monitoree los archivos de registro del sistema" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "MATE;monitor;vista;sistema;registro;archivos;visor;" @@ -1621,8 +1633,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "Especifica el archivo de registro mostrado al inicio. Los predeterminados " "son «/var/adm/messages» o «/var/log/messages», dependiendo de su sistema " @@ -1872,7 +1884,7 @@ #: mate-dictionary/libgdict/gdict-defbox.c:1219 #: mate-dictionary/libgdict/gdict-defbox.c:1253 msgid "Not found" -msgstr "No encontrado" +msgstr "No se ha encontrado" #: logview/src/logview-window.c:773 msgid "About System Log Viewer" @@ -2028,7 +2040,7 @@ #: mate-dictionary/data/default.desktop.in:3 msgid "Default" -msgstr "Predeterminado" +msgstr "Por defecto" #: mate-dictionary/data/default.desktop.in:4 msgid "Default Dictionary Server" @@ -2044,7 +2056,8 @@ msgstr "" "Busque definiciones de palabras y ortografía en un diccionario en línea" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -2057,8 +2070,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" "Diccionario de MATE le permite buscar palabras en diccionarios en línea. " @@ -2263,7 +2276,8 @@ #: mate-dictionary/libgdict/gdict-client-context.c:1844 #, c-format msgid "Connection timeout for the dictionary server at '%s:%d'" -msgstr "Tiempo agotado para la conexión al servidor de diccionarios en «%s:%d»" +msgstr "" +"Tiempo agotado para la conexión al servidor de diccionarios en «%s:%d»" #: mate-dictionary/libgdict/gdict-client-context.c:1878 msgid "No hostname defined for the dictionary server" @@ -2338,7 +2352,7 @@ #: mate-dictionary/libgdict/gdict-source.c:229 msgid "Filename" -msgstr "Archivo" +msgstr "Nombre del archivo" #: mate-dictionary/libgdict/gdict-source.c:230 msgid "The filename used by this dictionary source" @@ -2540,8 +2554,7 @@ #: mate-dictionary/src/gdict-app.c:247 msgid "See mate-dictionary --help for usage\n" -msgstr "" -"Consulte mate-dictionary --help para obtener información sobre el uso\n" +msgstr "Consulte mate-dictionary --help para obtener información sobre el uso\n" #: mate-dictionary/src/gdict-app.c:260 msgid "Unable to find a suitable dictionary source" @@ -2690,7 +2703,7 @@ #: mate-dictionary/src/gdict-applet.c:872 #: mate-dictionary/src/gdict-window.c:499 msgid "Unable to find dictionary source" -msgstr "No se puede encontrar la fuente de diccionario" +msgstr "No se puede encontrar la fuente del diccionario" #: mate-dictionary/src/gdict-applet.c:888 #: mate-dictionary/src/gdict-window.c:515 @@ -2803,8 +2816,9 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Una definición entrontrada" +msgstr[0] "Una definición encontrada" msgstr[1] "%d definiciones encontradas" +msgstr[2] "%d definiciones encontradas" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -2862,7 +2876,7 @@ #: mate-dictionary/src/gdict-window.c:1288 msgid "_Preferences" -msgstr "Preferencias" +msgstr "_Preferencias" #: mate-dictionary/src/gdict-window.c:1292 msgid "_Previous Definition" @@ -2991,7 +3005,7 @@ #: mate-dictionary/data/mate-dictionary-preferences.ui:216 msgid "Print" -msgstr "Imprimir" +msgstr "Impr" #: mate-dictionary/data/mate-dictionary-source.ui:38 msgid "_Description:" @@ -3093,7 +3107,7 @@ #: mate-screenshot/data/mate-screenshot.appdata.xml.in:8 msgid "A screenshot utility for MATE Desktop" -msgstr "Una utilidad de captura de pantalla para el escritorio MATE" +msgstr "Una herramienta de captura de pantalla para el escritorio MATE" #: mate-screenshot/data/mate-screenshot.appdata.xml.in:10 msgid "" @@ -3102,10 +3116,10 @@ "system clipboard or save them in Portable Network Graphics (.png) image " "format." msgstr "" -"Captura de pantalla de MATE es una sencilla utilidad que le permite obtener " -"capturas de pantalla de su escritorio o de las ventanas de las aplicaciones. " -"Puede seleccionar copiarlas al portapapeles del sistema o guardarlas en " -"formato de imagen PNG (.png)." +"Captura de pantalla de MATE es una sencilla herramienta que le permite " +"obtener capturas de pantalla de su escritorio o de las ventanas de las " +"aplicaciones. Puede seleccionar copiarlas al portapapeles del sistema o " +"guardarlas en formato de imagen PNG (.png)." #: mate-screenshot/data/mate-screenshot.desktop.in:3 #: mate-screenshot/src/mate-screenshot.c:519 @@ -3117,7 +3131,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Guarde imágenes de su escritorio o ventanas individuales" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "MATE;captura;pantalla;escritorio;ventana;imagen;" @@ -3175,8 +3190,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Efecto para añadir al exterior de un borde. Los valores posibles son \"shadow" -"\", \"none\", y \"border\"." +"Efecto para añadir al exterior de un borde. Los valores posibles son " +"\"shadow\", \"none\", y \"border\"." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3315,8 +3330,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Opciones conflictivas: --clipboard e --interactive no deben usarse al mismo " "tiempo.\n" @@ -3325,8 +3340,7 @@ msgid "" "Conflicting options: --window and --area should not be used at the same " "time.\n" -msgstr "" -"Opciones con conflictos: --window y --area no se deben usar a la vez.\n" +msgstr "Opciones con conflictos: --window y --area no se deben usar a la vez.\n" #: mate-screenshot/src/screenshot-dialog.c:210 #, c-format @@ -3336,8 +3350,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Falta el archivo de definición de la IU para el programa de captura de " -"pantalla: \n" +"Falta el archivo de definición de la IU para el programa de captura de pantalla: \n" "%s\n" "\n" "Revise su instalación de mate-utils." @@ -3365,8 +3378,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"El proceso secundario para guardar ha terminado inesperadamente. No se puede " -"escribir la captura de pantalla en el disco." +"El proceso secundario para guardar ha terminado inesperadamente. No se puede" +" escribir la captura de pantalla en el disco." #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/es_PR.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/es_PR.gmo differ diff -Nru mate-utils-1.26.0/po/es_PR.po mate-utils-1.26.1/po/es_PR.po --- mate-utils-1.26.0/po/es_PR.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/es_PR.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,566 +2,552 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefano Karapetsas , 2018 # Neverest , 2018 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" -"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-12-25 12:31+0100\n" "PO-Revision-Date: 2018-03-12 09:18+0000\n" "Last-Translator: Neverest , 2018\n" -"Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/mate/" -"teams/13566/es_PR/)\n" -"Language: es_PR\n" +"Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/mate/teams/13566/es_PR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es_PR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 +#: ../baobab/data/mate-disk-usage-analyzer.desktop.in.in.h:1 msgid "MATE Disk Usage Analyzer" msgstr "" -#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:4 +#: ../baobab/data/mate-disk-usage-analyzer.desktop.in.in.h:2 msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 -msgid "MATE;check;disk;usage;analyze;size;space;" -msgstr "" - -#: baobab/data/baobab-dialog-scan-props.ui:18 +#: ../baobab/data/baobab-dialog-scan-props.ui.h:1 msgid "Disk Usage Analyzer Preferences" msgstr "" -#: baobab/data/baobab-dialog-scan-props.ui:32 -#: baobab/data/baobab-main-window.ui:129 logview/src/logview-window.c:825 -#: mate-dictionary/src/gdict-applet.c:1173 -#: mate-dictionary/src/gdict-window.c:1262 -#: mate-screenshot/data/mate-screenshot.ui:41 -msgid "_Help" -msgstr "_Ayuda" - -#: baobab/data/baobab-dialog-scan-props.ui:48 logview/src/logview-window.c:829 -#: mate-dictionary/src/gdict-window.c:1273 -msgid "_Close" -msgstr "" - -#: baobab/data/baobab-dialog-scan-props.ui:81 +#: ../baobab/data/baobab-dialog-scan-props.ui.h:2 msgid "Select _devices to include in filesystem scan:" msgstr "" -#: baobab/data/baobab-dialog-scan-props.ui:119 +#: ../baobab/data/baobab-dialog-scan-props.ui.h:3 msgid "_Monitor changes to your home folder" msgstr "" -#: baobab/data/baobab-main-window.ui:10 +#: ../baobab/data/baobab-main-window.ui.h:1 msgid "_Analyzer" msgstr "" -#: baobab/data/baobab-main-window.ui:17 +#: ../baobab/data/baobab-main-window.ui.h:2 msgid "Scan _Home Folder" msgstr "" -#: baobab/data/baobab-main-window.ui:26 +#: ../baobab/data/baobab-main-window.ui.h:3 msgid "Scan _Filesystem" msgstr "" -#: baobab/data/baobab-main-window.ui:35 +#: ../baobab/data/baobab-main-window.ui.h:4 msgid "Scan F_older..." msgstr "" -#: baobab/data/baobab-main-window.ui:44 +#: ../baobab/data/baobab-main-window.ui.h:5 msgid "S_can Remote Folder..." msgstr "" -#: baobab/data/baobab-main-window.ui:74 logview/src/logview-window.c:822 -#: mate-dictionary/src/gdict-window.c:1259 +#: ../baobab/data/baobab-main-window.ui.h:6 +#: ../logview/src/logview-window.c:817 +#: ../mate-dictionary/src/gdict-window.c:1288 msgid "_Edit" msgstr "_Editar" -#: baobab/data/baobab-main-window.ui:80 +#: ../baobab/data/baobab-main-window.ui.h:7 msgid "_Expand All" msgstr "" -#: baobab/data/baobab-main-window.ui:87 +#: ../baobab/data/baobab-main-window.ui.h:8 msgid "_Collapse All" msgstr "" -#: baobab/data/baobab-main-window.ui:101 logview/src/logview-window.c:823 -#: mate-dictionary/src/gdict-window.c:1260 +#: ../baobab/data/baobab-main-window.ui.h:9 +#: ../logview/src/logview-window.c:818 +#: ../mate-dictionary/src/gdict-window.c:1289 msgid "_View" msgstr "" -#: baobab/data/baobab-main-window.ui:108 +#: ../baobab/data/baobab-main-window.ui.h:10 msgid "_Toolbar" msgstr "" -#: baobab/data/baobab-main-window.ui:115 +#: ../baobab/data/baobab-main-window.ui.h:11 msgid "St_atusbar" msgstr "" -#: baobab/data/baobab-main-window.ui:122 +#: ../baobab/data/baobab-main-window.ui.h:12 msgid "All_ocated Space" msgstr "" -#: baobab/data/baobab-main-window.ui:136 logview/src/logview-window.c:851 -#: mate-dictionary/src/gdict-window.c:1312 +#: ../baobab/data/baobab-main-window.ui.h:13 +#: ../logview/src/logview-window.c:820 +#: ../mate-dictionary/src/gdict-applet.c:1187 +#: ../mate-dictionary/src/gdict-window.c:1291 +msgid "_Help" +msgstr "_Ayuda" + +#. Help menu +#: ../baobab/data/baobab-main-window.ui.h:14 +#: ../logview/src/logview-window.c:846 +#: ../mate-dictionary/src/gdict-window.c:1341 msgid "_Contents" msgstr "" -#: baobab/data/baobab-main-window.ui:183 baobab/src/baobab.c:1237 -#: baobab/src/callbacks.c:103 +#: ../baobab/data/baobab-main-window.ui.h:15 ../baobab/src/baobab.c:1241 msgid "Disk Usage Analyzer" msgstr "" -#: baobab/data/baobab-main-window.ui:224 baobab/data/baobab-main-window.ui:236 +#: ../baobab/data/baobab-main-window.ui.h:16 msgid "Scan home folder" msgstr "" -#: baobab/data/baobab-main-window.ui:225 +#: ../baobab/data/baobab-main-window.ui.h:17 msgid "Scan Home" msgstr "" -#: baobab/data/baobab-main-window.ui:248 +#: ../baobab/data/baobab-main-window.ui.h:18 msgid "Scan filesystem" msgstr "" -#: baobab/data/baobab-main-window.ui:249 +#: ../baobab/data/baobab-main-window.ui.h:19 msgid "Scan Filesystem" msgstr "" -#: baobab/data/baobab-main-window.ui:265 +#: ../baobab/data/baobab-main-window.ui.h:20 msgid "Scan a folder" msgstr "" -#: baobab/data/baobab-main-window.ui:266 +#: ../baobab/data/baobab-main-window.ui.h:21 msgid "Scan Folder" msgstr "" -#: baobab/data/baobab-main-window.ui:282 +#: ../baobab/data/baobab-main-window.ui.h:22 msgid "Scan a remote folder" msgstr "" -#: baobab/data/baobab-main-window.ui:283 +#: ../baobab/data/baobab-main-window.ui.h:23 msgid "Scan Remote Folder" msgstr "" -#: baobab/data/baobab-main-window.ui:312 +#: ../baobab/data/baobab-main-window.ui.h:24 msgid "Stop scanning" msgstr "" -#: baobab/data/baobab-main-window.ui:328 +#: ../baobab/data/baobab-main-window.ui.h:25 msgid "Refresh" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:9 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:1 msgid "Monitor Home" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:10 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:2 msgid "Whether any change to the home directory should be monitored." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:14 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:3 msgid "Excluded partitions URIs" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:15 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:4 msgid "A list of URIs for partitions to be excluded from scanning." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:21 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:5 msgid "Toolbar is Visible" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:22 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:6 msgid "Whether the toolbar should be visible in main window." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:26 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:7 msgid "Statusbar is Visible" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:27 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:8 msgid "Whether the status bar at the bottom of main window should be visible." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:31 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:9 msgid "Subfolder tips visible" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:32 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:10 msgid "Whether the subfolder tooltips of the selected folder are drawn." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:36 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:11 msgid "Active Chart" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:37 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:12 msgid "Which type of chart should be displayed." msgstr "" -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:8 +#: ../baobab/data/mate-disk-usage-analyzer.appdata.xml.in.h:1 msgid "A disk usage analyzing tool for MATE Desktop" msgstr "" -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 +#: ../baobab/data/mate-disk-usage-analyzer.appdata.xml.in.h:2 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " -"summary information in ring or treemap charts." +"

As its name implies, Disk Usage Analyzer is a graphical utility that you" +" can use to view and monitor your disk usage and folder structure. It " +"displays summary information in ring or treemap charts.

You can " +"perform scans on a file system, your home or any other folder - local or " +"remote. There is also an option to constantly monitor any external changes " +"to the home directory and warn the user if a file is added/removed.

" msgstr "" -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 -msgid "" -"You can perform scans on a file system, your home or any other folder - " -"local or remote. There is also an option to constantly monitor any external " -"changes to the home directory and warn the user if a file is added/removed." -msgstr "" - -#: baobab/src/baobab.c:141 baobab/src/baobab.c:358 +#: ../baobab/src/baobab.c:137 ../baobab/src/baobab.c:357 msgid "Scanning..." msgstr "" -#: baobab/src/baobab.c:186 +#: ../baobab/src/baobab.c:183 msgid "Total filesystem capacity:" msgstr "" -#: baobab/src/baobab.c:187 +#: ../baobab/src/baobab.c:184 msgid "used:" msgstr "" -#: baobab/src/baobab.c:188 +#: ../baobab/src/baobab.c:185 msgid "available:" msgstr "" -#: baobab/src/baobab.c:243 baobab/src/baobab.c:300 baobab/src/callbacks.c:268 +#. set statusbar, percentage and allocated/normal size +#: ../baobab/src/baobab.c:242 ../baobab/src/baobab.c:299 +#: ../baobab/src/callbacks.c:259 msgid "Calculating percentage bars..." msgstr "" -#: baobab/src/baobab.c:254 baobab/src/baobab.c:1300 baobab/src/callbacks.c:272 +#: ../baobab/src/baobab.c:253 ../baobab/src/baobab.c:1305 +#: ../baobab/src/callbacks.c:263 msgid "Ready" msgstr "" -#: baobab/src/baobab.c:392 +#: ../baobab/src/baobab.c:391 msgid "Total filesystem capacity" msgstr "" -#: baobab/src/baobab.c:416 +#: ../baobab/src/baobab.c:415 msgid "Total filesystem usage" msgstr "" -#: baobab/src/baobab.c:458 +#: ../baobab/src/baobab.c:457 msgid "contains hardlinks for:" msgstr "" -#: baobab/src/baobab.c:467 +#: ../baobab/src/baobab.c:466 #, c-format msgid "%5d item" msgid_plural "%5d items" msgstr[0] "" msgstr[1] "" -#: baobab/src/baobab.c:593 +#: ../baobab/src/baobab.c:592 msgid "Could not initialize monitoring" msgstr "" -#: baobab/src/baobab.c:594 +#: ../baobab/src/baobab.c:593 msgid "Changes to your home folder will not be monitored." msgstr "" -#: baobab/src/baobab.c:913 +#: ../baobab/src/baobab.c:921 msgid "Move to parent folder" msgstr "" -#: baobab/src/baobab.c:917 +#: ../baobab/src/baobab.c:925 msgid "Zoom in" msgstr "" -#: baobab/src/baobab.c:921 +#: ../baobab/src/baobab.c:929 msgid "Zoom out" msgstr "" -#: baobab/src/baobab.c:925 +#: ../baobab/src/baobab.c:933 msgid "Save screenshot" msgstr "" -#: baobab/src/baobab.c:1111 +#: ../baobab/src/baobab.c:1119 msgid "View as Rings Chart" msgstr "" -#: baobab/src/baobab.c:1113 +#: ../baobab/src/baobab.c:1121 msgid "View as Treemap Chart" msgstr "" -#: baobab/src/baobab.c:1224 +#: ../baobab/src/baobab.c:1230 msgid "Show version" msgstr "" -#: baobab/src/baobab.c:1225 +#: ../baobab/src/baobab.c:1231 msgid "[DIRECTORY]" msgstr "" -#: baobab/src/baobab.c:1257 +#: ../baobab/src/baobab.c:1261 msgid "Too many arguments. Only one directory can be specified." msgstr "" -#: baobab/src/baobab.c:1274 +#: ../baobab/src/baobab.c:1278 msgid "Could not detect any mount point." msgstr "" -#: baobab/src/baobab.c:1276 +#: ../baobab/src/baobab.c:1280 msgid "Without mount points disk usage cannot be analyzed." msgstr "" -#: baobab/src/baobab-chart.c:204 +#: ../baobab/src/baobab-chart.c:209 msgid "Maximum depth" msgstr "" -#: baobab/src/baobab-chart.c:205 +#: ../baobab/src/baobab-chart.c:210 msgid "The maximum depth drawn in the chart from the root" msgstr "" -#: baobab/src/baobab-chart.c:214 +#: ../baobab/src/baobab-chart.c:219 msgid "Chart model" msgstr "" -#: baobab/src/baobab-chart.c:215 +#: ../baobab/src/baobab-chart.c:220 msgid "Set the model of the chart" msgstr "" -#: baobab/src/baobab-chart.c:222 +#: ../baobab/src/baobab-chart.c:227 msgid "Chart root node" msgstr "" -#: baobab/src/baobab-chart.c:223 +#: ../baobab/src/baobab-chart.c:228 msgid "Set the root node from the model" msgstr "" -#: baobab/src/baobab-chart.c:1713 +#: ../baobab/src/baobab-chart.c:1714 msgid "Cannot create pixbuf image!" msgstr "" -#: baobab/src/baobab-chart.c:1723 +#. Popup the File chooser dialog +#: ../baobab/src/baobab-chart.c:1724 msgid "Save Snapshot" msgstr "" -#: baobab/src/baobab-chart.c:1750 +#: ../baobab/src/baobab-chart.c:1751 msgid "_Image type:" msgstr "" -#: baobab/src/baobab-prefs.c:171 +#: ../baobab/src/baobab-prefs.c:172 msgid "Scan" msgstr "" -#: baobab/src/baobab-prefs.c:178 +#: ../baobab/src/baobab-prefs.c:179 msgid "Device" msgstr "" -#: baobab/src/baobab-prefs.c:186 +#: ../baobab/src/baobab-prefs.c:187 msgid "Mount Point" msgstr "" -#: baobab/src/baobab-prefs.c:194 +#: ../baobab/src/baobab-prefs.c:195 msgid "Filesystem Type" msgstr "" -#: baobab/src/baobab-prefs.c:202 +#: ../baobab/src/baobab-prefs.c:203 msgid "Total Size" msgstr "" -#: baobab/src/baobab-prefs.c:211 +#: ../baobab/src/baobab-prefs.c:212 msgid "Available" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:70 +#: ../baobab/src/baobab-remote-connect-dialog.c:75 #, c-format msgid "Cannot scan location \"%s\"" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:168 +#: ../baobab/src/baobab-remote-connect-dialog.c:173 msgid "Custom Location" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:170 +#: ../baobab/src/baobab-remote-connect-dialog.c:175 msgid "SSH" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:173 +#: ../baobab/src/baobab-remote-connect-dialog.c:178 msgid "Public FTP" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:175 +#: ../baobab/src/baobab-remote-connect-dialog.c:180 msgid "FTP (with login)" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:178 +#: ../baobab/src/baobab-remote-connect-dialog.c:183 msgid "Windows share" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:180 +#: ../baobab/src/baobab-remote-connect-dialog.c:185 msgid "WebDAV (HTTP)" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:182 +#: ../baobab/src/baobab-remote-connect-dialog.c:187 msgid "Secure WebDAV (HTTPS)" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:242 +#: ../baobab/src/baobab-remote-connect-dialog.c:247 msgid "Cannot Connect to Server. You must enter a name for the server." msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:245 +#: ../baobab/src/baobab-remote-connect-dialog.c:250 msgid "Please enter a name and try again." msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:439 +#: ../baobab/src/baobab-remote-connect-dialog.c:438 msgid "_Location (URI):" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:455 +#: ../baobab/src/baobab-remote-connect-dialog.c:454 msgid "_Server:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:468 +#: ../baobab/src/baobab-remote-connect-dialog.c:467 msgid "Optional information:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:477 +#: ../baobab/src/baobab-remote-connect-dialog.c:476 msgid "_Share:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:492 -#: mate-dictionary/data/mate-dictionary-source.ui:121 +#: ../baobab/src/baobab-remote-connect-dialog.c:491 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:4 msgid "_Port:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:506 +#: ../baobab/src/baobab-remote-connect-dialog.c:505 msgid "_Folder:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:520 +#: ../baobab/src/baobab-remote-connect-dialog.c:519 msgid "_User Name:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:535 +#: ../baobab/src/baobab-remote-connect-dialog.c:534 msgid "_Domain Name:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:592 +#: ../baobab/src/baobab-remote-connect-dialog.c:595 msgid "Connect to Server" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:608 +#: ../baobab/src/baobab-remote-connect-dialog.c:611 msgid "Service _type:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:726 +#: ../baobab/src/baobab-remote-connect-dialog.c:729 msgid "_Scan" msgstr "" -#: baobab/src/baobab-treeview.c:83 +#: ../baobab/src/baobab-treeview.c:82 msgid "Rescan your home folder?" msgstr "" -#: baobab/src/baobab-treeview.c:84 +#: ../baobab/src/baobab-treeview.c:83 msgid "" "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -#: baobab/src/baobab-treeview.c:85 +#: ../baobab/src/baobab-treeview.c:84 msgid "_Rescan" msgstr "" -#: baobab/src/baobab-treeview.c:222 gsearchtool/src/gsearchtool.c:2453 +#: ../baobab/src/baobab-treeview.c:222 ../gsearchtool/src/gsearchtool.c:2436 msgid "Folder" msgstr "" -#: baobab/src/baobab-treeview.c:244 +#: ../baobab/src/baobab-treeview.c:244 msgid "Usage" msgstr "" -#: baobab/src/baobab-treeview.c:258 gsearchtool/src/gsearchtool.c:2466 +#: ../baobab/src/baobab-treeview.c:258 ../gsearchtool/src/gsearchtool.c:2449 msgid "Size" msgstr "" -#: baobab/src/baobab-treeview.c:274 +#: ../baobab/src/baobab-treeview.c:274 msgid "Contents" msgstr "" -#: baobab/src/baobab-utils.c:105 +#: ../baobab/src/baobab-utils.c:106 msgid "Select Folder" msgstr "" -#: baobab/src/baobab-utils.c:117 +#. add extra widget +#: ../baobab/src/baobab-utils.c:118 msgid "_Show hidden folders" msgstr "" -#: baobab/src/baobab-utils.c:280 +#: ../baobab/src/baobab-utils.c:299 msgid "Cannot check an excluded folder!" msgstr "" -#: baobab/src/baobab-utils.c:304 +#: ../baobab/src/baobab-utils.c:323 #, c-format msgid "\"%s\" is not a valid folder" msgstr "" -#: baobab/src/baobab-utils.c:307 +#: ../baobab/src/baobab-utils.c:326 msgid "Could not analyze disk usage." msgstr "" -#: baobab/src/baobab-utils.c:343 +#: ../baobab/src/baobab-utils.c:362 msgid "_Open Folder" msgstr "" -#: baobab/src/baobab-utils.c:349 gsearchtool/src/gsearchtool-callbacks.c:1330 +#: ../baobab/src/baobab-utils.c:368 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1226 msgid "Mo_ve to Trash" msgstr "" -#: baobab/src/baobab-utils.c:378 +#: ../baobab/src/baobab-utils.c:402 #, c-format msgid "Could not open folder \"%s\"" msgstr "" -#: baobab/src/baobab-utils.c:381 +#: ../baobab/src/baobab-utils.c:405 msgid "There is no installed viewer capable of displaying the folder." msgstr "" -#: baobab/src/baobab-utils.c:448 +#: ../baobab/src/baobab-utils.c:474 #, c-format msgid "Could not move \"%s\" to the Trash" msgstr "" -#: baobab/src/baobab-utils.c:456 +#: ../baobab/src/baobab-utils.c:482 msgid "Could not move file to the Trash" msgstr "" -#: baobab/src/baobab-utils.c:458 +#: ../baobab/src/baobab-utils.c:484 #, c-format msgid "Details: %s" msgstr "" -#: baobab/src/baobab-utils.c:496 +#: ../baobab/src/baobab-utils.c:522 msgid "There was an error displaying help." msgstr "" -#: baobab/src/callbacks.c:74 logview/src/logview-about.h:44 -#: mate-dictionary/src/gdict-about.c:49 -msgid "MATE Documentation Team" -msgstr "" - -#: baobab/src/callbacks.c:79 logview/src/logview-about.h:49 -#: mate-dictionary/src/gdict-about.c:57 +#: ../baobab/src/callbacks.c:76 ../logview/src/logview-about.h:49 msgid "" "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 " @@ -569,8 +555,7 @@ "any later version." msgstr "" -#: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 -#: mate-dictionary/src/gdict-about.c:62 +#: ../baobab/src/callbacks.c:81 ../logview/src/logview-about.h:53 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " @@ -578,1775 +563,1745 @@ "more details." msgstr "" -#: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 -#: mate-dictionary/src/gdict-about.c:67 +#: ../baobab/src/callbacks.c:86 ../logview/src/logview-about.h:57 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." -msgstr "" - -#: baobab/src/callbacks.c:105 -msgid "About Disk Usage Analyzer" +"You should have received a copy of the GNU General Public License along with" +" this program; if not, write to the Free Software Foundation, Inc., 51 " +"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA" msgstr "" -#: baobab/src/callbacks.c:106 -msgid "Analyze your disk usage through a graphical tool." +#: ../baobab/src/callbacks.c:98 +msgid "A graphical tool to analyze disk usage." msgstr "" -#: baobab/src/callbacks.c:107 -msgid "" -"Copyright © 2005-2010 Fabio Marzocca\n" -"Copyright © 2011-2021 MATE developers" -msgstr "" - -#: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 -#: mate-dictionary/src/gdict-about.c:53 +#. translator credits +#: ../baobab/src/callbacks.c:104 ../logview/src/logview-about.h:63 +#: ../mate-dictionary/src/gdict-about.c:55 msgid "translator-credits" msgstr "" "Francisco Javier F. Serrador \n" "Jorge González González " -#: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 -#: gsearchtool/src/gsearchtool-callbacks.c:879 +#: ../baobab/src/callbacks.c:202 +#: ../gsearchtool/src/gsearchtool-callbacks.c:514 +#: ../gsearchtool/src/gsearchtool-callbacks.c:864 msgid "The document does not exist." msgstr "" -#: baobab/src/callbacks.c:292 +#: ../baobab/src/callbacks.c:283 msgid "The folder does not exist." msgstr "" -#: gsearchtool/data/mate-search-tool.appdata.xml.in:7 -#: gsearchtool/data/mate-search-tool.desktop.in:3 -msgid "MATE Search Tool" -msgstr "" - -#: gsearchtool/data/mate-search-tool.appdata.xml.in:8 +#: ../gsearchtool/data/mate-search-tool.appdata.xml.in.h:1 msgid "A file searching tool for MATE Desktop" msgstr "" -#: gsearchtool/data/mate-search-tool.appdata.xml.in:10 +#: ../gsearchtool/data/mate-search-tool.appdata.xml.in.h:2 msgid "" -"MATE Search Tool is a simple but powerful utility that allows you to search " -"for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"

MATE Search Tool is a simple but powerful utility that allows you to " +"search for files and folders on any mounted file system. Its interface gives" +" you instant access to a wide variety of parameters for each search, such as" +" text contained within a file, ownership, date of modification, file size, " +"folder exclusion, etc..

" msgstr "" -#: gsearchtool/data/mate-search-tool.desktop.in:4 -msgid "Locate documents and folders on this computer by name or content" +#: ../gsearchtool/data/mate-search-tool.desktop.in.h:1 +msgid "MATE Search Tool" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: gsearchtool/data/mate-search-tool.desktop.in:13 -msgid "" -"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" +#: ../gsearchtool/data/mate-search-tool.desktop.in.h:2 +msgid "Locate documents and folders on this computer by name or content" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:1 msgid "Search history" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:6 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:2 msgid "This key defines the items which were searched for in the past." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:10 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:3 msgid "Show Additional Options" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:14 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:4 msgid "Disable Quick Search" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:15 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:5 msgid "" "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:6 msgid "Quick Search Excluded Paths" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:7 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:8 msgid "Disable Quick Search Second Scan" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:25 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:9 msgid "" "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:10 msgid "Quick Search Second Scan Excluded Paths" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:30 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:11 msgid "" "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:12 msgid "Search Result Columns Order" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:35 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:13 msgid "" "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:14 msgid "Default Window Width" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:15 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:16 msgid "Default Window Height" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:17 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:18 msgid "Default Window Maximized" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:50 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:19 msgid "" "This key determines if the search tool window starts in a maximized state." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:20 msgid "Look in Folder" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:21 msgid "This key defines the default value of the \"Look in Folder\" widget." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:22 msgid "" "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:23 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:24 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:25 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:26 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:27 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:28 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:29 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:30 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:31 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:32 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:33 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:34 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:35 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:165 +#, c-format msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:188 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:957 #, c-format msgid "Starting %s" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1098 +#, c-format msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1166 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1364 +#, c-format msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1383 +#, c-format msgid "Not a launchable item" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:225 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:228 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:228 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:231 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:231 msgid "ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:252 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:253 msgid "Show session management options" msgstr "" -#: gsearchtool/src/gsearchtool.c:82 +#: ../gsearchtool/src/gsearchtool.c:82 msgid "Contains the _text" msgstr "" -#: gsearchtool/src/gsearchtool.c:84 +#: ../gsearchtool/src/gsearchtool.c:84 msgid "_Date modified less than" msgstr "" -#: gsearchtool/src/gsearchtool.c:84 gsearchtool/src/gsearchtool.c:85 +#: ../gsearchtool/src/gsearchtool.c:84 ../gsearchtool/src/gsearchtool.c:85 msgid "days" msgstr "" -#: gsearchtool/src/gsearchtool.c:85 +#: ../gsearchtool/src/gsearchtool.c:85 msgid "Date modified more than" msgstr "" -#: gsearchtool/src/gsearchtool.c:87 +#: ../gsearchtool/src/gsearchtool.c:87 msgid "S_ize at least" msgstr "" -#: gsearchtool/src/gsearchtool.c:87 gsearchtool/src/gsearchtool.c:88 +#: ../gsearchtool/src/gsearchtool.c:87 ../gsearchtool/src/gsearchtool.c:88 msgid "kilobytes" msgstr "" -#: gsearchtool/src/gsearchtool.c:88 +#: ../gsearchtool/src/gsearchtool.c:88 msgid "Si_ze at most" msgstr "" -#: gsearchtool/src/gsearchtool.c:89 +#: ../gsearchtool/src/gsearchtool.c:89 msgid "File is empty" msgstr "" -#: gsearchtool/src/gsearchtool.c:91 +#: ../gsearchtool/src/gsearchtool.c:91 msgid "Owned by _user" msgstr "" -#: gsearchtool/src/gsearchtool.c:92 +#: ../gsearchtool/src/gsearchtool.c:92 msgid "Owned by _group" msgstr "" -#: gsearchtool/src/gsearchtool.c:93 +#: ../gsearchtool/src/gsearchtool.c:93 msgid "Owner is unrecognized" msgstr "" -#: gsearchtool/src/gsearchtool.c:95 +#: ../gsearchtool/src/gsearchtool.c:95 msgid "Na_me does not contain" msgstr "" -#: gsearchtool/src/gsearchtool.c:96 +#: ../gsearchtool/src/gsearchtool.c:96 msgid "Name matches regular e_xpression" msgstr "" -#: gsearchtool/src/gsearchtool.c:98 +#: ../gsearchtool/src/gsearchtool.c:98 msgid "Show hidden and backup files" msgstr "" -#: gsearchtool/src/gsearchtool.c:99 +#: ../gsearchtool/src/gsearchtool.c:99 msgid "Follow symbolic links" msgstr "" -#: gsearchtool/src/gsearchtool.c:100 +#: ../gsearchtool/src/gsearchtool.c:100 msgid "Exclude other filesystems" msgstr "" -#: gsearchtool/src/gsearchtool.c:158 +#: ../gsearchtool/src/gsearchtool.c:158 msgid "Show version of the application" msgstr "" -#: gsearchtool/src/gsearchtool.c:159 gsearchtool/src/gsearchtool.c:164 -#: gsearchtool/src/gsearchtool.c:173 +#: ../gsearchtool/src/gsearchtool.c:159 ../gsearchtool/src/gsearchtool.c:164 +#: ../gsearchtool/src/gsearchtool.c:173 msgid "STRING" msgstr "" -#: gsearchtool/src/gsearchtool.c:160 +#: ../gsearchtool/src/gsearchtool.c:160 msgid "PATH" msgstr "" -#: gsearchtool/src/gsearchtool.c:161 +#: ../gsearchtool/src/gsearchtool.c:161 msgid "VALUE" msgstr "" -#: gsearchtool/src/gsearchtool.c:165 gsearchtool/src/gsearchtool.c:166 +#: ../gsearchtool/src/gsearchtool.c:165 ../gsearchtool/src/gsearchtool.c:166 msgid "DAYS" msgstr "" -#: gsearchtool/src/gsearchtool.c:167 gsearchtool/src/gsearchtool.c:168 +#: ../gsearchtool/src/gsearchtool.c:167 ../gsearchtool/src/gsearchtool.c:168 msgid "KILOBYTES" msgstr "" -#: gsearchtool/src/gsearchtool.c:170 +#: ../gsearchtool/src/gsearchtool.c:170 msgid "USER" msgstr "" -#: gsearchtool/src/gsearchtool.c:171 +#: ../gsearchtool/src/gsearchtool.c:171 msgid "GROUP" msgstr "" -#: gsearchtool/src/gsearchtool.c:174 +#: ../gsearchtool/src/gsearchtool.c:174 msgid "PATTERN" msgstr "" -#: gsearchtool/src/gsearchtool.c:385 +#: ../gsearchtool/src/gsearchtool.c:385 msgid "A locate database has probably not been created." msgstr "" -#: gsearchtool/src/gsearchtool.c:487 +#: ../gsearchtool/src/gsearchtool.c:487 #, c-format msgid "Character set conversion failed for \"%s\"" msgstr "" -#: gsearchtool/src/gsearchtool.c:511 +#: ../gsearchtool/src/gsearchtool.c:511 msgid "Searching..." msgstr "" -#: gsearchtool/src/gsearchtool.c:511 gsearchtool/src/gsearchtool.c:1048 -#: gsearchtool/src/gsearchtool.c:3078 +#: ../gsearchtool/src/gsearchtool.c:511 ../gsearchtool/src/gsearchtool.c:1031 +#: ../gsearchtool/src/gsearchtool.c:3062 msgid "Search for Files" msgstr "" -#: gsearchtool/src/gsearchtool.c:994 gsearchtool/src/gsearchtool.c:1023 +#: ../gsearchtool/src/gsearchtool.c:977 ../gsearchtool/src/gsearchtool.c:1006 msgid "No files found" msgstr "" -#: gsearchtool/src/gsearchtool.c:1016 +#: ../gsearchtool/src/gsearchtool.c:999 msgid "(stopped)" msgstr "" -#: gsearchtool/src/gsearchtool.c:1022 +#: ../gsearchtool/src/gsearchtool.c:1005 msgid "No Files Found" msgstr "" -#: gsearchtool/src/gsearchtool.c:1027 +#: ../gsearchtool/src/gsearchtool.c:1010 #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 +#: ../gsearchtool/src/gsearchtool.c:1014 ../gsearchtool/src/gsearchtool.c:1052 #, c-format msgid "%'d file found" msgid_plural "%'d files found" msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool.c:1160 +#: ../gsearchtool/src/gsearchtool.c:1143 msgid "Entry changed called for a non entry option!" msgstr "" -#: gsearchtool/src/gsearchtool.c:1325 +#: ../gsearchtool/src/gsearchtool.c:1308 msgid "Set the text of \"Name contains\" search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:1326 +#: ../gsearchtool/src/gsearchtool.c:1309 msgid "Set the text of \"Look in folder\" search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:1327 +#: ../gsearchtool/src/gsearchtool.c:1310 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -#: gsearchtool/src/gsearchtool.c:1328 +#: ../gsearchtool/src/gsearchtool.c:1311 msgid "Set sort order to descending, the default is ascending" msgstr "" -#: gsearchtool/src/gsearchtool.c:1329 +#: ../gsearchtool/src/gsearchtool.c:1312 msgid "Automatically start a search" msgstr "" -#: gsearchtool/src/gsearchtool.c:1335 +#: ../gsearchtool/src/gsearchtool.c:1318 #, c-format msgid "Select the \"%s\" search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:1338 +#: ../gsearchtool/src/gsearchtool.c:1321 #, c-format msgid "Select and set the \"%s\" search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:1445 +#: ../gsearchtool/src/gsearchtool.c:1428 msgid "Invalid option passed to sortby command line argument." msgstr "" -#: gsearchtool/src/gsearchtool.c:1737 +#: ../gsearchtool/src/gsearchtool.c:1720 msgid "" "\n" "... Too many errors to display ..." msgstr "" -#: gsearchtool/src/gsearchtool.c:1751 +#: ../gsearchtool/src/gsearchtool.c:1734 msgid "" "The search results may be invalid. There were errors while performing this " "search." msgstr "" -#: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 +#: ../gsearchtool/src/gsearchtool.c:1746 ../gsearchtool/src/gsearchtool.c:1790 msgid "Show more _details" msgstr "" -#: gsearchtool/src/gsearchtool.c:1793 +#: ../gsearchtool/src/gsearchtool.c:1776 msgid "" "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -#: gsearchtool/src/gsearchtool.c:1818 +#: ../gsearchtool/src/gsearchtool.c:1801 msgid "Disable _Quick Search" msgstr "" -#: gsearchtool/src/gsearchtool.c:1845 +#: ../gsearchtool/src/gsearchtool.c:1828 #, c-format msgid "Failed to set process group id of child %d: %s.\n" msgstr "" -#: gsearchtool/src/gsearchtool.c:1870 +#: ../gsearchtool/src/gsearchtool.c:1853 msgid "Error parsing the search command." msgstr "" -#: gsearchtool/src/gsearchtool.c:1902 +#: ../gsearchtool/src/gsearchtool.c:1885 msgid "Error running the search command." msgstr "" -#: gsearchtool/src/gsearchtool.c:2025 +#: ../gsearchtool/src/gsearchtool.c:2008 #, c-format msgid "Enter a text value for the \"%s\" search option." msgstr "" #. Translators: Below is a string displaying the search options name #. and unit value. For example, "\"Date modified less than\" in days". -#: gsearchtool/src/gsearchtool.c:2030 +#: ../gsearchtool/src/gsearchtool.c:2013 #, c-format msgid "\"%s\" in %s" msgstr "" -#: gsearchtool/src/gsearchtool.c:2032 +#: ../gsearchtool/src/gsearchtool.c:2015 #, c-format msgid "Enter a value in %s for the \"%s\" search option." msgstr "" -#: gsearchtool/src/gsearchtool.c:2095 +#: ../gsearchtool/src/gsearchtool.c:2078 #, c-format msgid "Remove \"%s\"" msgstr "" -#: gsearchtool/src/gsearchtool.c:2096 +#: ../gsearchtool/src/gsearchtool.c:2079 #, c-format msgid "Click to remove the \"%s\" search option." msgstr "" -#: gsearchtool/src/gsearchtool.c:2189 +#: ../gsearchtool/src/gsearchtool.c:2172 msgid "A_vailable options:" msgstr "" -#: gsearchtool/src/gsearchtool.c:2218 +#: ../gsearchtool/src/gsearchtool.c:2201 msgid "Available options" msgstr "" -#: gsearchtool/src/gsearchtool.c:2219 +#: ../gsearchtool/src/gsearchtool.c:2202 msgid "Select a search option from the drop-down list." msgstr "" -#: gsearchtool/src/gsearchtool.c:2236 +#: ../gsearchtool/src/gsearchtool.c:2219 msgid "Add search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:2237 +#: ../gsearchtool/src/gsearchtool.c:2220 msgid "Click to add the selected available search option." msgstr "" -#: gsearchtool/src/gsearchtool.c:2326 +#: ../gsearchtool/src/gsearchtool.c:2309 msgid "S_earch results:" msgstr "" -#: gsearchtool/src/gsearchtool.c:2369 +#: ../gsearchtool/src/gsearchtool.c:2352 msgid "List View" msgstr "" -#: gsearchtool/src/gsearchtool.c:2429 -#: mate-dictionary/libgdict/gdict-source.c:243 +#: ../gsearchtool/src/gsearchtool.c:2412 +#: ../mate-dictionary/libgdict/gdict-source.c:246 msgid "Name" msgstr "Nombre" -#: gsearchtool/src/gsearchtool.c:2478 +#: ../gsearchtool/src/gsearchtool.c:2461 msgid "Type" msgstr "Tipo" -#: gsearchtool/src/gsearchtool.c:2490 +#: ../gsearchtool/src/gsearchtool.c:2473 msgid "Date Modified" msgstr "" -#: gsearchtool/src/gsearchtool.c:2820 +#: ../gsearchtool/src/gsearchtool.c:2808 msgid "_Name contains:" msgstr "" -#: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 +#: ../gsearchtool/src/gsearchtool.c:2823 ../gsearchtool/src/gsearchtool.c:2824 msgid "Enter a filename or partial filename with or without wildcards." msgstr "" -#: gsearchtool/src/gsearchtool.c:2836 +#: ../gsearchtool/src/gsearchtool.c:2824 msgid "Name contains" msgstr "" -#: gsearchtool/src/gsearchtool.c:2842 +#: ../gsearchtool/src/gsearchtool.c:2830 msgid "_Look in folder:" msgstr "" -#: gsearchtool/src/gsearchtool.c:2848 +#: ../gsearchtool/src/gsearchtool.c:2836 msgid "Browse" msgstr "" -#: gsearchtool/src/gsearchtool.c:2858 +#: ../gsearchtool/src/gsearchtool.c:2846 msgid "Look in folder" msgstr "" -#: gsearchtool/src/gsearchtool.c:2858 +#: ../gsearchtool/src/gsearchtool.c:2846 msgid "Select the folder or device from which you want to begin the search." msgstr "" -#: gsearchtool/src/gsearchtool.c:2876 +#: ../gsearchtool/src/gsearchtool.c:2864 msgid "Select more _options" msgstr "" -#: gsearchtool/src/gsearchtool.c:2885 +#: ../gsearchtool/src/gsearchtool.c:2873 msgid "Select more options" msgstr "" -#: gsearchtool/src/gsearchtool.c:2885 +#: ../gsearchtool/src/gsearchtool.c:2873 msgid "Click to expand or collapse the list of available options." msgstr "" -#: gsearchtool/src/gsearchtool.c:2916 +#: ../gsearchtool/src/gsearchtool.c:2904 msgid "Click to display the help manual." msgstr "" -#: gsearchtool/src/gsearchtool.c:2929 +#: ../gsearchtool/src/gsearchtool.c:2917 msgid "Click to close \"Search for Files\"." msgstr "" -#: gsearchtool/src/gsearchtool.c:2964 +#: ../gsearchtool/src/gsearchtool.c:2952 msgid "Click to perform a search." msgstr "" -#: gsearchtool/src/gsearchtool.c:2965 +#: ../gsearchtool/src/gsearchtool.c:2953 msgid "Click to stop a search." msgstr "" -#: gsearchtool/src/gsearchtool.c:3061 +#: ../gsearchtool/src/gsearchtool.c:3047 msgid "- the MATE Search Tool" msgstr "" -#: gsearchtool/src/gsearchtool.c:3072 +#: ../gsearchtool/src/gsearchtool.c:3056 #, c-format msgid "Failed to parse command line arguments: %s\n" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:192 +#: ../gsearchtool/src/gsearchtool-callbacks.c:199 msgid "Could not open help document." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:343 +#: ../gsearchtool/src/gsearchtool-callbacks.c:350 #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool-callbacks.c:348 -#: gsearchtool/src/gsearchtool-callbacks.c:548 +#: ../gsearchtool/src/gsearchtool-callbacks.c:355 +#: ../gsearchtool/src/gsearchtool-callbacks.c:557 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool-callbacks.c:393 +#: ../gsearchtool/src/gsearchtool-callbacks.c:400 #, c-format msgid "Could not open document \"%s\"." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:422 +#: ../gsearchtool/src/gsearchtool-callbacks.c:429 #, c-format msgid "Could not open folder \"%s\"." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:430 +#: ../gsearchtool/src/gsearchtool-callbacks.c:437 msgid "The caja file manager is not running." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:521 +#: ../gsearchtool/src/gsearchtool-callbacks.c:529 msgid "There is no installed viewer capable of displaying the document." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:543 +#: ../gsearchtool/src/gsearchtool-callbacks.c:552 #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool-callbacks.c:725 +#: ../gsearchtool/src/gsearchtool-callbacks.c:710 #, c-format msgid "Could not move \"%s\" to trash." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:756 +#: ../gsearchtool/src/gsearchtool-callbacks.c:741 #, c-format msgid "Do you want to delete \"%s\" permanently?" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:759 +#: ../gsearchtool/src/gsearchtool-callbacks.c:744 #, c-format msgid "Trash is unavailable. Could not move \"%s\" to the trash." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:803 +#: ../gsearchtool/src/gsearchtool-callbacks.c:788 #, c-format msgid "Could not delete \"%s\"." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:915 +#: ../gsearchtool/src/gsearchtool-callbacks.c:900 #, c-format msgid "Deleting \"%s\" failed: %s." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:927 +#: ../gsearchtool/src/gsearchtool-callbacks.c:912 #, c-format msgid "Moving \"%s\" failed: %s." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1143 -#: gsearchtool/src/gsearchtool-callbacks.c:1169 +#. Popup menu item: Open +#: ../gsearchtool/src/gsearchtool-callbacks.c:1040 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1070 msgid "_Open" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1199 +#. Popup menu item: Open with (default) +#: ../gsearchtool/src/gsearchtool-callbacks.c:1095 #, c-format msgid "_Open with %s" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1220 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1130 #, c-format msgid "Open with %s" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1249 +#. Popup menu item: Open With +#: ../gsearchtool/src/gsearchtool-callbacks.c:1163 msgid "Open Wit_h" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1299 +#. Popup menu item: Open Containing Folder +#: ../gsearchtool/src/gsearchtool-callbacks.c:1208 msgid "Open Containing _Folder" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1310 -msgid "Copy _Path" -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1344 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1248 msgid "_Save Results As..." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1722 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1633 msgid "Save Search Results As..." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1751 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1662 msgid "Could not save document." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1752 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1663 msgid "You did not select a document name." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1782 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1693 #, c-format msgid "Could not save \"%s\" document to \"%s\"." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1815 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1726 #, c-format msgid "The document \"%s\" already exists. Would you like to replace it?" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1819 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1730 msgid "If you replace an existing file, its contents will be overwritten." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1834 -#: mate-screenshot/src/screenshot-xfer.c:84 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1745 +#: ../mate-screenshot/src/screenshot-xfer.c:82 msgid "_Replace" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1883 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1794 msgid "The document name you selected is a folder." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1919 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1830 msgid "You may not have write permissions to the document." msgstr "" -#: gsearchtool/src/gsearchtool-support.c:427 +#. Translators: Below are the strings displayed in the 'Date Modified' +#. column of the list view. The format of this string can vary depending +#. on age of a file. Please modify the format of the timestamp to match +#. your locale. For example, to display 24 hour time replace the '%-I' +#. with '%-H' and remove the '%p'. (See bugzilla report #120434.) +#: ../gsearchtool/src/gsearchtool-support.c:448 msgid "today at %-I:%M %p" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:429 +#: ../gsearchtool/src/gsearchtool-support.c:450 msgid "yesterday at %-I:%M %p" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:431 +#: ../gsearchtool/src/gsearchtool-support.c:452 +#: ../gsearchtool/src/gsearchtool-support.c:454 msgid "%A, %B %-d %Y at %-I:%M:%S %p" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:478 +#: ../gsearchtool/src/gsearchtool-support.c:641 msgid "link (broken)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:482 +#: ../gsearchtool/src/gsearchtool-support.c:645 #, c-format msgid "link to %s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1101 +#. START OF CAJA/EEL FUNCTIONS: USED FOR HANDLING OF DUPLICATE FILENAMES +#. Localizers: +#. * Feel free to leave out the st, nd, rd and th suffix or +#. * make some or all of them match. +#. localizers: tag used to detect the first copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1260 msgid " (copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1103 +#. localizers: tag used to detect the second copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1262 msgid " (another copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1106 -#: gsearchtool/src/gsearchtool-support.c:1108 -#: gsearchtool/src/gsearchtool-support.c:1110 -#: gsearchtool/src/gsearchtool-support.c:1120 +#. localizers: tag used to detect the x11th copy of a file +#. localizers: tag used to detect the x12th copy of a file +#. localizers: tag used to detect the x13th copy of a file +#. localizers: tag used to detect the xxth copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1265 +#: ../gsearchtool/src/gsearchtool-support.c:1267 +#: ../gsearchtool/src/gsearchtool-support.c:1269 +#: ../gsearchtool/src/gsearchtool-support.c:1279 msgid "th copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1113 +#. localizers: tag used to detect the x1st copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1272 msgid "st copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1115 +#. localizers: tag used to detect the x2nd copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1274 msgid "nd copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1117 +#. localizers: tag used to detect the x3rd copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1276 msgid "rd copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1134 +#. localizers: appended to first file copy +#: ../gsearchtool/src/gsearchtool-support.c:1293 #, c-format msgid "%s (copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1136 +#. localizers: appended to second file copy +#: ../gsearchtool/src/gsearchtool-support.c:1295 #, c-format msgid "%s (another copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1139 -#: gsearchtool/src/gsearchtool-support.c:1141 -#: gsearchtool/src/gsearchtool-support.c:1143 -#: gsearchtool/src/gsearchtool-support.c:1152 +#. localizers: appended to x11th file copy +#. localizers: appended to x12th file copy +#. localizers: appended to x13th file copy +#. localizers: appended to xxth file copy +#: ../gsearchtool/src/gsearchtool-support.c:1298 +#: ../gsearchtool/src/gsearchtool-support.c:1300 +#: ../gsearchtool/src/gsearchtool-support.c:1302 +#: ../gsearchtool/src/gsearchtool-support.c:1311 #, c-format msgid "%s (%dth copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1146 +#. localizers: appended to x1st file copy +#: ../gsearchtool/src/gsearchtool-support.c:1305 #, c-format msgid "%s (%dst copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1148 +#. localizers: appended to x2nd file copy +#: ../gsearchtool/src/gsearchtool-support.c:1307 #, c-format msgid "%s (%dnd copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1150 +#. localizers: appended to x3rd file copy +#: ../gsearchtool/src/gsearchtool-support.c:1309 #, c-format msgid "%s (%drd copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1197 +#: ../gsearchtool/src/gsearchtool-support.c:1356 msgid " (invalid Unicode)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1286 +#. localizers: opening parentheses to match the "th copy)" string +#: ../gsearchtool/src/gsearchtool-support.c:1445 msgid " (" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1294 +#. localizers: opening parentheses of the "th copy)" string +#: ../gsearchtool/src/gsearchtool-support.c:1453 #, c-format msgid " (%d" msgstr "" -#: logview/data/mate-system-log.desktop.in.in:3 +#: ../logview/data/mate-system-log.desktop.in.in.h:1 msgid "Log File Viewer" msgstr "" -#: logview/data/mate-system-log.desktop.in.in:4 +#: ../logview/data/mate-system-log.desktop.in.in.h:2 msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: logview/data/mate-system-log.desktop.in.in:13 -msgid "MATE;monitor;view;system;log;files;logviewer;" -msgstr "" - -#: logview/data/org.mate.system-log.gschema.xml.in:5 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:1 msgid "Log file to open up on startup" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:6 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:2 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:10 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:3 msgid "Size of the font used to display the log" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:11 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:4 msgid "" "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:15 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:5 msgid "Height of the main window in pixels" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:16 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:6 msgid "Specifies the height of the log viewer main window in pixels." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:20 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:7 msgid "Width of the main window in pixels" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:21 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:8 msgid "Specifies the width of the log viewer main window in pixels." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:25 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:9 msgid "Log files to open up on startup" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:26 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:10 msgid "" "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:30 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:11 msgid "List of saved filters" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:31 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:12 msgid "List of saved regexp filters" msgstr "" -#: logview/data/logview-filter.ui:32 mate-disk-image-mounter/src/main.c:124 -#: mate-screenshot/data/mate-screenshot.ui:92 -msgid "_Cancel" -msgstr "" - -#: logview/data/logview-filter.ui:48 -msgid "_Apply" -msgstr "" - -#: logview/data/logview-filter.ui:91 -#: mate-screenshot/data/mate-screenshot.ui:178 +#: ../logview/data/logview-filter.ui.h:1 +#: ../mate-screenshot/data/mate-screenshot.ui.h:3 msgid "_Name:" msgstr "" -#: logview/data/logview-filter.ui:108 +#: ../logview/data/logview-filter.ui.h:2 msgid "_Regular Expression:" msgstr "" -#: logview/data/logview-filter.ui:180 +#: ../logview/data/logview-filter.ui.h:3 msgid "Highlight" msgstr "" -#: logview/data/logview-filter.ui:205 -msgid "Foreground:" +#: ../logview/data/logview-filter.ui.h:4 +msgid "Hide" msgstr "" -#: logview/data/logview-filter.ui:220 -msgid "Background:" +#: ../logview/data/logview-filter.ui.h:5 +msgid "Foreground:" msgstr "" -#: logview/data/logview-filter.ui:274 -msgid "Hide" +#: ../logview/data/logview-filter.ui.h:6 +msgid "Background:" msgstr "" -#: logview/data/logview-filter.ui:296 +#: ../logview/data/logview-filter.ui.h:7 msgid "Effect:" msgstr "" -#: logview/src/logview-about.h:41 mate-dictionary/src/gdict-about.c:46 -msgid "Sun GNOME Documentation Team " -msgstr "" - -#: logview/src/logview-app.c:369 +#: ../logview/src/logview-app.c:377 #, c-format msgid "Impossible to open the file %s" msgstr "" -#: logview/src/logview-filter-manager.c:93 +#: ../logview/src/logview-filter-manager.c:94 msgid "Filter name is empty!" msgstr "" -#: logview/src/logview-filter-manager.c:106 +#: ../logview/src/logview-filter-manager.c:107 msgid "Filter name may not contain the ':' character" msgstr "" -#: logview/src/logview-filter-manager.c:129 +#: ../logview/src/logview-filter-manager.c:130 msgid "Regular expression is empty!" msgstr "" -#: logview/src/logview-filter-manager.c:145 +#: ../logview/src/logview-filter-manager.c:146 #, c-format msgid "Regular expression is invalid: %s" msgstr "" -#: logview/src/logview-filter-manager.c:207 +#: ../logview/src/logview-filter-manager.c:242 msgid "Please specify either foreground or background color!" msgstr "" -#: logview/src/logview-filter-manager.c:282 +#: ../logview/src/logview-filter-manager.c:296 msgid "Edit filter" msgstr "" -#: logview/src/logview-filter-manager.c:282 +#: ../logview/src/logview-filter-manager.c:296 msgid "Add new filter" msgstr "" -#: logview/src/logview-filter-manager.c:469 +#: ../logview/src/logview-filter-manager.c:524 msgid "Filters" msgstr "" -#: logview/src/logview-findbar.c:169 +#: ../logview/src/logview-findbar.c:172 msgid "_Find:" msgstr "_Buscar:" -#: logview/src/logview-findbar.c:184 +#: ../logview/src/logview-findbar.c:187 msgid "Find Previous" msgstr "" -#: logview/src/logview-findbar.c:187 +#: ../logview/src/logview-findbar.c:190 msgid "Find previous occurrence of the search string" msgstr "" -#: logview/src/logview-findbar.c:192 +#: ../logview/src/logview-findbar.c:195 msgid "Find Next" msgstr "" -#: logview/src/logview-findbar.c:195 +#: ../logview/src/logview-findbar.c:198 msgid "Find next occurrence of the search string" msgstr "" -#: logview/src/logview-findbar.c:202 +#: ../logview/src/logview-findbar.c:205 msgid "Clear the search string" msgstr "" -#: logview/src/logview-log.c:589 +#: ../logview/src/logview-log.c:598 msgid "Error while uncompressing the GZipped log. The file might be corrupt." msgstr "" -#: logview/src/logview-log.c:635 +#: ../logview/src/logview-log.c:645 msgid "You don't have enough permissions to read the file." msgstr "" -#: logview/src/logview-log.c:650 +#: ../logview/src/logview-log.c:660 msgid "The file is not a regular file or is not a text file." msgstr "" -#: logview/src/logview-log.c:743 +#: ../logview/src/logview-log.c:742 msgid "This version of System Log does not support GZipped logs." msgstr "" -#: logview/src/logview-loglist.c:103 -msgid "%A, %e %b" -msgstr "" - -#: logview/src/logview-loglist.c:314 +#: ../logview/src/logview-loglist.c:316 msgid "Loading..." msgstr "" -#: logview/src/logview-main.c:48 -#, c-format -msgid "" -"%s - Version %s\n" -"Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n" -"Copyright (C) 2011-2021 MATE developers.\n" -msgstr "" - -#: logview/src/logview-main.c:64 +#: ../logview/src/logview-main.c:61 msgid "Show the application's version" msgstr "" -#: logview/src/logview-main.c:66 +#: ../logview/src/logview-main.c:63 msgid "[LOGFILE...]" msgstr "" -#: logview/src/logview-main.c:70 +#: ../logview/src/logview-main.c:67 msgid " - Browse and monitor logs" msgstr "" -#: logview/src/logview-main.c:107 +#: ../logview/src/logview-main.c:100 msgid "Log Viewer" msgstr "" -#: logview/src/logview-window.c:41 logview/src/logview-window.c:771 +#: ../logview/src/logview-window.c:38 ../logview/src/logview-window.c:767 msgid "System Log Viewer" msgstr "" -#: logview/src/logview-window.c:216 +#: ../logview/src/logview-window.c:217 #, c-format msgid "last update: %s" msgstr "" -#: logview/src/logview-window.c:220 +#: ../logview/src/logview-window.c:221 #, c-format msgid "%d lines (%s) - %s" msgstr "" -#: logview/src/logview-window.c:325 +#: ../logview/src/logview-window.c:325 msgid "Open Log" msgstr "" -#: logview/src/logview-window.c:364 +#: ../logview/src/logview-window.c:364 #, c-format msgid "There was an error displaying help: %s" msgstr "Hubo un error al mostrar la ayuda: %s" -#: logview/src/logview-window.c:478 +#: ../logview/src/logview-window.c:478 msgid "Wrapped" msgstr "" -#: logview/src/logview-window.c:493 -#: mate-dictionary/libgdict/gdict-defbox.c:1125 -#: mate-dictionary/libgdict/gdict-defbox.c:1219 -#: mate-dictionary/libgdict/gdict-defbox.c:1253 +#: ../logview/src/logview-window.c:493 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1127 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1221 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1255 msgid "Not found" msgstr "" -#: logview/src/logview-window.c:773 -msgid "About System Log Viewer" -msgstr "" - -#: logview/src/logview-window.c:774 -msgid "" -"Copyright © 1998-2008 Free Software Foundation, Inc.\n" -"Copyright © 2011-2021 MATE developers" -msgstr "" - -#: logview/src/logview-window.c:778 -msgid "View, monitor or analyze your system logs in a gradual manner." +#: ../logview/src/logview-window.c:773 +msgid "A system log viewer for MATE." msgstr "" -#: logview/src/logview-window.c:821 mate-dictionary/src/gdict-window.c:1258 +#: ../logview/src/logview-window.c:816 +#: ../mate-dictionary/src/gdict-window.c:1287 msgid "_File" msgstr "" -#: logview/src/logview-window.c:824 +#: ../logview/src/logview-window.c:819 msgid "_Filters" msgstr "" -#: logview/src/logview-window.c:827 +#: ../logview/src/logview-window.c:822 msgid "_Open..." msgstr "" -#: logview/src/logview-window.c:827 +#: ../logview/src/logview-window.c:822 msgid "Open a log from file" msgstr "" -#: logview/src/logview-window.c:829 +#: ../logview/src/logview-window.c:824 +#: ../mate-dictionary/src/gdict-window.c:1302 +msgid "_Close" +msgstr "" + +#: ../logview/src/logview-window.c:824 msgid "Close this log" msgstr "" -#: logview/src/logview-window.c:831 +#: ../logview/src/logview-window.c:826 msgid "_Quit" msgstr "" -#: logview/src/logview-window.c:831 +#: ../logview/src/logview-window.c:826 msgid "Quit the log viewer" msgstr "" -#: logview/src/logview-window.c:834 mate-dictionary/src/gdict-window.c:1277 +#. Edit menu +#: ../logview/src/logview-window.c:829 +#: ../mate-dictionary/src/gdict-window.c:1306 msgid "_Copy" msgstr "" -#: logview/src/logview-window.c:834 +#: ../logview/src/logview-window.c:829 msgid "Copy the selection" msgstr "" -#: logview/src/logview-window.c:836 mate-dictionary/src/gdict-window.c:1279 +#: ../logview/src/logview-window.c:831 +#: ../mate-dictionary/src/gdict-window.c:1308 msgid "Select _All" msgstr "" -#: logview/src/logview-window.c:836 +#: ../logview/src/logview-window.c:831 msgid "Select the entire log" msgstr "" -#: logview/src/logview-window.c:838 +#: ../logview/src/logview-window.c:833 msgid "_Find..." msgstr "" -#: logview/src/logview-window.c:838 +#: ../logview/src/logview-window.c:833 msgid "Find a word or phrase in the log" msgstr "" -#: logview/src/logview-window.c:841 +#: ../logview/src/logview-window.c:836 msgid "Zoom _In" msgstr "" -#: logview/src/logview-window.c:841 +#: ../logview/src/logview-window.c:836 msgid "Bigger text size" msgstr "" -#: logview/src/logview-window.c:843 +#: ../logview/src/logview-window.c:838 msgid "Zoom _Out" msgstr "" -#: logview/src/logview-window.c:843 +#: ../logview/src/logview-window.c:838 msgid "Smaller text size" msgstr "" -#: logview/src/logview-window.c:845 +#: ../logview/src/logview-window.c:840 msgid "_Normal Size" msgstr "" -#: logview/src/logview-window.c:845 +#: ../logview/src/logview-window.c:840 msgid "Normal text size" msgstr "" -#: logview/src/logview-window.c:848 +#: ../logview/src/logview-window.c:843 msgid "Manage Filters" msgstr "" -#: logview/src/logview-window.c:848 +#: ../logview/src/logview-window.c:843 msgid "Manage filters" msgstr "" -#: logview/src/logview-window.c:851 +#: ../logview/src/logview-window.c:846 msgid "Open the help contents for the log viewer" msgstr "" -#: logview/src/logview-window.c:853 mate-dictionary/src/gdict-applet.c:1176 -#: mate-dictionary/src/gdict-window.c:1314 +#: ../logview/src/logview-window.c:848 +#: ../mate-dictionary/src/gdict-applet.c:1190 +#: ../mate-dictionary/src/gdict-window.c:1343 msgid "_About" msgstr "_Acerca de" -#: logview/src/logview-window.c:853 +#: ../logview/src/logview-window.c:848 msgid "Show the about dialog for the log viewer" msgstr "" -#: logview/src/logview-window.c:858 +#: ../logview/src/logview-window.c:853 msgid "_Statusbar" msgstr "" -#: logview/src/logview-window.c:858 +#: ../logview/src/logview-window.c:853 msgid "Show Status Bar" msgstr "" -#: logview/src/logview-window.c:860 +#: ../logview/src/logview-window.c:855 msgid "Side _Pane" msgstr "" -#: logview/src/logview-window.c:860 +#: ../logview/src/logview-window.c:855 msgid "Show Side Pane" msgstr "" -#: logview/src/logview-window.c:862 +#: ../logview/src/logview-window.c:857 msgid "Show matches only" msgstr "" -#: logview/src/logview-window.c:862 +#: ../logview/src/logview-window.c:857 msgid "Only show lines that match one of the given filters" msgstr "" -#: logview/src/logview-window.c:994 +#: ../logview/src/logview-window.c:989 #, c-format msgid "Can't read from \"%s\"" msgstr "" -#: logview/src/logview-window.c:1419 +#: ../logview/src/logview-window.c:1414 msgid "Version: " msgstr "" -#: logview/src/logview-window.c:1525 +#: ../logview/src/logview-window.c:1522 msgid "Could not open the following files:" msgstr "" -#: mate-dictionary/data/default.desktop.in:3 -msgid "Default" -msgstr "" - -#: mate-dictionary/data/default.desktop.in:4 +#: ../mate-dictionary/data/default.desktop.in.h:1 msgid "Default Dictionary Server" msgstr "" -#: mate-dictionary/data/mate-dictionary.desktop.in.in:3 -#: mate-dictionary/data/mate-dictionary.appdata.xml.in:7 +#: ../mate-dictionary/data/mate-dictionary.desktop.in.in.h:1 msgid "MATE Dictionary" msgstr "" -#: mate-dictionary/data/mate-dictionary.desktop.in.in:4 +#: ../mate-dictionary/data/mate-dictionary.desktop.in.in.h:2 msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: mate-dictionary/data/mate-dictionary.desktop.in.in:13 -msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" -msgstr "" - -#: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 +#: ../mate-dictionary/data/mate-dictionary.appdata.xml.in.h:1 msgid "A dictionary for MATE Desktop" msgstr "" -#: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 +#: ../mate-dictionary/data/mate-dictionary.appdata.xml.in.h:2 msgid "" -"MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " -"query." +"

MATE Dictionary allows you to look up words in on-line dictionaries. It " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " +"query.

" msgstr "" -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 +#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:1 msgid "Dictionary Applet Factory" msgstr "" -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:6 +#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:2 msgid "Factory for the dictionary applet" msgstr "" -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:9 +#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:3 msgid "Dictionary Look up" msgstr "" -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:10 +#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:4 msgid "Look up words in a dictionary" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:6 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:1 msgid "The default database to use" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:7 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:2 msgid "" "The name of the default individual database or meta-database to use on a " "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:3 msgid "The default search strategy to use" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:12 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:4 msgid "" "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:5 msgid "The font to be used when printing" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:17 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:6 msgid "The font to be used when printing a definition." msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:21 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:7 msgid "The name of the dictionary source used" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:8 msgid "" "The name of the dictionary source used to retrieve the definitions of words." msgstr "" -#: mate-dictionary/data/thai.desktop.in:3 -msgid "Thai" -msgstr "" - -#: mate-dictionary/data/thai.desktop.in:4 +#: ../mate-dictionary/data/thai.desktop.in.h:1 msgid "Longdo Thai-English Dictionaries" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:283 +#: ../mate-dictionary/libgdict/gdict-client-context.c:283 msgid "Client Name" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:284 +#: ../mate-dictionary/libgdict/gdict-client-context.c:284 msgid "The name of the client of the context object" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:297 +#: ../mate-dictionary/libgdict/gdict-client-context.c:297 msgid "Hostname" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:298 +#: ../mate-dictionary/libgdict/gdict-client-context.c:298 msgid "The hostname of the dictionary server to connect to" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:311 +#: ../mate-dictionary/libgdict/gdict-client-context.c:311 msgid "Port" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:312 +#: ../mate-dictionary/libgdict/gdict-client-context.c:312 msgid "The port of the dictionary server to connect to" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:327 +#: ../mate-dictionary/libgdict/gdict-client-context.c:327 msgid "Status" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:328 +#: ../mate-dictionary/libgdict/gdict-client-context.c:328 msgid "The status code as returned by the dictionary server" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:772 +#: ../mate-dictionary/libgdict/gdict-client-context.c:777 #, c-format msgid "No connection to the dictionary server at '%s:%d'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1052 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1060 #, c-format msgid "Lookup failed for hostname '%s': no suitable resources found" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1083 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1091 #, c-format msgid "Lookup failed for host '%s': %s" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1117 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1125 #, c-format msgid "Lookup failed for host '%s': host not found" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1169 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1177 #, c-format msgid "" "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1188 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1196 #, c-format msgid "" "Unable to parse the dictionary server reply\n" ": '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1217 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1225 #, c-format msgid "No definitions found for '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1232 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1240 #, c-format msgid "Invalid database '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1247 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1255 #, c-format msgid "Invalid strategy '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1262 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1270 #, c-format msgid "Bad command '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1277 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1285 #, c-format msgid "Bad parameters for command '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1292 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1300 #, c-format msgid "No databases found on dictionary server at '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1307 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1315 #, c-format msgid "No strategies found on dictionary server at '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1732 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1740 #, c-format msgid "Connection failed to the dictionary server at %s:%d" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1771 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1779 #, c-format msgid "" "Error while reading reply from server:\n" "%s" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1844 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1852 #, c-format msgid "Connection timeout for the dictionary server at '%s:%d'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1878 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1886 +#, c-format msgid "No hostname defined for the dictionary server" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1914 -#: mate-dictionary/libgdict/gdict-client-context.c:1929 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1922 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1937 +#, c-format msgid "Unable to create socket" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1955 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1963 #, c-format msgid "Unable to set the channel as non-blocking: %s" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1970 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1978 #, c-format msgid "Unable to connect to the dictionary server at '%s:%d'" msgstr "" -#: mate-dictionary/libgdict/gdict-context.c:220 +#: ../mate-dictionary/libgdict/gdict-context.c:218 msgid "Local Only" msgstr "" -#: mate-dictionary/libgdict/gdict-context.c:221 +#: ../mate-dictionary/libgdict/gdict-context.c:219 msgid "Whether the context uses only local dictionaries or not" msgstr "" -#: mate-dictionary/libgdict/gdict-database-chooser.c:376 +#: ../mate-dictionary/libgdict/gdict-database-chooser.c:379 msgid "Reload the list of available databases" msgstr "" -#: mate-dictionary/libgdict/gdict-database-chooser.c:388 +#: ../mate-dictionary/libgdict/gdict-database-chooser.c:391 msgid "Clear the list of available databases" msgstr "" -#: mate-dictionary/libgdict/gdict-database-chooser.c:836 -#: mate-dictionary/libgdict/gdict-speller.c:773 -#: mate-dictionary/libgdict/gdict-strategy-chooser.c:783 +#: ../mate-dictionary/libgdict/gdict-database-chooser.c:841 +#: ../mate-dictionary/libgdict/gdict-speller.c:773 +#: ../mate-dictionary/libgdict/gdict-strategy-chooser.c:783 msgid "Error while matching" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:1314 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1316 msgid "F_ind:" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:1327 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1329 msgid "_Previous" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:1335 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1337 msgid "_Next" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:2483 +#: ../mate-dictionary/libgdict/gdict-defbox.c:2485 msgid "Error while looking up definition" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:2525 -#: mate-dictionary/libgdict/gdict-speller.c:731 +#: ../mate-dictionary/libgdict/gdict-defbox.c:2527 +#: ../mate-dictionary/libgdict/gdict-speller.c:731 msgid "Another search is in progress" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:2526 -#: mate-dictionary/libgdict/gdict-speller.c:732 +#: ../mate-dictionary/libgdict/gdict-defbox.c:2528 +#: ../mate-dictionary/libgdict/gdict-speller.c:732 msgid "Please wait until the current search ends." msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:2565 +#: ../mate-dictionary/libgdict/gdict-defbox.c:2567 msgid "Error while retrieving the definition" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:229 +#: ../mate-dictionary/libgdict/gdict-source.c:232 msgid "Filename" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:230 +#: ../mate-dictionary/libgdict/gdict-source.c:233 msgid "The filename used by this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:244 +#: ../mate-dictionary/libgdict/gdict-source.c:247 msgid "The display name of this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:257 +#: ../mate-dictionary/libgdict/gdict-source.c:260 msgid "Description" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:258 +#: ../mate-dictionary/libgdict/gdict-source.c:261 msgid "The description of this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:271 -#: mate-dictionary/libgdict/gdict-speller.c:375 +#: ../mate-dictionary/libgdict/gdict-source.c:274 +#: ../mate-dictionary/libgdict/gdict-speller.c:375 msgid "Database" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:272 +#: ../mate-dictionary/libgdict/gdict-source.c:275 msgid "The default database of this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:285 -#: mate-dictionary/libgdict/gdict-speller.c:382 +#: ../mate-dictionary/libgdict/gdict-source.c:288 +#: ../mate-dictionary/libgdict/gdict-speller.c:382 msgid "Strategy" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:286 +#: ../mate-dictionary/libgdict/gdict-source.c:289 msgid "The default strategy of this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:299 +#: ../mate-dictionary/libgdict/gdict-source.c:302 msgid "Transport" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:300 +#: ../mate-dictionary/libgdict/gdict-source.c:303 msgid "The transport mechanism used by this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:314 -#: mate-dictionary/libgdict/gdict-speller.c:368 +#: ../mate-dictionary/libgdict/gdict-source.c:317 +#: ../mate-dictionary/libgdict/gdict-speller.c:368 msgid "Context" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:315 +#: ../mate-dictionary/libgdict/gdict-source.c:318 msgid "The GdictContext bound to this source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:408 +#: ../mate-dictionary/libgdict/gdict-source.c:413 #, c-format msgid "Invalid transport type '%d'" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:436 +#: ../mate-dictionary/libgdict/gdict-source.c:441 #, c-format msgid "No '%s' group found inside the dictionary source definition" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:452 -#: mate-dictionary/libgdict/gdict-source.c:476 -#: mate-dictionary/libgdict/gdict-source.c:500 -#: mate-dictionary/libgdict/gdict-source.c:525 +#: ../mate-dictionary/libgdict/gdict-source.c:457 +#: ../mate-dictionary/libgdict/gdict-source.c:481 +#: ../mate-dictionary/libgdict/gdict-source.c:505 +#: ../mate-dictionary/libgdict/gdict-source.c:530 #, c-format msgid "Unable to get the '%s' key inside the dictionary source definition: %s" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:550 +#: ../mate-dictionary/libgdict/gdict-source.c:555 #, c-format msgid "" "Unable to get the '%s' key inside the dictionary source definition file: %s" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:736 +#: ../mate-dictionary/libgdict/gdict-source.c:741 +#, c-format msgid "Dictionary source does not have name" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:745 +#: ../mate-dictionary/libgdict/gdict-source.c:750 #, c-format msgid "Dictionary source '%s' has invalid transport '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-source-chooser.c:283 +#: ../mate-dictionary/libgdict/gdict-source-chooser.c:283 msgid "Reload the list of available sources" msgstr "" -#: mate-dictionary/libgdict/gdict-source-loader.c:163 +#: ../mate-dictionary/libgdict/gdict-source-loader.c:171 msgid "Paths" msgstr "" -#: mate-dictionary/libgdict/gdict-source-loader.c:164 +#: ../mate-dictionary/libgdict/gdict-source-loader.c:172 msgid "Search paths used by this object" msgstr "" -#: mate-dictionary/libgdict/gdict-source-loader.c:176 +#: ../mate-dictionary/libgdict/gdict-source-loader.c:184 msgid "Sources" msgstr "" -#: mate-dictionary/libgdict/gdict-source-loader.c:177 +#: ../mate-dictionary/libgdict/gdict-source-loader.c:185 msgid "Dictionary sources found" msgstr "" -#: mate-dictionary/libgdict/gdict-speller.c:347 +#: ../mate-dictionary/libgdict/gdict-speller.c:347 msgid "Clear the list of similar words" msgstr "" -#: mate-dictionary/libgdict/gdict-speller.c:369 +#: ../mate-dictionary/libgdict/gdict-speller.c:369 msgid "The GdictContext object used to get the word definition" msgstr "" -#: mate-dictionary/libgdict/gdict-speller.c:376 +#: ../mate-dictionary/libgdict/gdict-speller.c:376 msgid "The database used to query the GdictContext" msgstr "" -#: mate-dictionary/libgdict/gdict-speller.c:383 +#: ../mate-dictionary/libgdict/gdict-speller.c:383 msgid "The strategy used to query the GdictContext" msgstr "" -#: mate-dictionary/libgdict/gdict-strategy-chooser.c:358 +#: ../mate-dictionary/libgdict/gdict-strategy-chooser.c:358 msgid "Reload the list of available strategies" msgstr "" -#: mate-dictionary/libgdict/gdict-strategy-chooser.c:370 +#: ../mate-dictionary/libgdict/gdict-strategy-chooser.c:370 msgid "Clear the list of available strategies" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:97 +#: ../mate-dictionary/libgdict/gdict-utils.c:97 msgid "GDict debugging flags to set" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:97 -#: mate-dictionary/libgdict/gdict-utils.c:99 +#: ../mate-dictionary/libgdict/gdict-utils.c:97 +#: ../mate-dictionary/libgdict/gdict-utils.c:99 msgid "FLAGS" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:99 +#: ../mate-dictionary/libgdict/gdict-utils.c:99 msgid "GDict debugging flags to unset" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:153 +#: ../mate-dictionary/libgdict/gdict-utils.c:157 msgid "GDict Options" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:154 +#: ../mate-dictionary/libgdict/gdict-utils.c:158 msgid "Show GDict Options" msgstr "" -#: mate-dictionary/src/gdict-about.c:54 -msgid "Look up words or terms in a dictionary source." +#: ../mate-dictionary/src/gdict-about.c:58 +#: ../mate-dictionary/src/gdict-applet.c:589 +msgid "Look up words in dictionaries" msgstr "" -#: mate-dictionary/src/gdict-about.c:82 mate-dictionary/src/gdict-app.c:363 -#: mate-dictionary/src/gdict-window.c:580 -#: mate-dictionary/src/gdict-window.c:1864 +#: ../mate-dictionary/src/gdict-about.c:79 +#: ../mate-dictionary/src/gdict-app.c:371 +#: ../mate-dictionary/src/gdict-window.c:607 +#: ../mate-dictionary/src/gdict-window.c:1896 msgid "Dictionary" msgstr "" -#: mate-dictionary/src/gdict-about.c:84 -msgid "About Dictionary" -msgstr "" - -#: mate-dictionary/src/gdict-about.c:85 -msgid "" -"Copyright © 2005-2006 Emmanuele Bassi\n" -"Copyright © 2011-2021 MATE developers" -msgstr "" - #. Translators: the first is the word found, the second is the #. * database name and the last is the definition's text; please #. * keep the new lines. -#: mate-dictionary/src/gdict-app.c:207 +#: ../mate-dictionary/src/gdict-app.c:217 #, c-format msgid "" "Definition for '%s'\n" @@ -2355,701 +2310,639 @@ "%s\n" msgstr "" -#: mate-dictionary/src/gdict-app.c:221 +#: ../mate-dictionary/src/gdict-app.c:231 #, c-format msgid "Error: %s\n" msgstr "" -#: mate-dictionary/src/gdict-app.c:247 +#: ../mate-dictionary/src/gdict-app.c:257 +#, c-format msgid "See mate-dictionary --help for usage\n" msgstr "" -#: mate-dictionary/src/gdict-app.c:260 +#: ../mate-dictionary/src/gdict-app.c:270 msgid "Unable to find a suitable dictionary source" msgstr "" -#: mate-dictionary/src/gdict-app.c:294 +#: ../mate-dictionary/src/gdict-app.c:304 #, c-format msgid "" "Error while looking up the definition of \"%s\":\n" "%s" msgstr "" -#: mate-dictionary/src/gdict-app.c:323 mate-dictionary/src/gdict-app.c:333 +#: ../mate-dictionary/src/gdict-app.c:333 +#: ../mate-dictionary/src/gdict-app.c:343 msgid "Words to look up" msgstr "" -#: mate-dictionary/src/gdict-app.c:323 mate-dictionary/src/gdict-app.c:325 -#: mate-dictionary/src/gdict-app.c:333 +#: ../mate-dictionary/src/gdict-app.c:333 +#: ../mate-dictionary/src/gdict-app.c:335 +#: ../mate-dictionary/src/gdict-app.c:343 msgid "word" msgstr "" -#: mate-dictionary/src/gdict-app.c:325 +#: ../mate-dictionary/src/gdict-app.c:335 msgid "Words to match" msgstr "" -#: mate-dictionary/src/gdict-app.c:327 +#: ../mate-dictionary/src/gdict-app.c:337 msgid "Dictionary source to use" msgstr "" -#: mate-dictionary/src/gdict-app.c:327 +#: ../mate-dictionary/src/gdict-app.c:337 msgid "source" msgstr "" -#: mate-dictionary/src/gdict-app.c:329 +#: ../mate-dictionary/src/gdict-app.c:339 msgid "Print result to the console" msgstr "" -#: mate-dictionary/src/gdict-app.c:331 +#: ../mate-dictionary/src/gdict-app.c:341 msgid "Database to use" msgstr "" -#: mate-dictionary/src/gdict-app.c:331 +#: ../mate-dictionary/src/gdict-app.c:341 msgid "db" msgstr "" -#: mate-dictionary/src/gdict-app.c:343 +#. create the new option context +#: ../mate-dictionary/src/gdict-app.c:353 msgid " - Look up words in dictionaries" msgstr "" -#: mate-dictionary/src/gdict-applet.c:194 -#: mate-dictionary/src/gdict-window.c:935 +#: ../mate-dictionary/src/gdict-applet.c:206 +#: ../mate-dictionary/src/gdict-window.c:964 msgid "Save a Copy" msgstr "" -#: mate-dictionary/src/gdict-applet.c:204 -#: mate-dictionary/src/gdict-window.c:945 +#: ../mate-dictionary/src/gdict-applet.c:216 +#: ../mate-dictionary/src/gdict-window.c:974 msgid "Untitled document" msgstr "" -#: mate-dictionary/src/gdict-applet.c:225 -#: mate-dictionary/src/gdict-window.c:966 +#: ../mate-dictionary/src/gdict-applet.c:237 +#: ../mate-dictionary/src/gdict-window.c:995 #, c-format msgid "Error while writing to '%s'" msgstr "" -#: mate-dictionary/src/gdict-applet.c:350 +#: ../mate-dictionary/src/gdict-applet.c:362 msgid "Clear the definitions found" msgstr "" -#: mate-dictionary/src/gdict-applet.c:352 +#: ../mate-dictionary/src/gdict-applet.c:364 msgid "Clear definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:353 +#: ../mate-dictionary/src/gdict-applet.c:365 msgid "Clear the text of the definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:365 +#: ../mate-dictionary/src/gdict-applet.c:377 msgid "Print the definitions found" msgstr "" -#: mate-dictionary/src/gdict-applet.c:367 +#: ../mate-dictionary/src/gdict-applet.c:379 msgid "Print definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:368 +#: ../mate-dictionary/src/gdict-applet.c:380 msgid "Print the text of the definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:380 +#: ../mate-dictionary/src/gdict-applet.c:392 msgid "Save the definitions found" msgstr "" -#: mate-dictionary/src/gdict-applet.c:382 +#: ../mate-dictionary/src/gdict-applet.c:394 msgid "Save definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:383 +#: ../mate-dictionary/src/gdict-applet.c:395 msgid "Save the text of the definition to a file" msgstr "" -#: mate-dictionary/src/gdict-applet.c:520 +#: ../mate-dictionary/src/gdict-applet.c:532 msgid "Click to view the dictionary window" msgstr "" -#: mate-dictionary/src/gdict-applet.c:522 +#: ../mate-dictionary/src/gdict-applet.c:534 msgid "Toggle dictionary window" msgstr "" -#: mate-dictionary/src/gdict-applet.c:523 +#: ../mate-dictionary/src/gdict-applet.c:535 msgid "Show or hide the definition window" msgstr "" -#: mate-dictionary/src/gdict-applet.c:574 +#: ../mate-dictionary/src/gdict-applet.c:586 msgid "Type the word you want to look up" msgstr "" -#: mate-dictionary/src/gdict-applet.c:576 +#: ../mate-dictionary/src/gdict-applet.c:588 msgid "Dictionary entry" msgstr "" -#: mate-dictionary/src/gdict-applet.c:577 -msgid "Look up words in dictionaries" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:705 -#: mate-dictionary/src/gdict-window.c:1077 +#: ../mate-dictionary/src/gdict-applet.c:717 +#: ../mate-dictionary/src/gdict-window.c:1106 msgid "Dictionary Preferences" msgstr "" -#: mate-dictionary/src/gdict-applet.c:729 -#: mate-dictionary/src/gdict-pref-dialog.c:496 -#: mate-dictionary/src/gdict-source-dialog.c:477 -#: mate-dictionary/src/gdict-window.c:1224 +#: ../mate-dictionary/src/gdict-applet.c:741 +#: ../mate-dictionary/src/gdict-pref-dialog.c:498 +#: ../mate-dictionary/src/gdict-source-dialog.c:478 +#: ../mate-dictionary/src/gdict-window.c:1253 +#, c-format msgid "There was an error while displaying help" msgstr "" -#: mate-dictionary/src/gdict-applet.c:868 -#: mate-dictionary/src/gdict-window.c:495 +#: ../mate-dictionary/src/gdict-applet.c:880 +#: ../mate-dictionary/src/gdict-window.c:522 #, c-format msgid "No dictionary source available with name '%s'" msgstr "" -#: mate-dictionary/src/gdict-applet.c:872 -#: mate-dictionary/src/gdict-window.c:499 +#: ../mate-dictionary/src/gdict-applet.c:884 +#: ../mate-dictionary/src/gdict-window.c:526 msgid "Unable to find dictionary source" msgstr "" -#: mate-dictionary/src/gdict-applet.c:888 -#: mate-dictionary/src/gdict-window.c:515 +#: ../mate-dictionary/src/gdict-applet.c:900 +#: ../mate-dictionary/src/gdict-window.c:542 #, c-format msgid "No context available for source '%s'" msgstr "" -#: mate-dictionary/src/gdict-applet.c:892 -#: mate-dictionary/src/gdict-window.c:519 +#: ../mate-dictionary/src/gdict-applet.c:904 +#: ../mate-dictionary/src/gdict-window.c:546 msgid "Unable to create a context" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1158 +#: ../mate-dictionary/src/gdict-applet.c:1172 msgid "_Look Up Selected Text" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1161 +#: ../mate-dictionary/src/gdict-applet.c:1175 msgid "Cl_ear" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1164 +#: ../mate-dictionary/src/gdict-applet.c:1178 msgid "_Print" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1167 -#: mate-screenshot/data/mate-screenshot.ui:109 +#: ../mate-dictionary/src/gdict-applet.c:1181 msgid "_Save" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1170 +#: ../mate-dictionary/src/gdict-applet.c:1184 msgid "Preferences" msgstr "Preferencias" -#: mate-dictionary/src/gdict-common.c:77 +#: ../mate-dictionary/src/gdict-common.c:80 #, c-format msgid "Unable to rename file '%s' to '%s': %s" msgstr "" -#: mate-dictionary/src/gdict-common.c:101 -#: mate-dictionary/src/gdict-common.c:124 +#: ../mate-dictionary/src/gdict-common.c:104 +#: ../mate-dictionary/src/gdict-common.c:127 #, c-format msgid "Unable to create the data directory '%s': %s" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:238 -#: mate-dictionary/src/gdict-pref-dialog.c:427 +#: ../mate-dictionary/src/gdict-pref-dialog.c:240 +#: ../mate-dictionary/src/gdict-pref-dialog.c:429 msgid "Edit Dictionary Source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:302 +#: ../mate-dictionary/src/gdict-pref-dialog.c:304 msgid "Add Dictionary Source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:347 +#: ../mate-dictionary/src/gdict-pref-dialog.c:349 #, c-format msgid "Remove \"%s\"?" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:349 +#: ../mate-dictionary/src/gdict-pref-dialog.c:351 msgid "This will permanently remove the dictionary source from the list." msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:379 +#: ../mate-dictionary/src/gdict-pref-dialog.c:381 #, c-format msgid "Unable to remove source '%s'" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:713 +#: ../mate-dictionary/src/gdict-pref-dialog.c:645 msgid "Add a new dictionary source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:719 +#: ../mate-dictionary/src/gdict-pref-dialog.c:651 msgid "Remove the currently selected dictionary source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:725 +#: ../mate-dictionary/src/gdict-pref-dialog.c:657 msgid "Edit the currently selected dictionary source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:733 +#: ../mate-dictionary/src/gdict-pref-dialog.c:665 msgid "Set the font used for printing the definitions" msgstr "" -#: mate-dictionary/src/gdict-print.c:238 mate-dictionary/src/gdict-print.c:302 +#: ../mate-dictionary/src/gdict-print.c:241 +#: ../mate-dictionary/src/gdict-print.c:305 #, c-format msgid "Unable to display the preview: %s" msgstr "" -#: mate-dictionary/src/gdict-source-dialog.c:339 -#: mate-dictionary/src/gdict-source-dialog.c:432 +#: ../mate-dictionary/src/gdict-source-dialog.c:340 +#: ../mate-dictionary/src/gdict-source-dialog.c:433 msgid "Unable to create a source file" msgstr "" -#: mate-dictionary/src/gdict-source-dialog.c:357 -#: mate-dictionary/src/gdict-source-dialog.c:450 +#: ../mate-dictionary/src/gdict-source-dialog.c:358 +#: ../mate-dictionary/src/gdict-source-dialog.c:451 msgid "Unable to save source file" msgstr "" -#: mate-dictionary/src/gdict-window.c:290 +#: ../mate-dictionary/src/gdict-window.c:317 #, c-format msgid "Searching for '%s'..." msgstr "" -#: mate-dictionary/src/gdict-window.c:322 -#: mate-dictionary/src/gdict-window.c:379 +#: ../mate-dictionary/src/gdict-window.c:349 +#: ../mate-dictionary/src/gdict-window.c:406 msgid "No definitions found" msgstr "" -#: mate-dictionary/src/gdict-window.c:324 +#: ../mate-dictionary/src/gdict-window.c:351 #, c-format msgid "A definition found" msgid_plural "%d definitions found" msgstr[0] "" msgstr[1] "" -#: mate-dictionary/src/gdict-window.c:578 +#: ../mate-dictionary/src/gdict-window.c:605 #, c-format msgid "%s - Dictionary" msgstr "" -#: mate-dictionary/src/gdict-window.c:1261 +#: ../mate-dictionary/src/gdict-window.c:1290 msgid "_Go" msgstr "" -#: mate-dictionary/src/gdict-window.c:1265 -#: mate-screenshot/data/mate-screenshot.ui:58 +#. File menu +#: ../mate-dictionary/src/gdict-window.c:1294 msgid "_New" msgstr "" -#: mate-dictionary/src/gdict-window.c:1266 +#: ../mate-dictionary/src/gdict-window.c:1295 msgid "New look up" msgstr "" -#: mate-dictionary/src/gdict-window.c:1267 +#: ../mate-dictionary/src/gdict-window.c:1296 msgid "_Save a Copy..." msgstr "" -#: mate-dictionary/src/gdict-window.c:1269 +#: ../mate-dictionary/src/gdict-window.c:1298 msgid "P_review..." msgstr "" -#: mate-dictionary/src/gdict-window.c:1270 +#: ../mate-dictionary/src/gdict-window.c:1299 msgid "Preview this document" msgstr "" -#: mate-dictionary/src/gdict-window.c:1271 +#: ../mate-dictionary/src/gdict-window.c:1300 msgid "_Print..." msgstr "" -#: mate-dictionary/src/gdict-window.c:1272 +#: ../mate-dictionary/src/gdict-window.c:1301 msgid "Print this document" msgstr "" -#: mate-dictionary/src/gdict-window.c:1281 +#: ../mate-dictionary/src/gdict-window.c:1310 msgid "_Find" msgstr "" -#: mate-dictionary/src/gdict-window.c:1282 +#: ../mate-dictionary/src/gdict-window.c:1311 msgid "Find a word or phrase in the document" msgstr "" -#: mate-dictionary/src/gdict-window.c:1284 +#: ../mate-dictionary/src/gdict-window.c:1313 msgid "Find Ne_xt" msgstr "" -#: mate-dictionary/src/gdict-window.c:1286 +#: ../mate-dictionary/src/gdict-window.c:1315 msgid "Find Pre_vious" msgstr "" -#: mate-dictionary/src/gdict-window.c:1288 +#: ../mate-dictionary/src/gdict-window.c:1317 msgid "_Preferences" msgstr "_Preferencias" -#: mate-dictionary/src/gdict-window.c:1292 +#. Go menu +#: ../mate-dictionary/src/gdict-window.c:1321 msgid "_Previous Definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1293 +#: ../mate-dictionary/src/gdict-window.c:1322 msgid "Go to the previous definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1294 +#: ../mate-dictionary/src/gdict-window.c:1323 msgid "_Next Definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1295 +#: ../mate-dictionary/src/gdict-window.c:1324 msgid "Go to the next definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1296 +#: ../mate-dictionary/src/gdict-window.c:1325 msgid "_First Definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1297 +#: ../mate-dictionary/src/gdict-window.c:1326 msgid "Go to the first definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1298 +#: ../mate-dictionary/src/gdict-window.c:1327 msgid "_Last Definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1299 +#: ../mate-dictionary/src/gdict-window.c:1328 msgid "Go to the last definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1302 +#. View menu +#: ../mate-dictionary/src/gdict-window.c:1331 msgid "Similar _Words" msgstr "" -#: mate-dictionary/src/gdict-window.c:1304 +#: ../mate-dictionary/src/gdict-window.c:1333 msgid "Dictionary Sources" msgstr "" -#: mate-dictionary/src/gdict-window.c:1306 +#: ../mate-dictionary/src/gdict-window.c:1335 msgid "Available _Databases" msgstr "" -#: mate-dictionary/src/gdict-window.c:1308 +#: ../mate-dictionary/src/gdict-window.c:1337 msgid "Available St_rategies" msgstr "" -#: mate-dictionary/src/gdict-window.c:1325 +#. View menu +#: ../mate-dictionary/src/gdict-window.c:1354 msgid "_Sidebar" msgstr "" -#: mate-dictionary/src/gdict-window.c:1327 +#: ../mate-dictionary/src/gdict-window.c:1356 msgid "S_tatusbar" msgstr "" -#: mate-dictionary/src/gdict-window.c:1392 +#: ../mate-dictionary/src/gdict-window.c:1421 #, c-format msgid "Dictionary source `%s' selected" msgstr "" -#: mate-dictionary/src/gdict-window.c:1413 +#: ../mate-dictionary/src/gdict-window.c:1442 #, c-format msgid "Strategy `%s' selected" msgstr "" -#: mate-dictionary/src/gdict-window.c:1433 +#: ../mate-dictionary/src/gdict-window.c:1462 #, c-format msgid "Database `%s' selected" msgstr "" -#: mate-dictionary/src/gdict-window.c:1453 +#: ../mate-dictionary/src/gdict-window.c:1482 #, c-format msgid "Word `%s' selected" msgstr "" -#: mate-dictionary/src/gdict-window.c:1478 +#. speller +#: ../mate-dictionary/src/gdict-window.c:1507 msgid "Double-click on the word to look up" msgstr "" -#: mate-dictionary/src/gdict-window.c:1484 +#. strat-chooser +#: ../mate-dictionary/src/gdict-window.c:1513 msgid "Double-click on the matching strategy to use" msgstr "" -#: mate-dictionary/src/gdict-window.c:1489 +#. source-chooser +#: ../mate-dictionary/src/gdict-window.c:1518 msgid "Double-click on the source to use" msgstr "" -#: mate-dictionary/src/gdict-window.c:1498 +#. db-chooser +#: ../mate-dictionary/src/gdict-window.c:1527 msgid "Double-click on the database to use" msgstr "" -#: mate-dictionary/src/gdict-window.c:1670 +#: ../mate-dictionary/src/gdict-window.c:1702 msgid "Look _up:" msgstr "" -#: mate-dictionary/src/gdict-window.c:1745 +#: ../mate-dictionary/src/gdict-window.c:1777 msgid "Similar words" msgstr "" -#: mate-dictionary/src/gdict-window.c:1758 +#: ../mate-dictionary/src/gdict-window.c:1790 msgid "Available dictionaries" msgstr "" -#: mate-dictionary/src/gdict-window.c:1776 +#: ../mate-dictionary/src/gdict-window.c:1808 msgid "Available strategies" msgstr "" -#: mate-dictionary/src/gdict-window.c:1792 +#: ../mate-dictionary/src/gdict-window.c:1824 msgid "Dictionary sources" msgstr "" -#: mate-dictionary/data/mate-dictionary-preferences.ui:27 +#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:1 msgid "_Select a dictionary source for looking up words:" msgstr "" -#: mate-dictionary/data/mate-dictionary-preferences.ui:132 -#: mate-dictionary/data/mate-dictionary-source.ui:148 +#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:2 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:6 msgid "Source" msgstr "" -#: mate-dictionary/data/mate-dictionary-preferences.ui:162 +#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:3 msgid "_Print font:" msgstr "" -#: mate-dictionary/data/mate-dictionary-preferences.ui:216 +#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:4 msgid "Print" msgstr "" -#: mate-dictionary/data/mate-dictionary-source.ui:38 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:1 msgid "_Description:" msgstr "" -#: mate-dictionary/data/mate-dictionary-source.ui:53 -msgid "Source Name" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-source.ui:65 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:2 msgid "_Transport:" msgstr "" -#: mate-dictionary/data/mate-dictionary-source.ui:96 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:3 msgid "H_ostname:" msgstr "" -#: mate-dictionary/data/mate-dictionary-source.ui:175 -msgid "Dictionaries" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-source.ui:200 -msgid "Strategies" -msgstr "" - -#: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:3 -#: mate-disk-image-mounter/src/main.c:62 -msgid "MATE Disk Image Mounter" -msgstr "" - -#: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:4 -msgid "Attach and mount one or more disk image files" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:60 -msgid "An error occurred" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:81 -msgid "Allow writing to the image" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:101 -msgid "All Files" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:105 -msgid "Disk Images (*.img, *.iso)" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:121 -msgid "Select Disk Image(s) to Mount" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:125 -msgid "_Mount" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:131 -msgid "Set up _read-only mount" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:132 -msgid "" -"If checked, the mount will be read-only. This is useful if you don't want " -"the underlying disk image to be modified" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:178 -#, c-format -msgid "Error connecting to udisks daemon: %s (%s, %d)" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:186 -msgid "Attach and mount one or more disk image files." -msgstr "" - -#: mate-disk-image-mounter/src/main.c:234 -#, c-format -msgid "Cannot open `%s' - maybe the volume isn't mounted?" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:241 -#, c-format -msgid "Error opening `%s': %m" +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:5 +msgid "Source Name" msgstr "" -#: mate-disk-image-mounter/src/main.c:262 -#, c-format -msgid "Error attaching disk image: %s (%s, %d)" +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:7 +msgid "Dictionaries" msgstr "" -#: mate-screenshot/data/mate-screenshot.appdata.xml.in:7 -msgid "MATE Screenshot" +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:8 +msgid "Strategies" msgstr "" -#: mate-screenshot/data/mate-screenshot.appdata.xml.in:8 +#: ../mate-screenshot/data/mate-screenshot.appdata.xml.in.h:1 msgid "A screenshot utility for MATE Desktop" msgstr "" -#: mate-screenshot/data/mate-screenshot.appdata.xml.in:10 +#: ../mate-screenshot/data/mate-screenshot.appdata.xml.in.h:2 msgid "" -"MATE Screenshot is a simple utility that lets you capture screenshots of " -"your desktop or of application windows. You can select to copy them to the " +"

MATE Screenshot is a simple utility that lets you capture screenshots of" +" your desktop or of application windows. You can select to copy them to the " "system clipboard or save them in Portable Network Graphics (.png) image " -"format." +"format.

" msgstr "" -#: mate-screenshot/data/mate-screenshot.desktop.in:3 -#: mate-screenshot/src/mate-screenshot.c:519 -#: mate-screenshot/src/mate-screenshot.c:527 +#: ../mate-screenshot/data/mate-screenshot.desktop.in.h:1 +#: ../mate-screenshot/src/mate-screenshot.c:519 +#: ../mate-screenshot/src/mate-screenshot.c:527 msgid "Take Screenshot" msgstr "" -#: mate-screenshot/data/mate-screenshot.desktop.in:4 +#: ../mate-screenshot/data/mate-screenshot.desktop.in.h:2 msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: mate-screenshot/data/mate-screenshot.desktop.in:13 -msgid "MATE;screenshot;snapshot;desktop;window;image;" -msgstr "" - -#: mate-screenshot/data/mate-screenshot.ui:24 +#: ../mate-screenshot/data/mate-screenshot.ui.h:1 msgid "Save Screenshot" msgstr "" -#: mate-screenshot/data/mate-screenshot.ui:74 +#: ../mate-screenshot/data/mate-screenshot.ui.h:2 msgid "C_opy to Clipboard" msgstr "" -#: mate-screenshot/data/mate-screenshot.ui:192 +#: ../mate-screenshot/data/mate-screenshot.ui.h:4 msgid "Save in _folder:" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:5 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:1 msgid "Screenshot delay" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:6 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:2 msgid "The number of seconds to wait before taking the screenshot." msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:10 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:3 msgid "Screenshot directory" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:11 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:4 msgid "The directory the last screenshot was saved in." msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:15 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:5 msgid "Include Border" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:16 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:6 msgid "Include the window manager border along with the screenshot" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:20 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:7 msgid "Include Pointer" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:21 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:8 msgid "Include the pointer in the screenshot" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:25 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:9 msgid "Border Effect" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:26 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:10 msgid "" "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -#: mate-screenshot/src/mate-screenshot.c:138 +#: ../mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:250 +#: ../mate-screenshot/src/mate-screenshot.c:250 msgid "None" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:251 +#: ../mate-screenshot/src/mate-screenshot.c:251 msgid "Drop shadow" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:252 +#: ../mate-screenshot/src/mate-screenshot.c:252 msgid "Border" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:353 +#. * Include pointer * +#: ../mate-screenshot/src/mate-screenshot.c:353 msgid "Include _pointer" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:362 +#. * Include window border * +#: ../mate-screenshot/src/mate-screenshot.c:362 msgid "Include the window _border" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:377 +#: ../mate-screenshot/src/mate-screenshot.c:377 msgid "Apply _effect:" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:437 +#: ../mate-screenshot/src/mate-screenshot.c:437 msgid "Grab the whole _desktop" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:449 +#: ../mate-screenshot/src/mate-screenshot.c:449 msgid "Grab the current _window" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:461 +#: ../mate-screenshot/src/mate-screenshot.c:461 msgid "Select _area to grab" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:479 +#. translators: this is the first part of the "grab after a +#. * delay of seconds". +#: ../mate-screenshot/src/mate-screenshot.c:479 msgid "Grab _after a delay of" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:500 -#: mate-screenshot/src/mate-screenshot.c:1320 +#. translators: this is the last part of the "grab after a +#. * delay of seconds". +#: ../mate-screenshot/src/mate-screenshot.c:500 +#: ../mate-screenshot/src/mate-screenshot.c:1321 msgid "seconds" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:528 +#: ../mate-screenshot/src/mate-screenshot.c:528 msgid "Effects" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:532 +#: ../mate-screenshot/src/mate-screenshot.c:532 msgid "Take _Screenshot" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:651 +#: ../mate-screenshot/src/mate-screenshot.c:651 msgid "Error while saving screenshot" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:654 +#: ../mate-screenshot/src/mate-screenshot.c:654 #, c-format msgid "" "Impossible to save the screenshot to %s.\n" @@ -3057,81 +2950,88 @@ " Please choose another location and retry." msgstr "" -#: mate-screenshot/src/mate-screenshot.c:796 +#: ../mate-screenshot/src/mate-screenshot.c:796 msgid "Screenshot taken" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:851 +#: ../mate-screenshot/src/mate-screenshot.c:851 msgid "Unable to take a screenshot of the current window" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:916 +#. translators: this is the name of the file that gets made up +#. * with the screenshot if the entire screen is taken +#: ../mate-screenshot/src/mate-screenshot.c:916 #, c-format msgid "Screenshot at %s.png" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:923 +#. translators: this is the name of the file that gets +#. * made up with the screenshot if the entire screen is +#. * taken +#: ../mate-screenshot/src/mate-screenshot.c:923 #, c-format msgid "Screenshot at %s - %d.png" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1315 +#: ../mate-screenshot/src/mate-screenshot.c:1316 msgid "Grab a window instead of the entire screen" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1316 +#: ../mate-screenshot/src/mate-screenshot.c:1317 msgid "Grab an area of the screen instead of the entire screen" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1317 +#: ../mate-screenshot/src/mate-screenshot.c:1318 msgid "Send grabbed area directly to the clipboard" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1318 +#: ../mate-screenshot/src/mate-screenshot.c:1319 msgid "Include the window border with the screenshot" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1319 +#: ../mate-screenshot/src/mate-screenshot.c:1320 msgid "Remove the window border from the screenshot" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1320 +#: ../mate-screenshot/src/mate-screenshot.c:1321 msgid "Take screenshot after specified delay [in seconds]" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1321 +#: ../mate-screenshot/src/mate-screenshot.c:1322 msgid "Effect to add to the border (shadow, border or none)" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1321 +#: ../mate-screenshot/src/mate-screenshot.c:1322 msgid "effect" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1322 +#: ../mate-screenshot/src/mate-screenshot.c:1323 msgid "Interactively set options" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1323 +#: ../mate-screenshot/src/mate-screenshot.c:1324 msgid "Print version information and exit" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1334 +#: ../mate-screenshot/src/mate-screenshot.c:1333 msgid "Take a picture of the screen" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1357 +#: ../mate-screenshot/src/mate-screenshot.c:1356 +#, c-format msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1363 +#: ../mate-screenshot/src/mate-screenshot.c:1362 +#, c-format msgid "" "Conflicting options: --window and --area should not be used at the same " "time.\n" msgstr "" -#: mate-screenshot/src/screenshot-dialog.c:210 +#: ../mate-screenshot/src/screenshot-dialog.c:207 #, c-format msgid "" "Error loading UI definition file for the screenshot program: \n" @@ -3140,45 +3040,45 @@ "Please check your installation of mate-utils." msgstr "" -#: mate-screenshot/src/screenshot-dialog.c:233 +#: ../mate-screenshot/src/screenshot-dialog.c:230 msgid "Select a folder" msgstr "" -#: mate-screenshot/src/screenshot-dialog.c:328 -#: mate-screenshot/src/screenshot-save.c:202 +#: ../mate-screenshot/src/screenshot-dialog.c:325 +#: ../mate-screenshot/src/screenshot-save.c:199 msgid "Screenshot.png" msgstr "" -#: mate-screenshot/src/screenshot-save.c:60 +#: ../mate-screenshot/src/screenshot-save.c:57 #, c-format msgid "" "Unable to clear the temporary folder:\n" "%s" msgstr "" -#: mate-screenshot/src/screenshot-save.c:98 +#: ../mate-screenshot/src/screenshot-save.c:95 msgid "" "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -#: mate-screenshot/src/screenshot-save.c:231 +#: ../mate-screenshot/src/screenshot-save.c:225 msgid "Unknown error saving screenshot to disk" msgstr "" -#: mate-screenshot/src/screenshot-xfer.c:74 +#: ../mate-screenshot/src/screenshot-xfer.c:72 msgid "File already exists" msgstr "" -#: mate-screenshot/src/screenshot-xfer.c:77 +#: ../mate-screenshot/src/screenshot-xfer.c:75 #, c-format msgid "The file \"%s\" already exists. Would you like to replace it?" msgstr "" -#: mate-screenshot/src/screenshot-xfer.c:122 +#: ../mate-screenshot/src/screenshot-xfer.c:120 msgid "Saving file..." msgstr "" -#: mate-screenshot/src/screenshot-xfer.c:292 +#: ../mate-screenshot/src/screenshot-xfer.c:290 msgid "Can't access source file" msgstr "" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/et.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/et.gmo differ diff -Nru mate-utils-1.26.0/po/et.po mate-utils-1.26.1/po/et.po --- mate-utils-1.26.0/po/et.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/et.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,24 +2,26 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Mattias Põldaru , 2019 +# clefebvre , 2021 +# Mattias Põldaru , 2021 # Ivar Smolin , 2021 # Stefano Karapetsas , 2021 -# +# vaba , 2023 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Estonian (https://www.transifex.com/mate/teams/13566/et/)\n" -"Language: et\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: vaba , 2023\n" +"Language-Team: Estonian (https://app.transifex.com/mate/teams/13566/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -31,7 +33,8 @@ msgid "Check folder sizes and available disk space" msgstr "Kaustade suuruse ja saadaoleva kettaruumi kontroll" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -217,8 +220,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -269,8 +272,8 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d kirje" -msgstr[1] "%5d kirjet" +msgstr[0] "" +msgstr[1] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -592,8 +595,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -618,7 +621,8 @@ "Ilmar Kerm , 2001, 2002.\n" "Tõivo Leedjärv , 2002, 2003.\n" "Priit Laes , 2004–2006, 2008, 2009\n" -"Ivar Smolin , 2005–2010, 2014–2015, 2018." +"Ivar Smolin , 2005–2010, 2014–2015, 2018.\n" +"Marko Silluste, 2021." #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -642,16 +646,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Arvutis asuvate dokumentide ja kaustade otsimine nime või sisu järgi" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -687,9 +692,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Selle võtme abil kirjeldatakse rajad, mida otsinguprogramm kiirotsingu " "käigus vahele jätab. Toetatavad metasümbolid on '*' ja '?'. Vaikimisi on " @@ -716,13 +721,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"Selle võtme abil kirjeldatakse rajad, mida otsinguprogramm kiirotsingu teise " -"läbivaatuse käigus vahele jätab. Teine läbivaatus kasutab failide otsimiseks " -"find käsku. Teise läbivaatus eesmärk on indekseerimata failide leidmine. " -"Toetatavad metasümbolid on '*' ja '?'. Vaikimisi on väärtuseks /." +"Selle võtme abil kirjeldatakse rajad, mida otsinguprogramm kiirotsingu teise" +" läbivaatuse käigus vahele jätab. Teine läbivaatus kasutab failide " +"otsimiseks find käsku. Teise läbivaatus eesmärk on indekseerimata failide " +"leidmine. Toetatavad metasümbolid on '*' ja '?'. Vaikimisi on väärtuseks /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -742,9 +747,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "See võti määrab otsinguvahendi akna laiuse ja see on mõeldud akna oleku " "meelespidamiseks seansside vahel. Kui selle võtme väärtuseks määrata -1, " @@ -757,8 +762,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "See võti määrab otsinguvahendi akna kõrguse ja see on mõeldud akna oleku " "meelespidamiseks seansside vahel. Kui selle võtme väärtuseks määrata -1, " @@ -789,38 +794,37 @@ msgid "" "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." -msgstr "" -"See võti määrab käivitamisel otsinguvaliku \"Sisaldab teksti\" valituks." +msgstr "See võti määrab käivitamisel otsinguvaliku \"Sisaldab teksti\" valituks." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"See võti määrab käivitamisel otsinguvaliku \"Muutmise kuupäev on vähem kui\" " -"valituks." +"See võti määrab käivitamisel otsinguvaliku \"Muutmise kuupäev on vähem kui\"" +" valituks." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"See võti määrab käivitamisel otsinguvaliku \"Muutmise kuupäev on rohkem kui" -"\" valituks." +"See võti määrab käivitamisel otsinguvaliku \"Muutmise kuupäev on rohkem " +"kui\" valituks." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." -msgstr "" -"See võti määrab käivitamisel otsinguvaliku \"Suurus vähemalt\" valituks." +msgstr "See võti määrab käivitamisel otsinguvaliku \"Suurus vähemalt\" valituks." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"See võti määrab käivitamisel otsinguvaliku \"Suurus maksimaalselt\" valituks." +"See võti määrab käivitamisel otsinguvaliku \"Suurus maksimaalselt\" " +"valituks." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" @@ -837,10 +841,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." -msgstr "" -"See võti määrab käivitamisel otsinguvaliku \"Kuulub grupile\" valituks." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." +msgstr "See võti määrab käivitamisel otsinguvaliku \"Kuulub grupile\" valituks." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" @@ -853,16 +856,15 @@ msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." -msgstr "" -"See võti määrab käivitamisel otsinguvaliku \"Nimi ei sisalda\" valituks." +msgstr "See võti määrab käivitamisel otsinguvaliku \"Nimi ei sisalda\" valituks." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"See võti määrab käivitamisel otsinguvaliku \"Nimi vastab regulaaravaldisele" -"\" valituks." +"See võti määrab käivitamisel otsinguvaliku \"Nimi vastab " +"regulaaravaldisele\" valituks." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" @@ -888,63 +890,63 @@ "See võti määrab käivitamisel otsinguvaliku \"Teised failisüsteemid jäetakse " "välja\" valituks." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Fail pole korrektne .desktop fail" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Töölauafaili tundmatu versioon '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Käivitamine: %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Rakendus ei toeta käsurealt määratavaid dokumente" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Tundmatu käivitusvalik: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Dokumendi URI-sid pole võimalik 'Liik=Viit' töölauakirjetele edasi anda" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Pole käivitatav kirje" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Seansihalduriga ühendumise keelamine" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Määra salvestatud sätete fail" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FAIL" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Seansihalduse ID määramine" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Seansihalduse valikud:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Seansihalduse valikute näitamine" @@ -1083,15 +1085,15 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "Leiti %'d fail" -msgstr[1] "Leiti %'d faili" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "Leiti %'d fail" -msgstr[1] "Leiti %'d faili" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1317,16 +1319,16 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Kas soovid avada %d dokumendi?" -msgstr[1] "Kas soovid avada %d dokumenti?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "See avab %d eraldi akna." -msgstr[1] "See avab %d eraldi akent." +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1350,8 +1352,8 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Kas soovid avada %d kausta?" -msgstr[1] "Kas soovid avada %d kausta?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1555,7 +1557,8 @@ msgid "View or monitor system log files" msgstr "Süsteemsete logifailide sirvimine või jälgimine" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1566,12 +1569,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "Käivitamisel avatava logifaili määramine. Sõltuvalt sinu " -"operatsioonisüsteemist on selleks vaikimisi kas /var/adm/messages või /var/" -"log/messages." +"operatsioonisüsteemist on selleks vaikimisi kas /var/adm/messages või " +"/var/log/messages." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1583,7 +1586,8 @@ "main tree view. The default is taken from the default terminal font size." msgstr "" "Peaakna puuvaates kasutatava fikseeritud laiusega kirjatüübi suuruse " -"määramine. Vaikimisi võetakse selle väärtus terminali vaikimisi kirjatüübilt." +"määramine. Vaikimisi võetakse selle väärtus terminali vaikimisi " +"kirjatüübilt." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1628,7 +1632,7 @@ #: logview/data/logview-filter.ui:48 msgid "_Apply" -msgstr "" +msgstr "_Rakenda" #: logview/data/logview-filter.ui:91 #: mate-screenshot/data/mate-screenshot.ui:178 @@ -1973,7 +1977,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Sõnade definitsioonide ja kirjaviiside otsimine onlain-sõnastikust" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1985,8 +1990,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2712,8 +2717,8 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Leiti üks definitsioon" -msgstr[1] "Leiti %d definitsiooni" +msgstr[0] "" +msgstr[1] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -3019,7 +3024,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Töölauast või üksikutest akendest pildi salvestamine" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3077,8 +3083,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Äärise välisküljele määratav efekt. Võimalikud väärtused on \"shadow" -"\" (vari), \"none\" (puudub) ja \"border\" (äärisjoon)." +"Äärise välisküljele määratav efekt. Võimalikud väärtused on \"shadow\" " +"(vari), \"none\" (puudub) ja \"border\" (äärisjoon)." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3216,8 +3222,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Vastuolulised valikud: --clipboard ja --interactive ei peaks samaaegselt " "kasutama.\n" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/eu.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/eu.gmo differ diff -Nru mate-utils-1.26.0/po/eu.po mate-utils-1.26.1/po/eu.po --- mate-utils-1.26.0/po/eu.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/eu.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,41 +2,43 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Asier Iturralde Sarasola , 2019 -# Alexander Gabilondo , 2020 -# David García-Abad , 2020 -# Porrumentzio , 2020 +# clefebvre , 2021 +# David García-Abad , 2021 +# Porrumentzio , 2021 +# Asier Iturralde Sarasola , 2021 # Stefano Karapetsas , 2021 -# +# Alexander Gabilondo , 2022 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Basque (https://www.transifex.com/mate/teams/13566/eu/)\n" -"Language: eu\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Alexander Gabilondo , 2022\n" +"Language-Team: Basque (https://app.transifex.com/mate/teams/13566/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 msgid "MATE Disk Usage Analyzer" -msgstr "" +msgstr "MATE Disko Erabileraren Analizatzailea" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:4 msgid "Check folder sizes and available disk space" msgstr "Egiaztatu karpeten tamainak eta diskoan dagoen leku erabilgarria" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" -msgstr "" +msgstr "MATE; egiaztatu; diskoa; erabilera; aztertu; tamaina; espazioa;" #: baobab/data/baobab-dialog-scan-props.ui:18 msgid "Disk Usage Analyzer Preferences" @@ -189,7 +191,7 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:26 msgid "Statusbar is Visible" -msgstr "" +msgstr "Egoera-barra ikusgai dago" #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:27 msgid "Whether the status bar at the bottom of main window should be visible." @@ -197,7 +199,7 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:31 msgid "Subfolder tips visible" -msgstr "" +msgstr "Azpikarpeta aholkuak ikusgai" #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:32 msgid "Whether the subfolder tooltips of the selected folder are drawn." @@ -206,7 +208,7 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:36 msgid "Active Chart" -msgstr "" +msgstr "Diagrama aktiboa" #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:37 msgid "Which type of chart should be displayed." @@ -218,14 +220,14 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" -"Bere izena dioen bezala, Diskaren Erabilera Aztertzeko tresna zure diskaren " -"erabiliera eta karpeten egitura aztertzeko eta kontrolatzeko erabili " -"dezakezu. Informazioa eraztun edo zuhaitz grafiko gisa erabiliz laburbiltzen " -"du." +"Bere izenak dioen bezala, Diskaren Erabilera Aztertzeko tresna zure diskaren" +" erabiliera eta karpeten egitura aztertzeko eta kontrolatzeko erabili " +"dezakezu. Informazioa eraztun edo zuhaitz grafiko gisa erabiliz laburbiltzen" +" du." #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 msgid "" @@ -233,6 +235,10 @@ "local or remote. There is also an option to constantly monitor any external " "changes to the home directory and warn the user if a file is added/removed." msgstr "" +"Fitxategi-sistema bat, zure home karpeta edo beste edozein karpeta eskaneatu" +" dezakezu - lokala edo urrunekoa. Aukera ere badago home direktorioaren " +"kanpoko aldaketak etengabe kontrolatzeko eta erabiltzaileari fitxategi bat " +"gehitzen/kentzen bada abisatzeko." #: baobab/src/baobab.c:141 baobab/src/baobab.c:358 msgid "Scanning..." @@ -425,7 +431,8 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." msgstr "" -"Ezin da zerbitzariarekin konektatu. Zerbitzari baten izena idatzi behar duzu." +"Ezin da zerbitzariarekin konektatu. Zerbitzari baten izena idatzi behar " +"duzu." #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -579,8 +586,8 @@ "any later version." msgstr "" "Programa hau software librea da; birbana eta/edo alda dezakezu Software " -"Foundation-ek argitaratutako GNU Lizentzia Publiko Orokorraren 2. bertsioan, " -"edo (nahiago baduzu) beste berriago batean, jasotako baldintzak betez gero." +"Foundation-ek argitaratutako GNU Lizentzia Publiko Orokorraren 2. bertsioan," +" edo (nahiago baduzu) beste berriago batean, jasotako baldintzak betez gero." #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -590,21 +597,23 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"Egunkari-ikustailea erabilgarria izango delakoan banatzen da, baina, INOLAKO " -"BERMERIK GABE; era berean, ez da bermatzen beraren EGOKITASUNA " +"Egunkari-ikustailea erabilgarria izango delakoan banatzen da, baina, INOLAKO" +" BERMERIK GABE; era berean, ez da bermatzen beraren EGOKITASUNA " "MERKATURATZEKO edo HELBURU PARTIKULARRETARAKO ERABILTZEKO. Argibide gehiago " "nahi izanez gero, ikus GNU Lizentzia Publiko Orokorra." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" +"Programa honekin batera GNU Lizentzia Publiko Orokorraren kopia bat jaso " +"beharko zenuke. Hala ez bada, ikusi " #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" -msgstr "" +msgstr "Disko-erabileraren analizatzaileari buruz" #: baobab/src/callbacks.c:106 msgid "Analyze your disk usage through a graphical tool." @@ -635,20 +644,25 @@ #: gsearchtool/data/mate-search-tool.appdata.xml.in:7 #: gsearchtool/data/mate-search-tool.desktop.in:3 msgid "MATE Search Tool" -msgstr "" +msgstr "MATE Bilaketa tresna" #: gsearchtool/data/mate-search-tool.appdata.xml.in:8 msgid "A file searching tool for MATE Desktop" -msgstr "" +msgstr "MATE mahaigainerako fitxategiak bilatzeko tresna" #: gsearchtool/data/mate-search-tool.appdata.xml.in:10 msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." -msgstr "" +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." +msgstr "" +"MATE Bilaketa tresna sinple baina indartsua da, muntatutako edozein " +"fitxategi-sistematan fitxategiak eta karpetak bilatzeko aukera ematen duena." +" Bere interfazeak bilaketa bakoitzerako parametro ugarietarako berehalako " +"sarbidea ematen dizu, hala nola, fitxategi batean jasotako testua, jabetza, " +"aldaketa data, fitxategiaren tamaina, karpeta baztertzea, etab." #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" @@ -656,19 +670,21 @@ "Lokalizatu dokumentuak eta karpetak ordenagailu honetan izen edo edukiaren " "arabera" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" +"MATE;bilatu;fitxategiak;kokatu;dokumentuak;karpetak;ordenagailua;izena;edukia;aurkitu;tresna;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" -msgstr "" +msgstr "Bilaketen historia" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:6 msgid "This key defines the items which were searched for in the past." -msgstr "" +msgstr "Gako honek iraganean bilatu diren elementuak definitzen ditu." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:10 msgid "Show Additional Options" @@ -692,14 +708,14 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Gako honek bide-izenak definitzen ditu, bilaketa-tresnaren bilaketa " "azkarretik baztertzeko. '*' eta '?' komodinak onartzen dira. Balio " -"lehenetsiak hauek dira: /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, eta /var/" -"*." +"lehenetsiak hauek dira: /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, eta " +"/var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -722,13 +738,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Gako honek bide-izenak definitzen ditu, bilaketa-tresnaren 2. eskaneatzetik " -"baztertzeko bilaketa azkarra lantzean. 2. aldiz eskaneatzean 'find' komandoa " -"erabiltzen da fitxategiak bilatzeko. 2 eskaneaketa egitearen xedea indexatu " -"ez diren fitxategiak aurkitzea da. '*' eta '?' komodinak onartzen dira. " +"baztertzeko bilaketa azkarra lantzean. 2. aldiz eskaneatzean 'find' komandoa" +" erabiltzen da fitxategiak bilatzeko. 2 eskaneaketa egitearen xedea indexatu" +" ez diren fitxategiak aurkitzea da. '*' eta '?' komodinak onartzen dira. " "Balio lehenetsia hau da: /" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -740,8 +756,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"Gako honek bilaketako emaitzen zutabeen ordena definitzen du. Erabiltzaileak " -"ez luke gako hau aldatu behar." +"Gako honek bilaketako emaitzen zutabeen ordena definitzen du. Erabiltzaileak" +" ez luke gako hau aldatu behar." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -749,9 +765,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Gako honek leihoaren zabalera definitzen du eta saioen artean bilaketa-" "tresnaren tamaina gogoratzeko erabiltzen da. '-1' balioarekin bilaketa-" @@ -764,8 +780,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Gako honek leihoaren altuera definitzen du eta saioen artean bilaketa- " "tresnaren tamaina gogoratzeko erabiltzen da. '-1' balioarekin bilaketa-" @@ -787,8 +803,7 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 msgid "This key defines the default value of the \"Look in Folder\" widget." -msgstr "" -"Gako honek \"Bilatu karpetan\" trepetaren balio lehenetsia definitzen du." +msgstr "Gako honek \"Bilatu karpetan\" trepetaren balio lehenetsia definitzen du." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 msgid "" @@ -848,8 +863,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Gako honek \"Taldearena\" bilaketa-aukera hautatuta dagoen zehazten du, " "bilaketako tresna abiatzean." @@ -867,13 +882,13 @@ "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"Gako honek \"Izenak ez dauka\" bilaketa-aukera hautatuta dagoen zehazten du, " -"bilaketako tresna abiatzean." +"Gako honek \"Izenak ez dauka\" bilaketa-aukera hautatuta dagoen zehazten du," +" bilaketako tresna abiatzean." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Gako honek \"Izena bat dator adierazpen erregularrarekin\" bilaketa-aukera " "hautatuta dagoen zehazten du, bilaketako tresna abiatzean." @@ -902,62 +917,62 @@ "Gako honek \"Baztertu beste fitxategi-sistemak\" bilaketa-aukera hautatuta " "dagoen zehazten du, bilaketako tresna abiatzean." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Fitxategia ez da baliozko .desktop fitxategia" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Mahaigaineko (.desktop) fitxategiaren '%s' bertsioa ezezaguna" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s hasieratzen" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Aplikazioak ez ditu dokumenturik onartzen komando-lerroan" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Abiarazteko aukera ezezaguna: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Ezin zaio dokumentuen URIrik eman 'Type=Link' mahaigaineko sarrerari" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Ez da elementu abiarazgarria" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Desgaitu saio-kudeatzailearen konexioa" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Zehaztu gordetako konfigurazioa duen fitxategia" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FITXATEGIA" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Zehaztu saio-kudeatzailearen IDa" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "IDa" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Saio-kudeaketaren aukerak:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Erakutsi saio-kudeaketaren aukerak" @@ -1381,8 +1396,7 @@ #: gsearchtool/src/gsearchtool-callbacks.c:759 #, c-format msgid "Trash is unavailable. Could not move \"%s\" to the trash." -msgstr "" -"Zakarrontzia ez dago eskuragarri. Ezin izan da \"%s\" zakarrontzira bota." +msgstr "Zakarrontzia ez dago eskuragarri. Ezin izan da \"%s\" zakarrontzira bota." #: gsearchtool/src/gsearchtool-callbacks.c:803 #, c-format @@ -1420,11 +1434,11 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1299 msgid "Open Containing _Folder" -msgstr "" +msgstr "Ireki dagoen karpeta" #: gsearchtool/src/gsearchtool-callbacks.c:1310 msgid "Copy _Path" -msgstr "" +msgstr "Kopiatu _bidea" #: gsearchtool/src/gsearchtool-callbacks.c:1344 msgid "_Save Results As..." @@ -1571,7 +1585,8 @@ msgid "View or monitor system log files" msgstr "Ikusi edo monitorizatu sistemaren egunkari-fitxategiak" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1582,11 +1597,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Abiaraztean irekiko den egunkari-fitxategia zehazten du. Lehenetsia /var/adm/" -"messages edo /var/log/messages da, zure sistema eragilearen arabera." +"Abiaraztean irekiko den egunkari-fitxategia zehazten du. Lehenetsia " +"/var/adm/messages edo /var/log/messages da, zure sistema eragilearen " +"arabera." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1628,16 +1644,16 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"Abiaraztean irekiko den egunkari-fitxategia zehazten du. Zerrenda " -"lehenetsia /etc/syslog.conf irakurtzean sortzen da." +"Abiaraztean irekiko den egunkari-fitxategia zehazten du. Zerrenda lehenetsia" +" /etc/syslog.conf irakurtzean sortzen da." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" -msgstr "" +msgstr "Gordetako iragazkien zerrenda" #: logview/data/org.mate.system-log.gschema.xml.in:31 msgid "List of saved regexp filters" -msgstr "" +msgstr "Gordetako ohiko iragazkien zerrenda" #: logview/data/logview-filter.ui:32 mate-disk-image-mounter/src/main.c:124 #: mate-screenshot/data/mate-screenshot.ui:92 @@ -1646,7 +1662,7 @@ #: logview/data/logview-filter.ui:48 msgid "_Apply" -msgstr "" +msgstr "_Aplikatu" #: logview/data/logview-filter.ui:91 #: mate-screenshot/data/mate-screenshot.ui:178 @@ -1679,7 +1695,7 @@ #: logview/src/logview-about.h:41 mate-dictionary/src/gdict-about.c:46 msgid "Sun GNOME Documentation Team " -msgstr "" +msgstr "Sun GNOMEren dokumentazio taldea " #: logview/src/logview-app.c:369 #, c-format @@ -1778,6 +1794,9 @@ "Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n" "Copyright (C) 2011-2021 MATE developers.\n" msgstr "" +"%s - bertsioa %s\n" +"Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi eta beste batzuk.\n" +"Copyright (C) 2011-2021 MATE garatzaileak.\n" #: logview/src/logview-main.c:64 msgid "Show the application's version" @@ -1831,17 +1850,20 @@ #: logview/src/logview-window.c:773 msgid "About System Log Viewer" -msgstr "" +msgstr "Egunkari-fitxategien ikustaileari buruz" #: logview/src/logview-window.c:774 msgid "" "Copyright © 1998-2008 Free Software Foundation, Inc.\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Copyright 1998-2008 Free Software Foundation, Inc.\n" +"Copyright 2011-2021 MATE garatzaileak" #: logview/src/logview-window.c:778 msgid "View, monitor or analyze your system logs in a gradual manner." msgstr "" +"Ikusi, kontrolatu edo aztertu zure sistemaren erregistroak modu mailakatuan." #: logview/src/logview-window.c:821 mate-dictionary/src/gdict-window.c:1258 msgid "_File" @@ -1994,22 +2016,27 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Bilatu hitzen definizioak eta ortografiak lineako hiztegi batean" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" #: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 msgid "A dictionary for MATE Desktop" -msgstr "" +msgstr "MATE mahaigainerako hiztegia" #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" +"MATE Hiztegiak lineako hiztegietan hitzak bilatzeko aukera ematen du. Dict " +"zerbitzarien (RFC 2229) zerrenda batekin aurrez konfiguratuta dator, eta " +"horri zure iturriak gehi ditzaiokezu, eta kontsulta zehatz baterako " +"zerbitzari zehatzak hauta ditzakezu." #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 msgid "Dictionary Applet Factory" @@ -2050,8 +2077,8 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"Bilaketa-estrategia lehenetsiaren izena hiztegi-iturburu batean erabiltzeko, " -"eskuragarri badago. Estrategia lehenetsia 'exact' da, bat datozen hitz " +"Bilaketa-estrategia lehenetsiaren izena hiztegi-iturburu batean erabiltzeko," +" eskuragarri badago. Estrategia lehenetsia 'exact' da, bat datozen hitz " "zehatzak aurkitzea alegia." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 @@ -2069,7 +2096,8 @@ #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22 msgid "" "The name of the dictionary source used to retrieve the definitions of words." -msgstr "Erabili den hiztegi-iturburuaren izena hitzen definizioak eskuratzeko." +msgstr "" +"Erabili den hiztegi-iturburuaren izena hitzen definizioak eskuratzeko." #: mate-dictionary/data/thai.desktop.in:3 msgid "Thai" @@ -2285,7 +2313,7 @@ #: mate-dictionary/libgdict/gdict-source.c:244 msgid "The display name of this dictionary source" -msgstr "" +msgstr "Hiztegi-iturburu honen bistaratzeko izena" #: mate-dictionary/libgdict/gdict-source.c:257 msgid "Description" @@ -2302,7 +2330,7 @@ #: mate-dictionary/libgdict/gdict-source.c:272 msgid "The default database of this dictionary source" -msgstr "" +msgstr "Hiztegi-iturburu honen datu-base lehenetsia" #: mate-dictionary/libgdict/gdict-source.c:285 #: mate-dictionary/libgdict/gdict-speller.c:382 @@ -2311,7 +2339,7 @@ #: mate-dictionary/libgdict/gdict-source.c:286 msgid "The default strategy of this dictionary source" -msgstr "" +msgstr "Hiztegi-iturburu honen estrategia lehenetsia" #: mate-dictionary/libgdict/gdict-source.c:299 msgid "Transport" @@ -2353,7 +2381,8 @@ msgid "" "Unable to get the '%s' key inside the dictionary source definition file: %s" msgstr "" -"Ezin da '%s' gakoa hiztegi-iturburuko definizioen fitxategi barruan lortu: %s" +"Ezin da '%s' gakoa hiztegi-iturburuko definizioen fitxategi barruan lortu: " +"%s" #: mate-dictionary/libgdict/gdict-source.c:736 msgid "Dictionary source does not have name" @@ -2431,7 +2460,7 @@ #: mate-dictionary/src/gdict-about.c:54 msgid "Look up words or terms in a dictionary source." -msgstr "" +msgstr "Bilatu hitzak edo terminoak hiztegi-iturburu batean." #: mate-dictionary/src/gdict-about.c:82 mate-dictionary/src/gdict-app.c:363 #: mate-dictionary/src/gdict-window.c:580 @@ -2441,13 +2470,15 @@ #: mate-dictionary/src/gdict-about.c:84 msgid "About Dictionary" -msgstr "" +msgstr "Hiztegiari buruz" #: mate-dictionary/src/gdict-about.c:85 msgid "" "Copyright © 2005-2006 Emmanuele Bassi\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Copyright 2005-2006 Emmanuele Bassi\n" +"Copyright 2011-2021 MATE garatzaileak" #. Translators: the first is the word found, the second is the #. * database name and the last is the definition's text; please @@ -2699,7 +2730,7 @@ #: mate-dictionary/src/gdict-pref-dialog.c:725 msgid "Edit the currently selected dictionary source" -msgstr "" +msgstr "Editatu une honetan hautatutako hiztegi-iturburua" #: mate-dictionary/src/gdict-pref-dialog.c:733 msgid "Set the font used for printing the definitions" @@ -2777,7 +2808,7 @@ #: mate-dictionary/src/gdict-window.c:1281 msgid "_Find" -msgstr "" +msgstr "_Bilatu" #: mate-dictionary/src/gdict-window.c:1282 msgid "Find a word or phrase in the document" @@ -2951,11 +2982,11 @@ #: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:3 #: mate-disk-image-mounter/src/main.c:62 msgid "MATE Disk Image Mounter" -msgstr "" +msgstr "MATE disko-irudien muntatzailea" #: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:4 msgid "Attach and mount one or more disk image files" -msgstr "" +msgstr "Erantsi eta muntatu disko-irudi fitxategi bat edo gehiago" #: mate-disk-image-mounter/src/main.c:60 msgid "An error occurred" @@ -2963,7 +2994,7 @@ #: mate-disk-image-mounter/src/main.c:81 msgid "Allow writing to the image" -msgstr "" +msgstr "Baimendu irudian idaztea" #: mate-disk-image-mounter/src/main.c:101 msgid "All Files" @@ -2971,11 +3002,11 @@ #: mate-disk-image-mounter/src/main.c:105 msgid "Disk Images (*.img, *.iso)" -msgstr "" +msgstr "Disko-irudiak (*.img, *.iso)" #: mate-disk-image-mounter/src/main.c:121 msgid "Select Disk Image(s) to Mount" -msgstr "" +msgstr "Hautatu muntatu beharreko disko-irudia(k)" #: mate-disk-image-mounter/src/main.c:125 msgid "_Mount" @@ -2983,45 +3014,47 @@ #: mate-disk-image-mounter/src/main.c:131 msgid "Set up _read-only mount" -msgstr "" +msgstr "Ezarri soilik irakurtzeko muntaketa" #: mate-disk-image-mounter/src/main.c:132 msgid "" "If checked, the mount will be read-only. This is useful if you don't want " "the underlying disk image to be modified" msgstr "" +"Hautatzen bada, muntaketa irakurtzeko soilik izango da. Hau erabilgarria da " +"azpiko diskoaren irudia aldatzea nahi ez baduzu" #: mate-disk-image-mounter/src/main.c:178 #, c-format msgid "Error connecting to udisks daemon: %s (%s, %d)" -msgstr "" +msgstr "Errore bat gertatu da udisks demoniora konektatzean: %s (%s, %d)" #: mate-disk-image-mounter/src/main.c:186 msgid "Attach and mount one or more disk image files." -msgstr "" +msgstr "Erantsi eta muntatu disko-irudi fitxategi bat edo gehiago." #: mate-disk-image-mounter/src/main.c:234 #, c-format msgid "Cannot open `%s' - maybe the volume isn't mounted?" -msgstr "" +msgstr "Ezin da '%s' ireki - agian bolumena ez dago muntatuta?" #: mate-disk-image-mounter/src/main.c:241 #, c-format msgid "Error opening `%s': %m" -msgstr "" +msgstr "Errorea `%s' irekitzean: %m" #: mate-disk-image-mounter/src/main.c:262 #, c-format msgid "Error attaching disk image: %s (%s, %d)" -msgstr "" +msgstr "Errore bat gertatu da disko-irudia eranstean: %s (%s, %d)" #: mate-screenshot/data/mate-screenshot.appdata.xml.in:7 msgid "MATE Screenshot" -msgstr "" +msgstr "MATE Pantaila-argazkia" #: mate-screenshot/data/mate-screenshot.appdata.xml.in:8 msgid "A screenshot utility for MATE Desktop" -msgstr "" +msgstr "MATE mahaigainerako pantaila-argazki tresna" #: mate-screenshot/data/mate-screenshot.appdata.xml.in:10 msgid "" @@ -3030,6 +3063,10 @@ "system clipboard or save them in Portable Network Graphics (.png) image " "format." msgstr "" +"MATE Pantaila-argazkia zure mahaigainaren edo aplikazioaren leihoetako " +"pantaila-argazkiak ateratzeko aukera ematen duen tresna sinple bat da. " +"Sistemaren arbelean kopiatzea edo Portable Network Graphics (.png) irudi " +"formatuan gordetzea hauta dezakezu." #: mate-screenshot/data/mate-screenshot.desktop.in:3 #: mate-screenshot/src/mate-screenshot.c:519 @@ -3041,7 +3078,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Gorde mahaigaineko edo leiho bakarren irudiak" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3099,8 +3137,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Ertzaren kanpoaldean gehituko den efektua. Dauden balioak: \"shadow" -"\" (itzala), \"none\" (bat ere ez), eta \"border\" (ertza)." +"Ertzaren kanpoaldean gehituko den efektua. Dauden balioak: \"shadow\" " +"(itzala), \"none\" (bat ere ez), eta \"border\" (ertza)." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3185,12 +3223,12 @@ #: mate-screenshot/src/mate-screenshot.c:916 #, c-format msgid "Screenshot at %s.png" -msgstr "" +msgstr "Pantaila-argazkia %s.png-ra" #: mate-screenshot/src/mate-screenshot.c:923 #, c-format msgid "Screenshot at %s - %d.png" -msgstr "" +msgstr "Pantaila-argazkia %s - %d.png-ra" #: mate-screenshot/src/mate-screenshot.c:1315 msgid "Grab a window instead of the entire screen" @@ -3202,7 +3240,7 @@ #: mate-screenshot/src/mate-screenshot.c:1317 msgid "Send grabbed area directly to the clipboard" -msgstr "" +msgstr "Bidali ateratako eremua zuzenean arbelera" #: mate-screenshot/src/mate-screenshot.c:1318 msgid "Include the window border with the screenshot" @@ -3230,7 +3268,7 @@ #: mate-screenshot/src/mate-screenshot.c:1323 msgid "Print version information and exit" -msgstr "" +msgstr "Inprimatu bertsioaren informazioa eta irten" #: mate-screenshot/src/mate-screenshot.c:1334 msgid "Take a picture of the screen" @@ -3238,8 +3276,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3258,6 +3296,10 @@ "\n" "Please check your installation of mate-utils." msgstr "" +"Errore bat gertatu da pantaila-argazkiaren programarako UI definizio fitxategia kargatzean:\n" +"%s\n" +"\n" +"Mesedez, egiaztatu zure mate-tresnen instalazioa." #: mate-screenshot/src/screenshot-dialog.c:233 msgid "Select a folder" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/fa.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/fa.gmo differ diff -Nru mate-utils-1.26.0/po/fa.po mate-utils-1.26.1/po/fa.po --- mate-utils-1.26.0/po/fa.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/fa.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,30 +2,30 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# royaniva , 2018 -# Dante Marshal , 2018 -# 6f5aa4f0e7eb845399ccca24115a73fc, 2018 -# a8421664e61380eccf98265d27b51edb, 2018 -# hypermit , 2018 -# Borderliner , 2018 -# Mahdi Pourghasem , 2018 -# sir_hawell , 2019 +# Borderliner , 2021 +# royaniva , 2021 +# 754598e3caa3bd671cee241416ff186a_546ea2f <9529c56957aed2e5271e208611b58ad7_432462>, 2021 +# 6f5aa4f0e7eb845399ccca24115a73fc, 2021 # Stefano Karapetsas , 2021 -# +# a8421664e61380eccf98265d27b51edb, 2021 +# sir_hawell , 2021 +# hypermit , 2021 +# Mahdi Pourghasem , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Persian (https://www.transifex.com/mate/teams/13566/fa/)\n" -"Language: fa\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Mahdi Pourghasem , 2021\n" +"Language-Team: Persian (https://app.transifex.com/mate/teams/13566/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -37,7 +37,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -221,8 +222,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -586,8 +587,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -631,9 +632,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -642,7 +643,8 @@ "پیدا کردن نوشتارها و پوشه‌های موجود در این کامپیوتر با استفاده از نام یا " "محتوای آنها" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -678,14 +680,14 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "این کلید مسیرهایی را که ابزار جستجو در جستجوی سریع مستثنی خواهد کرد، مشخص " -"می‌کند. نویسه‌های عام «*» و «?» پشتیبانی می‌شوند. مقادیر پیش فرض ‎/mnt/*‎، /media/" -"*‎، /dev/*‎، /tmp/*، ‎/proc/*‎ و ‎/var/*‎ هستند.media/*، /dev/*، /tmp/*، /proc/*، " -"و /var/*." +"می‌کند. نویسه‌های عام «*» و «?» پشتیبانی می‌شوند. مقادیر پیش فرض ‎/mnt/*‎، " +"/media/*‎، /dev/*‎، /tmp/*، ‎/proc/*‎ و ‎/var/*‎ هستند.media/*، /dev/*، " +"/tmp/*، /proc/*، و /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -696,8 +698,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"این کلید معین می‌کند که ابزار جستجو پس از انجام یک جستجوی سریع فرمان find را " -"از کار بیندازد یا نه." +"این کلید معین می‌کند که ابزار جستجو پس از انجام یک جستجوی سریع فرمان find را" +" از کار بیندازد یا نه." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -708,13 +710,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"این کلید مسیرهایی را که ابزار جستجو هنگام انجام یک جستجوی سریع از دومین پویش " -"مستثنی می‌کند، مشخص می‌کند. پویش دوم برای جستجوی پرونده‌ها از قرمان find " -"استفاده می‌کند. فایدهٔ پویش دوم پیدا کردن پرونده‌هایی است که نمایه‌سازی نشده‌اند. " -"نویسه‌های عام «*» و «?» پشتیبانی می‌شوند. مقدار پیش‌فرض / است. " +"این کلید مسیرهایی را که ابزار جستجو هنگام انجام یک جستجوی سریع از دومین پویش" +" مستثنی می‌کند، مشخص می‌کند. پویش دوم برای جستجوی پرونده‌ها از قرمان find " +"استفاده می‌کند. فایدهٔ پویش دوم پیدا کردن پرونده‌هایی است که نمایه‌سازی " +"نشده‌اند. نویسه‌های عام «*» و «?» پشتیبانی می‌شوند. مقدار پیش‌فرض / است. " #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -725,8 +727,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"این کلید ترتیب ستون‌ها را در نتایج جستجو مشخص می‌کند. کاربر نباید این کلید را " -"تغییر دهد." +"این کلید ترتیب ستون‌ها را در نتایج جستجو مشخص می‌کند. کاربر نباید این کلید " +"را تغییر دهد." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -734,13 +736,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"این کلید عرض پنجره را مشخص می‌کند، و از آن برای یادآوری اندازهٔ ابزار جستجو در " -"بین نشست‌ها استفاده می‌شود. تنظیم مقدار آن به ۱- باعث می‌شود ابزار جستجو با عرض " -"پیش‌فرض ظاهر شود." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"این کلید عرض پنجره را مشخص می‌کند، و از آن برای یادآوری اندازهٔ ابزار جستجو " +"در بین نشست‌ها استفاده می‌شود. تنظیم مقدار آن به ۱- باعث می‌شود ابزار جستجو " +"با عرض پیش‌فرض ظاهر شود." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -749,12 +751,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"این کلید ارتفاع پنجره را مشخص می‌کند، و از آن برای یادآوری اندازهٔ ابزار جستجو " -"در بین نشست‌ها استفاده می‌شود. تنظیم مقدار آن به ۱- باعث می‌شود ابزار جستجو با " -"ارتفاع پیش‌فرض ظاهر شود." +"این کلید ارتفاع پنجره را مشخص می‌کند، و از آن برای یادآوری اندازهٔ ابزار " +"جستجو در بین نشست‌ها استفاده می‌شود. تنظیم مقدار آن به ۱- باعث می‌شود ابزار " +"جستجو با ارتفاع پیش‌فرض ظاهر شود." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -779,8 +781,8 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"این کلید معین می‌کند گزینه‌ٔ جستجوی «حاوی متن» هنگام آغاز ابزار جستجو انتخاب " -"شده باشد یا نه." +"این کلید معین می‌کند گزینه‌ٔ جستجوی «حاوی متن» هنگام آغاز ابزار جستجو انتخاب" +" شده باشد یا نه." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" @@ -803,80 +805,80 @@ "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"این کلید معین می‌کند که گزینه‌ٔ جستجوی «حداقل اندازه» هنگام آغاز ابزار جستجو " -"انتخاب شده باشد یا نه." +"این کلید معین می‌کند که گزینه‌ٔ جستجوی «حداقل اندازه» هنگام آغاز ابزار جستجو" +" انتخاب شده باشد یا نه." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"این کلید معین می‌کند که گزینه‌ٔ جستجوی «حداکثر اندازه» هنگام آغاز ابزار جستجو " -"انتخاب شده باشد یا نه." +"این کلید معین می‌کند که گزینه‌ٔ جستجوی «حداکثر اندازه» هنگام آغاز ابزار " +"جستجو انتخاب شده باشد یا نه." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"این کلید معین می‌کند که گزینهٔ جستجوی «پرونده‌ٔ خالی» هنگام آغاز ابزار جستجو " -"انتخاب شده باشد یا نه." +"این کلید معین می‌کند که گزینهٔ جستجوی «پرونده‌ٔ خالی» هنگام آغاز ابزار جستجو" +" انتخاب شده باشد یا نه." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"این کلید معین می‌کند که گزینه‌ٔ جستجوی «در تملک کاربر» هنگام آغاز ابزار جستجو " -"انتخاب شده باشد یا نه." +"این کلید معین می‌کند که گزینه‌ٔ جستجوی «در تملک کاربر» هنگام آغاز ابزار " +"جستجو انتخاب شده باشد یا نه." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"این کلید معین می‌کند که گزینه‌ٔ جستجوی «در تملک گروه» هنگام آغاز ابزار جستجو " -"انتخاب شده باشد یا نه." +"این کلید معین می‌کند که گزینه‌ٔ جستجوی «در تملک گروه» هنگام آغاز ابزار جستجو" +" انتخاب شده باشد یا نه." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"این کلید معین می‌کند که گزینه‌ٔ جستجوی «مالک ناشناخته» هنگام آغاز ابزار جستجو " -"انتخاب شده باشد یا نه." +"این کلید معین می‌کند که گزینه‌ٔ جستجوی «مالک ناشناخته» هنگام آغاز ابزار " +"جستجو انتخاب شده باشد یا نه." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"این کلید معین می‌کند که گزینه‌ٔ جستجوی «نام بدون» هنگام آغاز ابزار جستجو انتخاب " -"شده باشد یا نه." +"این کلید معین می‌کند که گزینه‌ٔ جستجوی «نام بدون» هنگام آغاز ابزار جستجو " +"انتخاب شده باشد یا نه." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"این کلید معین می‌کند که گزینه‌ٔ جستجوی «مطابقت نام با عبارت باقاعده» هنگام آغاز " -"ابزار جستجو انتخاب شده باشد یا نه." +"این کلید معین می‌کند که گزینه‌ٔ جستجوی «مطابقت نام با عبارت باقاعده» هنگام " +"آغاز ابزار جستجو انتخاب شده باشد یا نه." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"این کلید معین می‌کند که گزینه‌ٔ جستجوی «نشان دادن پرونده‌ها و پوشه‌های مخفی» در " -"هنگام آغاز ابزار جستجو انتخاب شده باشد یا نه." +"این کلید معین می‌کند که گزینه‌ٔ جستجوی «نشان دادن پرونده‌ها و پوشه‌های مخفی»" +" در هنگام آغاز ابزار جستجو انتخاب شده باشد یا نه." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"این کلید معین می‌کند که گزینهٔ جستجوی «پی‌گیری پیوند‌های نمادی» هنگام آغاز ابزار " -"جستجو انتخاب شده باشد یا نه." +"این کلید معین می‌کند که گزینهٔ جستجوی «پی‌گیری پیوند‌های نمادی» هنگام آغاز " +"ابزار جستجو انتخاب شده باشد یا نه." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" @@ -884,62 +886,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "فایل یک فایل .desktop معتبر نیست" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "نسخه فایل میز کاری ناشناخته‌ی '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "در حال آغاز %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "برنامه اسناد را نمی تواند در خط فرمان قبول کند" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "گزینه راه اندازی ناشناخته: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "این مورد قابل راه اندازی نیست" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "از کار انداختن اتصال به مدیر نشست" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "پیشوند پیکربندی ذخیره شده را مشخص کنید." -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "فایل" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "شناسه‌ی مدیریت نشست را مشخص کنید" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "شناسه" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "مدیریت نشست" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "شناسه‌ی مدیریت نشست را مشخص کنید" @@ -1103,7 +1105,8 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"مرتب‌سازی پرونده‌ها با یکی از این گزینه‌ها: نام،‌ پوشه، اندازه، نوع، یا تاریخ " +"مرتب‌سازی پرونده‌ها با یکی از این گزینه‌ها: نام،‌ پوشه، اندازه، نوع، یا " +"تاریخ " #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1140,7 +1143,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"نتایج جستجو ممکن است نامعتبر باشد. هنگام اجرای این جستجو خطاهايی به وجود آمد." +"نتایج جستجو ممکن است نامعتبر باشد. هنگام اجرای این جستجو خطاهايی به وجود " +"آمد." #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1551,7 +1555,8 @@ msgid "View or monitor system log files" msgstr "نمایش یا پایش پرونده‌های ثبت وقایع سیستم" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1562,11 +1567,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"پروندهٔ‌ ثبتی نمایش داده شده در زمان راه‌اندازی را مشخص کنید. گزینه‌ٔ پیش‌فرض بسته " -"به سیستم عامل شما var/adm/messages یا /var/log/messages است." +"پروندهٔ‌ ثبتی نمایش داده شده در زمان راه‌اندازی را مشخص کنید. گزینه‌ٔ " +"پیش‌فرض بسته به سیستم عامل شما var/adm/messages یا /var/log/messages است." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1577,8 +1582,8 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"اندازهٔ قلم با عرض ثابت استفاده شده برای نمایش ثبت وقایع در شکل درختی اصلی را " -"مشخص کنید. گزینهٔ پیش‌فرض همان اندازهٔ قلم پایانه است." +"اندازهٔ قلم با عرض ثابت استفاده شده برای نمایش ثبت وقایع در شکل درختی اصلی " +"را مشخص کنید. گزینهٔ پیش‌فرض همان اندازهٔ قلم پایانه است." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1967,7 +1972,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "بررسی معانی و املای کلمات در یک لغت‌نامهٔ برخط" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1979,8 +1985,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2010,9 +2016,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"نام پایگاه‌داده یا پایگاه فرادادهٔ پیش‌فرض که در منبع لغت‌نامه استفاده می‌شود. " -"علامت تعجب «!» به این معنی است که همه‌ٔ پایگاه‌های دادهٔ موجود در منبع لغت‌نامه " -"باید جستجو شوند" +"نام پایگاه‌داده یا پایگاه فرادادهٔ پیش‌فرض که در منبع لغت‌نامه استفاده " +"می‌شود. علامت تعجب «!» به این معنی است که همه‌ٔ پایگاه‌های دادهٔ موجود در " +"منبع لغت‌نامه باید جستجو شوند" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2024,8 +2030,8 @@ "available. The default strategy is 'exact', that is match exact words." msgstr "" " نام راهکار جستجو به طور پیش‌فرض در صورت موجود بودن، برای استفاده در منبع " -"لغت‌نامه. راهکار پیش‌فرض «دقیق» است، که به معنی تطبیق با فقط همان کلمات وارد " -"شده است." +"لغت‌نامه. راهکار پیش‌فرض «دقیق» است، که به معنی تطبیق با فقط همان کلمات وارد" +" شده است." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -3012,7 +3018,8 @@ msgid "Save images of your desktop or individual windows" msgstr "ذخیرهٔ تصاویر رومیزی یا پنجره‌های جداگانه‌" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3204,8 +3211,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/fi.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/fi.gmo differ diff -Nru mate-utils-1.26.0/po/fi.po mate-utils-1.26.1/po/fi.po --- mate-utils-1.26.0/po/fi.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/fi.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,31 +2,31 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Mikko Harhanen , 2018 -# Riku Viitanen , 2018 -# Rauli Laine , 2018 -# Lasse Liehu , 2018 -# Eslam Ali , 2018 -# nomen omen, 2018 -# Ammuu5, 2019 -# Jiri Grönroos , 2019 -# Kimmo Kujansuu , 2020 +# Riku Viitanen , 2021 +# Jiri Grönroos , 2021 +# Lasse Liehu , 2021 # Stefano Karapetsas , 2021 -# +# Mikko Harhanen , 2021 +# Eslam Ali , 2021 +# Rauli Laine , 2021 +# nomen omen, 2021 +# Ammuu5, 2021 +# Kimmo Kujansuu , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Finnish (https://www.transifex.com/mate/teams/13566/fi/)\n" -"Language: fi\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Kimmo Kujansuu , 2021\n" +"Language-Team: Finnish (https://app.transifex.com/mate/teams/13566/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -38,10 +38,12 @@ msgid "Check folder sizes and available disk space" msgstr "Tarkista kansioiden koko ja käytettävissä oleva levytila" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" +"MATE;check;disk;usage;analyze;size;space;tarkista;levy;käyttö;koko;tila;" #: baobab/data/baobab-dialog-scan-props.ui:18 msgid "Disk Usage Analyzer Preferences" @@ -222,10 +224,13 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" +"Kuten nimestä voi päätellä, \"Disk Usage Analyzer\" on graafinen apuohjelma," +" jonka avulla voit seurata levytilaa ja kansiorakennetta. Se näyttää " +"yhteenvedon renkaina tai hakemistopuuna." #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 msgid "" @@ -233,6 +238,10 @@ "local or remote. There is also an option to constantly monitor any external " "changes to the home directory and warn the user if a file is added/removed." msgstr "" +"Voit skannata tiedostojärjestelmän, koti tai missä muussa tahansa " +"tietokoneen kansiossa tai etäyhteydet. Mahdollisuus on myös seurata " +"jatkuvasti kotihakemiston muutoksia ja varoittaa käyttäjää, jos tiedosto " +"lisätään/poistetaan." #: baobab/src/baobab.c:141 baobab/src/baobab.c:358 msgid "Scanning..." @@ -597,9 +606,11 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" +"Sinun olisi pitänyt saada kopio \"GNU General Public License\" tämän " +"ohjelman mukana. Jos et, katso täältä ." #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" @@ -607,13 +618,15 @@ #: baobab/src/callbacks.c:106 msgid "Analyze your disk usage through a graphical tool." -msgstr "" +msgstr "Analysoi levyn käyttöä graafisen työkalun avulla." #: baobab/src/callbacks.c:107 msgid "" "Copyright © 2005-2010 Fabio Marzocca\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Copyright © 2005-2010 Fabio Marzocca\n" +"Copyright © 2011-2021 MATE developers" #: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 #: mate-dictionary/src/gdict-about.c:53 @@ -647,9 +660,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -657,7 +670,8 @@ msgstr "" "Etsi asiakirjoja tai kansioita tietokoneelta nimen tai sisällön perusteella" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -693,13 +707,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Tämä avain määrittelee, mitkä polut etsintätyökalu jättää pois " -"pikaetsinnästä. Hahmoja ”*” ja ”?” voi käyttää. Oletusarvo on /mnt/*, /media/" -"*, /dev/*, /tmp/*, /proc/*, ja /var/*." +"pikaetsinnästä. Hahmoja ”*” ja ”?” voi käyttää. Oletusarvo on /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, ja /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -722,12 +736,12 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Tämä avain määrittelee, mitkä polut etsintätyökalu jättää pois pikaetsinnän " -"toisesta hausta. Toinen haku käyttää etsintäkomentoa tiedostojen hakemiseen. " -"Toisen haun tarkoituksena on löytää tiedostot, joita pikahaku ei ole " +"toisesta hausta. Toinen haku käyttää etsintäkomentoa tiedostojen hakemiseen." +" Toisen haun tarkoituksena on löytää tiedostot, joita pikahaku ei ole " "luetellut. Hahmoja ”*” ja ”?” voi käyttää. Oletusarvo on /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -748,9 +762,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Tämä avain määrittelee ikkunan leveyden, ja sitä käytetään muistamaan " "hakutyökalun koko istuntojen välillä. Jos arvoksi asetetaan -1, käytetään " @@ -763,8 +777,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Tämä avain määrittelee ikkunan korkeuden, ja sitä käytetään muistamaan " "hakutyökalun koko istuntojen välillä. Jos arvoksi asetetaan -1, käytetään " @@ -845,8 +859,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Tämä avain määrittelee, onko hakuehto ”omistajaryhmä” valittu " "etsintätyökalun käynnistyessä." @@ -869,8 +883,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Tämä avain määrittelee, onko hakuehto ”nimi täsmää säännölliseen " "lausekkeeseen” valittu etsintätyökalun käynnistyessä." @@ -899,63 +913,63 @@ "Tämä avain määrittelee, onko hakuehto ”älä hae toisista " "tiedostojärjestelmistä” valittu etsintätyökalun käynnistyessä." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Tiedosto ei ole kelvollinen .desktop-tiedosto" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Tuntematon työpöytätiedoston versio ”%s”" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Käynnistetään %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Sovellus ei hyväksy asiakirjoja komentoriviltä" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Tuntematon käynnistysvalitsin: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Asiakirjojen URI:a ei voi antaa ”Type=Link”-muotoisille työpöytälinkeille" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Ei käynnistettävä kohde" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Estä yhteys istunnonhallintaan" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Anna tallennetun määrittelyn sisältävä tiedosto" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "TIEDOSTO" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Anna istunnonhallinan tunniste" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Istunnonhallinan valitsimet:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Näytä istunnonhallinan valitsimet" @@ -1101,8 +1115,8 @@ #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%'d tiedostoa löytyi" +msgstr[1] "%'d tiedostoa löytyi" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1328,16 +1342,16 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Haluatko varmasti avata %d asiakirjaa?" +msgstr[1] "Haluatko varmasti avata %d asiakirjaa?" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Tämä avaa %d erillistä ikkunaa." +msgstr[1] "Tämä avaa %d erillistä ikkunaa." #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1361,8 +1375,8 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Haluatko varmasti avata %d kansion?" +msgstr[1] "Haluatko varmasti avata %d asiakirjaa?" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1420,7 +1434,7 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1310 msgid "Copy _Path" -msgstr "" +msgstr "Kopioi _polku" #: gsearchtool/src/gsearchtool-callbacks.c:1344 msgid "_Save Results As..." @@ -1450,7 +1464,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "If you replace an existing file, its contents will be overwritten." -msgstr "Olemassa olevan tiedoston korvaaminen ylikirjoittaa nykyisen sisällön." +msgstr "" +"Olemassa olevan tiedoston korvaaminen ylikirjoittaa nykyisen sisällön." #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 @@ -1567,7 +1582,8 @@ msgid "View or monitor system log files" msgstr "Näytä ja tarkkaile järjestelmän lokitiedostoja" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1578,11 +1594,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Määrittelee alussa avattavan lokitiedoston. Oletus on joko /var/adm/messages " -"tai /var/log/messages, riippuen käyttöjärjestelmästä." +"Määrittelee alussa avattavan lokitiedoston. Oletus on joko /var/adm/messages" +" tai /var/log/messages, riippuen käyttöjärjestelmästä." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1594,7 +1610,8 @@ "main tree view. The default is taken from the default terminal font size." msgstr "" "Määrittelee lokitiedostojen näyttämiseen käytetyn tasalevyisen fontin koon " -"pääikkunan puunäkymässä. Oletusarvo otetaan maten pääteikkunan fontin koosta." +"pääikkunan puunäkymässä. Oletusarvo otetaan maten pääteikkunan fontin " +"koosta." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1983,7 +2000,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Etsi sanojen määrittelyjä ja kirjoitusasuja verkkosanakirjoista" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1995,8 +2013,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -3029,7 +3047,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Tallenna kuvia työpöydästä tai yksittäisistä ikkunoista" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3087,8 +3106,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Reunojen ulkopuolelle lisättävä tehoste. Mahdollisia arvoja ovat " -"”shadow” (varjo), ”none” (ei mikään) ja ”border” (reunus)." +"Reunojen ulkopuolelle lisättävä tehoste. Mahdollisia arvoja ovat ”shadow” " +"(varjo), ”none” (ei mikään) ja ”border” (reunus)." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3226,8 +3245,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/fr_CA.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/fr_CA.gmo differ diff -Nru mate-utils-1.26.0/po/fr_CA.po mate-utils-1.26.1/po/fr_CA.po --- mate-utils-1.26.0/po/fr_CA.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/fr_CA.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,562 +1,548 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" -"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-29 10:58+0100\n" "PO-Revision-Date: 2017-09-22 02:12+0000\n" "Last-Translator: Vlad Orlov \n" -"Language-Team: French (Canada) (http://www.transifex.com/mate/MATE/language/" -"fr_CA/)\n" -"Language: fr_CA\n" +"Language-Team: French (Canada) (http://www.transifex.com/mate/MATE/language/fr_CA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 +#: ../baobab/data/mate-disk-usage-analyzer.desktop.in.in.h:1 msgid "MATE Disk Usage Analyzer" msgstr "" -#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:4 +#: ../baobab/data/mate-disk-usage-analyzer.desktop.in.in.h:2 msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 -msgid "MATE;check;disk;usage;analyze;size;space;" -msgstr "" - -#: baobab/data/baobab-dialog-scan-props.ui:18 +#: ../baobab/data/baobab-dialog-scan-props.ui.h:1 msgid "Disk Usage Analyzer Preferences" msgstr "" -#: baobab/data/baobab-dialog-scan-props.ui:32 -#: baobab/data/baobab-main-window.ui:129 logview/src/logview-window.c:825 -#: mate-dictionary/src/gdict-applet.c:1173 -#: mate-dictionary/src/gdict-window.c:1262 -#: mate-screenshot/data/mate-screenshot.ui:41 -msgid "_Help" -msgstr "_Aide" - -#: baobab/data/baobab-dialog-scan-props.ui:48 logview/src/logview-window.c:829 -#: mate-dictionary/src/gdict-window.c:1273 -msgid "_Close" -msgstr "" - -#: baobab/data/baobab-dialog-scan-props.ui:81 +#: ../baobab/data/baobab-dialog-scan-props.ui.h:2 msgid "Select _devices to include in filesystem scan:" msgstr "" -#: baobab/data/baobab-dialog-scan-props.ui:119 +#: ../baobab/data/baobab-dialog-scan-props.ui.h:3 msgid "_Monitor changes to your home folder" msgstr "" -#: baobab/data/baobab-main-window.ui:10 +#: ../baobab/data/baobab-main-window.ui.h:1 msgid "_Analyzer" msgstr "" -#: baobab/data/baobab-main-window.ui:17 +#: ../baobab/data/baobab-main-window.ui.h:2 msgid "Scan _Home Folder" msgstr "" -#: baobab/data/baobab-main-window.ui:26 +#: ../baobab/data/baobab-main-window.ui.h:3 msgid "Scan _Filesystem" msgstr "" -#: baobab/data/baobab-main-window.ui:35 +#: ../baobab/data/baobab-main-window.ui.h:4 msgid "Scan F_older..." msgstr "" -#: baobab/data/baobab-main-window.ui:44 +#: ../baobab/data/baobab-main-window.ui.h:5 msgid "S_can Remote Folder..." msgstr "" -#: baobab/data/baobab-main-window.ui:74 logview/src/logview-window.c:822 -#: mate-dictionary/src/gdict-window.c:1259 +#: ../baobab/data/baobab-main-window.ui.h:6 +#: ../logview/src/logview-window.c:821 +#: ../mate-dictionary/src/gdict-window.c:1292 msgid "_Edit" msgstr "" -#: baobab/data/baobab-main-window.ui:80 +#: ../baobab/data/baobab-main-window.ui.h:7 msgid "_Expand All" msgstr "" -#: baobab/data/baobab-main-window.ui:87 +#: ../baobab/data/baobab-main-window.ui.h:8 msgid "_Collapse All" msgstr "" -#: baobab/data/baobab-main-window.ui:101 logview/src/logview-window.c:823 -#: mate-dictionary/src/gdict-window.c:1260 +#: ../baobab/data/baobab-main-window.ui.h:9 +#: ../logview/src/logview-window.c:822 +#: ../mate-dictionary/src/gdict-window.c:1293 msgid "_View" msgstr "" -#: baobab/data/baobab-main-window.ui:108 +#: ../baobab/data/baobab-main-window.ui.h:10 msgid "_Toolbar" msgstr "" -#: baobab/data/baobab-main-window.ui:115 +#: ../baobab/data/baobab-main-window.ui.h:11 msgid "St_atusbar" msgstr "" -#: baobab/data/baobab-main-window.ui:122 +#: ../baobab/data/baobab-main-window.ui.h:12 msgid "All_ocated Space" msgstr "" -#: baobab/data/baobab-main-window.ui:136 logview/src/logview-window.c:851 -#: mate-dictionary/src/gdict-window.c:1312 +#: ../baobab/data/baobab-main-window.ui.h:13 +#: ../logview/src/logview-window.c:824 +#: ../mate-dictionary/src/gdict-applet.c:1189 +#: ../mate-dictionary/src/gdict-window.c:1295 +msgid "_Help" +msgstr "_Aide" + +#. Help menu +#: ../baobab/data/baobab-main-window.ui.h:14 +#: ../logview/src/logview-window.c:850 +#: ../mate-dictionary/src/gdict-window.c:1345 msgid "_Contents" msgstr "" -#: baobab/data/baobab-main-window.ui:183 baobab/src/baobab.c:1237 -#: baobab/src/callbacks.c:103 +#: ../baobab/data/baobab-main-window.ui.h:15 ../baobab/src/baobab.c:1242 msgid "Disk Usage Analyzer" msgstr "" -#: baobab/data/baobab-main-window.ui:224 baobab/data/baobab-main-window.ui:236 +#: ../baobab/data/baobab-main-window.ui.h:16 msgid "Scan home folder" msgstr "" -#: baobab/data/baobab-main-window.ui:225 +#: ../baobab/data/baobab-main-window.ui.h:17 msgid "Scan Home" msgstr "" -#: baobab/data/baobab-main-window.ui:248 +#: ../baobab/data/baobab-main-window.ui.h:18 msgid "Scan filesystem" msgstr "" -#: baobab/data/baobab-main-window.ui:249 +#: ../baobab/data/baobab-main-window.ui.h:19 msgid "Scan Filesystem" msgstr "" -#: baobab/data/baobab-main-window.ui:265 +#: ../baobab/data/baobab-main-window.ui.h:20 msgid "Scan a folder" msgstr "" -#: baobab/data/baobab-main-window.ui:266 +#: ../baobab/data/baobab-main-window.ui.h:21 msgid "Scan Folder" msgstr "" -#: baobab/data/baobab-main-window.ui:282 +#: ../baobab/data/baobab-main-window.ui.h:22 msgid "Scan a remote folder" msgstr "" -#: baobab/data/baobab-main-window.ui:283 +#: ../baobab/data/baobab-main-window.ui.h:23 msgid "Scan Remote Folder" msgstr "" -#: baobab/data/baobab-main-window.ui:312 +#: ../baobab/data/baobab-main-window.ui.h:24 msgid "Stop scanning" msgstr "" -#: baobab/data/baobab-main-window.ui:328 +#: ../baobab/data/baobab-main-window.ui.h:25 msgid "Refresh" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:9 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:1 msgid "Monitor Home" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:10 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:2 msgid "Whether any change to the home directory should be monitored." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:14 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:3 msgid "Excluded partitions URIs" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:15 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:4 msgid "A list of URIs for partitions to be excluded from scanning." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:21 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:5 msgid "Toolbar is Visible" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:22 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:6 msgid "Whether the toolbar should be visible in main window." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:26 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:7 msgid "Statusbar is Visible" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:27 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:8 msgid "Whether the status bar at the bottom of main window should be visible." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:31 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:9 msgid "Subfolder tips visible" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:32 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:10 msgid "Whether the subfolder tooltips of the selected folder are drawn." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:36 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:11 msgid "Active Chart" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:37 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:12 msgid "Which type of chart should be displayed." msgstr "" -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:8 +#: ../baobab/data/mate-disk-usage-analyzer.appdata.xml.in.h:1 msgid "A disk usage analyzing tool for MATE Desktop" msgstr "" -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 +#: ../baobab/data/mate-disk-usage-analyzer.appdata.xml.in.h:2 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " -"summary information in ring or treemap charts." +"

As its name implies, Disk Usage Analyzer is a graphical utility that you" +" can use to view and monitor your disk usage and folder structure. It " +"displays summary information in ring or treemap charts.

You can " +"perform scans on a file system, your home or any other folder - local or " +"remote. There is also an option to constantly monitor any external changes " +"to the home directory and warn the user if a file is added/removed.

" msgstr "" -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 -msgid "" -"You can perform scans on a file system, your home or any other folder - " -"local or remote. There is also an option to constantly monitor any external " -"changes to the home directory and warn the user if a file is added/removed." -msgstr "" - -#: baobab/src/baobab.c:141 baobab/src/baobab.c:358 +#: ../baobab/src/baobab.c:137 ../baobab/src/baobab.c:357 msgid "Scanning..." msgstr "" -#: baobab/src/baobab.c:186 +#: ../baobab/src/baobab.c:183 msgid "Total filesystem capacity:" msgstr "" -#: baobab/src/baobab.c:187 +#: ../baobab/src/baobab.c:184 msgid "used:" msgstr "" -#: baobab/src/baobab.c:188 +#: ../baobab/src/baobab.c:185 msgid "available:" msgstr "" -#: baobab/src/baobab.c:243 baobab/src/baobab.c:300 baobab/src/callbacks.c:268 +#. set statusbar, percentage and allocated/normal size +#: ../baobab/src/baobab.c:242 ../baobab/src/baobab.c:299 +#: ../baobab/src/callbacks.c:259 msgid "Calculating percentage bars..." msgstr "" -#: baobab/src/baobab.c:254 baobab/src/baobab.c:1300 baobab/src/callbacks.c:272 +#: ../baobab/src/baobab.c:253 ../baobab/src/baobab.c:1306 +#: ../baobab/src/callbacks.c:263 msgid "Ready" msgstr "" -#: baobab/src/baobab.c:392 +#: ../baobab/src/baobab.c:391 msgid "Total filesystem capacity" msgstr "" -#: baobab/src/baobab.c:416 +#: ../baobab/src/baobab.c:415 msgid "Total filesystem usage" msgstr "" -#: baobab/src/baobab.c:458 +#: ../baobab/src/baobab.c:457 msgid "contains hardlinks for:" msgstr "" -#: baobab/src/baobab.c:467 +#: ../baobab/src/baobab.c:466 #, c-format msgid "%5d item" msgid_plural "%5d items" msgstr[0] "" msgstr[1] "" -#: baobab/src/baobab.c:593 +#: ../baobab/src/baobab.c:592 msgid "Could not initialize monitoring" msgstr "" -#: baobab/src/baobab.c:594 +#: ../baobab/src/baobab.c:593 msgid "Changes to your home folder will not be monitored." msgstr "" -#: baobab/src/baobab.c:913 +#: ../baobab/src/baobab.c:921 msgid "Move to parent folder" msgstr "" -#: baobab/src/baobab.c:917 +#: ../baobab/src/baobab.c:925 msgid "Zoom in" msgstr "" -#: baobab/src/baobab.c:921 +#: ../baobab/src/baobab.c:929 msgid "Zoom out" msgstr "" -#: baobab/src/baobab.c:925 +#: ../baobab/src/baobab.c:933 msgid "Save screenshot" msgstr "" -#: baobab/src/baobab.c:1111 +#: ../baobab/src/baobab.c:1120 msgid "View as Rings Chart" msgstr "" -#: baobab/src/baobab.c:1113 +#: ../baobab/src/baobab.c:1122 msgid "View as Treemap Chart" msgstr "" -#: baobab/src/baobab.c:1224 +#: ../baobab/src/baobab.c:1231 msgid "Show version" msgstr "" -#: baobab/src/baobab.c:1225 +#: ../baobab/src/baobab.c:1232 msgid "[DIRECTORY]" msgstr "" -#: baobab/src/baobab.c:1257 +#: ../baobab/src/baobab.c:1262 msgid "Too many arguments. Only one directory can be specified." msgstr "" -#: baobab/src/baobab.c:1274 +#: ../baobab/src/baobab.c:1279 msgid "Could not detect any mount point." msgstr "" -#: baobab/src/baobab.c:1276 +#: ../baobab/src/baobab.c:1281 msgid "Without mount points disk usage cannot be analyzed." msgstr "" -#: baobab/src/baobab-chart.c:204 +#: ../baobab/src/baobab-chart.c:209 msgid "Maximum depth" msgstr "" -#: baobab/src/baobab-chart.c:205 +#: ../baobab/src/baobab-chart.c:210 msgid "The maximum depth drawn in the chart from the root" msgstr "" -#: baobab/src/baobab-chart.c:214 +#: ../baobab/src/baobab-chart.c:219 msgid "Chart model" msgstr "" -#: baobab/src/baobab-chart.c:215 +#: ../baobab/src/baobab-chart.c:220 msgid "Set the model of the chart" msgstr "" -#: baobab/src/baobab-chart.c:222 +#: ../baobab/src/baobab-chart.c:227 msgid "Chart root node" msgstr "" -#: baobab/src/baobab-chart.c:223 +#: ../baobab/src/baobab-chart.c:228 msgid "Set the root node from the model" msgstr "" -#: baobab/src/baobab-chart.c:1713 +#: ../baobab/src/baobab-chart.c:1718 msgid "Cannot create pixbuf image!" msgstr "" -#: baobab/src/baobab-chart.c:1723 +#. Popup the File chooser dialog +#: ../baobab/src/baobab-chart.c:1728 msgid "Save Snapshot" msgstr "" -#: baobab/src/baobab-chart.c:1750 +#: ../baobab/src/baobab-chart.c:1755 msgid "_Image type:" msgstr "" -#: baobab/src/baobab-prefs.c:171 +#: ../baobab/src/baobab-prefs.c:172 msgid "Scan" msgstr "" -#: baobab/src/baobab-prefs.c:178 +#: ../baobab/src/baobab-prefs.c:179 msgid "Device" msgstr "" -#: baobab/src/baobab-prefs.c:186 +#: ../baobab/src/baobab-prefs.c:187 msgid "Mount Point" msgstr "" -#: baobab/src/baobab-prefs.c:194 +#: ../baobab/src/baobab-prefs.c:195 msgid "Filesystem Type" msgstr "" -#: baobab/src/baobab-prefs.c:202 +#: ../baobab/src/baobab-prefs.c:203 msgid "Total Size" msgstr "" -#: baobab/src/baobab-prefs.c:211 +#: ../baobab/src/baobab-prefs.c:212 msgid "Available" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:70 +#: ../baobab/src/baobab-remote-connect-dialog.c:75 #, c-format msgid "Cannot scan location \"%s\"" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:168 +#: ../baobab/src/baobab-remote-connect-dialog.c:173 msgid "Custom Location" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:170 +#: ../baobab/src/baobab-remote-connect-dialog.c:175 msgid "SSH" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:173 +#: ../baobab/src/baobab-remote-connect-dialog.c:178 msgid "Public FTP" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:175 +#: ../baobab/src/baobab-remote-connect-dialog.c:180 msgid "FTP (with login)" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:178 +#: ../baobab/src/baobab-remote-connect-dialog.c:183 msgid "Windows share" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:180 +#: ../baobab/src/baobab-remote-connect-dialog.c:185 msgid "WebDAV (HTTP)" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:182 +#: ../baobab/src/baobab-remote-connect-dialog.c:187 msgid "Secure WebDAV (HTTPS)" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:242 +#: ../baobab/src/baobab-remote-connect-dialog.c:247 msgid "Cannot Connect to Server. You must enter a name for the server." msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:245 +#: ../baobab/src/baobab-remote-connect-dialog.c:250 msgid "Please enter a name and try again." msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:439 +#: ../baobab/src/baobab-remote-connect-dialog.c:438 msgid "_Location (URI):" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:455 +#: ../baobab/src/baobab-remote-connect-dialog.c:458 msgid "_Server:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:468 +#: ../baobab/src/baobab-remote-connect-dialog.c:475 msgid "Optional information:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:477 +#: ../baobab/src/baobab-remote-connect-dialog.c:488 msgid "_Share:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:492 -#: mate-dictionary/data/mate-dictionary-source.ui:121 +#: ../baobab/src/baobab-remote-connect-dialog.c:507 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:4 msgid "_Port:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:506 +#: ../baobab/src/baobab-remote-connect-dialog.c:525 msgid "_Folder:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:520 +#: ../baobab/src/baobab-remote-connect-dialog.c:543 msgid "_User Name:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:535 +#: ../baobab/src/baobab-remote-connect-dialog.c:562 msgid "_Domain Name:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:592 +#: ../baobab/src/baobab-remote-connect-dialog.c:627 msgid "Connect to Server" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:608 +#: ../baobab/src/baobab-remote-connect-dialog.c:643 msgid "Service _type:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:726 +#: ../baobab/src/baobab-remote-connect-dialog.c:765 msgid "_Scan" msgstr "" -#: baobab/src/baobab-treeview.c:83 +#: ../baobab/src/baobab-treeview.c:82 msgid "Rescan your home folder?" msgstr "" -#: baobab/src/baobab-treeview.c:84 +#: ../baobab/src/baobab-treeview.c:83 msgid "" "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -#: baobab/src/baobab-treeview.c:85 +#: ../baobab/src/baobab-treeview.c:84 msgid "_Rescan" msgstr "" -#: baobab/src/baobab-treeview.c:222 gsearchtool/src/gsearchtool.c:2453 +#: ../baobab/src/baobab-treeview.c:222 ../gsearchtool/src/gsearchtool.c:2426 msgid "Folder" msgstr "" -#: baobab/src/baobab-treeview.c:244 +#: ../baobab/src/baobab-treeview.c:244 msgid "Usage" msgstr "" -#: baobab/src/baobab-treeview.c:258 gsearchtool/src/gsearchtool.c:2466 +#: ../baobab/src/baobab-treeview.c:258 ../gsearchtool/src/gsearchtool.c:2439 msgid "Size" msgstr "" -#: baobab/src/baobab-treeview.c:274 +#: ../baobab/src/baobab-treeview.c:274 msgid "Contents" msgstr "" -#: baobab/src/baobab-utils.c:105 +#: ../baobab/src/baobab-utils.c:106 msgid "Select Folder" msgstr "" -#: baobab/src/baobab-utils.c:117 +#. add extra widget +#: ../baobab/src/baobab-utils.c:118 msgid "_Show hidden folders" msgstr "" -#: baobab/src/baobab-utils.c:280 +#: ../baobab/src/baobab-utils.c:299 msgid "Cannot check an excluded folder!" msgstr "" -#: baobab/src/baobab-utils.c:304 +#: ../baobab/src/baobab-utils.c:323 #, c-format msgid "\"%s\" is not a valid folder" msgstr "" -#: baobab/src/baobab-utils.c:307 +#: ../baobab/src/baobab-utils.c:326 msgid "Could not analyze disk usage." msgstr "" -#: baobab/src/baobab-utils.c:343 +#: ../baobab/src/baobab-utils.c:362 msgid "_Open Folder" msgstr "" -#: baobab/src/baobab-utils.c:349 gsearchtool/src/gsearchtool-callbacks.c:1330 +#: ../baobab/src/baobab-utils.c:368 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1215 msgid "Mo_ve to Trash" msgstr "" -#: baobab/src/baobab-utils.c:378 +#: ../baobab/src/baobab-utils.c:402 #, c-format msgid "Could not open folder \"%s\"" msgstr "" -#: baobab/src/baobab-utils.c:381 +#: ../baobab/src/baobab-utils.c:405 msgid "There is no installed viewer capable of displaying the folder." msgstr "" -#: baobab/src/baobab-utils.c:448 +#: ../baobab/src/baobab-utils.c:474 #, c-format msgid "Could not move \"%s\" to the Trash" msgstr "" -#: baobab/src/baobab-utils.c:456 +#: ../baobab/src/baobab-utils.c:482 msgid "Could not move file to the Trash" msgstr "" -#: baobab/src/baobab-utils.c:458 +#: ../baobab/src/baobab-utils.c:484 #, c-format msgid "Details: %s" msgstr "" -#: baobab/src/baobab-utils.c:496 +#: ../baobab/src/baobab-utils.c:527 msgid "There was an error displaying help." msgstr "" -#: baobab/src/callbacks.c:74 logview/src/logview-about.h:44 -#: mate-dictionary/src/gdict-about.c:49 -msgid "MATE Documentation Team" -msgstr "" - -#: baobab/src/callbacks.c:79 logview/src/logview-about.h:49 -#: mate-dictionary/src/gdict-about.c:57 +#: ../baobab/src/callbacks.c:76 ../logview/src/logview-about.h:49 msgid "" "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 " @@ -564,8 +550,7 @@ "any later version." msgstr "" -#: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 -#: mate-dictionary/src/gdict-about.c:62 +#: ../baobab/src/callbacks.c:81 ../logview/src/logview-about.h:53 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " @@ -573,1773 +558,1728 @@ "more details." msgstr "" -#: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 -#: mate-dictionary/src/gdict-about.c:67 +#: ../baobab/src/callbacks.c:86 ../logview/src/logview-about.h:57 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program; if not, write to the Free Software Foundation, Inc., 51 " +"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA" msgstr "" -#: baobab/src/callbacks.c:105 -msgid "About Disk Usage Analyzer" +#: ../baobab/src/callbacks.c:98 +msgid "A graphical tool to analyze disk usage." msgstr "" -#: baobab/src/callbacks.c:106 -msgid "Analyze your disk usage through a graphical tool." -msgstr "" - -#: baobab/src/callbacks.c:107 -msgid "" -"Copyright © 2005-2010 Fabio Marzocca\n" -"Copyright © 2011-2021 MATE developers" -msgstr "" - -#: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 -#: mate-dictionary/src/gdict-about.c:53 +#. translator credits +#: ../baobab/src/callbacks.c:104 ../logview/src/logview-about.h:63 +#: ../mate-dictionary/src/gdict-about.c:55 msgid "translator-credits" msgstr "" -#: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 -#: gsearchtool/src/gsearchtool-callbacks.c:879 +#: ../baobab/src/callbacks.c:202 +#: ../gsearchtool/src/gsearchtool-callbacks.c:513 +#: ../gsearchtool/src/gsearchtool-callbacks.c:853 msgid "The document does not exist." msgstr "" -#: baobab/src/callbacks.c:292 +#: ../baobab/src/callbacks.c:283 msgid "The folder does not exist." msgstr "" -#: gsearchtool/data/mate-search-tool.appdata.xml.in:7 -#: gsearchtool/data/mate-search-tool.desktop.in:3 -msgid "MATE Search Tool" -msgstr "" - -#: gsearchtool/data/mate-search-tool.appdata.xml.in:8 +#: ../gsearchtool/data/mate-search-tool.appdata.xml.in.h:1 msgid "A file searching tool for MATE Desktop" msgstr "" -#: gsearchtool/data/mate-search-tool.appdata.xml.in:10 +#: ../gsearchtool/data/mate-search-tool.appdata.xml.in.h:2 msgid "" -"MATE Search Tool is a simple but powerful utility that allows you to search " -"for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"

MATE Search Tool is a simple but powerful utility that allows you to " +"search for files and folders on any mounted file system. Its interface gives" +" you instant access to a wide variety of parameters for each search, such as" +" text contained within a file, ownership, date of modification, file size, " +"folder exclusion, etc..

" msgstr "" -#: gsearchtool/data/mate-search-tool.desktop.in:4 -msgid "Locate documents and folders on this computer by name or content" +#: ../gsearchtool/data/mate-search-tool.desktop.in.h:1 +msgid "MATE Search Tool" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: gsearchtool/data/mate-search-tool.desktop.in:13 -msgid "" -"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" +#: ../gsearchtool/data/mate-search-tool.desktop.in.h:2 +msgid "Locate documents and folders on this computer by name or content" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:1 msgid "Search history" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:6 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:2 msgid "This key defines the items which were searched for in the past." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:10 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:3 msgid "Show Additional Options" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:14 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:4 msgid "Disable Quick Search" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:15 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:5 msgid "" "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:6 msgid "Quick Search Excluded Paths" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:7 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:8 msgid "Disable Quick Search Second Scan" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:25 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:9 msgid "" "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:10 msgid "Quick Search Second Scan Excluded Paths" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:30 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:11 msgid "" "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:12 msgid "Search Result Columns Order" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:35 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:13 msgid "" "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:14 msgid "Default Window Width" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:15 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:16 msgid "Default Window Height" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:17 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:18 msgid "Default Window Maximized" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:50 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:19 msgid "" "This key determines if the search tool window starts in a maximized state." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:20 msgid "Look in Folder" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:21 msgid "This key defines the default value of the \"Look in Folder\" widget." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:22 msgid "" "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:23 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:24 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:25 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:26 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:27 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:28 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:29 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:30 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:31 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:32 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:33 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:34 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:35 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:165 +#, c-format msgid "File is not a valid .desktop file" msgstr "Fichier est pas valide .desktop fichier" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:188 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:957 #, c-format msgid "Starting %s" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1098 +#, c-format msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1166 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1364 +#, c-format msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1383 +#, c-format msgid "Not a launchable item" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:225 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:228 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:228 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:231 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:231 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:252 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:253 msgid "Show session management options" msgstr "" -#: gsearchtool/src/gsearchtool.c:82 +#: ../gsearchtool/src/gsearchtool.c:82 msgid "Contains the _text" msgstr "" -#: gsearchtool/src/gsearchtool.c:84 +#: ../gsearchtool/src/gsearchtool.c:84 msgid "_Date modified less than" msgstr "" -#: gsearchtool/src/gsearchtool.c:84 gsearchtool/src/gsearchtool.c:85 +#: ../gsearchtool/src/gsearchtool.c:84 ../gsearchtool/src/gsearchtool.c:85 msgid "days" msgstr "" -#: gsearchtool/src/gsearchtool.c:85 +#: ../gsearchtool/src/gsearchtool.c:85 msgid "Date modified more than" msgstr "" -#: gsearchtool/src/gsearchtool.c:87 +#: ../gsearchtool/src/gsearchtool.c:87 msgid "S_ize at least" msgstr "" -#: gsearchtool/src/gsearchtool.c:87 gsearchtool/src/gsearchtool.c:88 +#: ../gsearchtool/src/gsearchtool.c:87 ../gsearchtool/src/gsearchtool.c:88 msgid "kilobytes" msgstr "" -#: gsearchtool/src/gsearchtool.c:88 +#: ../gsearchtool/src/gsearchtool.c:88 msgid "Si_ze at most" msgstr "" -#: gsearchtool/src/gsearchtool.c:89 +#: ../gsearchtool/src/gsearchtool.c:89 msgid "File is empty" msgstr "" -#: gsearchtool/src/gsearchtool.c:91 +#: ../gsearchtool/src/gsearchtool.c:91 msgid "Owned by _user" msgstr "" -#: gsearchtool/src/gsearchtool.c:92 +#: ../gsearchtool/src/gsearchtool.c:92 msgid "Owned by _group" msgstr "" -#: gsearchtool/src/gsearchtool.c:93 +#: ../gsearchtool/src/gsearchtool.c:93 msgid "Owner is unrecognized" msgstr "" -#: gsearchtool/src/gsearchtool.c:95 +#: ../gsearchtool/src/gsearchtool.c:95 msgid "Na_me does not contain" msgstr "" -#: gsearchtool/src/gsearchtool.c:96 +#: ../gsearchtool/src/gsearchtool.c:96 msgid "Name matches regular e_xpression" msgstr "" -#: gsearchtool/src/gsearchtool.c:98 +#: ../gsearchtool/src/gsearchtool.c:98 msgid "Show hidden and backup files" msgstr "" -#: gsearchtool/src/gsearchtool.c:99 +#: ../gsearchtool/src/gsearchtool.c:99 msgid "Follow symbolic links" msgstr "" -#: gsearchtool/src/gsearchtool.c:100 +#: ../gsearchtool/src/gsearchtool.c:100 msgid "Exclude other filesystems" msgstr "" -#: gsearchtool/src/gsearchtool.c:158 +#: ../gsearchtool/src/gsearchtool.c:158 msgid "Show version of the application" msgstr "" -#: gsearchtool/src/gsearchtool.c:159 gsearchtool/src/gsearchtool.c:164 -#: gsearchtool/src/gsearchtool.c:173 +#: ../gsearchtool/src/gsearchtool.c:159 ../gsearchtool/src/gsearchtool.c:164 +#: ../gsearchtool/src/gsearchtool.c:173 msgid "STRING" msgstr "" -#: gsearchtool/src/gsearchtool.c:160 +#: ../gsearchtool/src/gsearchtool.c:160 msgid "PATH" msgstr "" -#: gsearchtool/src/gsearchtool.c:161 +#: ../gsearchtool/src/gsearchtool.c:161 msgid "VALUE" msgstr "" -#: gsearchtool/src/gsearchtool.c:165 gsearchtool/src/gsearchtool.c:166 +#: ../gsearchtool/src/gsearchtool.c:165 ../gsearchtool/src/gsearchtool.c:166 msgid "DAYS" msgstr "" -#: gsearchtool/src/gsearchtool.c:167 gsearchtool/src/gsearchtool.c:168 +#: ../gsearchtool/src/gsearchtool.c:167 ../gsearchtool/src/gsearchtool.c:168 msgid "KILOBYTES" msgstr "" -#: gsearchtool/src/gsearchtool.c:170 +#: ../gsearchtool/src/gsearchtool.c:170 msgid "USER" msgstr "" -#: gsearchtool/src/gsearchtool.c:171 +#: ../gsearchtool/src/gsearchtool.c:171 msgid "GROUP" msgstr "" -#: gsearchtool/src/gsearchtool.c:174 +#: ../gsearchtool/src/gsearchtool.c:174 msgid "PATTERN" msgstr "" -#: gsearchtool/src/gsearchtool.c:385 +#: ../gsearchtool/src/gsearchtool.c:385 msgid "A locate database has probably not been created." msgstr "" -#: gsearchtool/src/gsearchtool.c:487 +#: ../gsearchtool/src/gsearchtool.c:487 #, c-format msgid "Character set conversion failed for \"%s\"" msgstr "" -#: gsearchtool/src/gsearchtool.c:511 +#: ../gsearchtool/src/gsearchtool.c:511 msgid "Searching..." msgstr "" -#: gsearchtool/src/gsearchtool.c:511 gsearchtool/src/gsearchtool.c:1048 -#: gsearchtool/src/gsearchtool.c:3078 +#: ../gsearchtool/src/gsearchtool.c:511 ../gsearchtool/src/gsearchtool.c:1031 +#: ../gsearchtool/src/gsearchtool.c:3031 msgid "Search for Files" msgstr "" -#: gsearchtool/src/gsearchtool.c:994 gsearchtool/src/gsearchtool.c:1023 +#: ../gsearchtool/src/gsearchtool.c:977 ../gsearchtool/src/gsearchtool.c:1006 msgid "No files found" msgstr "" -#: gsearchtool/src/gsearchtool.c:1016 +#: ../gsearchtool/src/gsearchtool.c:999 msgid "(stopped)" msgstr "" -#: gsearchtool/src/gsearchtool.c:1022 +#: ../gsearchtool/src/gsearchtool.c:1005 msgid "No Files Found" msgstr "" -#: gsearchtool/src/gsearchtool.c:1027 +#: ../gsearchtool/src/gsearchtool.c:1010 #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 +#: ../gsearchtool/src/gsearchtool.c:1014 ../gsearchtool/src/gsearchtool.c:1052 #, c-format msgid "%'d file found" msgid_plural "%'d files found" msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool.c:1160 +#: ../gsearchtool/src/gsearchtool.c:1143 msgid "Entry changed called for a non entry option!" msgstr "" -#: gsearchtool/src/gsearchtool.c:1325 +#: ../gsearchtool/src/gsearchtool.c:1308 msgid "Set the text of \"Name contains\" search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:1326 +#: ../gsearchtool/src/gsearchtool.c:1309 msgid "Set the text of \"Look in folder\" search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:1327 +#: ../gsearchtool/src/gsearchtool.c:1310 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -#: gsearchtool/src/gsearchtool.c:1328 +#: ../gsearchtool/src/gsearchtool.c:1311 msgid "Set sort order to descending, the default is ascending" msgstr "" -#: gsearchtool/src/gsearchtool.c:1329 +#: ../gsearchtool/src/gsearchtool.c:1312 msgid "Automatically start a search" msgstr "" -#: gsearchtool/src/gsearchtool.c:1335 +#: ../gsearchtool/src/gsearchtool.c:1318 #, c-format msgid "Select the \"%s\" search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:1338 +#: ../gsearchtool/src/gsearchtool.c:1321 #, c-format msgid "Select and set the \"%s\" search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:1445 +#: ../gsearchtool/src/gsearchtool.c:1428 msgid "Invalid option passed to sortby command line argument." msgstr "" -#: gsearchtool/src/gsearchtool.c:1737 +#: ../gsearchtool/src/gsearchtool.c:1720 msgid "" "\n" "... Too many errors to display ..." msgstr "" -#: gsearchtool/src/gsearchtool.c:1751 +#: ../gsearchtool/src/gsearchtool.c:1734 msgid "" "The search results may be invalid. There were errors while performing this " "search." msgstr "" -#: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 +#: ../gsearchtool/src/gsearchtool.c:1746 ../gsearchtool/src/gsearchtool.c:1790 msgid "Show more _details" msgstr "" -#: gsearchtool/src/gsearchtool.c:1793 +#: ../gsearchtool/src/gsearchtool.c:1776 msgid "" "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -#: gsearchtool/src/gsearchtool.c:1818 +#: ../gsearchtool/src/gsearchtool.c:1801 msgid "Disable _Quick Search" msgstr "" -#: gsearchtool/src/gsearchtool.c:1845 +#: ../gsearchtool/src/gsearchtool.c:1828 #, c-format msgid "Failed to set process group id of child %d: %s.\n" msgstr "" -#: gsearchtool/src/gsearchtool.c:1870 +#: ../gsearchtool/src/gsearchtool.c:1853 msgid "Error parsing the search command." msgstr "" -#: gsearchtool/src/gsearchtool.c:1902 +#: ../gsearchtool/src/gsearchtool.c:1885 msgid "Error running the search command." msgstr "" -#: gsearchtool/src/gsearchtool.c:2025 +#: ../gsearchtool/src/gsearchtool.c:2008 #, c-format msgid "Enter a text value for the \"%s\" search option." msgstr "" #. Translators: Below is a string displaying the search options name #. and unit value. For example, "\"Date modified less than\" in days". -#: gsearchtool/src/gsearchtool.c:2030 +#: ../gsearchtool/src/gsearchtool.c:2013 #, c-format msgid "\"%s\" in %s" msgstr "" -#: gsearchtool/src/gsearchtool.c:2032 +#: ../gsearchtool/src/gsearchtool.c:2015 #, c-format msgid "Enter a value in %s for the \"%s\" search option." msgstr "" -#: gsearchtool/src/gsearchtool.c:2095 +#: ../gsearchtool/src/gsearchtool.c:2073 #, c-format msgid "Remove \"%s\"" msgstr "" -#: gsearchtool/src/gsearchtool.c:2096 +#: ../gsearchtool/src/gsearchtool.c:2074 #, c-format msgid "Click to remove the \"%s\" search option." msgstr "" -#: gsearchtool/src/gsearchtool.c:2189 +#: ../gsearchtool/src/gsearchtool.c:2167 msgid "A_vailable options:" msgstr "" -#: gsearchtool/src/gsearchtool.c:2218 +#: ../gsearchtool/src/gsearchtool.c:2196 msgid "Available options" msgstr "" -#: gsearchtool/src/gsearchtool.c:2219 +#: ../gsearchtool/src/gsearchtool.c:2197 msgid "Select a search option from the drop-down list." msgstr "" -#: gsearchtool/src/gsearchtool.c:2236 +#: ../gsearchtool/src/gsearchtool.c:2209 msgid "Add search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:2237 +#: ../gsearchtool/src/gsearchtool.c:2210 msgid "Click to add the selected available search option." msgstr "" -#: gsearchtool/src/gsearchtool.c:2326 +#: ../gsearchtool/src/gsearchtool.c:2299 msgid "S_earch results:" msgstr "" -#: gsearchtool/src/gsearchtool.c:2369 +#: ../gsearchtool/src/gsearchtool.c:2342 msgid "List View" msgstr "" -#: gsearchtool/src/gsearchtool.c:2429 -#: mate-dictionary/libgdict/gdict-source.c:243 +#: ../gsearchtool/src/gsearchtool.c:2402 +#: ../mate-dictionary/libgdict/gdict-source.c:246 msgid "Name" msgstr "Nom" -#: gsearchtool/src/gsearchtool.c:2478 +#: ../gsearchtool/src/gsearchtool.c:2451 msgid "Type" msgstr "" -#: gsearchtool/src/gsearchtool.c:2490 +#: ../gsearchtool/src/gsearchtool.c:2463 msgid "Date Modified" msgstr "" -#: gsearchtool/src/gsearchtool.c:2820 +#: ../gsearchtool/src/gsearchtool.c:2798 msgid "_Name contains:" msgstr "" -#: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 +#: ../gsearchtool/src/gsearchtool.c:2813 ../gsearchtool/src/gsearchtool.c:2814 msgid "Enter a filename or partial filename with or without wildcards." msgstr "" -#: gsearchtool/src/gsearchtool.c:2836 +#: ../gsearchtool/src/gsearchtool.c:2814 msgid "Name contains" msgstr "" -#: gsearchtool/src/gsearchtool.c:2842 +#: ../gsearchtool/src/gsearchtool.c:2820 msgid "_Look in folder:" msgstr "" -#: gsearchtool/src/gsearchtool.c:2848 +#: ../gsearchtool/src/gsearchtool.c:2826 msgid "Browse" msgstr "" -#: gsearchtool/src/gsearchtool.c:2858 +#: ../gsearchtool/src/gsearchtool.c:2836 msgid "Look in folder" msgstr "" -#: gsearchtool/src/gsearchtool.c:2858 +#: ../gsearchtool/src/gsearchtool.c:2836 msgid "Select the folder or device from which you want to begin the search." msgstr "" -#: gsearchtool/src/gsearchtool.c:2876 +#: ../gsearchtool/src/gsearchtool.c:2854 msgid "Select more _options" msgstr "" -#: gsearchtool/src/gsearchtool.c:2885 +#: ../gsearchtool/src/gsearchtool.c:2863 msgid "Select more options" msgstr "" -#: gsearchtool/src/gsearchtool.c:2885 +#: ../gsearchtool/src/gsearchtool.c:2863 msgid "Click to expand or collapse the list of available options." msgstr "" -#: gsearchtool/src/gsearchtool.c:2916 +#: ../gsearchtool/src/gsearchtool.c:2887 msgid "Click to display the help manual." msgstr "" -#: gsearchtool/src/gsearchtool.c:2929 +#: ../gsearchtool/src/gsearchtool.c:2895 msgid "Click to close \"Search for Files\"." msgstr "" -#: gsearchtool/src/gsearchtool.c:2964 +#: ../gsearchtool/src/gsearchtool.c:2921 msgid "Click to perform a search." msgstr "" -#: gsearchtool/src/gsearchtool.c:2965 +#: ../gsearchtool/src/gsearchtool.c:2922 msgid "Click to stop a search." msgstr "" -#: gsearchtool/src/gsearchtool.c:3061 +#: ../gsearchtool/src/gsearchtool.c:3016 msgid "- the MATE Search Tool" msgstr "" -#: gsearchtool/src/gsearchtool.c:3072 +#: ../gsearchtool/src/gsearchtool.c:3025 #, c-format msgid "Failed to parse command line arguments: %s\n" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:192 +#: ../gsearchtool/src/gsearchtool-callbacks.c:203 msgid "Could not open help document." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:343 +#: ../gsearchtool/src/gsearchtool-callbacks.c:354 #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool-callbacks.c:348 -#: gsearchtool/src/gsearchtool-callbacks.c:548 +#: ../gsearchtool/src/gsearchtool-callbacks.c:359 +#: ../gsearchtool/src/gsearchtool-callbacks.c:556 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool-callbacks.c:393 +#: ../gsearchtool/src/gsearchtool-callbacks.c:399 #, c-format msgid "Could not open document \"%s\"." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:422 +#: ../gsearchtool/src/gsearchtool-callbacks.c:428 #, c-format msgid "Could not open folder \"%s\"." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:430 +#: ../gsearchtool/src/gsearchtool-callbacks.c:436 msgid "The caja file manager is not running." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:521 +#: ../gsearchtool/src/gsearchtool-callbacks.c:528 msgid "There is no installed viewer capable of displaying the document." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:543 +#: ../gsearchtool/src/gsearchtool-callbacks.c:551 #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool-callbacks.c:725 +#: ../gsearchtool/src/gsearchtool-callbacks.c:704 #, c-format msgid "Could not move \"%s\" to trash." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:756 +#: ../gsearchtool/src/gsearchtool-callbacks.c:735 #, c-format msgid "Do you want to delete \"%s\" permanently?" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:759 +#: ../gsearchtool/src/gsearchtool-callbacks.c:738 #, c-format msgid "Trash is unavailable. Could not move \"%s\" to the trash." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:803 +#: ../gsearchtool/src/gsearchtool-callbacks.c:777 #, c-format msgid "Could not delete \"%s\"." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:915 +#: ../gsearchtool/src/gsearchtool-callbacks.c:889 #, c-format msgid "Deleting \"%s\" failed: %s." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:927 +#: ../gsearchtool/src/gsearchtool-callbacks.c:901 #, c-format msgid "Moving \"%s\" failed: %s." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1143 -#: gsearchtool/src/gsearchtool-callbacks.c:1169 +#. Popup menu item: Open +#: ../gsearchtool/src/gsearchtool-callbacks.c:1029 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1059 msgid "_Open" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1199 +#. Popup menu item: Open with (default) +#: ../gsearchtool/src/gsearchtool-callbacks.c:1084 #, c-format msgid "_Open with %s" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1220 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1119 #, c-format msgid "Open with %s" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1249 +#. Popup menu item: Open With +#: ../gsearchtool/src/gsearchtool-callbacks.c:1152 msgid "Open Wit_h" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1299 +#. Popup menu item: Open Containing Folder +#: ../gsearchtool/src/gsearchtool-callbacks.c:1197 msgid "Open Containing _Folder" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1310 -msgid "Copy _Path" -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1344 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1237 msgid "_Save Results As..." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1722 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1622 msgid "Save Search Results As..." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1751 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1651 msgid "Could not save document." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1752 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1652 msgid "You did not select a document name." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1782 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1682 #, c-format msgid "Could not save \"%s\" document to \"%s\"." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1815 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1715 #, c-format msgid "The document \"%s\" already exists. Would you like to replace it?" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1819 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1719 msgid "If you replace an existing file, its contents will be overwritten." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1834 -#: mate-screenshot/src/screenshot-xfer.c:84 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1734 +#: ../mate-screenshot/src/screenshot-xfer.c:82 msgid "_Replace" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1883 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1783 msgid "The document name you selected is a folder." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1919 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "You may not have write permissions to the document." msgstr "" -#: gsearchtool/src/gsearchtool-support.c:427 +#. Translators: Below are the strings displayed in the 'Date Modified' +#. column of the list view. The format of this string can vary depending +#. on age of a file. Please modify the format of the timestamp to match +#. your locale. For example, to display 24 hour time replace the '%-I' +#. with '%-H' and remove the '%p'. (See bugzilla report #120434.) +#: ../gsearchtool/src/gsearchtool-support.c:448 msgid "today at %-I:%M %p" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:429 +#: ../gsearchtool/src/gsearchtool-support.c:450 msgid "yesterday at %-I:%M %p" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:431 +#: ../gsearchtool/src/gsearchtool-support.c:452 +#: ../gsearchtool/src/gsearchtool-support.c:454 msgid "%A, %B %-d %Y at %-I:%M:%S %p" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:478 +#: ../gsearchtool/src/gsearchtool-support.c:641 msgid "link (broken)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:482 +#: ../gsearchtool/src/gsearchtool-support.c:645 #, c-format msgid "link to %s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1101 +#. START OF CAJA/EEL FUNCTIONS: USED FOR HANDLING OF DUPLICATE FILENAMES +#. Localizers: +#. * Feel free to leave out the st, nd, rd and th suffix or +#. * make some or all of them match. +#. localizers: tag used to detect the first copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1260 msgid " (copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1103 +#. localizers: tag used to detect the second copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1262 msgid " (another copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1106 -#: gsearchtool/src/gsearchtool-support.c:1108 -#: gsearchtool/src/gsearchtool-support.c:1110 -#: gsearchtool/src/gsearchtool-support.c:1120 +#. localizers: tag used to detect the x11th copy of a file +#. localizers: tag used to detect the x12th copy of a file +#. localizers: tag used to detect the x13th copy of a file +#. localizers: tag used to detect the xxth copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1265 +#: ../gsearchtool/src/gsearchtool-support.c:1267 +#: ../gsearchtool/src/gsearchtool-support.c:1269 +#: ../gsearchtool/src/gsearchtool-support.c:1279 msgid "th copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1113 +#. localizers: tag used to detect the x1st copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1272 msgid "st copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1115 +#. localizers: tag used to detect the x2nd copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1274 msgid "nd copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1117 +#. localizers: tag used to detect the x3rd copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1276 msgid "rd copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1134 +#. localizers: appended to first file copy +#: ../gsearchtool/src/gsearchtool-support.c:1293 #, c-format msgid "%s (copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1136 +#. localizers: appended to second file copy +#: ../gsearchtool/src/gsearchtool-support.c:1295 #, c-format msgid "%s (another copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1139 -#: gsearchtool/src/gsearchtool-support.c:1141 -#: gsearchtool/src/gsearchtool-support.c:1143 -#: gsearchtool/src/gsearchtool-support.c:1152 +#. localizers: appended to x11th file copy +#. localizers: appended to x12th file copy +#. localizers: appended to x13th file copy +#. localizers: appended to xxth file copy +#: ../gsearchtool/src/gsearchtool-support.c:1298 +#: ../gsearchtool/src/gsearchtool-support.c:1300 +#: ../gsearchtool/src/gsearchtool-support.c:1302 +#: ../gsearchtool/src/gsearchtool-support.c:1311 #, c-format msgid "%s (%dth copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1146 +#. localizers: appended to x1st file copy +#: ../gsearchtool/src/gsearchtool-support.c:1305 #, c-format msgid "%s (%dst copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1148 +#. localizers: appended to x2nd file copy +#: ../gsearchtool/src/gsearchtool-support.c:1307 #, c-format msgid "%s (%dnd copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1150 +#. localizers: appended to x3rd file copy +#: ../gsearchtool/src/gsearchtool-support.c:1309 #, c-format msgid "%s (%drd copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1197 +#: ../gsearchtool/src/gsearchtool-support.c:1356 msgid " (invalid Unicode)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1286 +#. localizers: opening parentheses to match the "th copy)" string +#: ../gsearchtool/src/gsearchtool-support.c:1445 msgid " (" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1294 +#. localizers: opening parentheses of the "th copy)" string +#: ../gsearchtool/src/gsearchtool-support.c:1453 #, c-format msgid " (%d" msgstr "" -#: logview/data/mate-system-log.desktop.in.in:3 +#: ../logview/data/mate-system-log.desktop.in.in.h:1 msgid "Log File Viewer" msgstr "" -#: logview/data/mate-system-log.desktop.in.in:4 +#: ../logview/data/mate-system-log.desktop.in.in.h:2 msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: logview/data/mate-system-log.desktop.in.in:13 -msgid "MATE;monitor;view;system;log;files;logviewer;" -msgstr "" - -#: logview/data/org.mate.system-log.gschema.xml.in:5 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:1 msgid "Log file to open up on startup" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:6 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:2 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:10 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:3 msgid "Size of the font used to display the log" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:11 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:4 msgid "" "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:15 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:5 msgid "Height of the main window in pixels" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:16 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:6 msgid "Specifies the height of the log viewer main window in pixels." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:20 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:7 msgid "Width of the main window in pixels" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:21 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:8 msgid "Specifies the width of the log viewer main window in pixels." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:25 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:9 msgid "Log files to open up on startup" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:26 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:10 msgid "" "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:30 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:11 msgid "List of saved filters" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:31 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:12 msgid "List of saved regexp filters" msgstr "" -#: logview/data/logview-filter.ui:32 mate-disk-image-mounter/src/main.c:124 -#: mate-screenshot/data/mate-screenshot.ui:92 -msgid "_Cancel" -msgstr "" - -#: logview/data/logview-filter.ui:48 -msgid "_Apply" -msgstr "" - -#: logview/data/logview-filter.ui:91 -#: mate-screenshot/data/mate-screenshot.ui:178 +#: ../logview/data/logview-filter.ui.h:1 +#: ../mate-screenshot/data/mate-screenshot.ui.h:3 msgid "_Name:" msgstr "" -#: logview/data/logview-filter.ui:108 +#: ../logview/data/logview-filter.ui.h:2 msgid "_Regular Expression:" msgstr "" -#: logview/data/logview-filter.ui:180 +#: ../logview/data/logview-filter.ui.h:3 msgid "Highlight" msgstr "" -#: logview/data/logview-filter.ui:205 -msgid "Foreground:" +#: ../logview/data/logview-filter.ui.h:4 +msgid "Hide" msgstr "" -#: logview/data/logview-filter.ui:220 -msgid "Background:" +#: ../logview/data/logview-filter.ui.h:5 +msgid "Foreground:" msgstr "" -#: logview/data/logview-filter.ui:274 -msgid "Hide" +#: ../logview/data/logview-filter.ui.h:6 +msgid "Background:" msgstr "" -#: logview/data/logview-filter.ui:296 +#: ../logview/data/logview-filter.ui.h:7 msgid "Effect:" msgstr "" -#: logview/src/logview-about.h:41 mate-dictionary/src/gdict-about.c:46 -msgid "Sun GNOME Documentation Team " -msgstr "" - -#: logview/src/logview-app.c:369 +#: ../logview/src/logview-app.c:377 #, c-format msgid "Impossible to open the file %s" msgstr "" -#: logview/src/logview-filter-manager.c:93 +#: ../logview/src/logview-filter-manager.c:94 msgid "Filter name is empty!" msgstr "" -#: logview/src/logview-filter-manager.c:106 +#: ../logview/src/logview-filter-manager.c:107 msgid "Filter name may not contain the ':' character" msgstr "" -#: logview/src/logview-filter-manager.c:129 +#: ../logview/src/logview-filter-manager.c:130 msgid "Regular expression is empty!" msgstr "" -#: logview/src/logview-filter-manager.c:145 +#: ../logview/src/logview-filter-manager.c:146 #, c-format msgid "Regular expression is invalid: %s" msgstr "" -#: logview/src/logview-filter-manager.c:207 +#: ../logview/src/logview-filter-manager.c:242 msgid "Please specify either foreground or background color!" msgstr "" -#: logview/src/logview-filter-manager.c:282 +#: ../logview/src/logview-filter-manager.c:296 msgid "Edit filter" msgstr "" -#: logview/src/logview-filter-manager.c:282 +#: ../logview/src/logview-filter-manager.c:296 msgid "Add new filter" msgstr "" -#: logview/src/logview-filter-manager.c:469 +#: ../logview/src/logview-filter-manager.c:510 msgid "Filters" msgstr "" -#: logview/src/logview-findbar.c:169 +#: ../logview/src/logview-findbar.c:172 msgid "_Find:" msgstr "" -#: logview/src/logview-findbar.c:184 +#: ../logview/src/logview-findbar.c:187 msgid "Find Previous" msgstr "" -#: logview/src/logview-findbar.c:187 +#: ../logview/src/logview-findbar.c:190 msgid "Find previous occurrence of the search string" msgstr "" -#: logview/src/logview-findbar.c:192 +#: ../logview/src/logview-findbar.c:195 msgid "Find Next" msgstr "" -#: logview/src/logview-findbar.c:195 +#: ../logview/src/logview-findbar.c:198 msgid "Find next occurrence of the search string" msgstr "" -#: logview/src/logview-findbar.c:202 +#: ../logview/src/logview-findbar.c:205 msgid "Clear the search string" msgstr "" -#: logview/src/logview-log.c:589 +#: ../logview/src/logview-log.c:598 msgid "Error while uncompressing the GZipped log. The file might be corrupt." msgstr "" -#: logview/src/logview-log.c:635 +#: ../logview/src/logview-log.c:645 msgid "You don't have enough permissions to read the file." msgstr "" -#: logview/src/logview-log.c:650 +#: ../logview/src/logview-log.c:660 msgid "The file is not a regular file or is not a text file." msgstr "" -#: logview/src/logview-log.c:743 +#: ../logview/src/logview-log.c:742 msgid "This version of System Log does not support GZipped logs." msgstr "" -#: logview/src/logview-loglist.c:103 -msgid "%A, %e %b" -msgstr "" - -#: logview/src/logview-loglist.c:314 +#: ../logview/src/logview-loglist.c:316 msgid "Loading..." msgstr "" -#: logview/src/logview-main.c:48 -#, c-format -msgid "" -"%s - Version %s\n" -"Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n" -"Copyright (C) 2011-2021 MATE developers.\n" -msgstr "" - -#: logview/src/logview-main.c:64 +#: ../logview/src/logview-main.c:61 msgid "Show the application's version" msgstr "" -#: logview/src/logview-main.c:66 +#: ../logview/src/logview-main.c:63 msgid "[LOGFILE...]" msgstr "" -#: logview/src/logview-main.c:70 +#: ../logview/src/logview-main.c:67 msgid " - Browse and monitor logs" msgstr "" -#: logview/src/logview-main.c:107 +#: ../logview/src/logview-main.c:100 msgid "Log Viewer" msgstr "" -#: logview/src/logview-window.c:41 logview/src/logview-window.c:771 +#: ../logview/src/logview-window.c:38 ../logview/src/logview-window.c:771 msgid "System Log Viewer" msgstr "" -#: logview/src/logview-window.c:216 +#: ../logview/src/logview-window.c:217 #, c-format msgid "last update: %s" msgstr "" -#: logview/src/logview-window.c:220 +#: ../logview/src/logview-window.c:221 #, c-format msgid "%d lines (%s) - %s" msgstr "" -#: logview/src/logview-window.c:325 +#: ../logview/src/logview-window.c:325 msgid "Open Log" msgstr "" -#: logview/src/logview-window.c:364 +#: ../logview/src/logview-window.c:368 #, c-format msgid "There was an error displaying help: %s" msgstr "" -#: logview/src/logview-window.c:478 +#: ../logview/src/logview-window.c:482 msgid "Wrapped" msgstr "" -#: logview/src/logview-window.c:493 -#: mate-dictionary/libgdict/gdict-defbox.c:1125 -#: mate-dictionary/libgdict/gdict-defbox.c:1219 -#: mate-dictionary/libgdict/gdict-defbox.c:1253 +#: ../logview/src/logview-window.c:497 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1127 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1221 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1255 msgid "Not found" msgstr "" -#: logview/src/logview-window.c:773 -msgid "About System Log Viewer" +#: ../logview/src/logview-window.c:777 +msgid "A system log viewer for MATE." msgstr "" -#: logview/src/logview-window.c:774 -msgid "" -"Copyright © 1998-2008 Free Software Foundation, Inc.\n" -"Copyright © 2011-2021 MATE developers" -msgstr "" - -#: logview/src/logview-window.c:778 -msgid "View, monitor or analyze your system logs in a gradual manner." -msgstr "" - -#: logview/src/logview-window.c:821 mate-dictionary/src/gdict-window.c:1258 +#: ../logview/src/logview-window.c:820 +#: ../mate-dictionary/src/gdict-window.c:1291 msgid "_File" msgstr "" -#: logview/src/logview-window.c:824 +#: ../logview/src/logview-window.c:823 msgid "_Filters" msgstr "" -#: logview/src/logview-window.c:827 +#: ../logview/src/logview-window.c:826 msgid "_Open..." msgstr "" -#: logview/src/logview-window.c:827 +#: ../logview/src/logview-window.c:826 msgid "Open a log from file" msgstr "" -#: logview/src/logview-window.c:829 +#: ../logview/src/logview-window.c:828 +msgid "_Close" +msgstr "" + +#: ../logview/src/logview-window.c:828 msgid "Close this log" msgstr "" -#: logview/src/logview-window.c:831 +#: ../logview/src/logview-window.c:830 msgid "_Quit" msgstr "" -#: logview/src/logview-window.c:831 +#: ../logview/src/logview-window.c:830 msgid "Quit the log viewer" msgstr "" -#: logview/src/logview-window.c:834 mate-dictionary/src/gdict-window.c:1277 +#: ../logview/src/logview-window.c:833 msgid "_Copy" msgstr "" -#: logview/src/logview-window.c:834 +#: ../logview/src/logview-window.c:833 msgid "Copy the selection" msgstr "" -#: logview/src/logview-window.c:836 mate-dictionary/src/gdict-window.c:1279 +#: ../logview/src/logview-window.c:835 +#: ../mate-dictionary/src/gdict-window.c:1312 msgid "Select _All" msgstr "" -#: logview/src/logview-window.c:836 +#: ../logview/src/logview-window.c:835 msgid "Select the entire log" msgstr "" -#: logview/src/logview-window.c:838 +#: ../logview/src/logview-window.c:837 msgid "_Find..." msgstr "" -#: logview/src/logview-window.c:838 +#: ../logview/src/logview-window.c:837 msgid "Find a word or phrase in the log" msgstr "" -#: logview/src/logview-window.c:841 -msgid "Zoom _In" -msgstr "" - -#: logview/src/logview-window.c:841 +#: ../logview/src/logview-window.c:840 msgid "Bigger text size" msgstr "" -#: logview/src/logview-window.c:843 -msgid "Zoom _Out" -msgstr "" - -#: logview/src/logview-window.c:843 +#: ../logview/src/logview-window.c:842 msgid "Smaller text size" msgstr "" -#: logview/src/logview-window.c:845 -msgid "_Normal Size" -msgstr "" - -#: logview/src/logview-window.c:845 +#: ../logview/src/logview-window.c:844 msgid "Normal text size" msgstr "" -#: logview/src/logview-window.c:848 +#: ../logview/src/logview-window.c:847 msgid "Manage Filters" msgstr "" -#: logview/src/logview-window.c:848 +#: ../logview/src/logview-window.c:847 msgid "Manage filters" msgstr "" -#: logview/src/logview-window.c:851 +#: ../logview/src/logview-window.c:850 msgid "Open the help contents for the log viewer" msgstr "" -#: logview/src/logview-window.c:853 mate-dictionary/src/gdict-applet.c:1176 -#: mate-dictionary/src/gdict-window.c:1314 +#: ../logview/src/logview-window.c:852 +#: ../mate-dictionary/src/gdict-applet.c:1192 +#: ../mate-dictionary/src/gdict-window.c:1347 msgid "_About" msgstr "" -#: logview/src/logview-window.c:853 +#: ../logview/src/logview-window.c:852 msgid "Show the about dialog for the log viewer" msgstr "" -#: logview/src/logview-window.c:858 +#: ../logview/src/logview-window.c:857 msgid "_Statusbar" msgstr "" -#: logview/src/logview-window.c:858 +#: ../logview/src/logview-window.c:857 msgid "Show Status Bar" msgstr "" -#: logview/src/logview-window.c:860 +#: ../logview/src/logview-window.c:859 msgid "Side _Pane" msgstr "" -#: logview/src/logview-window.c:860 +#: ../logview/src/logview-window.c:859 msgid "Show Side Pane" msgstr "" -#: logview/src/logview-window.c:862 +#: ../logview/src/logview-window.c:861 msgid "Show matches only" msgstr "" -#: logview/src/logview-window.c:862 +#: ../logview/src/logview-window.c:861 msgid "Only show lines that match one of the given filters" msgstr "" -#: logview/src/logview-window.c:994 +#: ../logview/src/logview-window.c:993 #, c-format msgid "Can't read from \"%s\"" msgstr "" -#: logview/src/logview-window.c:1419 +#: ../logview/src/logview-window.c:1421 msgid "Version: " msgstr "" -#: logview/src/logview-window.c:1525 +#: ../logview/src/logview-window.c:1529 msgid "Could not open the following files:" msgstr "" -#: mate-dictionary/data/default.desktop.in:3 -msgid "Default" -msgstr "" - -#: mate-dictionary/data/default.desktop.in:4 +#: ../mate-dictionary/data/default.desktop.in.h:1 msgid "Default Dictionary Server" msgstr "" -#: mate-dictionary/data/mate-dictionary.desktop.in.in:3 -#: mate-dictionary/data/mate-dictionary.appdata.xml.in:7 +#: ../mate-dictionary/data/mate-dictionary.desktop.in.in.h:1 msgid "MATE Dictionary" msgstr "" -#: mate-dictionary/data/mate-dictionary.desktop.in.in:4 +#: ../mate-dictionary/data/mate-dictionary.desktop.in.in.h:2 msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: mate-dictionary/data/mate-dictionary.desktop.in.in:13 -msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" -msgstr "" - -#: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 +#: ../mate-dictionary/data/mate-dictionary.appdata.xml.in.h:1 msgid "A dictionary for MATE Desktop" msgstr "" -#: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 +#: ../mate-dictionary/data/mate-dictionary.appdata.xml.in.h:2 msgid "" -"MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " -"query." +"

MATE Dictionary allows you to look up words in on-line dictionaries. It " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " +"query.

" msgstr "" -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 +#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:1 msgid "Dictionary Applet Factory" msgstr "" -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:6 +#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:2 msgid "Factory for the dictionary applet" msgstr "" -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:9 +#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:3 msgid "Dictionary Look up" msgstr "" -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:10 +#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:4 msgid "Look up words in a dictionary" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:6 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:1 msgid "The default database to use" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:7 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:2 msgid "" "The name of the default individual database or meta-database to use on a " "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:3 msgid "The default search strategy to use" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:12 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:4 msgid "" "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:5 msgid "The font to be used when printing" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:17 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:6 msgid "The font to be used when printing a definition." msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:21 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:7 msgid "The name of the dictionary source used" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:8 msgid "" "The name of the dictionary source used to retrieve the definitions of words." msgstr "" -#: mate-dictionary/data/thai.desktop.in:3 -msgid "Thai" -msgstr "" - -#: mate-dictionary/data/thai.desktop.in:4 +#: ../mate-dictionary/data/thai.desktop.in.h:1 msgid "Longdo Thai-English Dictionaries" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:283 +#: ../mate-dictionary/libgdict/gdict-client-context.c:283 msgid "Client Name" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:284 +#: ../mate-dictionary/libgdict/gdict-client-context.c:284 msgid "The name of the client of the context object" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:297 +#: ../mate-dictionary/libgdict/gdict-client-context.c:297 msgid "Hostname" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:298 +#: ../mate-dictionary/libgdict/gdict-client-context.c:298 msgid "The hostname of the dictionary server to connect to" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:311 +#: ../mate-dictionary/libgdict/gdict-client-context.c:311 msgid "Port" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:312 +#: ../mate-dictionary/libgdict/gdict-client-context.c:312 msgid "The port of the dictionary server to connect to" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:327 +#: ../mate-dictionary/libgdict/gdict-client-context.c:327 msgid "Status" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:328 +#: ../mate-dictionary/libgdict/gdict-client-context.c:328 msgid "The status code as returned by the dictionary server" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:772 +#: ../mate-dictionary/libgdict/gdict-client-context.c:777 #, c-format msgid "No connection to the dictionary server at '%s:%d'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1052 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1060 #, c-format msgid "Lookup failed for hostname '%s': no suitable resources found" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1083 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1091 #, c-format msgid "Lookup failed for host '%s': %s" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1117 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1125 #, c-format msgid "Lookup failed for host '%s': host not found" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1169 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1177 #, c-format msgid "" "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1188 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1196 #, c-format msgid "" "Unable to parse the dictionary server reply\n" ": '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1217 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1225 #, c-format msgid "No definitions found for '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1232 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1240 #, c-format msgid "Invalid database '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1247 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1255 #, c-format msgid "Invalid strategy '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1262 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1270 #, c-format msgid "Bad command '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1277 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1285 #, c-format msgid "Bad parameters for command '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1292 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1300 #, c-format msgid "No databases found on dictionary server at '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1307 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1315 #, c-format msgid "No strategies found on dictionary server at '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1732 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1740 #, c-format msgid "Connection failed to the dictionary server at %s:%d" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1771 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1779 #, c-format msgid "" "Error while reading reply from server:\n" "%s" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1844 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1852 #, c-format msgid "Connection timeout for the dictionary server at '%s:%d'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1878 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1886 +#, c-format msgid "No hostname defined for the dictionary server" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1914 -#: mate-dictionary/libgdict/gdict-client-context.c:1929 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1922 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1937 +#, c-format msgid "Unable to create socket" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1955 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1963 #, c-format msgid "Unable to set the channel as non-blocking: %s" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1970 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1978 #, c-format msgid "Unable to connect to the dictionary server at '%s:%d'" msgstr "" -#: mate-dictionary/libgdict/gdict-context.c:220 +#: ../mate-dictionary/libgdict/gdict-context.c:218 msgid "Local Only" msgstr "" -#: mate-dictionary/libgdict/gdict-context.c:221 +#: ../mate-dictionary/libgdict/gdict-context.c:219 msgid "Whether the context uses only local dictionaries or not" msgstr "" -#: mate-dictionary/libgdict/gdict-database-chooser.c:376 +#: ../mate-dictionary/libgdict/gdict-database-chooser.c:379 msgid "Reload the list of available databases" msgstr "" -#: mate-dictionary/libgdict/gdict-database-chooser.c:388 +#: ../mate-dictionary/libgdict/gdict-database-chooser.c:391 msgid "Clear the list of available databases" msgstr "" -#: mate-dictionary/libgdict/gdict-database-chooser.c:836 -#: mate-dictionary/libgdict/gdict-speller.c:773 -#: mate-dictionary/libgdict/gdict-strategy-chooser.c:783 +#: ../mate-dictionary/libgdict/gdict-database-chooser.c:841 +#: ../mate-dictionary/libgdict/gdict-speller.c:773 +#: ../mate-dictionary/libgdict/gdict-strategy-chooser.c:783 msgid "Error while matching" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:1314 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1316 msgid "F_ind:" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:1327 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1329 msgid "_Previous" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:1335 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1337 msgid "_Next" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:2483 +#: ../mate-dictionary/libgdict/gdict-defbox.c:2494 msgid "Error while looking up definition" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:2525 -#: mate-dictionary/libgdict/gdict-speller.c:731 +#: ../mate-dictionary/libgdict/gdict-defbox.c:2536 +#: ../mate-dictionary/libgdict/gdict-speller.c:731 msgid "Another search is in progress" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:2526 -#: mate-dictionary/libgdict/gdict-speller.c:732 +#: ../mate-dictionary/libgdict/gdict-defbox.c:2537 +#: ../mate-dictionary/libgdict/gdict-speller.c:732 msgid "Please wait until the current search ends." msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:2565 +#: ../mate-dictionary/libgdict/gdict-defbox.c:2576 msgid "Error while retrieving the definition" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:229 +#: ../mate-dictionary/libgdict/gdict-source.c:232 msgid "Filename" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:230 +#: ../mate-dictionary/libgdict/gdict-source.c:233 msgid "The filename used by this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:244 +#: ../mate-dictionary/libgdict/gdict-source.c:247 msgid "The display name of this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:257 +#: ../mate-dictionary/libgdict/gdict-source.c:260 msgid "Description" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:258 +#: ../mate-dictionary/libgdict/gdict-source.c:261 msgid "The description of this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:271 -#: mate-dictionary/libgdict/gdict-speller.c:375 +#: ../mate-dictionary/libgdict/gdict-source.c:274 +#: ../mate-dictionary/libgdict/gdict-speller.c:375 msgid "Database" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:272 +#: ../mate-dictionary/libgdict/gdict-source.c:275 msgid "The default database of this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:285 -#: mate-dictionary/libgdict/gdict-speller.c:382 +#: ../mate-dictionary/libgdict/gdict-source.c:288 +#: ../mate-dictionary/libgdict/gdict-speller.c:382 msgid "Strategy" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:286 +#: ../mate-dictionary/libgdict/gdict-source.c:289 msgid "The default strategy of this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:299 +#: ../mate-dictionary/libgdict/gdict-source.c:302 msgid "Transport" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:300 +#: ../mate-dictionary/libgdict/gdict-source.c:303 msgid "The transport mechanism used by this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:314 -#: mate-dictionary/libgdict/gdict-speller.c:368 +#: ../mate-dictionary/libgdict/gdict-source.c:317 +#: ../mate-dictionary/libgdict/gdict-speller.c:368 msgid "Context" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:315 +#: ../mate-dictionary/libgdict/gdict-source.c:318 msgid "The GdictContext bound to this source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:408 +#: ../mate-dictionary/libgdict/gdict-source.c:413 #, c-format msgid "Invalid transport type '%d'" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:436 +#: ../mate-dictionary/libgdict/gdict-source.c:441 #, c-format msgid "No '%s' group found inside the dictionary source definition" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:452 -#: mate-dictionary/libgdict/gdict-source.c:476 -#: mate-dictionary/libgdict/gdict-source.c:500 -#: mate-dictionary/libgdict/gdict-source.c:525 +#: ../mate-dictionary/libgdict/gdict-source.c:457 +#: ../mate-dictionary/libgdict/gdict-source.c:481 +#: ../mate-dictionary/libgdict/gdict-source.c:505 +#: ../mate-dictionary/libgdict/gdict-source.c:530 #, c-format msgid "Unable to get the '%s' key inside the dictionary source definition: %s" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:550 +#: ../mate-dictionary/libgdict/gdict-source.c:555 #, c-format msgid "" "Unable to get the '%s' key inside the dictionary source definition file: %s" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:736 +#: ../mate-dictionary/libgdict/gdict-source.c:741 +#, c-format msgid "Dictionary source does not have name" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:745 +#: ../mate-dictionary/libgdict/gdict-source.c:750 #, c-format msgid "Dictionary source '%s' has invalid transport '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-source-chooser.c:283 +#: ../mate-dictionary/libgdict/gdict-source-chooser.c:283 msgid "Reload the list of available sources" msgstr "" -#: mate-dictionary/libgdict/gdict-source-loader.c:163 +#: ../mate-dictionary/libgdict/gdict-source-loader.c:171 msgid "Paths" msgstr "" -#: mate-dictionary/libgdict/gdict-source-loader.c:164 +#: ../mate-dictionary/libgdict/gdict-source-loader.c:172 msgid "Search paths used by this object" msgstr "" -#: mate-dictionary/libgdict/gdict-source-loader.c:176 +#: ../mate-dictionary/libgdict/gdict-source-loader.c:184 msgid "Sources" msgstr "" -#: mate-dictionary/libgdict/gdict-source-loader.c:177 +#: ../mate-dictionary/libgdict/gdict-source-loader.c:185 msgid "Dictionary sources found" msgstr "" -#: mate-dictionary/libgdict/gdict-speller.c:347 +#: ../mate-dictionary/libgdict/gdict-speller.c:347 msgid "Clear the list of similar words" msgstr "" -#: mate-dictionary/libgdict/gdict-speller.c:369 +#: ../mate-dictionary/libgdict/gdict-speller.c:369 msgid "The GdictContext object used to get the word definition" msgstr "" -#: mate-dictionary/libgdict/gdict-speller.c:376 +#: ../mate-dictionary/libgdict/gdict-speller.c:376 msgid "The database used to query the GdictContext" msgstr "" -#: mate-dictionary/libgdict/gdict-speller.c:383 +#: ../mate-dictionary/libgdict/gdict-speller.c:383 msgid "The strategy used to query the GdictContext" msgstr "" -#: mate-dictionary/libgdict/gdict-strategy-chooser.c:358 +#: ../mate-dictionary/libgdict/gdict-strategy-chooser.c:358 msgid "Reload the list of available strategies" msgstr "" -#: mate-dictionary/libgdict/gdict-strategy-chooser.c:370 +#: ../mate-dictionary/libgdict/gdict-strategy-chooser.c:370 msgid "Clear the list of available strategies" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:97 +#: ../mate-dictionary/libgdict/gdict-utils.c:97 msgid "GDict debugging flags to set" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:97 -#: mate-dictionary/libgdict/gdict-utils.c:99 +#: ../mate-dictionary/libgdict/gdict-utils.c:97 +#: ../mate-dictionary/libgdict/gdict-utils.c:99 msgid "FLAGS" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:99 +#: ../mate-dictionary/libgdict/gdict-utils.c:99 msgid "GDict debugging flags to unset" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:153 +#: ../mate-dictionary/libgdict/gdict-utils.c:157 msgid "GDict Options" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:154 +#: ../mate-dictionary/libgdict/gdict-utils.c:158 msgid "Show GDict Options" msgstr "" -#: mate-dictionary/src/gdict-about.c:54 -msgid "Look up words or terms in a dictionary source." +#: ../mate-dictionary/src/gdict-about.c:58 +#: ../mate-dictionary/src/gdict-applet.c:587 +msgid "Look up words in dictionaries" msgstr "" -#: mate-dictionary/src/gdict-about.c:82 mate-dictionary/src/gdict-app.c:363 -#: mate-dictionary/src/gdict-window.c:580 -#: mate-dictionary/src/gdict-window.c:1864 +#: ../mate-dictionary/src/gdict-about.c:79 +#: ../mate-dictionary/src/gdict-app.c:371 +#: ../mate-dictionary/src/gdict-window.c:607 +#: ../mate-dictionary/src/gdict-window.c:1900 msgid "Dictionary" msgstr "" -#: mate-dictionary/src/gdict-about.c:84 -msgid "About Dictionary" -msgstr "" - -#: mate-dictionary/src/gdict-about.c:85 -msgid "" -"Copyright © 2005-2006 Emmanuele Bassi\n" -"Copyright © 2011-2021 MATE developers" -msgstr "" - #. Translators: the first is the word found, the second is the #. * database name and the last is the definition's text; please #. * keep the new lines. -#: mate-dictionary/src/gdict-app.c:207 +#: ../mate-dictionary/src/gdict-app.c:217 #, c-format msgid "" "Definition for '%s'\n" @@ -2348,701 +2288,635 @@ "%s\n" msgstr "" -#: mate-dictionary/src/gdict-app.c:221 +#: ../mate-dictionary/src/gdict-app.c:231 #, c-format msgid "Error: %s\n" msgstr "" -#: mate-dictionary/src/gdict-app.c:247 +#: ../mate-dictionary/src/gdict-app.c:257 +#, c-format msgid "See mate-dictionary --help for usage\n" msgstr "" -#: mate-dictionary/src/gdict-app.c:260 +#: ../mate-dictionary/src/gdict-app.c:270 msgid "Unable to find a suitable dictionary source" msgstr "" -#: mate-dictionary/src/gdict-app.c:294 +#: ../mate-dictionary/src/gdict-app.c:304 #, c-format msgid "" "Error while looking up the definition of \"%s\":\n" "%s" msgstr "" -#: mate-dictionary/src/gdict-app.c:323 mate-dictionary/src/gdict-app.c:333 +#: ../mate-dictionary/src/gdict-app.c:333 +#: ../mate-dictionary/src/gdict-app.c:343 msgid "Words to look up" msgstr "" -#: mate-dictionary/src/gdict-app.c:323 mate-dictionary/src/gdict-app.c:325 -#: mate-dictionary/src/gdict-app.c:333 +#: ../mate-dictionary/src/gdict-app.c:333 +#: ../mate-dictionary/src/gdict-app.c:335 +#: ../mate-dictionary/src/gdict-app.c:343 msgid "word" msgstr "" -#: mate-dictionary/src/gdict-app.c:325 +#: ../mate-dictionary/src/gdict-app.c:335 msgid "Words to match" msgstr "" -#: mate-dictionary/src/gdict-app.c:327 +#: ../mate-dictionary/src/gdict-app.c:337 msgid "Dictionary source to use" msgstr "" -#: mate-dictionary/src/gdict-app.c:327 +#: ../mate-dictionary/src/gdict-app.c:337 msgid "source" msgstr "" -#: mate-dictionary/src/gdict-app.c:329 +#: ../mate-dictionary/src/gdict-app.c:339 msgid "Print result to the console" msgstr "" -#: mate-dictionary/src/gdict-app.c:331 +#: ../mate-dictionary/src/gdict-app.c:341 msgid "Database to use" msgstr "" -#: mate-dictionary/src/gdict-app.c:331 +#: ../mate-dictionary/src/gdict-app.c:341 msgid "db" msgstr "" -#: mate-dictionary/src/gdict-app.c:343 +#. create the new option context +#: ../mate-dictionary/src/gdict-app.c:353 msgid " - Look up words in dictionaries" msgstr "" -#: mate-dictionary/src/gdict-applet.c:194 -#: mate-dictionary/src/gdict-window.c:935 +#: ../mate-dictionary/src/gdict-applet.c:219 +#: ../mate-dictionary/src/gdict-window.c:964 msgid "Save a Copy" msgstr "" -#: mate-dictionary/src/gdict-applet.c:204 -#: mate-dictionary/src/gdict-window.c:945 +#: ../mate-dictionary/src/gdict-applet.c:229 +#: ../mate-dictionary/src/gdict-window.c:974 msgid "Untitled document" msgstr "" -#: mate-dictionary/src/gdict-applet.c:225 -#: mate-dictionary/src/gdict-window.c:966 +#: ../mate-dictionary/src/gdict-applet.c:250 +#: ../mate-dictionary/src/gdict-window.c:995 #, c-format msgid "Error while writing to '%s'" msgstr "" -#: mate-dictionary/src/gdict-applet.c:350 +#: ../mate-dictionary/src/gdict-applet.c:370 msgid "Clear the definitions found" msgstr "" -#: mate-dictionary/src/gdict-applet.c:352 +#: ../mate-dictionary/src/gdict-applet.c:372 msgid "Clear definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:353 +#: ../mate-dictionary/src/gdict-applet.c:373 msgid "Clear the text of the definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:365 +#: ../mate-dictionary/src/gdict-applet.c:380 msgid "Print the definitions found" msgstr "" -#: mate-dictionary/src/gdict-applet.c:367 +#: ../mate-dictionary/src/gdict-applet.c:382 msgid "Print definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:368 +#: ../mate-dictionary/src/gdict-applet.c:383 msgid "Print the text of the definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:380 +#: ../mate-dictionary/src/gdict-applet.c:390 msgid "Save the definitions found" msgstr "" -#: mate-dictionary/src/gdict-applet.c:382 +#: ../mate-dictionary/src/gdict-applet.c:392 msgid "Save definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:383 +#: ../mate-dictionary/src/gdict-applet.c:393 msgid "Save the text of the definition to a file" msgstr "" -#: mate-dictionary/src/gdict-applet.c:520 +#: ../mate-dictionary/src/gdict-applet.c:530 msgid "Click to view the dictionary window" msgstr "" -#: mate-dictionary/src/gdict-applet.c:522 +#: ../mate-dictionary/src/gdict-applet.c:532 msgid "Toggle dictionary window" msgstr "" -#: mate-dictionary/src/gdict-applet.c:523 +#: ../mate-dictionary/src/gdict-applet.c:533 msgid "Show or hide the definition window" msgstr "" -#: mate-dictionary/src/gdict-applet.c:574 +#: ../mate-dictionary/src/gdict-applet.c:584 msgid "Type the word you want to look up" msgstr "" -#: mate-dictionary/src/gdict-applet.c:576 +#: ../mate-dictionary/src/gdict-applet.c:586 msgid "Dictionary entry" msgstr "" -#: mate-dictionary/src/gdict-applet.c:577 -msgid "Look up words in dictionaries" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:705 -#: mate-dictionary/src/gdict-window.c:1077 +#: ../mate-dictionary/src/gdict-applet.c:715 +#: ../mate-dictionary/src/gdict-window.c:1106 msgid "Dictionary Preferences" msgstr "" -#: mate-dictionary/src/gdict-applet.c:729 -#: mate-dictionary/src/gdict-pref-dialog.c:496 -#: mate-dictionary/src/gdict-source-dialog.c:477 -#: mate-dictionary/src/gdict-window.c:1224 +#: ../mate-dictionary/src/gdict-applet.c:743 +#: ../mate-dictionary/src/gdict-pref-dialog.c:499 +#: ../mate-dictionary/src/gdict-source-dialog.c:482 +#: ../mate-dictionary/src/gdict-window.c:1257 +#, c-format msgid "There was an error while displaying help" msgstr "" -#: mate-dictionary/src/gdict-applet.c:868 -#: mate-dictionary/src/gdict-window.c:495 +#: ../mate-dictionary/src/gdict-applet.c:882 +#: ../mate-dictionary/src/gdict-window.c:522 #, c-format msgid "No dictionary source available with name '%s'" msgstr "" -#: mate-dictionary/src/gdict-applet.c:872 -#: mate-dictionary/src/gdict-window.c:499 +#: ../mate-dictionary/src/gdict-applet.c:886 +#: ../mate-dictionary/src/gdict-window.c:526 msgid "Unable to find dictionary source" msgstr "" -#: mate-dictionary/src/gdict-applet.c:888 -#: mate-dictionary/src/gdict-window.c:515 +#: ../mate-dictionary/src/gdict-applet.c:902 +#: ../mate-dictionary/src/gdict-window.c:542 #, c-format msgid "No context available for source '%s'" msgstr "" -#: mate-dictionary/src/gdict-applet.c:892 -#: mate-dictionary/src/gdict-window.c:519 +#: ../mate-dictionary/src/gdict-applet.c:906 +#: ../mate-dictionary/src/gdict-window.c:546 msgid "Unable to create a context" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1158 +#: ../mate-dictionary/src/gdict-applet.c:1174 msgid "_Look Up Selected Text" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1161 +#: ../mate-dictionary/src/gdict-applet.c:1177 msgid "Cl_ear" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1164 +#: ../mate-dictionary/src/gdict-applet.c:1180 msgid "_Print" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1167 -#: mate-screenshot/data/mate-screenshot.ui:109 +#: ../mate-dictionary/src/gdict-applet.c:1183 msgid "_Save" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1170 +#: ../mate-dictionary/src/gdict-applet.c:1186 msgid "Preferences" msgstr "Préférences" -#: mate-dictionary/src/gdict-common.c:77 +#: ../mate-dictionary/src/gdict-common.c:80 #, c-format msgid "Unable to rename file '%s' to '%s': %s" msgstr "" -#: mate-dictionary/src/gdict-common.c:101 -#: mate-dictionary/src/gdict-common.c:124 +#: ../mate-dictionary/src/gdict-common.c:104 +#: ../mate-dictionary/src/gdict-common.c:127 #, c-format msgid "Unable to create the data directory '%s': %s" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:238 -#: mate-dictionary/src/gdict-pref-dialog.c:427 +#: ../mate-dictionary/src/gdict-pref-dialog.c:240 +#: ../mate-dictionary/src/gdict-pref-dialog.c:429 msgid "Edit Dictionary Source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:302 +#: ../mate-dictionary/src/gdict-pref-dialog.c:304 msgid "Add Dictionary Source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:347 +#: ../mate-dictionary/src/gdict-pref-dialog.c:349 #, c-format msgid "Remove \"%s\"?" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:349 +#: ../mate-dictionary/src/gdict-pref-dialog.c:351 msgid "This will permanently remove the dictionary source from the list." msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:379 +#: ../mate-dictionary/src/gdict-pref-dialog.c:381 #, c-format msgid "Unable to remove source '%s'" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:713 +#: ../mate-dictionary/src/gdict-pref-dialog.c:646 msgid "Add a new dictionary source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:719 +#: ../mate-dictionary/src/gdict-pref-dialog.c:652 msgid "Remove the currently selected dictionary source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:725 +#: ../mate-dictionary/src/gdict-pref-dialog.c:658 msgid "Edit the currently selected dictionary source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:733 +#: ../mate-dictionary/src/gdict-pref-dialog.c:666 msgid "Set the font used for printing the definitions" msgstr "" -#: mate-dictionary/src/gdict-print.c:238 mate-dictionary/src/gdict-print.c:302 +#: ../mate-dictionary/src/gdict-print.c:241 +#: ../mate-dictionary/src/gdict-print.c:305 #, c-format msgid "Unable to display the preview: %s" msgstr "" -#: mate-dictionary/src/gdict-source-dialog.c:339 -#: mate-dictionary/src/gdict-source-dialog.c:432 +#: ../mate-dictionary/src/gdict-source-dialog.c:340 +#: ../mate-dictionary/src/gdict-source-dialog.c:433 msgid "Unable to create a source file" msgstr "" -#: mate-dictionary/src/gdict-source-dialog.c:357 -#: mate-dictionary/src/gdict-source-dialog.c:450 +#: ../mate-dictionary/src/gdict-source-dialog.c:358 +#: ../mate-dictionary/src/gdict-source-dialog.c:451 msgid "Unable to save source file" msgstr "" -#: mate-dictionary/src/gdict-window.c:290 +#: ../mate-dictionary/src/gdict-window.c:317 #, c-format msgid "Searching for '%s'..." msgstr "" -#: mate-dictionary/src/gdict-window.c:322 -#: mate-dictionary/src/gdict-window.c:379 +#: ../mate-dictionary/src/gdict-window.c:349 +#: ../mate-dictionary/src/gdict-window.c:406 msgid "No definitions found" msgstr "" -#: mate-dictionary/src/gdict-window.c:324 +#: ../mate-dictionary/src/gdict-window.c:351 #, c-format msgid "A definition found" msgid_plural "%d definitions found" msgstr[0] "" msgstr[1] "" -#: mate-dictionary/src/gdict-window.c:578 +#: ../mate-dictionary/src/gdict-window.c:605 #, c-format msgid "%s - Dictionary" msgstr "" -#: mate-dictionary/src/gdict-window.c:1261 +#: ../mate-dictionary/src/gdict-window.c:1294 msgid "_Go" msgstr "" -#: mate-dictionary/src/gdict-window.c:1265 -#: mate-screenshot/data/mate-screenshot.ui:58 +#. File menu +#: ../mate-dictionary/src/gdict-window.c:1298 msgid "_New" msgstr "" -#: mate-dictionary/src/gdict-window.c:1266 +#: ../mate-dictionary/src/gdict-window.c:1299 msgid "New look up" msgstr "" -#: mate-dictionary/src/gdict-window.c:1267 +#: ../mate-dictionary/src/gdict-window.c:1300 msgid "_Save a Copy..." msgstr "" -#: mate-dictionary/src/gdict-window.c:1269 +#: ../mate-dictionary/src/gdict-window.c:1302 msgid "P_review..." msgstr "" -#: mate-dictionary/src/gdict-window.c:1270 +#: ../mate-dictionary/src/gdict-window.c:1303 msgid "Preview this document" msgstr "" -#: mate-dictionary/src/gdict-window.c:1271 +#: ../mate-dictionary/src/gdict-window.c:1304 msgid "_Print..." msgstr "" -#: mate-dictionary/src/gdict-window.c:1272 +#: ../mate-dictionary/src/gdict-window.c:1305 msgid "Print this document" msgstr "" -#: mate-dictionary/src/gdict-window.c:1281 -msgid "_Find" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1282 +#: ../mate-dictionary/src/gdict-window.c:1315 msgid "Find a word or phrase in the document" msgstr "" -#: mate-dictionary/src/gdict-window.c:1284 +#: ../mate-dictionary/src/gdict-window.c:1317 msgid "Find Ne_xt" msgstr "" -#: mate-dictionary/src/gdict-window.c:1286 +#: ../mate-dictionary/src/gdict-window.c:1319 msgid "Find Pre_vious" msgstr "" -#: mate-dictionary/src/gdict-window.c:1288 +#: ../mate-dictionary/src/gdict-window.c:1321 msgid "_Preferences" msgstr "" -#: mate-dictionary/src/gdict-window.c:1292 +#. Go menu +#: ../mate-dictionary/src/gdict-window.c:1325 msgid "_Previous Definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1293 +#: ../mate-dictionary/src/gdict-window.c:1326 msgid "Go to the previous definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1294 +#: ../mate-dictionary/src/gdict-window.c:1327 msgid "_Next Definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1295 +#: ../mate-dictionary/src/gdict-window.c:1328 msgid "Go to the next definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1296 +#: ../mate-dictionary/src/gdict-window.c:1329 msgid "_First Definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1297 +#: ../mate-dictionary/src/gdict-window.c:1330 msgid "Go to the first definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1298 +#: ../mate-dictionary/src/gdict-window.c:1331 msgid "_Last Definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1299 +#: ../mate-dictionary/src/gdict-window.c:1332 msgid "Go to the last definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1302 +#. View menu +#: ../mate-dictionary/src/gdict-window.c:1335 msgid "Similar _Words" msgstr "" -#: mate-dictionary/src/gdict-window.c:1304 +#: ../mate-dictionary/src/gdict-window.c:1337 msgid "Dictionary Sources" msgstr "" -#: mate-dictionary/src/gdict-window.c:1306 +#: ../mate-dictionary/src/gdict-window.c:1339 msgid "Available _Databases" msgstr "" -#: mate-dictionary/src/gdict-window.c:1308 +#: ../mate-dictionary/src/gdict-window.c:1341 msgid "Available St_rategies" msgstr "" -#: mate-dictionary/src/gdict-window.c:1325 +#. View menu +#: ../mate-dictionary/src/gdict-window.c:1358 msgid "_Sidebar" msgstr "" -#: mate-dictionary/src/gdict-window.c:1327 +#: ../mate-dictionary/src/gdict-window.c:1360 msgid "S_tatusbar" msgstr "" -#: mate-dictionary/src/gdict-window.c:1392 +#: ../mate-dictionary/src/gdict-window.c:1425 #, c-format msgid "Dictionary source `%s' selected" msgstr "" -#: mate-dictionary/src/gdict-window.c:1413 +#: ../mate-dictionary/src/gdict-window.c:1446 #, c-format msgid "Strategy `%s' selected" msgstr "" -#: mate-dictionary/src/gdict-window.c:1433 +#: ../mate-dictionary/src/gdict-window.c:1466 #, c-format msgid "Database `%s' selected" msgstr "" -#: mate-dictionary/src/gdict-window.c:1453 +#: ../mate-dictionary/src/gdict-window.c:1486 #, c-format msgid "Word `%s' selected" msgstr "" -#: mate-dictionary/src/gdict-window.c:1478 +#. speller +#: ../mate-dictionary/src/gdict-window.c:1511 msgid "Double-click on the word to look up" msgstr "" -#: mate-dictionary/src/gdict-window.c:1484 +#. strat-chooser +#: ../mate-dictionary/src/gdict-window.c:1517 msgid "Double-click on the matching strategy to use" msgstr "" -#: mate-dictionary/src/gdict-window.c:1489 +#. source-chooser +#: ../mate-dictionary/src/gdict-window.c:1522 msgid "Double-click on the source to use" msgstr "" -#: mate-dictionary/src/gdict-window.c:1498 +#. db-chooser +#: ../mate-dictionary/src/gdict-window.c:1531 msgid "Double-click on the database to use" msgstr "" -#: mate-dictionary/src/gdict-window.c:1670 +#: ../mate-dictionary/src/gdict-window.c:1706 msgid "Look _up:" msgstr "" -#: mate-dictionary/src/gdict-window.c:1745 +#: ../mate-dictionary/src/gdict-window.c:1781 msgid "Similar words" msgstr "" -#: mate-dictionary/src/gdict-window.c:1758 +#: ../mate-dictionary/src/gdict-window.c:1794 msgid "Available dictionaries" msgstr "" -#: mate-dictionary/src/gdict-window.c:1776 +#: ../mate-dictionary/src/gdict-window.c:1812 msgid "Available strategies" msgstr "" -#: mate-dictionary/src/gdict-window.c:1792 +#: ../mate-dictionary/src/gdict-window.c:1828 msgid "Dictionary sources" msgstr "" -#: mate-dictionary/data/mate-dictionary-preferences.ui:27 +#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:1 msgid "_Select a dictionary source for looking up words:" msgstr "" -#: mate-dictionary/data/mate-dictionary-preferences.ui:132 -#: mate-dictionary/data/mate-dictionary-source.ui:148 +#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:2 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:6 msgid "Source" msgstr "" -#: mate-dictionary/data/mate-dictionary-preferences.ui:162 +#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:3 msgid "_Print font:" msgstr "" -#: mate-dictionary/data/mate-dictionary-preferences.ui:216 +#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:4 msgid "Print" msgstr "" -#: mate-dictionary/data/mate-dictionary-source.ui:38 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:1 msgid "_Description:" msgstr "" -#: mate-dictionary/data/mate-dictionary-source.ui:53 -msgid "Source Name" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-source.ui:65 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:2 msgid "_Transport:" msgstr "" -#: mate-dictionary/data/mate-dictionary-source.ui:96 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:3 msgid "H_ostname:" msgstr "" -#: mate-dictionary/data/mate-dictionary-source.ui:175 -msgid "Dictionaries" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-source.ui:200 -msgid "Strategies" -msgstr "" - -#: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:3 -#: mate-disk-image-mounter/src/main.c:62 -msgid "MATE Disk Image Mounter" -msgstr "" - -#: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:4 -msgid "Attach and mount one or more disk image files" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:60 -msgid "An error occurred" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:81 -msgid "Allow writing to the image" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:101 -msgid "All Files" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:105 -msgid "Disk Images (*.img, *.iso)" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:121 -msgid "Select Disk Image(s) to Mount" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:125 -msgid "_Mount" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:131 -msgid "Set up _read-only mount" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:132 -msgid "" -"If checked, the mount will be read-only. This is useful if you don't want " -"the underlying disk image to be modified" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:178 -#, c-format -msgid "Error connecting to udisks daemon: %s (%s, %d)" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:186 -msgid "Attach and mount one or more disk image files." -msgstr "" - -#: mate-disk-image-mounter/src/main.c:234 -#, c-format -msgid "Cannot open `%s' - maybe the volume isn't mounted?" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:241 -#, c-format -msgid "Error opening `%s': %m" +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:5 +msgid "Source Name" msgstr "" -#: mate-disk-image-mounter/src/main.c:262 -#, c-format -msgid "Error attaching disk image: %s (%s, %d)" +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:7 +msgid "Dictionaries" msgstr "" -#: mate-screenshot/data/mate-screenshot.appdata.xml.in:7 -msgid "MATE Screenshot" +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:8 +msgid "Strategies" msgstr "" -#: mate-screenshot/data/mate-screenshot.appdata.xml.in:8 +#: ../mate-screenshot/data/mate-screenshot.appdata.xml.in.h:1 msgid "A screenshot utility for MATE Desktop" msgstr "" -#: mate-screenshot/data/mate-screenshot.appdata.xml.in:10 +#: ../mate-screenshot/data/mate-screenshot.appdata.xml.in.h:2 msgid "" -"MATE Screenshot is a simple utility that lets you capture screenshots of " -"your desktop or of application windows. You can select to copy them to the " +"

MATE Screenshot is a simple utility that lets you capture screenshots of" +" your desktop or of application windows. You can select to copy them to the " "system clipboard or save them in Portable Network Graphics (.png) image " -"format." +"format.

" msgstr "" -#: mate-screenshot/data/mate-screenshot.desktop.in:3 -#: mate-screenshot/src/mate-screenshot.c:519 -#: mate-screenshot/src/mate-screenshot.c:527 +#: ../mate-screenshot/data/mate-screenshot.desktop.in.h:1 +#: ../mate-screenshot/src/mate-screenshot.c:540 +#: ../mate-screenshot/src/mate-screenshot.c:548 msgid "Take Screenshot" msgstr "" -#: mate-screenshot/data/mate-screenshot.desktop.in:4 +#: ../mate-screenshot/data/mate-screenshot.desktop.in.h:2 msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: mate-screenshot/data/mate-screenshot.desktop.in:13 -msgid "MATE;screenshot;snapshot;desktop;window;image;" -msgstr "" - -#: mate-screenshot/data/mate-screenshot.ui:24 +#: ../mate-screenshot/data/mate-screenshot.ui.h:1 msgid "Save Screenshot" msgstr "" -#: mate-screenshot/data/mate-screenshot.ui:74 +#: ../mate-screenshot/data/mate-screenshot.ui.h:2 msgid "C_opy to Clipboard" msgstr "" -#: mate-screenshot/data/mate-screenshot.ui:192 +#: ../mate-screenshot/data/mate-screenshot.ui.h:4 msgid "Save in _folder:" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:5 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:1 msgid "Screenshot delay" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:6 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:2 msgid "The number of seconds to wait before taking the screenshot." msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:10 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:3 msgid "Screenshot directory" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:11 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:4 msgid "The directory the last screenshot was saved in." msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:15 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:5 msgid "Include Border" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:16 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:6 msgid "Include the window manager border along with the screenshot" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:20 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:7 msgid "Include Pointer" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:21 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:8 msgid "Include the pointer in the screenshot" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:25 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:9 msgid "Border Effect" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:26 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:10 msgid "" "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -#: mate-screenshot/src/mate-screenshot.c:138 +#: ../mate-screenshot/src/mate-screenshot.c:139 msgid "Error loading the help page" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:250 +#: ../mate-screenshot/src/mate-screenshot.c:251 msgid "None" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:251 +#: ../mate-screenshot/src/mate-screenshot.c:252 msgid "Drop shadow" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:252 +#: ../mate-screenshot/src/mate-screenshot.c:253 msgid "Border" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:353 +#. * Include pointer * +#: ../mate-screenshot/src/mate-screenshot.c:358 msgid "Include _pointer" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:362 +#. * Include window border * +#: ../mate-screenshot/src/mate-screenshot.c:367 msgid "Include the window _border" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:377 +#: ../mate-screenshot/src/mate-screenshot.c:382 msgid "Apply _effect:" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:437 +#: ../mate-screenshot/src/mate-screenshot.c:450 msgid "Grab the whole _desktop" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:449 +#: ../mate-screenshot/src/mate-screenshot.c:462 msgid "Grab the current _window" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:461 +#: ../mate-screenshot/src/mate-screenshot.c:474 msgid "Select _area to grab" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:479 +#. translators: this is the first part of the "grab after a +#. * delay of seconds". +#: ../mate-screenshot/src/mate-screenshot.c:492 msgid "Grab _after a delay of" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:500 -#: mate-screenshot/src/mate-screenshot.c:1320 +#. translators: this is the last part of the "grab after a +#. * delay of seconds". +#: ../mate-screenshot/src/mate-screenshot.c:517 +#: ../mate-screenshot/src/mate-screenshot.c:1274 msgid "seconds" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:528 +#: ../mate-screenshot/src/mate-screenshot.c:549 msgid "Effects" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:532 +#: ../mate-screenshot/src/mate-screenshot.c:553 msgid "Take _Screenshot" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:651 +#: ../mate-screenshot/src/mate-screenshot.c:672 msgid "Error while saving screenshot" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:654 +#: ../mate-screenshot/src/mate-screenshot.c:675 #, c-format msgid "" "Impossible to save the screenshot to %s.\n" @@ -3050,81 +2924,77 @@ " Please choose another location and retry." msgstr "" -#: mate-screenshot/src/mate-screenshot.c:796 +#: ../mate-screenshot/src/mate-screenshot.c:807 msgid "Screenshot taken" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:851 +#: ../mate-screenshot/src/mate-screenshot.c:862 msgid "Unable to take a screenshot of the current window" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:916 +#. translators: this is the name of the file that gets made up +#. * with the screenshot if the entire screen is taken +#: ../mate-screenshot/src/mate-screenshot.c:919 #, c-format msgid "Screenshot at %s.png" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:923 +#. translators: this is the name of the file that gets +#. * made up with the screenshot if the entire screen is +#. * taken +#: ../mate-screenshot/src/mate-screenshot.c:926 #, c-format msgid "Screenshot at %s - %d.png" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1315 +#: ../mate-screenshot/src/mate-screenshot.c:1270 msgid "Grab a window instead of the entire screen" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1316 +#: ../mate-screenshot/src/mate-screenshot.c:1271 msgid "Grab an area of the screen instead of the entire screen" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1317 -msgid "Send grabbed area directly to the clipboard" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1318 +#: ../mate-screenshot/src/mate-screenshot.c:1272 msgid "Include the window border with the screenshot" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1319 +#: ../mate-screenshot/src/mate-screenshot.c:1273 msgid "Remove the window border from the screenshot" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1320 +#: ../mate-screenshot/src/mate-screenshot.c:1274 msgid "Take screenshot after specified delay [in seconds]" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1321 +#: ../mate-screenshot/src/mate-screenshot.c:1275 msgid "Effect to add to the border (shadow, border or none)" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1321 +#: ../mate-screenshot/src/mate-screenshot.c:1275 msgid "effect" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1322 +#: ../mate-screenshot/src/mate-screenshot.c:1276 msgid "Interactively set options" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1323 +#: ../mate-screenshot/src/mate-screenshot.c:1277 msgid "Print version information and exit" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1334 +#: ../mate-screenshot/src/mate-screenshot.c:1286 msgid "Take a picture of the screen" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1357 -msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1363 +#: ../mate-screenshot/src/mate-screenshot.c:1309 +#, c-format msgid "" "Conflicting options: --window and --area should not be used at the same " "time.\n" msgstr "" -#: mate-screenshot/src/screenshot-dialog.c:210 +#: ../mate-screenshot/src/screenshot-dialog.c:207 #, c-format msgid "" "Error loading UI definition file for the screenshot program: \n" @@ -3133,45 +3003,45 @@ "Please check your installation of mate-utils." msgstr "" -#: mate-screenshot/src/screenshot-dialog.c:233 +#: ../mate-screenshot/src/screenshot-dialog.c:230 msgid "Select a folder" msgstr "" -#: mate-screenshot/src/screenshot-dialog.c:328 -#: mate-screenshot/src/screenshot-save.c:202 +#: ../mate-screenshot/src/screenshot-dialog.c:325 +#: ../mate-screenshot/src/screenshot-save.c:196 msgid "Screenshot.png" msgstr "" -#: mate-screenshot/src/screenshot-save.c:60 +#: ../mate-screenshot/src/screenshot-save.c:57 #, c-format msgid "" "Unable to clear the temporary folder:\n" "%s" msgstr "" -#: mate-screenshot/src/screenshot-save.c:98 +#: ../mate-screenshot/src/screenshot-save.c:95 msgid "" "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -#: mate-screenshot/src/screenshot-save.c:231 +#: ../mate-screenshot/src/screenshot-save.c:223 msgid "Unknown error saving screenshot to disk" msgstr "" -#: mate-screenshot/src/screenshot-xfer.c:74 +#: ../mate-screenshot/src/screenshot-xfer.c:72 msgid "File already exists" msgstr "" -#: mate-screenshot/src/screenshot-xfer.c:77 +#: ../mate-screenshot/src/screenshot-xfer.c:75 #, c-format msgid "The file \"%s\" already exists. Would you like to replace it?" msgstr "" -#: mate-screenshot/src/screenshot-xfer.c:122 +#: ../mate-screenshot/src/screenshot-xfer.c:120 msgid "Saving file..." msgstr "" -#: mate-screenshot/src/screenshot-xfer.c:292 +#: ../mate-screenshot/src/screenshot-xfer.c:290 msgid "Can't access source file" msgstr "" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/fr.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/fr.gmo differ Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/frp.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/frp.gmo differ diff -Nru mate-utils-1.26.0/po/fr.po mate-utils-1.26.1/po/fr.po --- mate-utils-1.26.0/po/fr.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/fr.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,47 +2,48 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# dfd998a47e5ece82efa734d3c31b5c3e_071ebb8, 2018 -# jeremy shields , 2018 -# rogue_spectre , 2018 -# df3de0cb43d289cd23a753345b3743cd_a20684f, 2018 -# brice nice , 2018 -# mauron, 2018 -# Charles Monzat , 2018 -# Étienne Deparis , 2019 -# David D, 2019 -# clefebvre , 2019 -# Laurent Napias, 2020 -# Stefano Karapetsas , 2021 # yoplait , 2021 +# jeremy shields , 2021 +# Laurent Napias , 2021 +# mauron, 2021 +# dfd998a47e5ece82efa734d3c31b5c3e_071ebb8, 2021 +# Charles Monzat , 2021 +# Stefano Karapetsas , 2021 # Tubuntu, 2021 -# +# clefebvre , 2021 +# Étienne Deparis , 2021 +# df3de0cb43d289cd23a753345b3743cd_a20684f, 2021 +# brice nice , 2021 +# Laurent Napias, 2021 +# David D, 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Tubuntu, 2021\n" -"Language-Team: French (https://www.transifex.com/mate/teams/13566/fr/)\n" -"Language: fr\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: David D, 2021\n" +"Language-Team: French (https://app.transifex.com/mate/teams/13566/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Language: fr\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 msgid "MATE Disk Usage Analyzer" -msgstr "Analyseur d'utilisation des disques" +msgstr "Analyseur d'utilisation des disques MATE" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:4 msgid "Check folder sizes and available disk space" msgstr "Vérifier la taille des dossiers et l'espace disque disponible" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "MATE;check;disk;usage;analyze;size;space;" @@ -57,7 +58,7 @@ #: mate-dictionary/src/gdict-window.c:1262 #: mate-screenshot/data/mate-screenshot.ui:41 msgid "_Help" -msgstr "Aid_e" +msgstr "Aide" #: baobab/data/baobab-dialog-scan-props.ui:48 logview/src/logview-window.c:829 #: mate-dictionary/src/gdict-window.c:1273 @@ -67,7 +68,7 @@ #: baobab/data/baobab-dialog-scan-props.ui:81 msgid "Select _devices to include in filesystem scan:" msgstr "" -"Sélectionnez les _périphériques à inclure dans l'analyse du système de " +"Sélectionnez les périphériques à inclure _dans l'analyse du système de " "fichiers :" #: baobab/data/baobab-dialog-scan-props.ui:119 @@ -76,15 +77,15 @@ #: baobab/data/baobab-main-window.ui:10 msgid "_Analyzer" -msgstr "A_nalyse" +msgstr "_Analyseur" #: baobab/data/baobab-main-window.ui:17 msgid "Scan _Home Folder" -msgstr "Analyser le dossier _personnel" +msgstr "Analyser le dossier personnel" #: baobab/data/baobab-main-window.ui:26 msgid "Scan _Filesystem" -msgstr "Analyser le _système de fichiers" +msgstr "Analyser le système de _fichiers" #: baobab/data/baobab-main-window.ui:35 msgid "Scan F_older..." @@ -92,42 +93,42 @@ #: baobab/data/baobab-main-window.ui:44 msgid "S_can Remote Folder..." -msgstr "Analyser un dossier _distant..." +msgstr "Analyser un dossier distant..." #: baobab/data/baobab-main-window.ui:74 logview/src/logview-window.c:822 #: mate-dictionary/src/gdict-window.c:1259 msgid "_Edit" -msgstr "_Édition" +msgstr "Édit_er" #: baobab/data/baobab-main-window.ui:80 msgid "_Expand All" -msgstr "Tout _déplier" +msgstr "Tout dépli_er" #: baobab/data/baobab-main-window.ui:87 msgid "_Collapse All" -msgstr "Tout _réduire" +msgstr "Tout réduire" #: baobab/data/baobab-main-window.ui:101 logview/src/logview-window.c:823 #: mate-dictionary/src/gdict-window.c:1260 msgid "_View" -msgstr "_Affichage" +msgstr "Affichage" #: baobab/data/baobab-main-window.ui:108 msgid "_Toolbar" -msgstr "Barre d'_outils" +msgstr "Barre d'ou_tils" #: baobab/data/baobab-main-window.ui:115 msgid "St_atusbar" -msgstr "Barre d'é_tat" +msgstr "Barre d'ét_at" #: baobab/data/baobab-main-window.ui:122 msgid "All_ocated Space" -msgstr "E_space all_oué" +msgstr "Espace all_oué" #: baobab/data/baobab-main-window.ui:136 logview/src/logview-window.c:851 #: mate-dictionary/src/gdict-window.c:1312 msgid "_Contents" -msgstr "_Sommaire" +msgstr "Sommaire" #: baobab/data/baobab-main-window.ui:183 baobab/src/baobab.c:1237 #: baobab/src/callbacks.c:103 @@ -168,7 +169,7 @@ #: baobab/data/baobab-main-window.ui:312 msgid "Stop scanning" -msgstr "Arrête l'analyse" +msgstr "Arrêter l'analyse" #: baobab/data/baobab-main-window.ui:328 msgid "Refresh" @@ -203,12 +204,13 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:26 msgid "Statusbar is Visible" -msgstr "La barre de statut est visible" +msgstr "La barre d'état est visible" #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:27 msgid "Whether the status bar at the bottom of main window should be visible." msgstr "" -"Indique si la barre d'état au bas de la fenêtre principale doit être visible." +"Indique si la barre d'état au bas de la fenêtre principale doit être " +"visible." #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:31 msgid "Subfolder tips visible" @@ -226,7 +228,7 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:37 msgid "Which type of chart should be displayed." -msgstr "Le type de diagramme à afficher." +msgstr "Type de diagramme à afficher." #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:8 msgid "A disk usage analyzing tool for MATE Desktop" @@ -234,8 +236,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" "Comme son nom l'indique, l'analyseur d'utilisation des disques est un " @@ -250,9 +252,9 @@ "local or remote. There is also an option to constantly monitor any external " "changes to the home directory and warn the user if a file is added/removed." msgstr "" -"Vous pouvez effectuer des analyses sur un système de fichiers, votre dossier " -"personnel ou tout autre dossier - local ou distant. Il existe également une " -"option pour surveiller en permanence toutes les modifications externes " +"Vous pouvez effectuer des analyses sur un système de fichiers, votre dossier" +" personnel ou tout autre dossier - local ou distant. Il existe également une" +" option pour surveiller en permanence toutes les modifications externes " "apportées à votre dossier personnel et avertir l'utilisateur si un fichier " "est ajouté/supprimé." @@ -296,8 +298,9 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d objet" -msgstr[1] "%5d objets" +msgstr[0] "%5d élément" +msgstr[1] "%5d éléments" +msgstr[2] "%5d éléments" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -360,7 +363,8 @@ #: baobab/src/baobab-chart.c:205 msgid "The maximum depth drawn in the chart from the root" -msgstr "La profondeur maximale dessinée sur le graphique à partir de la racine" +msgstr "" +"La profondeur maximale dessinée sur le graphique à partir de la racine" #: baobab/src/baobab-chart.c:214 msgid "Chart model" @@ -603,9 +607,9 @@ "any later version." msgstr "" "Ce programme est un logiciel libre ; vous pouvez le redistribuer et/ou le " -"modifier selon les termes de la Licence Publique Générale GNU publiée par la " -"Free Software Foundation ; soit la version 2 ou, (à votre discrétion) toute " -"autre version ultérieure." +"modifier selon les termes de la Licence Publique Générale GNU publiée par la" +" Free Software Foundation ; soit la version 2 ou, (à votre discrétion) toute" +" autre version ultérieure." #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -617,14 +621,14 @@ msgstr "" "Ce programme est distribué dans l'espoir qu'il sera utile, mais SANS AUCUNE " "GARANTIE ; sans même une garantie implicite de COMMERCIABILITÉ ou DE " -"CONFORMITÉ À UNE UTILISATION PARTICULIÈRE. Voir la Licence Publique Générale " -"GNU pour plus de détails." +"CONFORMITÉ À UNE UTILISATION PARTICULIÈRE. Voir la Licence Publique Générale" +" GNU pour plus de détails." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" "Vous devriez avoir reçu une copie de la Licence Publique Générale GNU avec " "ce programme. Si ce n'est pas le cas, voir ." @@ -649,7 +653,7 @@ #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" msgstr "" -"Contributeurs au projet MATE :\n" +"Contributeurs au projet MATE :\n" "Voir https://www.transifex.com/mate/teams/13566/fr/\n" "\n" "Contributeurs au projet GNOME :\n" @@ -686,15 +690,15 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" -"L'outil de recherche MATE est un utilitaire simple mais puissant qui vous " +"L'Outil de recherche MATE est un utilitaire simple mais puissant qui vous " "permet de rechercher des fichiers et dossiers sur n'importe quel système de " "fichiers monté. Son interface vous donne un accès instantané à une grande " -"variété de paramètres pour chaque recherche, tels que le texte contenu dans " -"un fichier, la propriété, la date de modification, la taille du fichier, " +"variété de paramètres pour chaque recherche, tels que du texte contenu dans " +"un fichier, la propriété, la date de modification, la taille de fichier, " "l'exclusion de dossiers, etc." #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -703,7 +707,8 @@ "Localiser les documents et dossiers de cet ordinateur par leur nom ou leur " "contenu" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -724,7 +729,7 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:14 msgid "Disable Quick Search" -msgstr "Désactiver la recherche rapide" +msgstr "Désactivation de la recherche rapide" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:15 msgid "" @@ -740,18 +745,18 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Cette clé définit les chemins que l'outil de recherche exclura de la " "recherche rapide. Les caractères génériques '*' et '?' sont pris en charge. " -"Les valeurs par défaut sont mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, et /" -"var/*." +"Les valeurs par défaut sont mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, et " +"/var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" -msgstr "Désactiver la seconde passe de recherche rapide" +msgstr "Désactivation de la seconde passe de recherche rapide" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:25 msgid "" @@ -770,14 +775,14 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "La clé définit les chemins que l'outil de recherche exclura du second " -"balayage lors d'une recherche rapide. Le second balayage utilise la commande " -"find pour rechercher les fichiers. Le but du second balayage est de chercher " -"les fichiers qui n'ont pas été indexés. Les caractères génériques « * » et " -"« ? » sont pris en charge. La valeur par défaut est /." +"balayage lors d'une recherche rapide. Le second balayage utilise la commande" +" find pour rechercher les fichiers. Le but du second balayage est de " +"chercher les fichiers qui n'ont pas été indexés. Les caractères génériques " +"« * » et « ? » sont pris en charge. La valeur par défaut est /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -797,13 +802,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Cette clé définit la largeur de la fenêtre, et est utilisée pour mémoriser " -"la taille de l'outil de recherche entre les sessions. La valeur -1 permettra " -"à l'outil de recherche d'utiliser la largeur par défaut." +"la taille de l'outil de recherche entre les sessions. La valeur -1 permettra" +" à l'outil de recherche d'utiliser la largeur par défaut." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -812,12 +817,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Cette clé définit la hauteur de la fenêtre, et est utilisée pour mémoriser " -"la taille de l'outil de recherche entre les sessions. La valeur -1 permettra " -"à l'outil de recherche d'utiliser la hauteur par défaut." +"la taille de l'outil de recherche entre les sessions. La valeur -1 permettra" +" à l'outil de recherche d'utiliser la hauteur par défaut." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -852,8 +857,8 @@ "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"Cette clé définit si l'option de recherche « Date de modification antérieure " -"à » est sélectionnée quand l'outil de recherche est démarré." +"Cette clé définit si l'option de recherche « Date de modification antérieure" +" à » est sélectionnée quand l'outil de recherche est démarré." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" @@ -897,8 +902,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Cette clé définit si l'option de recherche « Appartient au groupe » est " "sélectionnée quand l'outil de recherche est démarré." @@ -921,8 +926,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Cette clé définit si l'option de recherche « le nom correspond à " "l'expression régulière » est sélectionnée quand l'outil de recherche est " @@ -952,64 +957,64 @@ "Cette clé définit si l'option de recherche « Exclure les autres systèmes de " "fichier » est sélectionnée quand l'outil de recherche est démarré." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" -msgstr "Le fichier n'est pas un fichier .desktop valide" +msgstr "Le fichier n'est pas un fichier .desktop valable" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" -msgstr "Version « %s » du fichier .desktop non reconnue" +msgstr "Version « %s » du fichier .desktop non reconnue" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Démarrage de %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "L'application n'accepte pas les documents en ligne de commande" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Option de lancement non reconnue : %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Impossible de passer les URI de documents vers une entrée .desktop de type " "« Type=Link »" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "L'élément ne peut pas être lancé" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Désactive la connexion au gestionnaire de sessions" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Indique le fichier contenant la configuration enregistrée" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FICHIER" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Indique l'ID de la gestion de sessions" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Options de gestion de sessions :" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Afficher les options de gestion de sessions" @@ -1148,8 +1153,9 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "%'d fichier trouvé" -msgstr[1] "%'d fichiers trouvés" +msgstr[0] "%'d Fichier Trouvé" +msgstr[1] "%'d Fichiers Trouvés" +msgstr[2] "%'d Fichiers Trouvés" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format @@ -1157,6 +1163,7 @@ msgid_plural "%'d files found" msgstr[0] "%'d fichier trouvé" msgstr[1] "%'d fichiers trouvés" +msgstr[2] "%'d fichiers trouvés" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1169,7 +1176,8 @@ #: gsearchtool/src/gsearchtool.c:1326 msgid "Set the text of \"Look in folder\" search option" msgstr "" -"Définir le texte de « Rechercher dans le dossier » pour la règle de recherche" +"Définir le texte de « Rechercher dans le dossier » pour la règle de " +"recherche" #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" @@ -1210,8 +1218,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"Les résultats de la recherche peuvent être non valide. Il y a eu des erreurs " -"lors de cette recherche." +"Les résultats de la recherche peuvent être non valide. Il y a eu des erreurs" +" lors de cette recherche." #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1388,16 +1396,18 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Voulez-vous vraiment ouvrir %d document ?" -msgstr[1] "Voulez-vous vraiment ouvrir %d documents ?" +msgstr[0] "Voulez-vous vraiment ouvrir %d document ?" +msgstr[1] "Voulez-vous vraiment ouvrir %d documents ?" +msgstr[2] "Voulez-vous vraiment ouvrir %d documents ?" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Cette opération ouvrira %d fenêtre séparée." -msgstr[1] "Cette opération ouvrira %d fenêtres séparées." +msgstr[0] "Cela va ouvrir %d fenêtre séparée." +msgstr[1] "Cela va ouvrir %d fenêtres séparées." +msgstr[2] "Cela va ouvrir %d fenêtres séparées." #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1411,7 +1421,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:430 msgid "The caja file manager is not running." -msgstr "Le gestionnaire de fichiers Caja n'est pas en cours de fonctionnement." +msgstr "" +"Le gestionnaire de fichiers Caja n'est pas en cours de fonctionnement." #: gsearchtool/src/gsearchtool-callbacks.c:521 msgid "There is no installed viewer capable of displaying the document." @@ -1421,8 +1432,9 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Voulez-vous vraiment ouvrir %d dossier ?" -msgstr[1] "Voulez-vous vraiment ouvrir %d dossiers ?" +msgstr[0] "Voulez-vous vraiment ouvrir %d dossier ?" +msgstr[1] "Voulez-vous vraiment ouvrir %d dossiers ?" +msgstr[2] "Voulez-vous vraiment ouvrir %d dossiers ?" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1627,7 +1639,8 @@ msgid "View or monitor system log files" msgstr "Afficher ou surveiller les journaux système" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "MATE;monitor;view;system;log;files;logviewer;" @@ -1638,11 +1651,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Indique le fichier journal à afficher au démarrage. La valeur par défaut est " -"soit /var/adm/messages, soit /var/log/messages, suivant votre système " +"Indique le fichier journal à afficher au démarrage. La valeur par défaut est" +" soit /var/adm/messages, soit /var/log/messages, suivant votre système " "d'exploitation." #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1665,8 +1678,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:16 msgid "Specifies the height of the log viewer main window in pixels." msgstr "" -"Indique la hauteur de la fenêtre principale de la visionneuse de journaux en " -"pixels." +"Indique la hauteur de la fenêtre principale de la visionneuse de journaux en" +" pixels." #: logview/data/org.mate.system-log.gschema.xml.in:20 msgid "Width of the main window in pixels" @@ -1675,8 +1688,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:21 msgid "Specifies the width of the log viewer main window in pixels." msgstr "" -"Indique la largeur de la fenêtre principale de la visionneuse de journaux en " -"pixels." +"Indique la largeur de la fenêtre principale de la visionneuse de journaux en" +" pixels." #: logview/data/org.mate.system-log.gschema.xml.in:25 msgid "Log files to open up on startup" @@ -1687,8 +1700,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"Indique la liste des journaux à ouvrir au démarrage. La liste par défaut est " -"créer en lisant /etc/syslog.conf." +"Indique la liste des journaux à ouvrir au démarrage. La liste par défaut est" +" créer en lisant /etc/syslog.conf." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1789,7 +1802,7 @@ #: logview/src/logview-findbar.c:187 msgid "Find previous occurrence of the search string" -msgstr "Recherche l'occurrence précédente de la chaîne" +msgstr "Trouver l'occurrence précédente de la chaîne recherchée" #: logview/src/logview-findbar.c:192 msgid "Find Next" @@ -1797,7 +1810,7 @@ #: logview/src/logview-findbar.c:195 msgid "Find next occurrence of the search string" -msgstr "Recherche l'occurrence suivante de la chaîne" +msgstr "Trouver l'occurrence suivante de la chaîne recherchée" #: logview/src/logview-findbar.c:202 msgid "Clear the search string" @@ -2019,7 +2032,7 @@ #: logview/src/logview-window.c:860 msgid "Side _Pane" -msgstr "Panneau _latéral" +msgstr "_Panneau latéral" #: logview/src/logview-window.c:860 msgid "Show Side Pane" @@ -2065,7 +2078,8 @@ "Vérifier la définition et l'orthographe des mots dans un dictionnaire en " "ligne" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" @@ -2077,13 +2091,13 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" "Le Dictionnaire MATE vous permet de rechercher des mots dans des " -"dictionnaires en ligne. Il est livré préconfiguré avec une liste de serveurs " -"Dict (RFC 2229), auxquels vous pouvez ajouter vos propres sources, tandis " +"dictionnaires en ligne. Il est livré préconfiguré avec une liste de serveurs" +" Dict (RFC 2229), auxquels vous pouvez ajouter vos propres sources, tandis " "que vous pouvez sélectionner des serveurs spécifiques pour une requête " "spécifique." @@ -2115,8 +2129,8 @@ msgstr "" "Le nom de la base de données individuelle ou de la méta-base de données à " "utiliser avec le serveur de dictionnaire. Un point d'exclamation (« ! ») " -"indique que mate-dictionary doit rechercher dans toutes les bases de données " -"sur un serveur donné" +"indique que mate-dictionary doit rechercher dans toutes les bases de données" +" sur un serveur donné" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2127,8 +2141,8 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"Si disponible, le nom de la stratégie de recherche par défaut à utiliser sur " -"une source de dictionnaires. La stratégie par défaut est « exact », ce qui " +"Si disponible, le nom de la stratégie de recherche par défaut à utiliser sur" +" une source de dictionnaires. La stratégie par défaut est « exact », ce qui " "signifie une correspondance exacte entre les mots." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 @@ -2822,8 +2836,9 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Une définition trouvée" +msgstr[0] "%d définition trouvée" msgstr[1] "%d définitions trouvées" +msgstr[2] "%d définitions trouvées" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -3078,8 +3093,8 @@ "If checked, the mount will be read-only. This is useful if you don't want " "the underlying disk image to be modified" msgstr "" -"Si coché, le montage sera en lecture seule. Cela est utile si vous ne voulez " -"pas que l'image disque sous-jacente soit modifiée" +"Si coché, le montage sera en lecture seule. Cela est utile si vous ne voulez" +" pas que l'image disque sous-jacente soit modifiée" #: mate-disk-image-mounter/src/main.c:178 #, c-format @@ -3093,7 +3108,8 @@ #: mate-disk-image-mounter/src/main.c:234 #, c-format msgid "Cannot open `%s' - maybe the volume isn't mounted?" -msgstr "Impossible d'ouvrir « %s » - Peut-être que le volume n'est pas monté ?" +msgstr "" +"Impossible d'ouvrir « %s » - Peut-être que le volume n'est pas monté ?" #: mate-disk-image-mounter/src/main.c:241 #, c-format @@ -3136,7 +3152,8 @@ msgstr "" "Enregistrer les images de votre bureau ou de vos fenêtres individuelles" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "MATE;screenshot;snapshot;desktop;window;image;" @@ -3194,8 +3211,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Effet à ajouter à l'extérieur du bord. Les valeurs possibles sont " -"« shadow » (ombre), « border » (bordure) et « none » (aucun)." +"Effet à ajouter à l'extérieur du bord. Les valeurs possibles sont « shadow »" +" (ombre), « border » (bordure) et « none » (aucun)." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3333,8 +3350,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Options conflictuelles : --clipboard et --interactive ne doivent pas être " "utilisées en même temps.\n" @@ -3355,8 +3372,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Erreur au chargement du fichier de définition IU du programme de capture " -"d'écran: \n" +"Erreur au chargement du fichier de définition IU du programme de capture d'écran: \n" "%s\n" "\n" "Veuillez vérifier votre installation de mate-utils." @@ -3384,8 +3400,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"Le processus fils d'enregistrement a quitté inopinément. Impossible d'écrire " -"la capture d'écran sur le disque." +"Le processus fils d'enregistrement a quitté inopinément. Impossible d'écrire" +" la capture d'écran sur le disque." #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" diff -Nru mate-utils-1.26.0/po/frp.po mate-utils-1.26.1/po/frp.po --- mate-utils-1.26.0/po/frp.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/frp.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Alexandre Raymond, 2019 -# +# Alexandre Raymond, 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Alexandre Raymond, 2019\n" -"Language-Team: Franco-Provençal (Arpitan) (https://www.transifex.com/mate/" -"teams/13566/frp/)\n" -"Language: frp\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Alexandre Raymond, 2021\n" +"Language-Team: Franco-Provençal (Arpitan) (https://app.transifex.com/mate/teams/13566/frp/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: frp\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -579,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -624,16 +624,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -667,9 +668,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -691,8 +692,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -711,9 +712,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -723,8 +724,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -788,8 +789,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -806,8 +807,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -828,62 +829,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Ce fôlyo est pas un fôlyo “.desktop” valido." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Vèrsion '%s' de fôlyo desktop pas reconyua" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Après enrayér %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "L’aplicacion accèpte pas de documents en linye de comanda" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Opcion d’enrayement inconyua: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Impossîblo d’enrayér l’objèt" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FÔLYO" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opcions de mènement de sèssion" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1488,7 +1489,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1499,8 +1501,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1898,7 +1900,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1910,8 +1913,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2925,7 +2928,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3117,8 +3121,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/fur.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/fur.gmo differ diff -Nru mate-utils-1.26.0/po/fur.po mate-utils-1.26.1/po/fur.po --- mate-utils-1.26.0/po/fur.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/fur.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2019 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2019\n" -"Language-Team: Friulian (https://www.transifex.com/mate/teams/13566/fur/)\n" -"Language: fur\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Friulian (https://app.transifex.com/mate/teams/13566/fur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -623,16 +624,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Beche documents e cartelis su chest computer par nom o par contignût" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -666,9 +668,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -690,8 +692,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -710,9 +712,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -722,8 +724,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -787,8 +789,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -805,8 +807,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -827,62 +829,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Inviament di %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Nol è un ogjiet inviabil" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Disabilite la conession al gjestôr di session" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Specifiche l'ID dal gjestôr di session" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Mostre lis opzions di gjestion da session" @@ -1487,7 +1489,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1498,8 +1501,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1897,7 +1900,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1909,8 +1913,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2924,7 +2928,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3116,8 +3121,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/fy.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/fy.gmo differ diff -Nru mate-utils-1.26.0/po/fy.po mate-utils-1.26.1/po/fy.po --- mate-utils-1.26.0/po/fy.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/fy.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,24 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# 62197a8afd75a0a64478212fcb55f596, 2018 -# Stefano Karapetsas , 2019 -# +# 62197a8afd75a0a64478212fcb55f596, 2021 +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2019\n" -"Language-Team: Western Frisian (https://www.transifex.com/mate/teams/13566/" -"fy/)\n" -"Language: fy\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Western Frisian (https://app.transifex.com/mate/teams/13566/fy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -31,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -215,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -580,8 +580,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -628,16 +628,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Dokuminten en mappen op dizze kompjûter fine mei namme or ynhâld" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -671,9 +672,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -695,8 +696,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -715,9 +716,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -727,8 +728,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -792,8 +793,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -810,8 +811,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -832,62 +833,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Triem is gjin deugdlike .desktop-triem" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Net weromkende fersje '%s' fan desktop-triem" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Uteinsette fan %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Applikaasje akseptearret gjin dokuminten op de kommando rigel" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Net weromkende opstartopsje: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Kin gjin dokumint URIs oan in 'Type=Link' buroblêd ynfier trochjaan" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Gjin útein te setten item" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Skeakelje ferbining mei sesjebehearder út" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Spesifisear triem mei bewarre konfiguraasje" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "TRIEM" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Tsjut sesjebehear-ID oan" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Sesjebehearkarren:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Lit sesjebehearkarren sjen" @@ -1492,7 +1493,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1503,8 +1505,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1902,7 +1904,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1914,8 +1917,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2929,7 +2932,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3121,8 +3125,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ga.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ga.gmo differ diff -Nru mate-utils-1.26.0/po/ga.po mate-utils-1.26.1/po/ga.po --- mate-utils-1.26.0/po/ga.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/ga.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,25 +2,24 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# David Ó Laıġeanáın, 2018 # Stefano Karapetsas , 2021 -# +# David Ó Laıġeanáın, 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Irish (https://www.transifex.com/mate/teams/13566/ga/)\n" -"Language: ga\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: David Ó Laıġeanáın, 2021\n" +"Language-Team: Irish (https://app.transifex.com/mate/teams/13566/ga/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : " -"4);\n" +"Language: ga\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -31,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "Seiceáil méideanna fillteán agus spás diosca le fáil" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -215,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -421,7 +421,8 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." msgstr "" -"Ní féidir Nascadh le Freastalaí. Ní mór duit ainm a iontráil don fhreastalaí." +"Ní féidir Nascadh le Freastalaí. Ní mór duit ainm a iontráil don " +"fhreastalaí." #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -591,8 +592,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -639,16 +640,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Aimsigh cáipéisí agus fillteáin ar an ríomhaire seo trí ainm nó ábhar" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -682,9 +684,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -706,8 +708,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -726,9 +728,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -738,8 +740,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -803,8 +805,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -821,8 +823,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -843,62 +845,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Ní comhad .desktop bailí é an comhad" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Leagan comhaid deisce anaithnid '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s á Thosú" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Rogha tosaithe anaithnid: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Ní mír inthosaithe" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Díchumasaigh ceangal le bainisteoir an tseisiúin" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Sonraigh comhad ina bhfuil cumraíocht sábháilte" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "COMHAD" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Sonraigh CA bainistíochta seisiún" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "CA" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Roghanna bainistíochta seisiún:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Taispeáin roghanna bainistíochta seisiún" @@ -1518,7 +1520,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1529,8 +1532,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1928,7 +1931,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1940,8 +1944,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2960,7 +2964,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3152,8 +3157,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/gd.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/gd.gmo differ diff -Nru mate-utils-1.26.0/po/gd.po mate-utils-1.26.1/po/gd.po --- mate-utils-1.26.0/po/gd.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/gd.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,25 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# GunChleoc, 2019 -# +# GunChleoc, 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: GunChleoc, 2019\n" -"Language-Team: Gaelic, Scottish (https://www.transifex.com/mate/teams/13566/" -"gd/)\n" -"Language: gd\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: GunChleoc, 2021\n" +"Language-Team: Gaelic, Scottish (https://app.transifex.com/mate/teams/13566/gd/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : " -"(n > 2 && n < 20) ? 2 : 3;\n" +"Language: gd\n" +"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -31,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -215,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -582,8 +581,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -627,16 +626,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -670,9 +670,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -694,8 +694,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -714,9 +714,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -726,8 +726,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -791,8 +791,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -809,8 +809,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -831,62 +831,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1501,7 +1501,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1512,8 +1513,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1911,7 +1912,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1923,8 +1925,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2940,7 +2942,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3132,8 +3135,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/gl.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/gl.gmo differ diff -Nru mate-utils-1.26.0/po/gl.po mate-utils-1.26.1/po/gl.po --- mate-utils-1.26.0/po/gl.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/gl.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,24 +2,24 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# André Rivero Castillo , 2018 # Miguel Anxo Bouzada , 2021 # Stefano Karapetsas , 2021 -# +# André Rivero Castillo , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Galician (https://www.transifex.com/mate/teams/13566/gl/)\n" -"Language: gl\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: André Rivero Castillo , 2021\n" +"Language-Team: Galician (https://app.transifex.com/mate/teams/13566/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -31,7 +31,8 @@ msgid "Check folder sizes and available disk space" msgstr "Comprobar o tamaño dos cartafoles e o espazo dispoñíbel no disco" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "MATE;proba;disco;uso;analizar;tamaño;espazo;" @@ -204,7 +205,8 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:32 msgid "Whether the subfolder tooltips of the selected folder are drawn." msgstr "" -"Indica se se amosan as suxestións dos subcartafoles do cartafol seleccionado." +"Indica se se amosan as suxestións dos subcartafoles do cartafol " +"seleccionado." #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:36 msgid "Active Chart" @@ -220,8 +222,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" "Como o seu nome indica, o Analizador de uso do disco é unha utilidade " @@ -280,8 +282,8 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d elemento" -msgstr[1] "%5d elementos" +msgstr[0] "" +msgstr[1] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -430,7 +432,8 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." -msgstr "Non é posíbel conectar co servidor. Introduza un nome para o servidor." +msgstr "" +"Non é posíbel conectar co servidor. Introduza un nome para o servidor." #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -603,8 +606,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" "Vostede debeu recibir unha copia da Licenza Pública Xeral de GNU xunto con " "este programa; se non é así, vexa en ." @@ -654,12 +657,12 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" -"A ferramenta de busca MATE é unha utilidade sinxela pero potente que permite " -"buscar ficheiros e cartafoles en calquera sistema de ficheiros montado. A " +"A ferramenta de busca MATE é unha utilidade sinxela pero potente que permite" +" buscar ficheiros e cartafoles en calquera sistema de ficheiros montado. A " "súa interface ofrécelle acceso instantáneo a unha ampla variedade de " "parámetros para cada busca, como texto contido nun ficheiro, propiedade, " "data de modificación, tamaño de ficheiro, exclusión de cartafoles, etc." @@ -669,13 +672,13 @@ msgstr "" "Localizar documentos e cartafoles neste computador por nome ou por contido" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" -"MATE;busca;ficheiros;localizar;documentos;cartafoles;computador;nome;contido;" -"atopar;ferramenta;" +"MATE;busca;ficheiros;localizar;documentos;cartafoles;computador;nome;contido;atopar;ferramenta;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -707,13 +710,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Esta clave define as rutas que a ferramenta de busca excluirá dunha busca " -"rápida. Permítense os comodíns «*» e «?». Os valores predeterminados son /" -"mnt/*, /media/*, /dev/*, /tmp/*, /proc/* e /var/*." +"rápida. Permítense os comodíns «*» e «?». Os valores predeterminados son " +"/mnt/*, /media/*, /dev/*, /tmp/*, /proc/* e /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -724,8 +727,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"Esta clave determina se a ferramenta de busca desactiva o uso da orde " -"«find» (buscar) despois de efectuar unha busca rápida." +"Esta clave determina se a ferramenta de busca desactiva o uso da orde «find»" +" (buscar) despois de efectuar unha busca rápida." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -736,13 +739,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Esta clave define as rutas que a ferramenta de busca excluirá dunha segunda " "análise ao efectuar unha busca rápida. A segunda análise usa a orde «find» " -"para buscar ficheiros. O obxectivo da segunda análise é buscar ficheiros que " -"non foran indexados. Permítense os comodíns «*» e «?». O valor " +"para buscar ficheiros. O obxectivo da segunda análise é buscar ficheiros que" +" non foran indexados. Permítense os comodíns «*» e «?». O valor " "predeterminado é /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -763,9 +766,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Esta clave define a largura da xanela e úsase para lembrar o tamaño da " "ferramenta de busca entre sesións. Axustala como -1 fará que a ferramenta " @@ -778,8 +781,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Esta clave define a altura da xanela e úsase para lembrar o tamaño da " "ferramenta de busca entre sesións. Axustala como -1 fará que a ferramenta " @@ -793,7 +796,8 @@ msgid "" "This key determines if the search tool window starts in a maximized state." msgstr "" -"Esta clave determina se a ferramenta de busca se inicia en estado maximizado." +"Esta clave determina se a ferramenta de busca se inicia en estado " +"maximizado." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -809,8 +813,8 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"Esta clave determina se a opción «Contén o texto» está seleccionada cando se " -"inicia a ferramenta de busca." +"Esta clave determina se a opción «Contén o texto» está seleccionada cando se" +" inicia a ferramenta de busca." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" @@ -849,8 +853,8 @@ "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"Esta clave determina se a opción «O ficheiro está baleiro» está seleccionada " -"cando se inicia a ferramenta de busca." +"Esta clave determina se a opción «O ficheiro está baleiro» está seleccionada" +" cando se inicia a ferramenta de busca." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" @@ -862,8 +866,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Esta clave determina se a opción «Propiedade do grupo» está seleccionada " "cando se inicia a ferramenta de busca." @@ -881,13 +885,13 @@ "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"Esta clave determina se a opción «O nome non contén» está seleccionada cando " -"se inicia a ferramenta de busca." +"Esta clave determina se a opción «O nome non contén» está seleccionada cando" +" se inicia a ferramenta de busca." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Esta clave determina se a opción «O nome coincide coa expresión regular» " "está seleccionada cando se inicia a ferramenta de busca." @@ -913,67 +917,67 @@ "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"Esta clave determina se a opción «Excluír outros sistemas de ficheiros» está " -"seleccionada cando se inicia a ferramenta de busca." +"Esta clave determina se a opción «Excluír outros sistemas de ficheiros» está" +" seleccionada cando se inicia a ferramenta de busca." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "O ficheiro non é un ficheiro .desktop válido" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Non se recoñece a versión do ficheiro desktop «%s»" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Iniciando %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "A aplicación non acepta documentos na liña de ordes" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Opción de inicio non recoñecida: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Non se lle poden pasar URI de documento a unha entrada de escritorio " "«Type=Link»" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Non é un elemento executábel" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Desactivar a conexión co xestor de sesións" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Especifique o ficheiro que contén a configuración gardada" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FICHEIRO" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Especifique o ID de xestión de sesión" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Amosar as opcións da xestión de sesión:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Amosar as opcións da xestión de sesións" @@ -1112,15 +1116,15 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "Atopouse %'d ficheiro" -msgstr[1] "Atopáronse %'d ficheiros" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "Atopouse %'d ficheiro" -msgstr[1] "Atopáronse %'d ficheiros" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1263,7 +1267,7 @@ #: gsearchtool/src/gsearchtool.c:2369 msgid "List View" -msgstr "Vista en lista" +msgstr "Vista de lista" #: gsearchtool/src/gsearchtool.c:2429 #: mate-dictionary/libgdict/gdict-source.c:243 @@ -1354,16 +1358,16 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Confirma de que quere abrir %d documento?" -msgstr[1] "Confirma de que quere abrir %d documentos?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Isto abrirá %d xanela independente" -msgstr[1] "Isto abrirá %d xanelas independentes." +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1387,8 +1391,8 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Confirma que quere abrir %d cartafol?" -msgstr[1] "Confirma que quere abrir %d cartafoles?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1592,7 +1596,8 @@ msgid "View or monitor system log files" msgstr "Ver ou monitorizar os ficheiros de rexistro do sistema" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "MATE;monitor;ver;sistema;rexistro;ficheiros;visor de rexistros;" @@ -1603,11 +1608,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Especifica o ficheiro de rexistro amosado ao inicio. O predeterminado é /var/" -"adm/messages ou /var/log/messages, dependendo do seu sistema operativo." +"Especifica o ficheiro de rexistro amosado ao inicio. O predeterminado é " +"/var/adm/messages ou /var/log/messages, dependendo do seu sistema operativo." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1619,8 +1624,8 @@ "main tree view. The default is taken from the default terminal font size." msgstr "" "Especifica o tamaño do tipo de letra de largura fixa usada para amosar o " -"rexistro na viata de árbore principal. O predeterminado cóllese do tamaño do " -"tipo de letra predeterminado do terminal." +"rexistro na viata de árbore principal. O predeterminado cóllese do tamaño do" +" tipo de letra predeterminado do terminal." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -2019,7 +2024,8 @@ msgstr "" "Verificar as definicións de palabras e a ortografía nun dicionario en liña" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "MATE;dicionario;miniaplicación;tesauro;ortografía;definición;en liña;" @@ -2031,8 +2037,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" "o Dicionario do MATE permite buscar palabras en dicionarios en liña. Ven " @@ -2050,7 +2056,7 @@ #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:9 msgid "Dictionary Look up" -msgstr "Buscar no dicionario" +msgstr "Buscar no Dicionario" #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:10 msgid "Look up words in a dictionary" @@ -2081,8 +2087,8 @@ "available. The default strategy is 'exact', that is match exact words." msgstr "" "O nome da estratexia de busca predeterminada para usar nunha orixe de " -"dicionario, se está dispoñíbel. A estratexia predeterminada é 'exact', que é " -"coincidir con palabras exactamente iguais." +"dicionario, se está dispoñíbel. A estratexia predeterminada é 'exact', que é" +" coincidir con palabras exactamente iguais." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2238,7 +2244,8 @@ #, c-format msgid "Connection timeout for the dictionary server at '%s:%d'" msgstr "" -"Excedeuse o tempo de espera da conexión ao servidor de dicionarios en '%s:%d'" +"Excedeuse o tempo de espera da conexión ao servidor de dicionarios en " +"'%s:%d'" #: mate-dictionary/libgdict/gdict-client-context.c:1878 msgid "No hostname defined for the dictionary server" @@ -2329,7 +2336,7 @@ #: mate-dictionary/libgdict/gdict-source.c:258 msgid "The description of this dictionary source" -msgstr "A descrición desta orixe do dicionarios" +msgstr "A descrición desta orixe de dicionarios" #: mate-dictionary/libgdict/gdict-source.c:271 #: mate-dictionary/libgdict/gdict-speller.c:375 @@ -2777,8 +2784,8 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Atopouse unha definición" -msgstr[1] "Atopáronse %d definicións" +msgstr[0] "" +msgstr[1] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -3033,8 +3040,8 @@ "If checked, the mount will be read-only. This is useful if you don't want " "the underlying disk image to be modified" msgstr "" -"Se está marcado, oa montaxe será de só lectura. Isto é útil se non quere que " -"se modifique a imaxe de disco subxacente" +"Se está marcado, oa montaxe será de só lectura. Isto é útil se non quere que" +" se modifique a imaxe de disco subxacente" #: mate-disk-image-mounter/src/main.c:178 #, c-format @@ -3090,7 +3097,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Gardar imaxes do escritorio ou de xanelas individuais" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "MATE;captura de pantalla;instantánea;escritorio;xanela;imaxe;" @@ -3290,8 +3298,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Opcións en conflito: --clipboard e --interactive non se deberían usar ao " "mesmo tempo.\n" @@ -3301,7 +3309,8 @@ "Conflicting options: --window and --area should not be used at the same " "time.\n" msgstr "" -"Opcións en conflito: --window e --area non se deberían usar ao mesmo tempo.\n" +"Opcións en conflito: --window e --area non se deberían usar ao mesmo " +"tempo.\n" #: mate-screenshot/src/screenshot-dialog.c:210 #, c-format @@ -3311,8 +3320,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Produciuse un erro ao cargar o ficheiro de definición de IU para o programa " -"de capturas de pantalla.\n" +"Produciuse un erro ao cargar o ficheiro de definición de IU para o programa de capturas de pantalla.\n" "%s\n" "\n" "Comprobe a instalación do mate-utils" diff -Nru mate-utils-1.26.0/po/gnome-copyrights.txt mate-utils-1.26.1/po/gnome-copyrights.txt --- mate-utils-1.26.0/po/gnome-copyrights.txt 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/po/gnome-copyrights.txt 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,1230 @@ +========== af.po ========== +# Afrikaans translation for mate-utils. +# Copyright (C) 2010 mate-utils's COPYRIGHT HOLDER +# This file is distributed under the same license as the mate-utils package. +# F Wolff , 2010. + + + + +========== am.po ========== +# Translations into the Amharic Language. +# Copyright (C) 2002 Free Software Foundation, Inc. +# This file is distributed under the same license as the mate-utils package. +# Ge'ez Frontier Foundation , 2002. +# +# + + + + +========== ar.po ========== +# translation of mate-utils.HEAD.ar.po to Arabic +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER +# Sayed Jaffer Al-Mosawi , 2002. +# Abdulaziz Al-Arfaj , 2004. +# Djihed Afifi , 2006. +# Khaled Hosny , 2006, 2007, 2008, 2010. +# Anas Afif Emad , 2008. +# Amitakhya Phukan , 2008, 2009. + + + + +========== ast.po ========== +# Asturian translation for mate-utils +# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 +# This file is distributed under the same license as the mate-utils package. +# FIRST AUTHOR , 2008. +# + + + + +========== az.po ========== +# translation of mate-utils.HEAD.az.po to Azerbaijani +# translation of mate-utils.HEAD.po to Azerbaijani Turkish +# Copyright (C) 2000,2003, 2004 Free Software Foundation, Inc. +# Vasif Ismailoglu MD , 2000. +# Mətin Əmirov , 2003, 2004. +# Metin Amiroff , 2004. +# + + + + +========== be.po ========== +# Беларускі пераклад mate-utils.HEAD. +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +# Vital Khilko , 2003. +# Ales Nyakhaychyk , 2003, 2004. +# + + + + +========== be@latin.po ========== +# Biełaruski pierakład mate-utils.HEAD. +# Copyright (C) 2007 Ihar Hračyška +# Vital Khilko , 2003. +# Ales Nyakhaychyk , 2003, 2004. +# Ihar Hrachyshka , 2007. +# + + + + +========== bg.po ========== +# Bulgarian translation of mate-utils po-file. +# Copyright (C) 2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Borislav Aleksandrov , 2002. +# Vladimir Petkov , 2004, 2005. +# Peter Slavov , 2004. +# Yavor Doganov , 2005. +# Rostislav Raykov , 2006. +# Alexander Shopov , 2006, 2007, 2008, 2009. +# +# + + + + +========== bn.po ========== +# Bengali Translation of Mate-Utils +# Copyright (C) 2005 Free Software Foundation. +# This file is distributed under the same license as the mate-utils package. +# +# Runa Bhattacharjee , 2005. +# Runa Bhattacharjee , 2008, 2009. +# Maruf Ovee , 2009. +# Sadia Afroz , 2010. +# Israt Jahan , 2010. +# + + + + +========== bn_IN.po ========== +# translation of bn_IN.po to Bengali INDIA +# Bengali India Translation of Mate-Utils +# Copyright (C) 2005 Free Software Foundation. +# This file is distributed under the same license as the mate-utils package. +# +# Runa Bhattacharjee , 2005. +# Runa Bhattacharjee , 2008, 2009, 2010. + + + + +========== br.po ========== +# Breton translation for mate-utils +# Copyright (c) 2009-2010 Rosetta Contributors and Canonical Ltd 2009 +# This file is distributed under the same license as the mate-utils package. +# Denis , 2009. +# Alan Monfort , 2010. +# + + + + +========== bs.po ========== +# translation of mate-utils.HEAD.bs.po to +# translation of mate-utils.HEAD.po to Bosanski +# This file is distributed under the same license as the mate-utils package. +# Copyright (C) 2004 Free Software Foundation, Inc. +# Denis Radovanovic , 2004. +# Kemal Šanjta , 2004 +# + + + + +========== ca.po ========== +# Traducció del mòdul mate-utils de Softcatalà +# Copyright © 2000-2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the mate-utils package. +# Softcatalà , 2000, 2002. +# Jordi Mallach , 2002, 2003, 2004, 2005. +# Josep Puigdemont , 2005, 2006, 2007. +# Gil Forcada , 2006, 2008. +# Joan Duran , 2008-2010. +# + + + + +========== ca@valencia.po ========== +# Traducció del mòdul mate-utils de Softcatalà +# Copyright © 2000-2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the mate-utils package. +# Softcatalà , 2000, 2002. +# Jordi Mallach , 2002, 2003, 2004, 2005. +# Josep Puigdemont , 2005, 2006, 2007. +# Gil Forcada , 2006, 2008. +# Joan Duran , 2008-2010. +# + + + + +========== crh.po ========== +# QIRIMTATARCA mate-utils. +# Copyright (C) 1998-2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the mate-utils package. +# +# Reşat SABIQ , 2010. + + + + +========== cs.po ========== +# Czech translation for mate-utils. +# Copyright (C) 2001, 2003, 2006, 2007, 2008 the author(s) of mate-utils. +# Copyright (C) 2003, 2004, 2005, 2006 Miloslav Trmac . +# Copyright (C) 2006 Lukas Novotny . +# This file is distributed under the same license as the mate-utils package. +# +# David Sauer , 1999. +# George Lebl , 2000, 2001. +# Michal Bukovjan , 2002, 2003. +# Miloslav Trmac , 2003, 2004, 2005, 2006. +# Petr Tomeš , 2006. +# Lukas Novotny , 2006. +# Jakub Friedl , 2006. +# Kamil Páral , 2008. +# Petr Kovar , 2008, 2009. +# Adrian Guniš , 2008, 2009, 2010. +# Lucas Lommer , 2009 (just a small fix). +# Marek Černocký , 2010 (just a small fixes). +# + + + + +========== cy.po ========== +# translation of mate-utils.HEAD.cy.po to Cymraeg +# mate-utils yn Gymraeg. +# Owain Green, Gruffudd Williams, Steve Griffiths, 2003. +# +# More terminology. Floppy disc. See around line 640-650 or so. +# disg llipa ? +# +# daf: +# did a s/llipa/hyblyg/, s/meddal/hyblyg/ for consistency's sake +# if we change our minds later, we can always do a s/hyblyg/ffŵ/ +# also did s/cysawd/system/ +# +# rj: Wedi gyrru Cysill dros y cyfan. +# +# www.kyfieithu.co.uk , 2003. +# Dafydd Harries , 2003 2004. +# Dafydd Tomos , 2004. +# Rhys Jones , 2005-6. +# Gareth Bowker , 2005. +# + + + + +========== da.po ========== +# Danish Translation of mate-utils. +# Copyright (C) 1999-2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the mate-utils package. +# Kenneth Christiansen , 1998-2000. +# Kim Schulz , 1999. +# Birger Langkjer , 1999. +# Keld Simonsen , 2000-2001. +# Ole Laursen , 2001, 02, 03, 04. +# Martin Willemoes Hansen , 2004, 05. +# Kenneth Nielsen , 2008. +# Ask Hjorth Larsen , 2007, 08, 09, 10. +# +# +# Husk at tilføje dig i credit-listen (besked id "translator-credits") +# +# Konventioner: +# +# bad block -> ugyldig blok +# + + + + +========== de.po ========== +# German mate-utils translation +# Copyright (C) 1999-2004, 2008 Free Software Foundation, Inc. +# Matthias Warkus , 1999. +# Karl Eichwalder , 2000. +# Benedikt Roth , 2000, 2001. +# Christian Meyer , 2001, 2002. +# Simon Westhues , 2002. +# Christian Neumair , 2002-2004. +# Hendrik Brandt , 2004-2005. +# Frank Arnold , 2005. +# Andre Klapper , 2008. +# Jochen Skulj , 2008. +# Christian Kirbach , 2009. +# Hendrik Richter , 2004, 2005, 2006, 2007, 2008, 2009. +# Nathan-J. Hirschauer , 2009. +# Mario Blättermann , 2009. +# + + + + +========== dz.po ========== +# Dzongkha translation of mate-utils +# Copyright @ 2006 Free Software Foundation, Inc. +# Mindu Dorji +# + + + + +========== el.po ========== +# translation of mate-utils.mate-2-26.po to Ελληνικά +# mate-utils Greek translation. +# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc. +# +# 385 translated messages, 127 fuzzy translations, 188 untranslated messages. +# Finished! now, 700 messages fully translated. +# simos: 780 messages, visual verification, 14Feb2001 (sgpbea). +# simos: 483 messages, 30Oct2002, translation review. +# kostas: 483 messages, 30Oct2002, completed translation for MATE2. +# kostas: 468 messages, unfuzzy 3, 07Jan2003, one more update. +# Spiros Papadimitriou , 2000. +# Simos Xenitellis , 2000, 2001, 2002. +# Nikos Charonitakis , 2003, 2004. +# Kostas Papadimas , 2002, 2003, 2004, 2005, 2006, 2008. +# Jennie Petoumenou , 2009. +# Fotis Tsamis , 2009. +# Sterios Prosiniklis , 2009. +# spyros: +# translated around 500 messages, in 2000. +# simos: +# updated this: +# One more update, now 701 total messages. +# kostas: 26 Dec2002, updated translation for Mate 2.1x +# kostas: 03Aug2003, update translation for 2.4 +# Nikos: 13Oct2003, review translation for 2.4 +# Nikos: 17Nov2003, update translation for 2.6 +# kostas: 25Jan2004, updates and fixes +# Nikos: 19Feb2004 update translation +# Kostas: 14Jan2006 update for 2.14 +# Simos Xenitellis , 2010. + + + + +========== en@shaw.po ========== +# Shavian translation for mate-utils. +# Copyright (C) 2009 The Mate Foundation. +# Thomas Thurman , 2009. + + + + +========== en_CA.po ========== +# English/Canada translation of mate-utils. +# Copyright (C) 2004-2006 Adam Weinberger and the MATE Foundation +# This file is distributed under the same licence as the mate-utils package. +# Adam Weinberger , 2004, 2005, 2006. +# +# + + + + +========== en_GB.po ========== +# English (British) +# Copyright (C) 1999 Free Software Foundation, Inc. +# Bastien Nocera . +# Gareth Owen , David Lodge , 2004. +# Philip Withnall , 2009. +# Bruce Cowan , 2009, 2010. + + + + +========== eo.po ========== +# Esperanto translation for mate-utils +# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 +# This file is distributed under the same license as the mate-utils package. +# Kevin SCHAEFER , 2009. +# Michael MORONI, , 2009. +# Kristjan SCHMIDT , 2010. +# + + + + +========== es.po ========== +# translation of mate-utils.HEAD.po to Español +# Carlos Perelló Marín , 2001. +# QA - Germán Poo Caamaño , 2002. +# Pablo Gonzalo del Campo ,2002-2003. +# Francisco Javier F. Serrador , 2003, 2004, 2005, 2006. +# mate-utils translation into spanish +# Copyright © 1998-2003, 2006, 2007, 2008 Free Software Foundation, Inc. +# This file is distributed under the same license as the mate-utils package. +# Miguel de Icaza 1998. +# Pablo Saratxaga 1999. +# Manuel de Vega Barreiro 2000-2001. +# Jorge González , 2007, 2008, 2009. + + + + +========== et.po ========== +# Mate utiliitide eesti keele tõlge. +# Estonian translation of Mate-utils. +# +# Copyright (C) 1999, 2002, 2005, 2006 Free Software Foundation, Inc. +# Copyright (C) 2007-2009 The MATE Project. +# This file is distributed under the same license as the mate-utils package. +# +# Lauris Kaplinski , 1999. +# Tõivo Leedjärv , 2002. +# Ivar Smolin , 2005-2009. +# Priit Laes , 2005. +# + + + + +========== eu.po ========== +# translation of eu.po to Basque +# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the baobab package. +# +# Mikel Olasagasti , 2005. +# Iñaki Larrañaga Murgoitio , 2005, 2006, 2007, 2008, 2009, 2010. +# Iñaki Larrañaga Murgoitio , 2007. + + + + +========== fa.po ========== +# Persian translation of mate-utils. +# Copyright (C) 2003, 2005, 2006 Sharif FarsiWeb, Inc. +# This file is distributed under the same license as the mate-utils package. +# Roozbeh Pournader , 2003, 2005. +# Behnam Esfahbod , 2005. +# Sara Khalatbari , 2005. +# Meelad Zakaria , 2005, 2006. +# Sanaz shahrokni , 2006. + + + + +========== fi.po ========== +# Finnish messages for mate-utils +# Copyright (C) 2003-2009 Free Software Foundation, Inc. +# Suomennos: http://mate.fi/ +# Tuomas Merilä , 1999. +# Antti Ahvensalmi , 2000. +# Lauri Nurmi , 2003. +# Pauli Virtanen , 2003-2005. +# Ilkka Tuohela , 2005-2009. +# Timo Jyrinki , 2008. +# Tommi Vainikainen , 2009-2010. +# +# days = päivää sitten, ks. konteksti +# + + + + +========== fr.po ========== +# French translation of mate-utils. +# Copyright (C) 1998-2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the mate-utils package. +# +# Vincent Renardias , 1998-2000. +# Thibaut Cousin , 1999. +# Christophe Merlet , 2000-2006. +# Bretin Didier , 2001. +# Christophe Fergeau , 2002. +# Baptiste Mille-Mathias , 2005. +# Cyprien Le Pannérer , 2006. +# Jonathan Ernst , 2006-2007. +# Robert-André Mauchin , 2005-2008. +# Stéphane Raimbault , 2007-2008. +# Antoine Cailliau , 2007. +# Claude Paroz , 2008-2010. +# Laurent Coudeur , 2009. +# + + + + +========== ga.po ========== +# Irish translations for mate-utils package. +# Copyright (C) 1999-2009 Free Software Foundation, Inc. +# This file is distributed under the same license as the mate-utils package. +# Seán O'Ceallaigh , 1999. +# Paul Duffy , 2003 +# Alastair McKinstry , 2004. +# Seán de Búrca , 2007-2009. +# + + + + +========== gl.po ========== +# translation of mate-utils-master-po-gl-14799.po to Galician +# Galician translation of mate-utils. +# Copyright (C) 2000-2001 Jesús Bravo Álvarez. +# Copyright (C) 1999 Ruben Lopez Gomez. +# +# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas +# colaborar connosco, podes atopar máis información en http://www.trasno.net +# +# First Version: 2000-04-09 18:45+0200 +# +# Jesús Bravo Álvarez , 2000-2001. +# Ruben Lopez Gomez , 1999. (logview from mate-admin). +# Ignacio Casal Quinteiro , 2004. +# Ignacio Casal Quinteiro , 2005, 2006. +# Ignacio Casal Quinteiro , 2007,2008. +# Mancomún - Centro de Referencia e Servizos de Software Libre , 2009. +# Suso Baleato , 2009. +# Antón Méixome , 2009. +# Fran Diéguez , 2009, 2010. +# + + + + +========== gu.po ========== +# translation of mate-utils.master.gu.po to Gujarati +# Ankit Patel , 2005, 2006. +# Ankit Patel , 2005, 2007, 2009. +# Sweta Kothari , 2009. + + + + +========== he.po ========== +# translation of mate-utils.mate-2-10.he.po to +# translation of mate-utils.mate-2-10.he.po to Hebrew +# translation of mate-utils.HEAD.he.po to Hebrew +# translation of mate-utils.mate-2-2.po to Hebrew +# This file is distributed under the same license as the PACKAGE package. +# Yuval Tanny, 2005. +# Yuval Tanny, 2005. +# Yuval Tanny, 2005. +# Yuval Tanny, 2005. +# Yuval Tanny, 2005. +# Yuval Tanny, 2005. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# Gil 'Dolfin' Osher , 2003, 2005. +# Yuval Tanny, 2005. +# + + + + +========== hi.po ========== +# translation of mate-utils.master.po to Hindi +# Copyright (C) 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc. +# +# G Karunakar , 2003. +# Ravishankar Shrivastava , 2004. +# Rajesh Ranjan , 2005, 2006, 2009. +# Rajesh Ranjan , 2009. + + + + +========== hr.po ========== +# Translation of mate-utils to Croatiann +# Copyright (C) Croatiann team +# Translators: Automatski Prijevod <>,Danijel Studen ,Denis Lackovic ,Robert Sedak , + + + + +========== hu.po ========== +# Hungarian translation of mate-utils. +# Copyright (C) 1999 - 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the mate-utils package. +# +# Szabolcs Ban , 1999, 2000. +# Gergely Nagy , 2001. +# Andras Timar , 2001, 2002, 2003. +# Gabor Sari , 2003, 2004. +# Laszlo Dvornik , 2004. +# Gabor Kelemen , 2004, 2006, 2007, 2008, 2009, 2010. +# Mate ORY , 2006. + + + + +========== id.po ========== +# + + + + +========== it.po ========== +# Italian traslation of mate-utils +# Released under the terms of GPL-2.1 license +# Copyright (C) 1998-2010 Free Software Foundation, Inc. +# Alessio Frusciante , 2003, 2005. +# Lapo Calamandrei , 2003. +# Luca Ferretti , 2004. +# Fabio Marzocca , 2007. +# Andrea Zagli , 2005, 2006, 2007, 2008, 2009, 2010. + + + + +========== ja.po ========== +# mate-utils ja.po. +# Copyright (C) 1998-2010 Free Software Foundation, Inc. +# Eiichiro ITANI , 1998. +# Yuusuke Tahara , 2000. +# Yukihiro Nakai , 2000. +# Takayuki KUSANO , 2000-2002, 2009. +# Sun G11n , 2002. +# Takeshi AIHANA , 2003-2009. +# KAMAGASAKO Masatoshi , 2003. +# Satoru SATOH , 2006. +# Hideki Yamane (Debian-JP) , 2009. +# + + + + +========== ka.po ========== +# translation of mate-utils.mate-2-14.po to Georgian +# Copyright (C) 2006 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Malkhaz Barkalaya მალხაზ ბარკალაია +# Vladimer Sichinava ვლადიმერ სიჭინავა , 2006. + + + + +========== kn.po ========== +# translation of mate-utils.master.kn.po to Kannada +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Shankar Prasad , 2008, 2009. + + + + +========== ko.po ========== +# mate-utils ko.po +# This file is distributed under the same license as the mate-util package. +# +# update by Young-Ho, Cha , 2001 +# Changwoo Ryu , 1998, 2002-2006, 2007, 2008, 2009, 2010. +# +# 새로 번역하시는 분은 아래 translator-credits에 추가하세요. +# +# 주의: +# - Baobab은 "바오밥"으로 음역 +# + + + + +========== ku.po ========== +# translation of mate-utils.HEAD.po to Kurdish +# German translation of PACKAGE. +# Copyright (C) 2005 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Erdal Ronahî , 2005. +# Erdal Ronahi , 2005. +# + + + + +========== lt.po ========== +# translation of lt.po to Lithuanian +# Lithuanian translation of mate-utils +# Copyright (C) 2000-2009 Free Software Foundation, Inc. +# Gediminas Paulauskas , 2000-2002. +# Mantas Kriaučiūnas , 2002-2003. +# Tomas Kuliavas , 2003. +# Žygimantas Beručka , 2003-2006, 2009, 2010. +# Gintautas Miliauskas , 2006, 2007, 2008. + + + + +========== lv.po ========== +# translation of lv.po to Latvian +# mate-utils for Latvian +# Copyright (C) 2000, 2006, 2007, 2009 Free Software Foundation, Inc. +# Pēeris Krišjāis , 2000. +# Artis Trops , 2000. +# sTYLEeX , 2006. +# Raivis Dejus , 2006, 2007, 2009. +# Rūdolfs Mazurs , 2010. + + + + +========== mai.po ========== +# translation of mate-utils.HEAD.po to Maithili +# Copyright (C) 2006 The MATE Foundation +# This file is distributed under the same license as the PACKAGE package. +# BOSS GNU/Linux , 2008. + + + + +========== mg.po ========== +# Malagasy translation of MATE-UTILS. +# Copyright (C) 2006 THE MATE-UTILS'S COPYRIGHT HOLDER +# This file is distributed under the same license as the MATE-UTILS package. +# Fano Rajaonarisoa , 2006. +# Thierry Randrianiriana , 2006. +# +# + + + + +========== mk.po ========== +# translation of mate-utils.HEAD.mk.po to Macedonian +# translation of mate-utils.HEAD.mk.po to +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER. +# +# Dimitar Indovski , 2002. +# Stojan Pesov , 2002. +# Bozidar Proevski , 2002. +# Kostovski Jovan , 2003. +# Darko Nikolovski , 2003. +# Vladislav Bidikov , 2003. +# Arangel Angov , 2004, 2007, 2008. +# Арангел Ангов , 2005. +# Jovan Naumovski , 2006, 2007, 2008. +# Arangel Angov , 2007. + + + + +========== ml.po ========== +# translation of mate-utils.master.ml.po to +# This file is distributed under the same license as the mate-utils package. +# Copyright (C) 2003-2009 mate-utils' COPYRIGHT HOLDER. +# +# FSF-India , 2003. +# Ani Peter , 2006, 2007, 2008. +# Santhosh Thottingal , 2007. +# Reviewed by Praveen|പ്രവീണ്‍ A|എ , 2007. +# Praveen Arimbrathodiyil , 2009. + + + + +========== mn.po ========== +# translation of mate-utils.HEAD.po to Mongolian +# translation of mate-utils.mate-2-4.po to Mongolian +# translation of mate-utils.HEAD.mn.po to Mongolian +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER. +# Sanlig Badral , 2003. +# Sanlig Badral , 2003, 2004. +# + + + + +========== mr.po ========== +# translation of mr.po to Marathi +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# sandeep shedmake , 2007. +# Sandeep Shedmake , 2008, 2009. +# Sandeep Shedmake , 2009. + + + + +========== ms.po ========== +# 1. Mohamad Afifi Omar (App) +# 2. Hasbullah BIn Pit + + + + +========== nb.po ========== +# Norwegian translation of mate-utils (bokmål dialect). +# Copyright (C) 1999-2005 Free Software Foundation, Inc. +# Kjartan Maraas , 1999-2009. +# Terance Edward Sola , 2005. +# + + + + +========== nds.po ========== +# Low German translation for mate-utils. +# Copyright (C) 2009 mate-utils's COPYRIGHT HOLDER +# This file is distributed under the same license as the mate-utils package. +# Nils-Christoph Fiedler , 2009. +# + + + + +========== ne.po ========== +# translation of mate-utils.mate-2-20.ne.po to Nepali +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# +# FIRST AUTHOR , 2004. +# Ganesh Ghimire , 2005. +# Nabin Gautam , 2007. + + + + +========== nl.po ========== +# translation of mate-utils.master.nl.po to +# Dutch translation for mate-utils +# +# This file is distributed under the same license as the mate-utils package. +# +# Jan-Willem Harmanny , 2003. +# Tino Meinen , 2004–2008. +# Vincent van Adrighem , 2006. +# Wouter Bolsterlee , 2006–2009 +# Hannie Dumoleyn , 2010 +# +# side bar = side pane = zijpaneel +# + + + + +========== nn.po ========== +# translation of nn.po to Norwegian Nynorsk +# Norwegian (nynorsk) translation of mate-utils. +# Copyright (C) 2001 Roy-Magne Mo +# Kjartan Maraas , 2001. +# Roy-Magne Mo , 2001. +# Åsmund Skjæveland , 2004. +# Eskild Hustvedt , 2008 +# + + + + +========== oc.po ========== +# Translation of oc.po to Occitan +# Occitan translation of mate-utils. +# Copyright (C) 1998-2007 Free Software Foundation, Inc. +# This file is distributed under the same license as the mate-utils package. +# +# Yannig Marchegay (Kokoyaya) , 2006-2008. + + + + +========== or.po ========== +# translation of mate-utils.master.or.po to Oriya +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# +# Subhransu Behera , 2006. +# Manoj Kumar Giri , 2008. +# Manoj Kumar Giri , 2009, 2010. + + + + +========== pa.po ========== +# translation of mate-utils.HEAD.po to Punjabi +# Punjabi translation of mate-utils.HEAD. +# Copyright (C) 2004 THE mate-utils.HEAD'S COPYRIGHT HOLDER +# This file is distributed under the same license as the mate-utils.HEAD package. +# +# Amanpreet Singh Alam , 2004. +# A S Alam , 2005, 2006, 2007,2008, 2009, 2010. +# Amanpreet Singh Alam , 2009. + + + + +========== pl.po ========== +# Polish translation for gnome-utils. +# Copyright © 1999-2010 the gnome-utils authors. +# This file is distributed under the same license as the gnome-utils package. +# Zbigniew Chyla , 1999-2003. +# Artur Flinta , 2003-2005. +# Wadim Dziedzic , 2007. +# Tomasz Dominikowski , 2007-2009. +# Joanna Mazgaj , 2008. +# Piotr Drąg , 2010. +# Aviary.pl , 2007-2010. +# + + + + +========== ps.po ========== +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the mate +# Zabeeh Khan , 2008. +# + + + + +========== pt.po ========== +# mate-utils's Portuguese translation +# Copyright © 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 mate-utils +# Distributed under the same licence as the mate-utils package +# Nuno Ferreira , 1999. +# Duarte Loreto , 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010. +# + + + + +========== pt_BR.po ========== +# Brazilian Portuguese translation of MATE Utils. +# Copyright (C) 1999-2008 the MATE Utils authors. +# This file is distributed under the same license as the mate-utils package. +# Alexandre Hautequest , 1999. +# Ariel Bressan da Silva , 2000. +# Francisco Petrúcio Cavalcante Junior , 2001. +# Evandro Fernandes Giovanini , 2002. +# Welther José O. Esteves , 2004. +# Afonso Celso Medina , 2005. +# Guilherme de S. Pastore , 2005-2006. +# Luiz Fernando S. Armesto , 2007. +# Leonardo Ferreira Fontenelle , 2007-2009. +# Og Maciel , 2007-2008. +# Rodrigo Flores , 2007. +# Hugo Doria , 2007, 2008. +# Djavan Fagundes , 2008, 2009. +# Krix Apolinário , 2009. +# Antonio Fernandes C. Neto , 2010. +# + + + + +========== ro.po ========== +# translation of mate-utils.mate-2-14.ro.po to Română +# translation of mate-utils.HEAD.ro.po to +# Romanian translation for MATE Utils +# Copyright (C) 1999,2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# Iustin Pop +# Dan Damian , 1999, 2001. +# Mugurel Tudor , 2002-2004, 2005, 2006. +# Adi Roiban https://launchpad.net/~adiroiban, 2008, 2009 +# Lucian Adrian Grijincu , 2009 + + + + +========== ru.po ========== +# translation of mate-utils to Russian +# Copyright (C) 1999-2002, 2004, 2005, 2006, 2007, 2008, 2010 Free Software Foundation, Inc. +# +# +# Valek Filppov , 1999-2002. +# Sergey Panov , 1999,2000. +# Dmitry G. Mastrukov , 2002-2003. +# Andrew W. Nosenko , 2003. +# Leonid Kanter , 2004, 2005, 2006, 2007. +# Yuri Kozlov , 2008. +# Vasiliy Faronov , 2008. +# Yuri Kozlov , 2010. +# Alexander Saprykin , 2010. + + + + +========== rw.po ========== +# translation of mate-utils to Kinyarwanda. +# Copyright (C) 2005 Free Software Foundation, Inc. +# This file is distributed under the same license as the mate-utils package. +# Steve Murphy , 2005 +# Steve performed initial rough translation from compendium built from translations provided by the following translators: +# Philibert Ndandali , 2005. +# Viateur MUGENZI , 2005. +# Noëlla Mupole , 2005. +# Carole Karema , 2005. +# JEAN BAPTISTE NGENDAHAYO , 2005. +# Augustin KIBERWA , 2005. +# Donatien NSENGIYUMVA , 2005.. +# + + + + +========== si.po ========== +# translation of si.po to Sinhala +# Danishka Navin , 2007. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +#Translators Danishka Navin , Harshana Weerasinghe + + + + +========== sk.po ========== +# Slovak translation for mate-utils. +# Copyright (C) 2000, 2001, 2002, 2003, 2005, 2008, 2009, 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the mate-utils package. +# Stanislav Višňovský , 2000, 2001, 2002. +# Stanislav Višňovský , 2003. +# Stanislav Višňovský , 2003. +# Ivan Noris , 2005. +# Pavol Klačanský , 2008, 2009, 2010. +# + + + + +========== sl.po ========== +# Slovenian translations for mate-utils. +# Copyright (C) 2000-2006 Free Software Foundation, Inc. +# This file is distributed under the same license as the mate-utils package. +# +# Andraž Tori , 2000. +# Matic Žgur , 2006. +# Matej Urbančič , 2007 - 2010. +# + + + + +========== sq.po ========== +# Përkthimi i mesazheve të mate-utils në shqip +# This file is distributed under the same license as the mate-utils package. +# Copyright (C) 2003, 2004 Free Software Foundation. Inc. +# Laurent Dhima , 2003, 2004, 2005. +# + + + + +========== sr.po ========== +# Serbian translation of mate-utils +# Courtesy of Prevod.org team (http://prevod.org/) -- 2003 - 2009. +# +# Translation updated on 2008-06-01 by cp6linux team (http://cp6linux.org/) +# +# This file is distributed under the same license as the mate-utils package. +# +# Maintainer: Саша Марић +# Reviewed on 2004-03-06 by: Данило Шеган +# Reviewed on 2005-07-11 by: Данило Шеган +# + + + + +========== sr@latin.po ========== +# Serbian translation of mate-utils +# Courtesy of Prevod.org team (http://prevod.org/) -- 2003 - 2009. +# +# Translation updated on 2008-06-01 by cp6linux team (http://cp6linux.org/) +# +# This file is distributed under the same license as the mate-utils package. +# +# Maintainer: Saša Marić +# Reviewed on 2004-03-06 by: Danilo Šegan +# Reviewed on 2005-07-11 by: Danilo Šegan +# + + + + +========== sv.po ========== +# Swedish messages for mate-utils. +# Copyright (C) 2000-2009 Free Software Foundation, Inc. +# Martin Norbäck , 2000. +# Andreas Hyden . +# Christian Rose , 2001, 2002, 2003, 2004, 2005. +# Daniel Nylander , 2006, 2007, 2008, 2009, 2010. +# +# $Id: sv.po,v 1.161 2006/12/11 21:18:20 dnylande Exp $ +# + + + + +========== ta.po ========== +# translation of mate-utils.master.ta.po to Tamil +# translation of mate-utils.HEAD.ta.po to +# Tamil translation of mate-utils. +# Copyright (C) 2001, 2004, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +# +# Dinesh Nadarajah , 2001. +# Jayaradha N , 2004. +# Felix , 2006. +# Dr.T.Vasudevan , 2007, 2008, 2009. +# I. Felix , 2009. +# Dr,T,Vasudevan , 2010. + + + + +========== te.po ========== +# translation of te.po to Telugu +# Telugu translation of mate-utils. +# Copyright (C) 2007 Swecha Telugu Localisation Team +# This file is distributed under the same license as the mate-utils package. +# +# +# Pramod , 2007. +# Krishna Babu K , 2007, 2009, 2010. + + + + +========== th.po ========== +# Thai translation for mate-utils. +# Copyright (C) 2004-2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the mate-utils package. +# Khunti Yeesoon , 2003. +# Paisa Seeluangsawat , 2004. +# Supranee Thirawatthanasuk , 2004. +# Theppitak Karoonboonyanan , 2005-2010. +# + + + + +========== tr.po ========== +# Turkish translation of mate-utils. +# Copyright (C) 2003 mate-utils' copyright holder +# This file is distributed under the same license as the mate-utils package. +# +# Barbaros Uluta�_ , 2003. +# Rıdvan CAN , 2003. +# Deniz Koçak , 2005. +# Baris Cicek , 2004, 2005, 2008, 2009. + + + + +========== ug.po ========== +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Sahran , 2010-08-29. +# + + + + +========== uk.po ========== +# Ukrainian translation of the mate-utils module. +# Copyright (C) 1999 Free Software Foundation, Inc. +# Yuri Syrota , 1999. +# Maxim Dziumanenko , 2002-2010 +# +# wanderlust , 2009. + + + + +========== vi.po ========== +# Vietnamese Translation for MATE Utils. +# Copyright © 2009 MATE i18n Project for Vietnamese. +# Nguyễn Thái Ngọc Duy , 2002,2007. +# Clytie Siddall , 2005-2009. +# + + + + +========== wa.po ========== +# Translation into the walloon language. +# +# Si vos voloz donner on côp di spale pol ratournaedje di Mate (ou des +# ôtes libes programes) sicrijhoz-mu a l' adresse emile +# ; nos avans co bråmint di l' ovraedje a fé. +# +# Copyright (C) 1999 Free Software Foundation, Inc. +# Pablo Saratxaga 1999-2002 +# Lucyin Mahin, 2000 +# + + + + +========== xh.po ========== +# Xhosa translation for mate-utils +# Copyright (C) 2005 Canonical Ltd. +# This file is distributed under the same license as the mate-utils package. +# Translation by Canonical Ltd with thanks to +# Translation World CC in South Africa, 2005. +# + + + + +========== zh_CN.po ========== +# translation of mate-utils.po to zh_CN +# Copyright (C) 2009 Free Software Foundation, Inc. +# This file is distributed under the same license as the mate-utils package. +# Sun G11n 2002 +# Wang Li , 2001 +# Xiong Jiang , 2003 +# Funda Wang , 2003-2005 +# Hinker , 2009. +# Aron Xu , 2009. +# + + + + +========== zh_HK.po ========== +# Chinese (Hong Kong) translation of mate-utils. +# Copyright (C) 1999-2007 Free Software Foundation, Inc. +# Ming-Yen Hsu , 1999. +# Abel Cheung , 2001, 02, 03, 04. +# Roy Hiu-yeung Chan , 2004. +# Lin-Chieh Shangkuan 2006. +# Ching-Hung Lin , 2006. +# Woodman Tuen , 2007. +# Chao-Hsiung Liao ,2008, 2009, 2010. + + + + +========== zh_TW.po ========== +# Chinese (Taiwan) translation of mate-utils. +# Copyright (C) 1999-2007 Free Software Foundation, Inc. +# Ming-Yen Hsu , 1999. +# Abel Cheung , 2001, 02, 03, 04. +# Roy Hiu-yeung Chan , 2004. +# Lin-Chieh Shangkuan 2006. +# Ching-Hung Lin , 2006. +# Woodman Tuen , 2007. +# Chao-Hsiung Liao ,2008, 2009, 2010. + + + + Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/gu.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/gu.gmo differ diff -Nru mate-utils-1.26.0/po/gu.po mate-utils-1.26.1/po/gu.po --- mate-utils-1.26.0/po/gu.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/gu.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Milan Savaliya , 2018 +# Milan Savaliya , 2021 # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Gujarati (https://www.transifex.com/mate/teams/13566/gu/)\n" -"Language: gu\n" +"Language-Team: Gujarati (https://app.transifex.com/mate/teams/13566/gu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: gu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "ફોલ્ડર માપો અને ઉપલબ્ધ ડિસ્ક જગ્યા ચકાસો" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -416,7 +417,8 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." -msgstr "સર્વર નું જોડાણ કરી શકાતુ નથી. તમારે સર્વર માટે નામ ને દાખલ કરવુ જ પડશે." +msgstr "" +"સર્વર નું જોડાણ કરી શકાતુ નથી. તમારે સર્વર માટે નામ ને દાખલ કરવુ જ પડશે." #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -476,8 +478,8 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"તમારા ઘર ફોલ્ડરના સમાવિષ્ટ બદલાઈ ગયેલ છે. ડિસ્ક વપરાશ વિગતો સુધારવા માટે પુનઃસ્કેન પસંદ " -"કરો." +"તમારા ઘર ફોલ્ડરના સમાવિષ્ટ બદલાઈ ગયેલ છે. ડિસ્ક વપરાશ વિગતો સુધારવા માટે " +"પુનઃસ્કેન પસંદ કરો." #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -589,8 +591,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -634,16 +636,18 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" -msgstr "આ કમ્પ્યૂટર પર નામ અથવા સમાવિષ્ટ દ્વારા દસ્તાવેજો અને ફોલ્ડરો સ્થિત કરો" +msgstr "" +"આ કમ્પ્યૂટર પર નામ અથવા સમાવિષ્ટ દ્વારા દસ્તાવેજો અને ફોલ્ડરો સ્થિત કરો" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -670,8 +674,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"આ કી નક્કી કરે છે શું શોધ સાધન locate આદેશનો ઉપયોગ નિષ્ક્રિય કરે છે જ્યારે સાદા ફાઈલ " -"નામો શોધી રહ્યા હોય." +"આ કી નક્કી કરે છે શું શોધ સાધન locate આદેશનો ઉપયોગ નિષ્ક્રિય કરે છે જ્યારે " +"સાદા ફાઈલ નામો શોધી રહ્યા હોય." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -679,13 +683,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"આ કી શોધ સાધન ઝડપી શોધમાં નહિં સમાવિષ્ટમાંથી પથ વ્યાખ્યાયિત કરે છે. વાઈલ્ડકાર્ડ '*' અને " -"'?' આધારભૂત છે. /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, અને /var/* મૂળભુત " -"કિંમતો છે." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"આ કી શોધ સાધન ઝડપી શોધમાં નહિં સમાવિષ્ટમાંથી પથ વ્યાખ્યાયિત કરે છે. " +"વાઈલ્ડકાર્ડ '*' અને '?' આધારભૂત છે. /mnt/*, /media/*, /dev/*, /tmp/*, " +"/proc/*, અને /var/* મૂળભુત કિંમતો છે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -696,8 +700,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"આ કી નક્કી કરે છે કે શું શોધ સાધન find આદેશનો ઉપયોગ ઝડપી શોધ કર્યા પછી નિષ્ક્રિય બનાવે " -"છે." +"આ કી નક્કી કરે છે કે શું શોધ સાધન find આદેશનો ઉપયોગ ઝડપી શોધ કર્યા પછી " +"નિષ્ક્રિય બનાવે છે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -708,13 +712,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"કી પથ વ્યાખ્યાયિત કરે છે જેનો શોધ સાધન જ્યારે ઝડપી શોધ કરી રહ્યો હોય ત્યારે દ્વિતીય " -"સ્કેનમાં સમાવેશ કરતો નથી. દ્વિતીય સ્કેન ફાઈલો શોધવા માટે find આદેશ વાપરે છે. દ્વિતીય " -"સ્કેનનો હેતુ ફાઈલો શોધવાનો છે કે જેઓ અનુક્રમિત થયેલ નથી. વાઈલ્ડકાર્ડ '*' અને '?' આધારભૂત " -"છે. મૂળભુત કિંમત / છે." +"કી પથ વ્યાખ્યાયિત કરે છે જેનો શોધ સાધન જ્યારે ઝડપી શોધ કરી રહ્યો હોય ત્યારે " +"દ્વિતીય સ્કેનમાં સમાવેશ કરતો નથી. દ્વિતીય સ્કેન ફાઈલો શોધવા માટે find આદેશ " +"વાપરે છે. દ્વિતીય સ્કેનનો હેતુ ફાઈલો શોધવાનો છે કે જેઓ અનુક્રમિત થયેલ નથી. " +"વાઈલ્ડકાર્ડ '*' અને '?' આધારભૂત છે. મૂળભુત કિંમત / છે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -725,8 +729,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"કી શોધ પરિણામોમાં સ્તંભોનો ક્રમ વ્યાખ્યાયિત કરે છે. આ કી વપરાશકર્તા દ્વારા બદલાવી જોઈએ " -"નહિં." +"કી શોધ પરિણામોમાં સ્તંભોનો ક્રમ વ્યાખ્યાયિત કરે છે. આ કી વપરાશકર્તા દ્વારા " +"બદલાવી જોઈએ નહિં." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -734,12 +738,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"આ કી વિન્ડો પહોળાઈ વ્યાખ્યાયિત કરે છે, અને તે સત્રો વચ્ચેના શોધ સાધનનું માપ યાદ રાખવા " -"માટે વપરાય છે. તેને -1 માં સુયોજિત કરવાનું શોધ સાધનને મૂળભૂત પહોળાઈ વાપરવા દેશે." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"આ કી વિન્ડો પહોળાઈ વ્યાખ્યાયિત કરે છે, અને તે સત્રો વચ્ચેના શોધ સાધનનું માપ " +"યાદ રાખવા માટે વપરાય છે. તેને -1 માં સુયોજિત કરવાનું શોધ સાધનને મૂળભૂત " +"પહોળાઈ વાપરવા દેશે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -748,11 +753,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"આ કી વિન્ડો ઊંચાઈ વ્યાખ્યાયિત કરે છે, અને તે સત્રો વચ્ચેના શોધ સાધનનું માપ યાદ રાખવા માટે " -"વપરાય છે. તેને -1 માં સુયોજિત કરવાનું શોધ સાધનને મૂળભૂત ઊંચાઈ વાપરવા દેશે." +"આ કી વિન્ડો ઊંચાઈ વ્યાખ્યાયિત કરે છે, અને તે સત્રો વચ્ચેના શોધ સાધનનું માપ " +"યાદ રાખવા માટે વપરાય છે. તેને -1 માં સુયોજિત કરવાનું શોધ સાધનને મૂળભૂત ઊંચાઈ" +" વાપરવા દેશે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -776,169 +782,169 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"લખાણ આ સમાવે છે\" શોધ વિકલ્પ પસંદ કરેલ છે તે " -"નક્કી કરે છે." +"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"લખાણ આ સમાવે છે\" શોધ વિકલ્પ પસંદ " +"કરેલ છે તે નક્કી કરે છે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"આ તારીખ કરતાં ઓછા દિવસે સુધારાયેલ છે\" શોધ " -"વિકલ્પ પસંદ કરેલ છે તે નક્કી કરે છે." +"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"આ તારીખ કરતાં ઓછા દિવસે સુધારાયેલ " +"છે\" શોધ વિકલ્પ પસંદ કરેલ છે તે નક્કી કરે છે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"આ તારીખ કરતાં વધુ દિવસે સુધારાયેલ છે\" શોધ " -"વિકલ્પ પસંદ કરેલ છે તે નક્કી કરે છે." +"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"આ તારીખ કરતાં વધુ દિવસે સુધારાયેલ " +"છે\" શોધ વિકલ્પ પસંદ કરેલ છે તે નક્કી કરે છે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"માપ ઓછામાં ઓછું આટલું હોય\" શોધ વિકલ્પ પસંદ કરેલ " -"છે તે નક્કી કરે છે." +"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"માપ ઓછામાં ઓછું આટલું હોય\" શોધ " +"વિકલ્પ પસંદ કરેલ છે તે નક્કી કરે છે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"માપ વધુમાં વધુ આટલું હોય\" શોધ વિકલ્પ પસંદ કરેલ છે " -"તે નક્કી કરે છે." +"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"માપ વધુમાં વધુ આટલું હોય\" શોધ " +"વિકલ્પ પસંદ કરેલ છે તે નક્કી કરે છે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"ફાઈલ ખાલી છે\" શોધ વિકલ્પ પસંદ કરેલ છે તે નક્કી " -"કરે છે." +"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"ફાઈલ ખાલી છે\" શોધ વિકલ્પ પસંદ " +"કરેલ છે તે નક્કી કરે છે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"વપરાશકર્તા દ્વારા માલિકી છે\" શોધ વિકલ્પ પસંદ " -"કરેલ છે તે નક્કી કરે છે." +"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"વપરાશકર્તા દ્વારા માલિકી છે\" શોધ " +"વિકલ્પ પસંદ કરેલ છે તે નક્કી કરે છે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"જૂથ દ્વારા માલિકી છે\" શોધ વિકલ્પ પસંદ કરેલ છે તે " -"નક્કી કરે છે." +"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"જૂથ દ્વારા માલિકી છે\" શોધ વિકલ્પ " +"પસંદ કરેલ છે તે નક્કી કરે છે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"માલિક ઓળખાયેલ નથી\" શોધ વિકલ્પ પસંદ કરેલ છે તે " -"નક્કી કરે છે." +"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"માલિક ઓળખાયેલ નથી\" શોધ વિકલ્પ " +"પસંદ કરેલ છે તે નક્કી કરે છે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"નામ આ સમાવતું નથી\" શોધ વિકલ્પ પસંદ કરેલ છે તે " -"નક્કી કરે છે." +"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"નામ આ સમાવતું નથી\" શોધ વિકલ્પ " +"પસંદ કરેલ છે તે નક્કી કરે છે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"નામ નિયમિત સમીકરણ બંધબેસે છે\" શોધ વિકલ્પ પસંદ " -"કરેલ છે તે નક્કી કરે છે." +"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"નામ નિયમિત સમીકરણ બંધબેસે છે\" શોધ" +" વિકલ્પ પસંદ કરેલ છે તે નક્કી કરે છે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"છુપી ફાઈલો અને ફોલ્ડરો બતાવો\" શોધ વિકલ્પ પસંદ " -"કરેલ છે તે નક્કી કરે છે." +"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"છુપી ફાઈલો અને ફોલ્ડરો બતાવો\" શોધ" +" વિકલ્પ પસંદ કરેલ છે તે નક્કી કરે છે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"સાંકેતિક કડીઓ અનુસરે છે\" શોધ વિકલ્પ પસંદ કરેલ છે " -"તે નક્કી કરે છે." +"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"સાંકેતિક કડીઓ અનુસરે છે\" શોધ " +"વિકલ્પ પસંદ કરેલ છે તે નક્કી કરે છે." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"અન્ય ફાઈલસિસ્ટમો બહાર કાઢે છે\" શોધ વિકલ્પ પસંદ " -"કરેલ છે તે નક્કી કરે છે." +"આ કી જ્યારે શોધ સાધન શરૂ થાય ત્યારે શું \"અન્ય ફાઈલસિસ્ટમો બહાર કાઢે છે\" " +"શોધ વિકલ્પ પસંદ કરેલ છે તે નક્કી કરે છે." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "ફાઈલ માન્ય .desktop ફાઈલ નથી" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "નહિં ઓળખાયેલ ડેસ્કટોપ ફાઈલ આવૃત્તિ '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "સુયોજન %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "કાર્યક્રમ આદેશ વાક્ય પર દસ્તાવેજો સ્વીકારતું નથી" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "નહિં ઓળખાયેલ લોન્ચ વિકલ્પ: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr " 'Type=Link' ડેસ્કટોપ નોંધણીને URIs દસ્તાવેજ ને પસાર કરી શકતુ નથી" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "લોન્ચ કરી શકાય તેવી વસ્તુ નથી" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "સત્ર વ્યવસ્થાપકમાં જોડાણ નિષ્ક્રિય કરો" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "સંગ્રહાયેલ રૂપરેખાંકન સમાવતી ફાઈલ સ્પષ્ટ કરો" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "સત્ર વ્યવસ્થાપન ID સ્પષ્ટ કરો" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ઓળખ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "સત્ર વ્યવસ્થાપન વિકલ્પો:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "સત્ર વ્યવસ્થાપન વિકલ્પો બતાવો" @@ -1101,7 +1107,8 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" -msgstr "ફાઈલો નીચે પ્રમાણે ક્રમમાં ગોઠવોઃ નામ, ફોલ્ડર, માપ, પ્રકાર, અથવા તારીખ" +msgstr "" +"ફાઈલો નીચે પ્રમાણે ક્રમમાં ગોઠવોઃ નામ, ફોલ્ડર, માપ, પ્રકાર, અથવા તારીખ" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1148,8 +1155,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"શોધનાં પરિણામો કદાચ સમયમર્યાદા સમાપ્ત થયેલ હોય અથવા અયોગ્ય હોઈ શકે. શું તમે ઝડપી " -"શોધની લાક્ષણિકતાઓ નિષ્ક્રિય કરવા માંગો છો?" +"શોધનાં પરિણામો કદાચ સમયમર્યાદા સમાપ્ત થયેલ હોય અથવા અયોગ્ય હોઈ શકે. શું તમે" +" ઝડપી શોધની લાક્ષણિકતાઓ નિષ્ક્રિય કરવા માંગો છો?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1547,7 +1554,8 @@ msgid "View or monitor system log files" msgstr "સિસ્ટમ લોગ ફાઈલો જુઓ અથવા મોનીટર કરો" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1558,11 +1566,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"શરૂઆતમાં દર્શાવાયેલ લોગ ફાઈલ સ્પષ્ટ કરે છે. /var/adm/messages અથવા /var/log/messages " -"એ મૂળભૂત છે, તમારી ઓપરેટિંગ સિસ્ટમ પર આધાર રાખીને." +"શરૂઆતમાં દર્શાવાયેલ લોગ ફાઈલ સ્પષ્ટ કરે છે. /var/adm/messages અથવા " +"/var/log/messages એ મૂળભૂત છે, તમારી ઓપરેટિંગ સિસ્ટમ પર આધાર રાખીને." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1573,8 +1581,8 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"મુખ્ય વૃક્ષ દેખાવમાં લોગ દર્શાવવા માટે વપરાયેલ ચોક્કસ-પહોળાઈના ફોન્ટનું માપ સ્પષ્ટ કરે છે. " -"મૂળભૂત એ મૂળભૂત ટર્મિનલ ફોન્ટ માપમાંથી લેવાયેલ છે." +"મુખ્ય વૃક્ષ દેખાવમાં લોગ દર્શાવવા માટે વપરાયેલ ચોક્કસ-પહોળાઈના ફોન્ટનું માપ " +"સ્પષ્ટ કરે છે. મૂળભૂત એ મૂળભૂત ટર્મિનલ ફોન્ટ માપમાંથી લેવાયેલ છે." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1601,8 +1609,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"શરુઆતમાં ખોલવા માટેની લોગ ફાઈલોની યાદી સ્પષ્ટ કરે છે. મૂળભૂત યાદી /etc/syslog.conf " -"વાંચીને બનાવી શકાય છે." +"શરુઆતમાં ખોલવા માટેની લોગ ફાઈલોની યાદી સ્પષ્ટ કરે છે. મૂળભૂત યાદી " +"/etc/syslog.conf વાંચીને બનાવી શકાય છે." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1963,7 +1971,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "ઓનલાઈન શબ્દકોશમાં વ્યાખ્યાઓ અને જોડણીઓ માટે શબ્દ ચકાસો" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1975,8 +1984,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2006,8 +2015,8 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"શબ્દકોષ સ્રોત પર મૂળભૂત રીતે વાપરવાના વ્યક્તિગત ડેટાબેઝ અથવા મેટા-ડેટાબેઝનું નામ. અવતરણ " -"ચિહ્ન (\"!\") એટલે કે સ્રોત પર હાજર બધા ડેટાબેઝની શોધ થવી જોઈએ" +"શબ્દકોષ સ્રોત પર મૂળભૂત રીતે વાપરવાના વ્યક્તિગત ડેટાબેઝ અથવા મેટા-ડેટાબેઝનું" +" નામ. અવતરણ ચિહ્ન (\"!\") એટલે કે સ્રોત પર હાજર બધા ડેટાબેઝની શોધ થવી જોઈએ" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2018,8 +2027,8 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"શબ્દકોષ સ્રોત પર વાપરવાની મૂળભૂત સ્રોત વિચારધારાનું નામ, જો ઉપલબ્ધ હોય. મૂળભૂત " -"વિચારધારા એ 'ચોક્કસ' છે, કે જે એકદમા ચોક્કસ શબ્દો જ સરખાવે છે." +"શબ્દકોષ સ્રોત પર વાપરવાની મૂળભૂત સ્રોત વિચારધારાનું નામ, જો ઉપલબ્ધ હોય. " +"મૂળભૂત વિચારધારા એ 'ચોક્કસ' છે, કે જે એકદમા ચોક્કસ શબ્દો જ સરખાવે છે." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2104,8 +2113,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"'%s:%d' આગળ શબ્દકોષ સર્વર સાથે જોડાવામાં અસમર્થ. સર્વરે %d કોડ સાથે પ્રત્યુત્તર આપ્યો " -"(સર્વર નીચું)" +"'%s:%d' આગળ શબ્દકોષ સર્વર સાથે જોડાવામાં અસમર્થ. સર્વરે %d કોડ સાથે " +"પ્રત્યુત્તર આપ્યો (સર્વર નીચું)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -3006,7 +3015,8 @@ msgid "Save images of your desktop or individual windows" msgstr "તમારા ડેસ્કટોપ અથવા વ્યક્તિગત વિન્ડોના ચિત્રો સંગ્રહો" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3064,7 +3074,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"કિનારીની બહાર ઉમેરવાની અસર. \"પડછાયો\", \"કંઈ નહિં\", અને \"કિનારી\" શક્ય કિંમતો છે." +"કિનારીની બહાર ઉમેરવાની અસર. \"પડછાયો\", \"કંઈ નહિં\", અને \"કિનારી\" શક્ય " +"કિંમતો છે." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3202,8 +3213,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3244,8 +3255,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"બાળ સંગ્રહ પ્રક્રિયા અનિચ્છનીય રીત ઉત્સુક થઈ ગઈ. અમે ફોટાનો ડિસ્કમાં સંગ્રહ કરવામાં " -"અસમર્થ છીએ." +"બાળ સંગ્રહ પ્રક્રિયા અનિચ્છનીય રીત ઉત્સુક થઈ ગઈ. અમે ફોટાનો ડિસ્કમાં સંગ્રહ" +" કરવામાં અસમર્થ છીએ." #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ha.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ha.gmo differ diff -Nru mate-utils-1.26.0/po/ha.po mate-utils-1.26.1/po/ha.po --- mate-utils-1.26.0/po/ha.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/ha.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2018 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Hausa (https://www.transifex.com/mate/teams/13566/ha/)\n" -"Language: ha\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Hausa (https://app.transifex.com/mate/teams/13566/ha/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -623,16 +624,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -666,9 +668,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -690,8 +692,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -710,9 +712,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -722,8 +724,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -787,8 +789,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -805,8 +807,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -827,62 +829,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1487,7 +1489,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1498,8 +1501,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1897,7 +1900,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1909,8 +1913,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2924,7 +2928,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3116,8 +3121,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/he.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/he.gmo differ diff -Nru mate-utils-1.26.0/po/he.po mate-utils-1.26.1/po/he.po --- mate-utils-1.26.0/po/he.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/he.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,30 +2,29 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Edward Sawyer , 2018 -# בר בוכובזה , 2018 -# haxoc c11 , 2018 -# Yaron Shahrabani , 2020 -# shy tzedaka , 2020 -# Omer I.S. , 2021 +# haxoc c11 , 2021 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e , 2021 +# Yaron Shahrabani , 2021 # Stefano Karapetsas , 2021 -# +# בר בוכובזה , 2021 +# Edward Sawyer , 2021 +# shy tzedaka , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Hebrew (https://www.transifex.com/mate/teams/13566/he/)\n" -"Language: he\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: shy tzedaka , 2021\n" +"Language-Team: Hebrew (https://app.transifex.com/mate/teams/13566/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % " -"1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -36,7 +35,8 @@ msgid "Check folder sizes and available disk space" msgstr "בודק גדלי ספריות ומקום פנוי בדיסק" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -196,7 +196,8 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:27 msgid "Whether the status bar at the bottom of main window should be visible." -msgstr "Whether the status bar at the bottom of main window should be visible." +msgstr "" +"Whether the status bar at the bottom of main window should be visible." #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:31 msgid "Subfolder tips visible" @@ -220,8 +221,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -453,7 +454,7 @@ #: baobab/src/baobab-remote-connect-dialog.c:506 msgid "_Folder:" -msgstr "_תיקייה:" +msgstr "_תיקיה:" #: baobab/src/baobab-remote-connect-dialog.c:520 msgid "_User Name:" @@ -493,7 +494,7 @@ #: baobab/src/baobab-treeview.c:222 gsearchtool/src/gsearchtool.c:2453 msgid "Folder" -msgstr "תיקייה" +msgstr "תיקיה" #: baobab/src/baobab-treeview.c:244 msgid "Usage" @@ -597,8 +598,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -618,7 +619,9 @@ #: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" -msgstr "Yaron Shahrabani " +msgstr "" +"Yaron Shahrabani \n" +"Omer I.S. " #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -642,16 +645,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "איתור מסמכים ותיקיות במחשב זה על פי שם או תוכן" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -687,13 +691,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -716,14 +720,14 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -743,13 +747,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -758,12 +762,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -841,11 +845,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" @@ -865,11 +869,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" @@ -895,62 +899,62 @@ "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "הקובץ אינו קובץ ‎.desktop תקני" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Unrecognized desktop file Version '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" -msgstr "מפעיל %s " +msgstr "בהפעלת %s " -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Application does not accept documents on command line" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Unrecognized launch option: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "לא ניתן להעביר כתובת מסמך לכניסת שולחן עבודה 'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" -msgstr "Not a launchable item" +msgstr "אינו פריט שניתן להפעילו" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Disable connection to session manager" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "הגדר קובץ המכיל הגדרות שמורות" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "קובץ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "הגדר מס\"ד ניהול עבור ה-Session" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "מספר סידורי" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Session management options:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Show session management options" @@ -1568,7 +1572,8 @@ msgid "View or monitor system log files" msgstr "הצג או נטר את קבצי דו\"ח מערכת" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1579,11 +1584,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1984,7 +1989,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "חפש הגדרת ואיות מילים במילון מקוון" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1996,8 +2002,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -3030,7 +3036,8 @@ msgid "Save images of your desktop or individual windows" msgstr "שמור תמונות של שולחן העבודה או החלונות שלך" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3227,8 +3234,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3250,7 +3257,7 @@ #: mate-screenshot/src/screenshot-dialog.c:233 msgid "Select a folder" -msgstr "בחר תיקייה" +msgstr "בחירת תיקיה" #: mate-screenshot/src/screenshot-dialog.c:328 #: mate-screenshot/src/screenshot-save.c:202 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/hi.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/hi.gmo differ diff -Nru mate-utils-1.26.0/po/hi.po mate-utils-1.26.1/po/hi.po --- mate-utils-1.26.0/po/hi.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/hi.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,24 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Sadgamaya , 2019 +# Panwar108 , 2021 # Stefano Karapetsas , 2021 -# +# Sadgamaya , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Hindi (https://www.transifex.com/mate/teams/13566/hi/)\n" -"Language: hi\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Sadgamaya , 2021\n" +"Language-Team: Hindi (https://app.transifex.com/mate/teams/13566/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +31,8 @@ msgid "Check folder sizes and available disk space" msgstr "फोल्डर आकार जाँचें और उपलब्ध डिस्क स्थान" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +216,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -476,8 +478,8 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"आपके होम फोल्डर की सामग्री बदल गई है. डिस्क प्रयोग विवरण को अद्यतन करने के लिए फिर " -"स्कैन करें चुनें." +"आपके होम फोल्डर की सामग्री बदल गई है. डिस्क प्रयोग विवरण को अद्यतन करने के " +"लिए फिर स्कैन करें चुनें." #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -535,7 +537,8 @@ #: baobab/src/baobab-utils.c:381 msgid "There is no installed viewer capable of displaying the folder." -msgstr "यहाँ कोई भी ऐसे प्रदर्शक संस्थापित नहीं हैं जो फोल्डर को प्रदर्शित कर सकें." +msgstr "" +"यहाँ कोई भी ऐसे प्रदर्शक संस्थापित नहीं हैं जो फोल्डर को प्रदर्शित कर सकें." #: baobab/src/baobab-utils.c:448 #, c-format @@ -589,8 +592,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -638,16 +641,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "नाम व सामग्री के आधार पर इस कंप्यूटर पर दस्तावेज व फोल्डर लोकेट करें" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -674,8 +678,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"यह कुंजी निर्धारित करता है कि अगर खोज उपकरण लोकेट कमांड के प्रयोग को निष्क्रिय करता है " -"जब साधारण फाइल नाम खोज का निष्पादन करता है." +"यह कुंजी निर्धारित करता है कि अगर खोज उपकरण लोकेट कमांड के प्रयोग को " +"निष्क्रिय करता है जब साधारण फाइल नाम खोज का निष्पादन करता है." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -683,13 +687,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"कुंजी उस पथ को परिभाषित करता है जिसे खोज उपकरण एक द्रुत खोज से अलग करेगा. वाइल्डकार्ड " -"'*' व '?' समर्थित हैं. मूलभूत मान हैं /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, " -"औऱ /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"कुंजी उस पथ को परिभाषित करता है जिसे खोज उपकरण एक द्रुत खोज से अलग करेगा. " +"वाइल्डकार्ड '*' व '?' समर्थित हैं. मूलभूत मान हैं /mnt/*, /media/*, /dev/*, " +"/tmp/*, /proc/*, औऱ /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -700,8 +704,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"यह कुंजी निर्धारित करता है कि अगर खोज उपकरण ढ़ूंढे समादेश के प्रयोग को निष्क्रिय करता है " -"एक द्रुत खोज के निष्पादन के बाद." +"यह कुंजी निर्धारित करता है कि अगर खोज उपकरण ढ़ूंढे समादेश के प्रयोग को " +"निष्क्रिय करता है एक द्रुत खोज के निष्पादन के बाद." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -712,13 +716,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"यह कुंजी पथ को परिभाषित करता है जिसे खोज उपकरण दूसरे स्कैन से से अलग करता है जब एक द्रुत " -"खोज की जाती है. दूसरा स्कैन ढूंढे समादेश का प्रयोग फाइल के लिये करता है. दूसरे स्कैन का " -"उद्देश्य यह पता करना है कि किसे सूचीबद्ध नहीं करना है. वाइल्डकार्ड '*' और '?' समर्थित हैं. " -"मूलभूत मान हैं /." +"यह कुंजी पथ को परिभाषित करता है जिसे खोज उपकरण दूसरे स्कैन से से अलग करता है" +" जब एक द्रुत खोज की जाती है. दूसरा स्कैन ढूंढे समादेश का प्रयोग फाइल के लिये" +" करता है. दूसरे स्कैन का उद्देश्य यह पता करना है कि किसे सूचीबद्ध नहीं करना " +"है. वाइल्डकार्ड '*' और '?' समर्थित हैं. मूलभूत मान हैं /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -729,8 +733,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"कुंजी कॉलम के क्रम को खोज परिणाम में परिभाषित करता है. इस कुंजी को प्रयोक्ता के द्वारा " -"नहीं बदला जाना चाहिए." +"कुंजी कॉलम के क्रम को खोज परिणाम में परिभाषित करता है. इस कुंजी को प्रयोक्ता" +" के द्वारा नहीं बदला जाना चाहिए." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -738,12 +742,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"यह कुंजी विंडो चौड़ाई को परिभाषित करता है, और सत्र के बीच खोज टूल के आकार को याद रखने " -"के लिए प्रयुक्त होता है. इसे -1 में सेट करना मूलभूत चौड़ाई के प्रयोग को बनायेगा." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"यह कुंजी विंडो चौड़ाई को परिभाषित करता है, और सत्र के बीच खोज टूल के आकार को" +" याद रखने के लिए प्रयुक्त होता है. इसे -1 में सेट करना मूलभूत चौड़ाई के " +"प्रयोग को बनायेगा." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -752,11 +757,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"यह कुंजी विंडो ऊँचाई को परिभाषित करता है, और सत्र के बीच खोज टूल के आकार को याद रखने के " -"लिए प्रयुक्त होता है. इसे -1 में सेट करना मूलभूत ऊंचाई के प्रयोग को बनायेगा." +"यह कुंजी विंडो ऊँचाई को परिभाषित करता है, और सत्र के बीच खोज टूल के आकार को " +"याद रखने के लिए प्रयुक्त होता है. इसे -1 में सेट करना मूलभूत ऊंचाई के प्रयोग" +" को बनायेगा." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -765,7 +771,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:50 msgid "" "This key determines if the search tool window starts in a maximized state." -msgstr "यह कुंजी निर्धारित करता है कि अगर खोज औजार विंडो अधिकतम स्थिति में आरंभ होता है." +msgstr "" +"यह कुंजी निर्धारित करता है कि अगर खोज औजार विंडो अधिकतम स्थिति में आरंभ होता" +" है." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -780,169 +788,169 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"यह कुंजी निश्चित करता है कि अगर \"Contains the text\" खोज विकल्प चुना जाता है जब " -"खोज उपकरण शुरू होता है." +"यह कुंजी निश्चित करता है कि अगर \"Contains the text\" खोज विकल्प चुना जाता " +"है जब खोज उपकरण शुरू होता है." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"यह कुंजी निश्चित करता है कि अगर \"Date modified less than\" खोज विकल्प चुना जाता " -"है जब खोज उपकरण शुरू होता है." +"यह कुंजी निश्चित करता है कि अगर \"Date modified less than\" खोज विकल्प चुना" +" जाता है जब खोज उपकरण शुरू होता है." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"यह कुंजी निश्चित करता है कि अगर \"Date modified more than\" खोज विकल्प चुना जाता " -"है जब खोज उपकरण शुरू होता है." +"यह कुंजी निश्चित करता है कि अगर \"Date modified more than\" खोज विकल्प चुना" +" जाता है जब खोज उपकरण शुरू होता है." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"यह कुंजी निश्चित करता है कि अगर \"Size at least\" खोज विकल्प चुना जाता है जब खोज " -"उपकरण शुरू होता है." +"यह कुंजी निश्चित करता है कि अगर \"Size at least\" खोज विकल्प चुना जाता है जब" +" खोज उपकरण शुरू होता है." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"यह कुंजी निश्चित करता है कि अगर \"Size at most\" खोज विकल्प चुना जाता है जब खोज " -"उपकरण शुरू होता है." +"यह कुंजी निश्चित करता है कि अगर \"Size at most\" खोज विकल्प चुना जाता है जब " +"खोज उपकरण शुरू होता है." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"यह कुंजी निश्चित करता है कि अगर \"File is empty\" खोज विकल्प चुना जाता है जब खोज " -"उपकरण शुरू होता है." +"यह कुंजी निश्चित करता है कि अगर \"File is empty\" खोज विकल्प चुना जाता है जब" +" खोज उपकरण शुरू होता है." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"यह कुंजी निश्चित करता है कि अगर \"Owned by user\" खोज विकल्प चुना जाता है जब खोज " -"उपकरण शुरू होता है." +"यह कुंजी निश्चित करता है कि अगर \"Owned by user\" खोज विकल्प चुना जाता है जब" +" खोज उपकरण शुरू होता है." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"यह कुंजी निश्चित करता है कि अगर \"Owned by group\" खोज विकल्प चुना जाता है जब खोज " -"उपकरण शुरू होता है." +"यह कुंजी निश्चित करता है कि अगर \"Owned by group\" खोज विकल्प चुना जाता है " +"जब खोज उपकरण शुरू होता है." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"यह कुंजी निश्चित करता है कि अगर \"Owner is unrecognized\" खोज विकल्प चुना जाता है " -"जब खोज उपकरण शुरू होता है." +"यह कुंजी निश्चित करता है कि अगर \"Owner is unrecognized\" खोज विकल्प चुना " +"जाता है जब खोज उपकरण शुरू होता है." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"यह कुंजी निश्चित करता है कि अगर \"Name does not contain\" खोज विकल्प चुना जाता है " -"जब खोज उपकरण शुरू होता है." +"यह कुंजी निश्चित करता है कि अगर \"Name does not contain\" खोज विकल्प चुना " +"जाता है जब खोज उपकरण शुरू होता है." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"यह कुंजी निश्चित करता है कि अगर \"Name matches regular expression\" खोज विकल्प " -"चुना जाता है जब खोज उपकरण शुरू होता है." +"यह कुंजी निश्चित करता है कि अगर \"Name matches regular expression\" खोज " +"विकल्प चुना जाता है जब खोज उपकरण शुरू होता है." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"यह कुंजी निश्चित करता है कि अगर \"Show hidden files and folders\" खोज विकल्प चुना " -"जाता है जब खोज उपकरण शुरू होता है." +"यह कुंजी निश्चित करता है कि अगर \"Show hidden files and folders\" खोज विकल्प" +" चुना जाता है जब खोज उपकरण शुरू होता है." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"यह कुंजी निश्चित करता है कि अगर \"Follow symbolic links\" खोज विकल्प चुना जाता है " -"जब खोज उपकरण शुरू होता है." +"यह कुंजी निश्चित करता है कि अगर \"Follow symbolic links\" खोज विकल्प चुना " +"जाता है जब खोज उपकरण शुरू होता है." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"यह कुंजी निश्चित करता है कि अगर \"Exclude other filesystems\" खोज विकल्प चुना जाता " -"है जब खोज उपकरण शुरू होता है." +"यह कुंजी निश्चित करता है कि अगर \"Exclude other filesystems\" खोज विकल्प " +"चुना जाता है जब खोज उपकरण शुरू होता है." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "फ़ाइल वैध .desktop फ़ाइल नहीं है" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "अपरिचित डेस्कटॉप फ़ाइल संस्करण '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s शुरू हो रहा है" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "कमांड लाइन पर अनुप्रयोग दस्तावेज़ स्वीकार नहीं करता है" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "अपरिचित लॉन्च विकल्प: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "दस्तावेज़ URI को 'Type=Link' डेस्कटॉप प्रविष्टि में भेज नहीं सकता है" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "चलाने योग्य प्रोग्राम नहीं है" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "सत्र प्रबंधक में संबंधन निष्क्रिय करें" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "सहेजा विन्यास समाहित करता फ़ाइल निर्दिष्ट करें" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "फ़ाइल" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "सत्र प्रबंधन ID निर्दिष्ट करें" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "आईडी" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "सत्र प्रबंधन विकल्प:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "दिखाएँ सत्र प्रबंधन विकल्प" @@ -1106,7 +1114,8 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"फ़ाइलों को निम्न में से किसी एक आधार पर क्रमबद्ध करें: नाम, फ़ोल्डर, आकार, प्रकार तथा तिथि" +"फ़ाइलों को निम्न में से किसी एक आधार पर क्रमबद्ध करें: नाम, फ़ोल्डर, आकार, " +"प्रकार तथा तिथि" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1153,8 +1162,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"खोज परिणाम पुराना या अमान्य हो सकता है. क्या आप द्रुत खोज को भविष्य में निष्क्रिय करना " -"चाहते हैं?" +"खोज परिणाम पुराना या अमान्य हो सकता है. क्या आप द्रुत खोज को भविष्य में " +"निष्क्रिय करना चाहते हैं?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1343,7 +1352,9 @@ #: gsearchtool/src/gsearchtool-callbacks.c:521 msgid "There is no installed viewer capable of displaying the document." -msgstr "यहाँ कोई भी ऐसे प्रदर्शक संस्थापित नहीं हैं जो दस्तावेज़ को प्रदर्शित कर सकें." +msgstr "" +"यहाँ कोई भी ऐसे प्रदर्शक संस्थापित नहीं हैं जो दस्तावेज़ को प्रदर्शित कर " +"सकें." #: gsearchtool/src/gsearchtool-callbacks.c:543 #, c-format @@ -1554,7 +1565,8 @@ msgid "View or monitor system log files" msgstr "तंत्र लॉग फ़ाइल दिखाएँ व मॉनीटर करें" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1565,11 +1577,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"प्रारंभ में खोलने हेतु लॉग फ़ाइल निर्दिष्ट करता है. मूलभूत या तो है /var/adm/messages " -"या /var/log/messages, जो आपके ऑपरेटिंग सिस्टम पर निर्भर करता है." +"प्रारंभ में खोलने हेतु लॉग फ़ाइल निर्दिष्ट करता है. मूलभूत या तो है " +"/var/adm/messages या /var/log/messages, जो आपके ऑपरेटिंग सिस्टम पर निर्भर " +"करता है." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1580,8 +1593,8 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"मुख्य तरू दृश्य में लॉग दिखाने के लिए प्रयुक्त स्थिर चौड़ाई फंट के आकार को निर्दिष्ट करता है. " -"मूलभूत को मूलभूत टर्मिनल फाँट आकार से लिया जाता है." +"मुख्य तरू दृश्य में लॉग दिखाने के लिए प्रयुक्त स्थिर चौड़ाई फंट के आकार को " +"निर्दिष्ट करता है. मूलभूत को मूलभूत टर्मिनल फाँट आकार से लिया जाता है." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1608,8 +1621,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"प्रारंभ में खोलने हेतु लॉग फ़ाइल की सूची निर्दिष्ट करता है. मूलभूत सूची को /etc/syslog.conf " -"को पढ़कर बनाया जाता है." +"प्रारंभ में खोलने हेतु लॉग फ़ाइल की सूची निर्दिष्ट करता है. मूलभूत सूची को " +"/etc/syslog.conf को पढ़कर बनाया जाता है." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1970,7 +1983,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "ऑन लाइन शब्दकोश में परिभाषा व वर्तनी देखें" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1982,8 +1996,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2013,9 +2027,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"शब्दकोश श्रोत में में निजी डाटाबेस या मेटा-डाटाबेस का प्रयोग के लिये नाम. विस्मयादिबोधक " -"चिह्न (\"!\") निर्दिष्ट करता है कि शब्दकोश श्रोत में उपस्थित सभी डाटाबेस को खोजा जाना " -"चाहिये." +"शब्दकोश श्रोत में में निजी डाटाबेस या मेटा-डाटाबेस का प्रयोग के लिये नाम. " +"विस्मयादिबोधक चिह्न (\"!\") निर्दिष्ट करता है कि शब्दकोश श्रोत में उपस्थित " +"सभी डाटाबेस को खोजा जाना चाहिये." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2026,8 +2040,8 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"शब्दकोश श्रोत पर प्रयोग के लिए मूलभूत खोज रणनीति का नाम, यदि उपलब्ध है. मूलभूत रणनीति " -"'सटीक' है, जो कि सटीक शब्द मिलाएं है." +"शब्दकोश श्रोत पर प्रयोग के लिए मूलभूत खोज रणनीति का नाम, यदि उपलब्ध है. " +"मूलभूत रणनीति 'सटीक' है, जो कि सटीक शब्द मिलाएं है." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2112,8 +2126,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"शब्दकोश सर्वर में '%s:%d' पर जुड़ने में असमर्थ. सर्वर को कोड %d (सर्वर डाउन) से उत्तर दिया " -"गया." +"शब्दकोश सर्वर में '%s:%d' पर जुड़ने में असमर्थ. सर्वर को कोड %d (सर्वर डाउन)" +" से उत्तर दिया गया." #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2626,7 +2640,7 @@ #: mate-dictionary/src/gdict-applet.c:1170 msgid "Preferences" -msgstr "वरीयताएँ" +msgstr "सेटिंग्स" #: mate-dictionary/src/gdict-common.c:77 #, c-format @@ -3014,7 +3028,8 @@ msgid "Save images of your desktop or individual windows" msgstr "अपने डेस्कटॉप या निजी विंडो के चित्र को सहेजें" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3072,8 +3087,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"किनारे के बाहर प्रभाव जोड़ने के लिये. संभावित मान हैं \"shadow\", \"none\", और \"border" -"\"." +"किनारे के बाहर प्रभाव जोड़ने के लिये. संभावित मान हैं \"shadow\", \"none\", " +"और \"border\"." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3211,8 +3226,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3220,7 +3235,8 @@ "Conflicting options: --window and --area should not be used at the same " "time.\n" msgstr "" -"विरोधी विकल्प: --window और --area को समान समय में प्रयोग नहीं किया जाना चाहिए.\n" +"विरोधी विकल्प: --window और --area को समान समय में प्रयोग नहीं किया जाना " +"चाहिए.\n" #: mate-screenshot/src/screenshot-dialog.c:210 #, c-format @@ -3254,8 +3270,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"शिशु सहेजन प्रक्रिया अप्रत्याशित रूप से बाहर हो गई. हम डिस्क में स्क्रीनशॉट लिखने में असमर्थ " -"हैं." +"शिशु सहेजन प्रक्रिया अप्रत्याशित रूप से बाहर हो गई. हम डिस्क में स्क्रीनशॉट" +" लिखने में असमर्थ हैं." #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/hr.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/hr.gmo differ diff -Nru mate-utils-1.26.0/po/hr.po mate-utils-1.26.1/po/hr.po --- mate-utils-1.26.0/po/hr.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/hr.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,28 +2,27 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# 7ba6a01a5af78e1cef1be42ee2984787_3581812 <626b5332d4cf5b67e6c93ce0038f7f1b_356141>, 2018 -# Tomislav Krznar , 2018 -# Elvis M. Lukšić , 2019 -# Ivica Kolić , 2019 +# Tomislav Krznar , 2021 +# Ivica Kolić , 2021 # Stefano Karapetsas , 2021 -# +# Elvis M. Lukšić , 2021 +# 7ba6a01a5af78e1cef1be42ee2984787_3581812 <626b5332d4cf5b67e6c93ce0038f7f1b_356141>, 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Croatian (https://www.transifex.com/mate/teams/13566/hr/)\n" -"Language: hr\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: 7ba6a01a5af78e1cef1be42ee2984787_3581812 <626b5332d4cf5b67e6c93ce0038f7f1b_356141>, 2021\n" +"Language-Team: Croatian (https://app.transifex.com/mate/teams/13566/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -34,7 +33,8 @@ msgid "Check folder sizes and available disk space" msgstr "Provjeri veličinu mapa i dostupni prostor diska" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -218,8 +218,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -585,8 +585,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -624,8 +624,7 @@ " Bojan Sudarević https://launchpad.net/~sudarevic\n" " Danijel Šnajder https://launchpad.net/~phantomlord\n" " Krešo Kunjas https://launchpad.net/~deresh\n" -" Launchpad Translations Administrators https://launchpad.net/~rosetta-" -"admins\n" +" Launchpad Translations Administrators https://launchpad.net/~rosetta-admins\n" " Miroslav Sabljić https://launchpad.net/~civija\n" " Valentin Vidic https://launchpad.net/~vvidic\n" " alja https://launchpad.net/~alja\n" @@ -654,16 +653,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Pronalazi zapise i mape u ovom računalu po nazivu ili sadržaju" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -699,12 +699,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" -"Ovaj ključ određuje putanje koje će alat za pretraživanje isključiti iz brze " -"pretrage. Zamjenski znakovi '*' i '?' su podržani. Uobičajene vrijednosti " +"Ovaj ključ određuje putanje koje će alat za pretraživanje isključiti iz brze" +" pretrage. Zamjenski znakovi '*' i '?' su podržani. Uobičajene vrijednosti " "su /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, and /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -728,8 +728,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Ovaj ključ određuje putanje koje će alat za pretraživanje isključiti iz " "drugog pretraživanja kada obavlja brzo pretraživanje. Drugo pretraživanje " @@ -755,9 +755,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Ovaj ključ određuje širinu prozora, i koristi se za pamćenje veličine " "prozora između ponovljenih korištenja alata za pretraživanje. Postavljanje " @@ -771,8 +771,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Ovaj ključ određuje visinu prozora, i koristi se za pamćenje veličine " "prozora između ponovljenih korištenja alata za pretraživanje." @@ -817,8 +817,8 @@ "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"Ovaj ključ određuje je li opcija pretraživanja \"Datum promijenjem prije više" -"\" odabrana prilikom pokretanja alata za pretraživanje." +"Ovaj ključ određuje je li opcija pretraživanja \"Datum promijenjem prije " +"više\" odabrana prilikom pokretanja alata za pretraživanje." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" @@ -854,8 +854,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Ovaj ključ određuje je li opcija pretraživanja \"Pripada grupi\" odabrana " "prilikom pokretanja alata za pretraživanje." @@ -878,8 +878,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Ovaj ključ određuje je li opcija pretraživanja \"Ime odgovara regularnom " "izrazu\" odabrana prilikom pokretanja alata za pretraživanje." @@ -889,16 +889,16 @@ "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"Ovaj ključ određuje je li opcija pretraživanja \"Prikaži skrivene datoteke i " -"direktorije\" odabrana prilikom pokretanja alata za pretraživanje." +"Ovaj ključ određuje je li opcija pretraživanja \"Prikaži skrivene datoteke i" +" direktorije\" odabrana prilikom pokretanja alata za pretraživanje." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"Ovaj ključ određuje je li opcija pretraživanja \"Slijedi simboličke linkove" -"\" odabrana prilikom pokretanja alata za pretraživanje." +"Ovaj ključ određuje je li opcija pretraživanja \"Slijedi simboličke " +"linkove\" odabrana prilikom pokretanja alata za pretraživanje." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" @@ -906,63 +906,63 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Datoteka nije valjana .desktop datoteka" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Neprepoznata inačica datoteke radne površine '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Pokretanje %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Aplikacija ne prihvaća dokumente iz naredbenog retka" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Neprepoznata mogućnost pokretanja: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Nije moguće proslijediti URI-je zapisa na unos radne površine 'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Nije izvršna stavka" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Isključi vezu prema upravitelju sesija" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Odredi datoteku koja sadrži spremljenu konfiguraciju" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "DATOTEKA" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Navedi označivač upravljanja pristupnom dionicom" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "Identifikator" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opcije upravljanja sesijom:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Prikaži opcije upravitelja prijava" @@ -1467,7 +1467,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "If you replace an existing file, its contents will be overwritten." -msgstr "Ukoliko zamjenite postojeću datoteku, njezin sadržaj će biti prepisan." +msgstr "" +"Ukoliko zamjenite postojeću datoteku, njezin sadržaj će biti prepisan." #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 @@ -1584,7 +1585,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1595,8 +1597,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "Određuje dnevnik koji će biti prikazan prilikom pokretanja programa. " "Uobičajeni je ili /var/adm/messages ili /var/log/messages, u zavisnosti od " @@ -1658,7 +1660,7 @@ #: logview/data/logview-filter.ui:48 msgid "_Apply" -msgstr "" +msgstr "_Primjeni" #: logview/data/logview-filter.ui:91 #: mate-screenshot/data/mate-screenshot.ui:178 @@ -2002,7 +2004,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -2014,8 +2017,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -3050,7 +3053,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3242,8 +3246,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/hu.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/hu.gmo differ diff -Nru mate-utils-1.26.0/po/hu.po mate-utils-1.26.1/po/hu.po --- mate-utils-1.26.0/po/hu.po 2021-08-05 19:45:47.000000000 +0000 +++ mate-utils-1.26.1/po/hu.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,27 +2,27 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# István Szőllősi , 2018 -# Balázs Meskó , 2018 -# KAMI KAMI , 2019 -# Falu , 2019 +# István Szőllősi , 2021 +# Balázs Meskó , 2021 +# KAMI KAMI , 2021 # Rezső Páder , 2021 # Stefano Karapetsas , 2021 -# +# Falu , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Hungarian (https://www.transifex.com/mate/teams/13566/hu/)\n" -"Language: hu\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Falu , 2021\n" +"Language-Team: Hungarian (https://app.transifex.com/mate/teams/13566/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -34,7 +34,8 @@ msgid "Check folder sizes and available disk space" msgstr "Mappaméretek és elérhető lemezterület vizsgálata" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -218,8 +219,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -270,8 +271,8 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d elem" -msgstr[1] "%5d elem" +msgstr[0] "" +msgstr[1] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -596,8 +597,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -618,14 +619,14 @@ #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" msgstr "" -"Dvornik László\n" -"Kelemen Gábor\n" -"Tímár András\n" -"Rezső Páder\n" -"Kalman „KAMI” Szalai\n" -"Falu\n" -"Zoltán Rápolthy\n" -"Meskó Balázs " +"Dvornik László \n" +"Kelemen Gábor \n" +"Kalman „KAMI” Szalai \n" +"Falu \n" +"Rezső Páder \n" +"Zoltán Rápolthy \n" +"Meskó Balázs \n" +"Tímár András " #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -649,9 +650,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -659,7 +660,8 @@ msgstr "" "Dokumentumok és mappák keresése név vagy tartalom szerint a számítógépen" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -695,13 +697,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Ez a kulcs megadja a gyors keresésből kihagyandó útvonalakat. A * és ? " -"helyettesítő karakterek támogatottak. Az alapértelmezett értékek: /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, és /var/*." +"helyettesítő karakterek támogatottak. Az alapértelmezett értékek: /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, és /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -724,8 +726,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Ez a kulcs megadja a gyors keresésből kihagyandó útvonalakat. A második " "keresés a find parancsot használja fájlok keresésére. A második keresés " @@ -750,9 +752,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Ez a kulcs meghatározza az ablak szélességét, és arra használható, hogy " "megjegyezze a Kereső eszköz méretét a munkafolyamatok közt. A -1 érték " @@ -765,8 +767,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Ez a kulcs meghatározza az ablak magasságát, és arra használható, hogy " "megjegyezze a Kereső eszköz méretét a munkafolyamatok közt. A -1 érték " @@ -805,8 +807,8 @@ "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"Ez a kulcs meghatározza, hogy a „Módosítva kevesebb mint” keresési lehetőség " -"ki van-e választva a keresőeszköz indításakor." +"Ez a kulcs meghatározza, hogy a „Módosítva kevesebb mint” keresési lehetőség" +" ki van-e választva a keresőeszköz indításakor." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" @@ -821,8 +823,8 @@ "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"Ez a kulcs meghatározza, hogy a „Mérete legalább” keresési lehetőség ki van-" -"e választva a keresőeszköz indításakor." +"Ez a kulcs meghatározza, hogy a „Mérete legalább” keresési lehetőség ki " +"van-e választva a keresőeszköz indításakor." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" @@ -850,8 +852,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Ez a kulcs meghatározza, hogy az „A következő csoport tulajdona” keresési " "lehetőség ki van-e választva a keresőeszköz indításakor." @@ -874,8 +876,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Ez a kulcs meghatározza, hogy az „A fájlnév illeszkedik erre a reguláris " "kifejezésre” keresési lehetőség ki van-e választva a keresőeszköz " @@ -886,8 +888,8 @@ "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"Ez a kulcs meghatározza, hogy a „Rejtett fájlok és mappák mutatása” keresési " -"lehetőség ki van-e választva a keresőeszköz indításakor." +"Ez a kulcs meghatározza, hogy a „Rejtett fájlok és mappák mutatása” keresési" +" lehetőség ki van-e választva a keresőeszköz indításakor." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" @@ -905,62 +907,62 @@ "Ez a kulcs meghatározza, hogy a „Más fájlrendszerek kizárása a keresésből” " "keresési lehetőség ki van-e választva a keresőeszköz indításakor." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "A fájl nem egy érvényes .desktop fájl" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Ismeretlen .desktop fájl verzió: „%s”" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s indítása" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Az alkalmazás nem fogad el dokumentumokat a parancssorban" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Ismeretlen indítási kapcsoló: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Nem adhatók dokumentum-URI címek egy „Type=Link” asztali bejegyzésnek" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Nem futtatható elem" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "A munkamenet-kezelőhöz való csatlakozás tiltása" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "A mentett beállításokat tartalmazó fájl megadása" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FÁJL" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Munkamenet-kezelő azonosítójának megadása" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "Azonosító" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Munkamenet-kezelés kapcsolói:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Munkamenet-kezelési kapcsolók megjelenítése" @@ -1099,15 +1101,15 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "%'d fájl található" -msgstr[1] "%'d fájl található" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "%'d fájl található" -msgstr[1] "%'d fájl található" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1341,16 +1343,16 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Biztosan meg akar nyitni %d dokumentumot?" -msgstr[1] "Biztosan meg akar nyitni %d dokumentumot?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Ez %d új ablakot fog megnyitni." -msgstr[1] "Ez %d új ablakot fog megnyitni." +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1376,8 +1378,8 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Biztosan meg akar nyitni %d mappát?" -msgstr[1] "Biztosan meg akar nyitni %d mappát?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1581,7 +1583,8 @@ msgid "View or monitor system log files" msgstr "Rendszernapló-fájlok megtekintése vagy megfigyelése" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1592,8 +1595,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "Megadja az indításkor megjelenítendő naplófájlt. Az alapértelmezett érték " "vagy a /var/adm/messages vagy a /var/log/messages, az operációs rendszertől " @@ -1999,9 +2002,11 @@ #: mate-dictionary/data/mate-dictionary.desktop.in.in:4 msgid "Check word definitions and spellings in an online dictionary" -msgstr "Szavak meghatározásainak és helyesírásának keresése online szótárakban" +msgstr "" +"Szavak meghatározásainak és helyesírásának keresése online szótárakban" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -2013,8 +2018,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2738,8 +2743,8 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Egy meghatározás található" -msgstr[1] "%d meghatározás található" +msgstr[0] "" +msgstr[1] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -3045,7 +3050,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Az asztal vagy egyedi ablakok képeinek mentése" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3103,8 +3109,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"A szegély külső oldalához adandó hatás. Lehetséges értékek: " -"„shadow” (árnyék), „none” (nincs), és „border” (szegély)." +"A szegély külső oldalához adandó hatás. Lehetséges értékek: „shadow” " +"(árnyék), „none” (nincs), és „border” (szegély)." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3242,8 +3248,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Nem megfelelő paraméterek: a --clipboard és az --interactive parancssori " "paraméterek ne használhatóak egyszerre.\n" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/hy.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/hy.gmo differ diff -Nru mate-utils-1.26.0/po/hy.po mate-utils-1.26.1/po/hy.po --- mate-utils-1.26.0/po/hy.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/hy.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,24 +2,24 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2018 -# Avag Sayan , 2020 +# Stefano Karapetsas , 2021 # Siranush , 2021 -# +# Avag Sayan , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Siranush , 2021\n" -"Language-Team: Armenian (https://www.transifex.com/mate/teams/13566/hy/)\n" -"Language: hy\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Avag Sayan , 2021\n" +"Language-Team: Armenian (https://app.transifex.com/mate/teams/13566/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -31,7 +31,8 @@ msgid "Check folder sizes and available disk space" msgstr "Ստուգեք թղթապանակի չափերը և մատչելի սկավառակի տարածությունը" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -217,8 +218,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -322,7 +323,8 @@ #: baobab/src/baobab.c:1276 msgid "Without mount points disk usage cannot be analyzed." -msgstr "Առանց սկավառակի միավորների տեղադրման օգտագործումը չի կարող վերլուծվել։" +msgstr "" +"Առանց սկավառակի միավորների տեղադրման օգտագործումը չի կարող վերլուծվել։" #: baobab/src/baobab-chart.c:204 msgid "Maximum depth" @@ -572,8 +574,8 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"Այս ծրագիրը հանդիսանում է ազատ ծրագրային ապահովում. Դուք կարող եք վերաբաշխել " -"և/կամ ձեւափոխել այն՝ համաձայն GNU Համընդհանուր Հանրային Արտոնագրի " +"Այս ծրագիրը հանդիսանում է ազատ ծրագրային ապահովում. Դուք կարող եք վերաբաշխել" +" և/կամ ձեւափոխել այն՝ համաձայն GNU Համընդհանուր Հանրային Արտոնագրի " "պայմանների, ինչպես հրապարակվել է Ազատ Ծրագրային Ապահովության Հիմնադրամի " "կողմից, կամ տարբերակ 2 լիցենզիայի, կամ (ձեր ընտրությամբ) ցանկացած ավելի ուշ " "տարբերակը։ " @@ -594,8 +596,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -615,7 +617,7 @@ #: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" -msgstr "թարգմանչի կրեդիտներ" +msgstr "թարգմանչի երախտիք" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -639,16 +641,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Դասավորել փաստաթղթերն ու պանակները ըստ անվան կամ պարունակության" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -684,13 +687,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Այս ստեղնը սահմանում է որոնման գործիքի ուղղին կբացառի արագ որոնումը։ Հատուկ " -"նշաններն '*' և '?' աջակցվում են։ Նախնական արժեքներն են՝ /mnt/*, /media/*, /" -"dev/*, /tmp/*, /proc/*, և /var/*։" +"նշաններն '*' և '?' աջակցվում են։ Նախնական արժեքներն են՝ /mnt/*, /media/*, " +"/dev/*, /tmp/*, /proc/*, և /var/*։" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -713,13 +716,14 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Այս ստեղնը սահմանում է ուղղիների որոնման գործիքը կբացառի երկրորդ որոնումը, " "երբ կատարվում է արագ որոնում։ Երկրորդ փնտրումը օգտագործում է գտնելու հրաման " "ֆայլերի որոնման համար։ Երկրորդ որոնման նպատակն է գտնել ֆայլեր, որոնք չեն " -"ինդեքսավորվում։ Հատուկ նշանները՝ '*' և '? աջակցվում են։ Նախնական արժեքն է /." +"ինդեքսավորվում։ Հատուկ նշանները՝ '*' և '? աջակցվում են։ Նախնական արժեքն է " +"/." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -739,9 +743,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Այս ստեղնը սահմանում է պատուհանի լայնությունը և այն օգտագործվում է որոնման " "գործիքների չափը սեսիաների միջև։ -1 պարամետրը կսահմանի որոնման գործիքը " @@ -754,8 +758,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Այս ստեղնը սահմանում է պատուհանի բարձրությունը և այն օգտագործվում է որոնման " "գործիքների չափը սեսիաների միջև։ -1 պարամետրը կսահմանի որոնման գործիքը " @@ -785,8 +789,8 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"Այս ստեղնը սահմանվում է, եթե \"Contains the text\" որոնման տարբերակը ընտրված " -"է, երբ որոնման գործիք մեկնարկված է։" +"Այս ստեղնը սահմանվում է, եթե \"Contains the text\" որոնման տարբերակը ընտրված" +" է, երբ որոնման գործիք մեկնարկված է։" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" @@ -838,11 +842,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"Այս ստեղնը սահմանվում է, եթե \"Owned by group\" որոնման տարբերակը ընտրված է, " -"երբ որոնման գործիք մեկնարկված է։" +"Այս ստեղնը սահմանվում է, եթե \"Owned by group\" որոնման տարբերակը ընտրված է," +" երբ որոնման գործիք մեկնարկված է։" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" @@ -862,8 +866,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Այս ստեղնը սահմանվում է, եթե \"Name matches regular expression\" որոնման " "տարբերակը ընտրված է, երբ որոնման գործիք մեկնարկված է։" @@ -889,67 +893,67 @@ "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"Այս ստեղնը սահմանվում է, եթե \"Exclude other filesystems\" որոնման տարբերակը " -"ընտրված է, երբ որոնման գործիք մեկնարկված է։" +"Այս ստեղնը սահմանվում է, եթե \"Exclude other filesystems\" որոնման տարբերակը" +" ընտրված է, երբ որոնման գործիք մեկնարկված է։" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Ֆայլը վավեր չէ .աշխատանքային սեղան ֆայլ" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Չճանաչված աշխատանքային ֆայլի տարբերակ '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Գործարկում %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Ծրագիրը փաստաթուղթ չի ընդունում հրամանի տողում " -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Չճանաչված գործարկչի ընտրացանկ. %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Չի հաջողվել անցկացնել փաստաթղթի URI–ները աշխատաքային սեղանի մուտքի " "'Type=Link'–ին " -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Չգործարկվող տարր" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Անջատել ենթահամակարգի կառավարչի հետ կապը" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Պահպանված կոնֆիգուրացիա պարունակող ֆայլը նշել" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ՖԱՅԼ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Հ ատկորոշել ենթահամակարգի կառավարչի ID֊ն" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Սեսիայի կառավարման տարբերակներ․" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Ցույց տալ սեսիայի կառավարման ընտրացանկը" @@ -1113,7 +1117,8 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"Տեսակավորել ըստ ֆայլեր հետևյալ կերպ՝անուն, թղթապանակ, չափը, տեսակ կամ ամսաթիվ" +"Տեսակավորել ըստ ֆայլեր հետևյալ կերպ՝անուն, թղթապանակ, չափը, տեսակ կամ " +"ամսաթիվ" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1248,7 +1253,7 @@ #: gsearchtool/src/gsearchtool.c:2490 msgid "Date Modified" -msgstr "Փոփոխված ամսաթիվը" +msgstr "Ամսաթիվը փոփոխված է" #: gsearchtool/src/gsearchtool.c:2820 msgid "_Name contains:" @@ -1352,7 +1357,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:521 msgid "There is no installed viewer capable of displaying the document." -msgstr "Չկա տեղադրված արտապատկերման միջոց, որը կարող է ցուցադրելը փաստաթուղթը։" +msgstr "" +"Չկա տեղադրված արտապատկերման միջոց, որը կարող է ցուցադրելը փաստաթուղթը։" #: gsearchtool/src/gsearchtool-callbacks.c:543 #, c-format @@ -1565,7 +1571,8 @@ msgid "View or monitor system log files" msgstr "Դիտել կամ վերահսկել համակարգի log ֆայլերը" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1576,11 +1583,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Սահմանում է log ֆայլի ցուցադրման մեկնարկը։ Նախնականը /var/adm/messages կամ /" -"var/log/messages է, կախված ձեր օպերացիոն համակարգից։" +"Սահմանում է log ֆայլի ցուցադրման մեկնարկը։ Նախնականը /var/adm/messages կամ " +"/var/log/messages է, կախված ձեր օպերացիոն համակարգից։" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1987,7 +1994,8 @@ msgstr "" "Ստուգել բառի բացատրությունները և ուղղագրությունները առցանց բառարանի մեջ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1999,8 +2007,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2030,8 +2038,8 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"Նախնական անհատական տվյալների բազայի կամ մետատվյալների բազայի անունը բառարանի " -"աղբյուրի օգտագործման համար։ Բացականչությոն նշանը (\"!\") նշանակում է, որ " +"Նախնական անհատական տվյալների բազայի կամ մետատվյալների բազայի անունը բառարանի" +" աղբյուրի օգտագործման համար։ Բացականչությոն նշանը (\"!\") նշանակում է, որ " "բոլոր տվյալների բազաները ներկայացված բառարանի աղբյուրի մեջ պետք է փնտրվեն։ " #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 @@ -2063,7 +2071,8 @@ msgid "" "The name of the dictionary source used to retrieve the definitions of words." msgstr "" -"Բառարանի աղբյուրի անունը օգտագործված է բառարանի սահմանումները ստանալու համար։" +"Բառարանի աղբյուրի անունը օգտագործված է բառարանի սահմանումները ստանալու " +"համար։" #: mate-dictionary/data/thai.desktop.in:3 msgid "Thai" @@ -3035,7 +3044,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Պահպանել պատկերները ձեր աշխատասեղանին կամ առանձին պատուհաններում" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3093,8 +3103,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Էֆեկտը ավելացնել սահմանի սահմաններից դուրս։ Հնարավոր արժեքներն են \"shadow" -"\", \"none\", և \"border\"." +"Էֆեկտը ավելացնել սահմանի սահմաններից դուրս։ Հնարավոր արժեքներն են " +"\"shadow\", \"none\", և \"border\"." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3232,8 +3242,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3280,8 +3290,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"Պահպանված զավակ գործընթացը անսպասելիորոն ընդհատվել է։ Մենք չենք կարող էկրանի " -"նկարը գրել սկավառակի վրա։" +"Պահպանված զավակ գործընթացը անսպասելիորոն ընդհատվել է։ Մենք չենք կարող էկրանի" +" նկարը գրել սկավառակի վրա։" #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ia.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ia.gmo differ diff -Nru mate-utils-1.26.0/po/ia.po mate-utils-1.26.1/po/ia.po --- mate-utils-1.26.0/po/ia.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/ia.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,25 +2,25 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Tea Coba , 2018 -# Funkin, 2018 -# Guimarães Mello , 2019 -# SoftInterlingua <>, 2020 -# +# SoftInterlingua <>, 2021 +# Guimarães Mello , 2021 +# Funkin, 2021 +# Tea Coba , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: SoftInterlingua <>, 2020\n" -"Language-Team: Interlingua (https://www.transifex.com/mate/teams/13566/ia/)\n" -"Language: ia\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Tea Coba , 2021\n" +"Language-Team: Interlingua (https://app.transifex.com/mate/teams/13566/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -32,7 +32,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -216,8 +217,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -581,8 +582,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -626,16 +627,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -669,9 +671,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -693,8 +695,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -713,9 +715,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -725,8 +727,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -790,8 +792,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -808,8 +810,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -830,62 +832,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Le file non es un file .desktop valide" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Initiante %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1490,7 +1492,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1501,8 +1504,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1900,7 +1903,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1912,8 +1916,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2927,7 +2931,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3119,8 +3124,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/id.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/id.gmo differ diff -Nru mate-utils-1.26.0/po/id.po mate-utils-1.26.1/po/id.po --- mate-utils-1.26.0/po/id.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/id.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,33 +2,33 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# hpiece 8 , 2018 -# Anton Toni Agung , 2018 -# Muhammad Herdiansyah , 2018 -# Rania el-Amina , 2018 -# Ibnu Daru Aji, 2018 -# Rendiyono Wahyu Saputro , 2018 -# Kukuh Syafaat , 2018 -# Willy Sudiarto Raharjo , 2019 -# La Ode Muh. Fadlun Akbar , 2019 -# Chotibul Studio , 2020 -# Andika Triwidada , 2021 +# Muhammad Herdiansyah , 2021 +# Rendiyono Wahyu Saputro , 2021 +# Chotibul Studio , 2021 +# Ibnu Daru Aji, 2021 +# clefebvre , 2021 +# Kukuh Syafaat , 2021 # Stefano Karapetsas , 2021 -# +# Willy Sudiarto Raharjo , 2021 +# La Ode Muh. Fadlun Akbar , 2021 +# Anton Toni Agung , 2021 +# Triyan W. Nugroho , 2021 +# Andika Triwidada , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Indonesian (https://www.transifex.com/mate/teams/13566/id/)\n" -"Language: id\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Andika Triwidada , 2021\n" +"Language-Team: Indonesian (https://app.transifex.com/mate/teams/13566/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -40,7 +40,8 @@ msgid "Check folder sizes and available disk space" msgstr "Periksa ukuran folder dan ruang disk yang tersedia" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "MATE;periksa;disk;penggunaan;analisis;ukuran;ruang;bebas;" @@ -55,7 +56,7 @@ #: mate-dictionary/src/gdict-window.c:1262 #: mate-screenshot/data/mate-screenshot.ui:41 msgid "_Help" -msgstr "_Bantuan" +msgstr "B_antuan" #: baobab/data/baobab-dialog-scan-props.ui:48 logview/src/logview-window.c:829 #: mate-dictionary/src/gdict-window.c:1273 @@ -110,7 +111,7 @@ #: baobab/data/baobab-main-window.ui:108 msgid "_Toolbar" -msgstr "_Bilah Alat" +msgstr "Bilah Ala_t" #: baobab/data/baobab-main-window.ui:115 msgid "St_atusbar" @@ -224,13 +225,14 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" -"Sesuai dengan namanya, Disk Usage Analyzer adalah utilitas grafis yang dapat " -"digunakan untuk melihat dan memonitor penggunaan disk dan struktur folder " -"Anda. Ini menampilkan ringkasan informasi dalam bagan peta pohon atau cincin." +"Sesuai dengan namanya, Disk Usage Analyzer adalah utilitas grafis yang dapat" +" digunakan untuk melihat dan memonitor penggunaan disk dan struktur folder " +"Anda. Ini menampilkan ringkasan informasi dalam bagan peta pohon atau " +"cincin." #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 msgid "" @@ -433,7 +435,8 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." msgstr "" -"Tak Bisa Menyambung ke Server. Anda mesti memasukkan sebuah nama bagi server." +"Tak Bisa Menyambung ke Server. Anda mesti memasukkan sebuah nama bagi " +"server." #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -462,7 +465,7 @@ #: baobab/src/baobab-remote-connect-dialog.c:506 msgid "_Folder:" -msgstr "_Folder" +msgstr "_Folder:" #: baobab/src/baobab-remote-connect-dialog.c:520 msgid "_User Name:" @@ -585,10 +588,10 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"Program ini adalah perangkat lunak bebas: Anda dapat menyebarluaskannya dan/" -"atau mengubahnya di bawah syarat dari GNU General Public License sebagaimana " -"dipublikasikan oleh Free Software Foundation, bisa Lisensi versi 2, atau " -"(sesuai pilihan Anda) sebarang versi setelahnya." +"Program ini adalah perangkat lunak bebas: Anda dapat menyebarluaskannya " +"dan/atau mengubahnya di bawah syarat dari GNU General Public License " +"sebagaimana dipublikasikan oleh Free Software Foundation, bisa Lisensi versi" +" 2, atau (sesuai pilihan Anda) sebarang versi setelahnya." #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -606,11 +609,11 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" -"Anda seharusnya menerima salinan GNU General Public License bersamaan dengan " -"program ini. Jika tidak, silakan kunjungi ." +"Anda seharusnya menerima salinan GNU General Public License bersamaan dengan" +" program ini. Jika tidak, silakan kunjungi ." #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" @@ -637,7 +640,8 @@ "Dirgita \n" "Tim MATE Indonesia \n" "Kukuh Syafaat , 2017.\n" -"Andika Triwidada , 2020, 2021." +"Andika Triwidada , 2020, 2021.\n" +"Triyan W. Nugroho , 2021." #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -661,9 +665,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" "MATE Search Tool adalah utilitas yang sederhana namun berguna yang " "memungkinkan Anda untuk mencari berkas atau folder pada sembarang sistem " @@ -678,7 +682,8 @@ "Tentukan lokasi dokumen atau folder pada komputer ini sesuai nama ataupun " "isinya" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -715,13 +720,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Kunci ini berisi path yang tidak akan dicari pada model pencarian cepat. " -"Kode '*' dan '?' dapat dipergunakan disini. Nilai awalnya adalah /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, dan /var/*." +"Kode '*' dan '?' dapat dipergunakan disini. Nilai awalnya adalah /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, dan /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -732,8 +737,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"Kunci ini menentukan apakah program pencari mematikan fungsi perintah 'find' " -"setelah melakukan pencarian cepat." +"Kunci ini menentukan apakah program pencari mematikan fungsi perintah 'find'" +" setelah melakukan pencarian cepat." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -744,8 +749,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Kunci ini berisi path yang tidak akan dicari pada model pencarian cepat " "tahap kedua. Pencarian tahap dua ini menggunakan perintah 'find' untuk " @@ -771,13 +776,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"Kunci ini menjelaskan lebar jendela, dan dipergunakan untuk mengingat ukuran " -"alat pencarian diantara sesi. Buat menjadi -1 akan menjadikan alat pencarian " -"menggunakan lebar default." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"Kunci ini menjelaskan lebar jendela, dan dipergunakan untuk mengingat ukuran" +" alat pencarian diantara sesi. Buat menjadi -1 akan menjadikan alat " +"pencarian menggunakan lebar default." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -786,8 +791,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Kunci ini menjelaskan tinggi jendela, dan dipergunakan untuk mengingat " "ukuran alat pencarian diantara sesi. Buat menjadi -1 akan menjadikan alat " @@ -825,8 +830,8 @@ "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"Kunci ini menentukan apakah pilihan \"Tanggal lebih muda dari\" dipilih saat " -"program pencari mulai dijalankan." +"Kunci ini menentukan apakah pilihan \"Tanggal lebih muda dari\" dipilih saat" +" program pencari mulai dijalankan." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" @@ -849,8 +854,8 @@ "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"Kunci ini menentukan apakah pilihan \"Ukuran terbesar\" dipilih saat program " -"pencari mulai dijalankan." +"Kunci ini menentukan apakah pilihan \"Ukuran terbesar\" dipilih saat program" +" pencari mulai dijalankan." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" @@ -870,8 +875,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Kunci ini menentukan apakah pilihan \"Dimiliki kelompok\" dipilih saat " "program pencari mulai dijalankan." @@ -881,8 +886,8 @@ "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"Kunci ini menentukan apakah pilihan \"Pemilik tidak diketahui\" dipilih saat " -"program pencari mulai dijalankan." +"Kunci ini menentukan apakah pilihan \"Pemilik tidak diketahui\" dipilih saat" +" program pencari mulai dijalankan." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" @@ -894,8 +899,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Kunci ini menentukan apakah pilihan \"Nama cocok dengan ekspresi reguler\" " "dipilih saat program pencari mulai dijalankan." @@ -905,8 +910,8 @@ "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"Kunci ini menentukan apakah pilihan \"Tampilkan berkas dan folder tersembunyi" -"\" dipilih saat program pencari mulai dijalankan." +"Kunci ini menentukan apakah pilihan \"Tampilkan berkas dan folder " +"tersembunyi\" dipilih saat program pencari mulai dijalankan." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" @@ -924,62 +929,62 @@ "Kunci ini menentukan apakah pilihan \"Tanpa sistem berkas lain\" dipilih " "saat program pencari mulai dijalankan." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" -msgstr "berkas .desktop tidak sah" +msgstr "Berkas bukanlah berkas .desktop yang sah" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Berkas desktop Versi '%s' tak dikenal" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Memulai %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Aplikasi tidak menerima dokumen pada baris perintah" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Opsi peluncuran tak dikenal: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Tidak dapat melewatkan URI dokumen pada entri desktop 'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Bukan butir yang dapat diluncurkan" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Menonaktifkan koneksi ke manajer sesi" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Nyatakan berkas yang memuat konfigurasi tersimpan" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "BERKAS" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Tentukan ID manajemen sesi" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opsi manajemen sesi:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Menampilkan opsi manajemen sesi" @@ -1189,8 +1194,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"Hasil pencarian mungkin keliru atau kadaluwarsa. Matikan fasilitas pencarian " -"cepat?" +"Hasil pencarian mungkin keliru atau kadaluwarsa. Matikan fasilitas pencarian" +" cepat?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1358,7 +1363,7 @@ #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Ini akan membuka %d jendela yang terpisah." +msgstr[0] "Ini akan membuka %d jendela terpisah." #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1437,7 +1442,7 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1299 msgid "Open Containing _Folder" -msgstr "Buka _Folder " +msgstr "Buka _Folder Yang Memuat" #: gsearchtool/src/gsearchtool-callbacks.c:1310 msgid "Copy _Path" @@ -1476,7 +1481,7 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 msgid "_Replace" -msgstr "Gant" +msgstr "Ganti" #: gsearchtool/src/gsearchtool-callbacks.c:1883 msgid "The document name you selected is a folder." @@ -1588,7 +1593,8 @@ msgid "View or monitor system log files" msgstr "Lihat atau pantau berkas log sistem" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "MATE;pantau;tilik;sistem;log;berkas;file;penampil log;" @@ -1599,11 +1605,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Tentukan berkas log yang dibuka saat program dijalankan. Biasanya bernilai/" -"var/adm/messages atau /var/log/messages bergantung pada sistem operasi." +"Tentukan berkas log yang dibuka saat program dijalankan. Biasanya " +"bernilai/var/adm/messages atau /var/log/messages bergantung pada sistem " +"operasi." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1642,8 +1649,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"Tentukan berkas log yang akan dibuka saat program dijalankan. Daftar default " -"dibuat dengan membaca /etc/syslog.conf." +"Tentukan berkas log yang akan dibuka saat program dijalankan. Daftar default" +" dibuat dengan membaca /etc/syslog.conf." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1896,7 +1903,7 @@ #: logview/src/logview-window.c:836 mate-dictionary/src/gdict-window.c:1279 msgid "Select _All" -msgstr "Pilih _Semua" +msgstr "Pilih Semu_a" #: logview/src/logview-window.c:836 msgid "Select the entire log" @@ -1920,7 +1927,7 @@ #: logview/src/logview-window.c:843 msgid "Zoom _Out" -msgstr "P_erkecil" +msgstr "P_erkecil Tampilan" #: logview/src/logview-window.c:843 msgid "Smaller text size" @@ -1949,7 +1956,7 @@ #: logview/src/logview-window.c:853 mate-dictionary/src/gdict-applet.c:1176 #: mate-dictionary/src/gdict-window.c:1314 msgid "_About" -msgstr "_Tentang" +msgstr "Tent_ang" #: logview/src/logview-window.c:853 msgid "Show the about dialog for the log viewer" @@ -1957,7 +1964,7 @@ #: logview/src/logview-window.c:858 msgid "_Statusbar" -msgstr "_Status panel" +msgstr "Bilah _Status" #: logview/src/logview-window.c:858 msgid "Show Status Bar" @@ -1965,7 +1972,7 @@ #: logview/src/logview-window.c:860 msgid "Side _Pane" -msgstr "Panel _Samping" +msgstr "_Panel Samping" #: logview/src/logview-window.c:860 msgid "Show Side Pane" @@ -1977,7 +1984,8 @@ #: logview/src/logview-window.c:862 msgid "Only show lines that match one of the given filters" -msgstr "Hanya tampilkan baris-baris yang cocok dengan penyaring yang diberikan" +msgstr "" +"Hanya tampilkan baris-baris yang cocok dengan penyaring yang diberikan" #: logview/src/logview-window.c:994 #, c-format @@ -2009,7 +2017,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Cari penjelasan dan pengejaan kata di dalam kamus online" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "MATE;kamus;aplet;tesaurus;ejaan;definisi;daring;" @@ -2021,14 +2030,14 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" "Kamus MATE mengizinkan Anda mencari kata dalam kamus daring. Itu datang " -"terprakonfigurasi dengan suatu daftar server Dict (RFC 2229), yang bisa Anda " -"tambahi sumber Anda sendiri, sambil Anda dapat memilih server tertentu untuk " -"kuiri tertentu." +"terprakonfigurasi dengan suatu daftar server Dict (RFC 2229), yang bisa Anda" +" tambahi sumber Anda sendiri, sambil Anda dapat memilih server tertentu " +"untuk kuiri tertentu." #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 msgid "Dictionary Applet Factory" @@ -2307,7 +2316,7 @@ #: mate-dictionary/libgdict/gdict-source.c:257 msgid "Description" -msgstr "Deskripsi:" +msgstr "Deskripsi" #: mate-dictionary/libgdict/gdict-source.c:258 msgid "The description of this dictionary source" @@ -2762,7 +2771,7 @@ #: mate-dictionary/src/gdict-window.c:1261 msgid "_Go" -msgstr "_Jalan" +msgstr "_Ke" #: mate-dictionary/src/gdict-window.c:1265 #: mate-screenshot/data/mate-screenshot.ui:58 @@ -2940,7 +2949,7 @@ #: mate-dictionary/data/mate-dictionary-preferences.ui:216 msgid "Print" -msgstr "Cetak" +msgstr "Print" #: mate-dictionary/data/mate-dictionary-source.ui:38 msgid "_Description:" @@ -3050,10 +3059,10 @@ "system clipboard or save them in Portable Network Graphics (.png) image " "format." msgstr "" -"Cuplikan Layar MATE adalah utilitas yang mampu menangkap cuplikan layar dari " -"desktop atau jendela aplikasi Anda. Anda bisa memilih untuk menyalin pada " -"papan klip sistem atau menyimpannya pada format Portable Network Graphics (." -"png)." +"Cuplikan Layar MATE adalah utilitas yang mampu menangkap cuplikan layar dari" +" desktop atau jendela aplikasi Anda. Anda bisa memilih untuk menyalin pada " +"papan klip sistem atau menyimpannya pada format Portable Network Graphics " +"(.png)." #: mate-screenshot/data/mate-screenshot.desktop.in:3 #: mate-screenshot/src/mate-screenshot.c:519 @@ -3065,7 +3074,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Simpan gambar dari desktop atau suatu jendela anda" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "MATE;cuplikan layar;tangkapan layar;snapshot;desktop;jendela;citra;" @@ -3123,8 +3133,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Efek yang ditambahkan diluar batas tepi. Nilai yang mungkin adalah \"shadow" -"\", \"none\", dan \"border\"." +"Efek yang ditambahkan diluar batas tepi. Nilai yang mungkin adalah " +"\"shadow\", \"none\", dan \"border\"." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3262,8 +3272,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Opsi yang bertentangan: --clipboard dan --interactive tidak boleh dipakai " "bersama.\n" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ie.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ie.gmo differ diff -Nru mate-utils-1.26.0/po/ie.po mate-utils-1.26.1/po/ie.po --- mate-utils-1.26.0/po/ie.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/ie.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# clefebvre , 2019 +# clefebvre , 2021 # Caarmi, 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Caarmi, 2021\n" -"Language-Team: Interlingue (https://www.transifex.com/mate/teams/13566/ie/)\n" -"Language: ie\n" +"Language-Team: Interlingue (https://app.transifex.com/mate/teams/13566/ie/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ie\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "Controlar grandores de fólderes e disc-spacie disponibil" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -266,8 +267,8 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d element" -msgstr[1] "%5d elementes" +msgstr[0] "" +msgstr[1] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -457,7 +458,7 @@ #: baobab/src/baobab-remote-connect-dialog.c:592 msgid "Connect to Server" -msgstr "Connexer a un servitore" +msgstr "Connexer a servitore" #: baobab/src/baobab-remote-connect-dialog.c:608 msgid "Service _type:" @@ -589,8 +590,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -610,7 +611,7 @@ #: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" -msgstr "OIS , 2017" +msgstr "OIS , 2020" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -634,9 +635,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -644,7 +645,8 @@ msgstr "" "Trovar documentes e fólderes de ti-ci computator per nómine o contenete" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -678,9 +680,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -702,8 +704,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -722,9 +724,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -734,8 +736,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -799,8 +801,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -817,8 +819,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -839,63 +841,63 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Li file ne esset un file .desktop valid" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Ínconosset version '%s' de file desktop" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Startante %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Li application ne accepte documentes in li linea de comandes" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Ínreconosset option de lansa: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Es impossibil passar URIs de documentes a un element desktop de 'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Elemente ne es lansabil" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Despermisser conexion al gerentiator de session" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Provider un file contenent un salvat configuration" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Monstrar ID de gerentie de session" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Optiones de gerentie de session:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Monstrar optiones de gerentie de session" @@ -1034,15 +1036,15 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "%'d file trovat" -msgstr[1] "%'d files trovat" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "%'d file trovat" -msgstr[1] "%'d files trovat" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1268,16 +1270,16 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Esque vu vole aperter %d document?" -msgstr[1] "Esque vu vole aperter %d documentes?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "To va aperter %d distint fenestre." -msgstr[1] "To va aperter %d distint fenestres." +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1406,7 +1408,7 @@ #: gsearchtool/src/gsearchtool-support.c:427 msgid "today at %-I:%M %p" -msgstr "hodie ye %H:%M:%S" +msgstr "hodie ye %H:%M" #: gsearchtool/src/gsearchtool-support.c:429 msgid "yesterday at %-I:%M %p" @@ -1414,7 +1416,7 @@ #: gsearchtool/src/gsearchtool-support.c:431 msgid "%A, %B %-d %Y at %-I:%M:%S %p" -msgstr "%A, %-d %B %Y ye %H:%M:%S" +msgstr "%A %-d %B %Y ye %H:%M:%S" #: gsearchtool/src/gsearchtool-support.c:478 msgid "link (broken)" @@ -1506,7 +1508,8 @@ msgid "View or monitor system log files" msgstr "Vider o monitorar diariums del sistema" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1517,8 +1520,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1593,7 +1596,7 @@ #: logview/data/logview-filter.ui:220 msgid "Background:" -msgstr "Funde:" +msgstr "Fundes:" #: logview/data/logview-filter.ui:274 msgid "Hide" @@ -1691,7 +1694,7 @@ #: logview/src/logview-loglist.c:314 msgid "Loading..." -msgstr "Cargante..." +msgstr "Carga..." #: logview/src/logview-main.c:48 #, c-format @@ -1916,7 +1919,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1928,8 +1932,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2556,7 +2560,7 @@ #: mate-dictionary/src/gdict-applet.c:1167 #: mate-screenshot/data/mate-screenshot.ui:109 msgid "_Save" -msgstr "_Salvar" +msgstr "_Gardar" #: mate-dictionary/src/gdict-applet.c:1170 msgid "Preferences" @@ -2641,8 +2645,8 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Un definition esset trovat" -msgstr[1] "%d definitiones esset trovat" +msgstr[0] "" +msgstr[1] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -2948,7 +2952,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3140,8 +3145,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Conflicte de optiones: --clipboard e --interactive ne deve esser usat " "simultanmen.\n" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ig.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ig.gmo differ diff -Nru mate-utils-1.26.0/po/ig.po mate-utils-1.26.1/po/ig.po --- mate-utils-1.26.0/po/ig.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/ig.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2018 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Igbo (https://www.transifex.com/mate/teams/13566/ig/)\n" -"Language: ig\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Igbo (https://app.transifex.com/mate/teams/13566/ig/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ig\n" "Plural-Forms: nplurals=1; plural=0;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -577,8 +578,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -622,16 +623,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -665,9 +667,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -689,8 +691,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -709,9 +711,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -721,8 +723,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -786,8 +788,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -804,8 +806,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -826,62 +828,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Na-ebido %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Ọ bụghị ihenhọrọ dị̄ mbubata" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1481,7 +1483,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1492,8 +1495,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1891,7 +1894,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1903,8 +1907,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2917,7 +2921,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3109,8 +3114,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 diff -Nru mate-utils-1.26.0/po/insert-header.sin mate-utils-1.26.1/po/insert-header.sin --- mate-utils-1.26.0/po/insert-header.sin 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/po/insert-header.sin 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -# Sed script that inserts the file called HEADER before the header entry. -# -# Copyright (C) 2001 Free Software Foundation, Inc. -# Written by Bruno Haible , 2001. -# This file is free software; the Free Software Foundation gives -# unlimited permission to use, copy, distribute, and modify it. -# -# At each occurrence of a line starting with "msgid ", we execute the following -# commands. At the first occurrence, insert the file. At the following -# occurrences, do nothing. The distinction between the first and the following -# occurrences is achieved by looking at the hold space. -/^msgid /{ -x -# Test if the hold space is empty. -s/m/m/ -ta -# Yes it was empty. First occurrence. Read the file. -r HEADER -# Output the file's contents by reading the next line. But don't lose the -# current line while doing this. -g -N -bb -:a -# The hold space was nonempty. Following occurrences. Do nothing. -x -:b -} Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/is.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/is.gmo differ diff -Nru mate-utils-1.26.0/po/is.po mate-utils-1.26.1/po/is.po --- mate-utils-1.26.0/po/is.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/is.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2019 -# Sveinn í Felli , 2019 -# +# Sveinn í Felli , 2021 +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Sveinn í Felli , 2019\n" -"Language-Team: Icelandic (https://www.transifex.com/mate/teams/13566/is/)\n" -"Language: is\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Icelandic (https://app.transifex.com/mate/teams/13566/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -579,8 +580,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -627,16 +628,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Staðsetja skrár og möppur á þessari tölvu eftir nafni eða innihaldi" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -670,9 +672,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -694,8 +696,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -714,9 +716,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -726,8 +728,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -791,8 +793,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -809,8 +811,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -831,62 +833,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Skrá er ekki gild .desktop skrá" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Óþekkt desktop skráarútgáfa ‚%s‘" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Ræsi %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Hugbúnaður tekur ekki á móti skrám á skipanalínunni" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Þessi valmöguleiki er ekki þekktur: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Get ekki látið veffang ganga til ‚Type=Link‘" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Þetta er ekki ræsanlegur íhlutur" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Afvirkja tengingu við setustjóra" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Veldu skrá sem inniheldur vistaðar stillingar" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "SKRÁ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Tilgreindu setustjórnunarkenni" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "Auðkenni" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Valkostir við að sjá um setu:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Sýna valkosti setustýringar" @@ -1491,7 +1493,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1502,8 +1505,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1901,7 +1904,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1913,8 +1917,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2928,7 +2932,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3120,8 +3125,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/it.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/it.gmo differ diff -Nru mate-utils-1.26.0/po/it.po mate-utils-1.26.1/po/it.po --- mate-utils-1.26.0/po/it.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/it.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,31 +2,31 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Emanuele Antonio Faraone , 2018 -# Simone Centonze , 2018 -# Dario Di Nucci , 2018 -# Giuseppe Pignataro , 2019 -# Marco Z. , 2019 -# Enrico B. , 2020 -# Alessandro Volturno , 2021 +# Marco Z. , 2021 +# Marco Bartolucci, 2021 # Stefano Karapetsas , 2021 -# Marco Bartolucci , 2021 -# +# Dario Di Nucci , 2021 +# Giuseppe Pignataro , 2021 +# Enrico B. , 2021 +# Emanuele Antonio Faraone , 2021 +# 6d1bb5d393520b00f70a137a58397ea1_b5ba1e2 <22cc5e560e0d5b6554809bfb51b90403_882095>, 2021 +# Alessandro Volturno , 2022 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Marco Bartolucci , 2021\n" -"Language-Team: Italian (https://www.transifex.com/mate/teams/13566/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Alessandro Volturno , 2022\n" +"Language-Team: Italian (https://app.transifex.com/mate/teams/13566/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: it\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -37,7 +37,8 @@ msgid "Check folder sizes and available disk space" msgstr "Controlla la dimensione delle cartelle e lo spazio disco disponibile" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "MATE;check;disk;usage;analyze;size;space;" @@ -52,7 +53,7 @@ #: mate-dictionary/src/gdict-window.c:1262 #: mate-screenshot/data/mate-screenshot.ui:41 msgid "_Help" -msgstr "_Aiuto" +msgstr "Aiuto" #: baobab/data/baobab-dialog-scan-props.ui:48 logview/src/logview-window.c:829 #: mate-dictionary/src/gdict-window.c:1273 @@ -90,7 +91,7 @@ #: baobab/data/baobab-main-window.ui:74 logview/src/logview-window.c:822 #: mate-dictionary/src/gdict-window.c:1259 msgid "_Edit" -msgstr "_Modifica" +msgstr "Modifica" #: baobab/data/baobab-main-window.ui:80 msgid "_Expand All" @@ -141,7 +142,7 @@ #: baobab/data/baobab-main-window.ui:249 msgid "Scan Filesystem" -msgstr "Scansione fil Fle system" +msgstr "Scansione il file system" #: baobab/data/baobab-main-window.ui:265 msgid "Scan a folder" @@ -218,7 +219,7 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:37 msgid "Which type of chart should be displayed." -msgstr "Che tipo dl grafico che debba essere mostrato." +msgstr "Che tipo dl grafico deve essere mostrato." #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:8 msgid "A disk usage analyzing tool for MATE Desktop" @@ -227,14 +228,14 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" "Come indica il nome, l'Analizzatore di utilizzo del disco di MATE è una " "utility grafica per visualizzare l'utilizzo del disco e la struttura delle " -"cartelle. Mostra informazioni riassuntive sotto forma di grafico ad anello o " -"ad albero." +"cartelle. Mostra informazioni riassuntive sotto forma di grafico ad anello o" +" ad albero." #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 msgid "" @@ -289,6 +290,7 @@ msgid_plural "%5d items" msgstr[0] "%5d oggetto" msgstr[1] "%5d oggetti" +msgstr[2] "%5d oggetti" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -519,7 +521,7 @@ #: baobab/src/baobab-treeview.c:274 msgid "Contents" -msgstr "Sommario" +msgstr "Contenuti" #: baobab/src/baobab-utils.c:105 msgid "Select Folder" @@ -557,8 +559,7 @@ #: baobab/src/baobab-utils.c:381 msgid "There is no installed viewer capable of displaying the folder." -msgstr "" -"Non è installato alcun visualizzatore capace di visualizzare la cartella." +msgstr "Non è installato alcun visualizzatore capace di mostrare la cartella." #: baobab/src/baobab-utils.c:448 #, c-format @@ -581,7 +582,7 @@ #: baobab/src/callbacks.c:74 logview/src/logview-about.h:44 #: mate-dictionary/src/gdict-about.c:49 msgid "MATE Documentation Team" -msgstr "Team Documentazione di MATE" +msgstr "Team della documentazione MATE" #: baobab/src/callbacks.c:79 logview/src/logview-about.h:49 #: mate-dictionary/src/gdict-about.c:57 @@ -592,8 +593,8 @@ "any later version." msgstr "" "Questo programma è software libero, lo si può redistribuire e/o modificare " -"in base ai termini della Licenza Pubblica Generale GNU come pubblicata dalla " -"Free Software Foundation versione 2 o (a proprio piacimento) ogni versione " +"in base ai termini della Licenza Pubblica Generale GNU come pubblicata dalla" +" Free Software Foundation versione 2 o (a proprio piacimento) ogni versione " "successiva." #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 @@ -604,20 +605,20 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"Questo programma è distribuito nella speranza che sia utile, ma SENZA ALCUNA " -"GARANZIA, comprese anche la garanzia implicita di VENDIBILITÀ e di " +"Questo programma è distribuito nella speranza che sia utile, ma SENZA ALCUNA" +" GARANZIA, comprese anche la garanzia implicita di VENDIBILITÀ e di " "ADEGUATEZZA A UN PARTICOLARE SCOPO. Vedere la Licenza Pubblica Generale GNU " "per maggiori dettagli." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" -"Si dovrebbe aver ricevuto una copia della licenza GNU General Public License " -"insieme a questo programma. In caso contrario, vedere qui ." +"Si dovrebbe aver ricevuto una copia della licenza GNU General Public License" +" insieme a questo programma. In caso contrario, vedere qui " +"." #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" @@ -638,7 +639,7 @@ #: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" -msgstr " Alessandro Volturno, 2020" +msgstr "Alessandro Volturno, 2021" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -662,22 +663,24 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" "Strumento di ricerca MATE è un'applicazione semplice ma potente, che vi " -"permette di cercare file e cartelle su qualsiasi file system montato. La sua " -"interfaccia permette di accedere istantaneamente ad un'ampia varietà di " +"permette di cercare file e cartelle su qualsiasi file system montato. La sua" +" interfaccia permette di accedere istantaneamente ad un'ampia varietà di " "opzioni di ricerca, come il testo contenuto all'interno di un file, una " "specifica proprietà, la data di modifica, la dimensione del file, " "l'esclusione di cartelle, ecc." #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" -msgstr "Individua documenti e cartelle su questo computer per nome o contenuto" +msgstr "" +"Individua documenti e cartelle su questo computer per nome o contenuto" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -715,9 +718,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Questa chiave imposta i percorsi che lo strumento di ricerca escluderà da " "una ricerca rapida. I metacaratteri '*' e '?' sono supportati. I valori " @@ -725,7 +728,7 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" -msgstr "Disabilita il secondo passaggio della ricerca rapida" +msgstr "Disabilita il secondo passaggio di ricerca rapida" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:25 msgid "" @@ -744,8 +747,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Questa chiave imposta i percorsi che lo strumento di ricerca esclude da un " "secondo passaggio di ricerca veloce. Il secondo passaggio usa il comando " @@ -771,9 +774,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Questa chiave definisce la larghezza della finestra ed è utilizzata per " "ricordare la dimensione dello strumento di ricerca tra le sessioni. " @@ -787,8 +790,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Questa chiave definisce l'altezza della finestra ed è utilizzata per " "ricordare la dimensione dello strumento di ricerca tra le sessioni. " @@ -861,8 +864,8 @@ "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"Questa chiave determina se l'opzione di ricerca \"Il file è vuoto\" è attiva " -"quando viene avviato lo strumento di ricerca." +"Questa chiave determina se l'opzione di ricerca \"Il file è vuoto\" è attiva" +" quando viene avviato lo strumento di ricerca." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" @@ -874,8 +877,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Questa chiave determina se l'opzione di ricerca \"Posseduto dal gruppo\" è " "attiva quando viene avviato lo strumento di ricerca." @@ -898,8 +901,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Questa chiave determina se l'opzione di ricerca \"Il nome corrisponde " "all'espressione regolare\" è attiva quando viene avviato lo strumento di " @@ -926,69 +929,69 @@ "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"Questa chiave determina se l'opzione di ricerca \"Escludi altri file system" -"\" è attiva quando viene avviato lo strumento di ricerca." +"Questa chiave determina se l'opzione di ricerca \"Escludi altri file " +"system\" è attiva quando viene avviato lo strumento di ricerca." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" -msgstr "Il file non è un file .desktop valido" +msgstr "Non è un file .desktop valido" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" -msgstr "Versione «%s» del file desktop non riconosciuta" +msgstr "Versione '%s' del file desktop non riconosciuta" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" -msgstr "Avvio di «%s»" +msgstr "Avvio di %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "L'applicazione non accetta documenti sulla riga di comando" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" -msgstr "Opzione di lancio non riconosciuta: %d" +msgstr "Opzione di avvio non riconosciuta: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -"Impossibile passare URI di documenti a un elemento desktop con " -"\"Tipo=Collegamento\"" +"Impossibile passare percorsi URI di documenti a un elemento desktop con " +"\"Type=Link\"" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" -msgstr "Non è un oggetto lanciabile" +msgstr "Non è un oggetto avviabile" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Disabilita la connessione al gestore di sessione" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Specifica il file contenente la configurazione salvata" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Specifica l'ID di gestione della sessione" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" -msgstr "Opzioni di gestione sessione:" +msgstr "Opzioni di gestione della sessione:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" -msgstr "Mostra le opzioni di gestione sessione" +msgstr "Mostra le opzioni di gestione della sessione" #: gsearchtool/src/gsearchtool.c:82 msgid "Contains the _text" @@ -1065,7 +1068,7 @@ #: gsearchtool/src/gsearchtool.c:160 msgid "PATH" -msgstr "PERCORSO" +msgstr "PATH" #: gsearchtool/src/gsearchtool.c:161 msgid "VALUE" @@ -1125,15 +1128,17 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "%'d file trovato" -msgstr[1] "%'d file trovati" +msgstr[0] "Trovato %'d File" +msgstr[1] "Trovati %'d File " +msgstr[2] "Trovati %'d File " #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "%'d file trovato" -msgstr[1] "%'d file trovati" +msgstr[0] "trovato %'d file" +msgstr[1] " trovati %'d file" +msgstr[2] " trovati %'d file" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1274,7 +1279,7 @@ #: gsearchtool/src/gsearchtool.c:2369 msgid "List View" -msgstr "Vista a elenco" +msgstr "Vista ad elenco" #: gsearchtool/src/gsearchtool.c:2429 #: mate-dictionary/libgdict/gdict-source.c:243 @@ -1365,16 +1370,18 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Sei sicuro di voler aprire %d documento?" -msgstr[1] "Sei sicuro di voler aprire %d documenti?" +msgstr[0] "Siete sicuri di voler aprire %d documento?" +msgstr[1] "Siete sicuri di voler aprire %d documenti?" +msgstr[2] "Siete sicuri di voler aprire %d documenti?" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Verrà aperta %d finestra separata." +msgstr[0] "Verrà aperta %d finestra separate." msgstr[1] "Verranno aperte %d finestre separate." +msgstr[2] "Verranno aperte %d finestre separate." #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1399,8 +1406,9 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Aprire veramente %d cartella?" -msgstr[1] "Aprire veramente %d cartelle?" +msgstr[0] "Siete sicuri di voler aprire %d cartella?" +msgstr[1] "Siete sicuri di voler aprire %d cartelle?" +msgstr[2] "Siete sicuri di voler aprire %d cartelle?" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1435,7 +1443,7 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1143 #: gsearchtool/src/gsearchtool-callbacks.c:1169 msgid "_Open" -msgstr "_Apri" +msgstr "Apri" #: gsearchtool/src/gsearchtool-callbacks.c:1199 #, c-format @@ -1513,7 +1521,7 @@ #: gsearchtool/src/gsearchtool-support.c:431 msgid "%A, %B %-d %Y at %-I:%M:%S %p" -msgstr "%A, %B %-d %Y alle %-I:%M:%S %p" +msgstr "%A, %-d %B %Y alle %-H.%M.%S" #: gsearchtool/src/gsearchtool-support.c:478 msgid "link (broken)" @@ -1605,7 +1613,8 @@ msgid "View or monitor system log files" msgstr "Visualizza o monitora i file di registro di sistema" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "MATE;monitor;view;system;log;files;logviewer;" @@ -1616,8 +1625,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "Specifica il file di registro da aprire all'avvio. L'impostazione " "predefinita può essere /var/log/messages o /var/adm/messages, a seconda del " @@ -1634,7 +1643,8 @@ msgstr "" "Specifica la dimensione del carattere a larghezza fissa utilizzato per " "visualizzare il registro nella vista ad albero principale. Il valore " -"predefinito è preso dalla dimensione predefinita del carattere del terminale." +"predefinito è preso dalla dimensione predefinita del carattere del " +"terminale." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1643,8 +1653,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:16 msgid "Specifies the height of the log viewer main window in pixels." msgstr "" -"Specifica l'altezza in pixel della finestra principale del visualizzatore di " -"registro." +"Specifica l'altezza in pixel della finestra principale del visualizzatore di" +" registro." #: logview/data/org.mate.system-log.gschema.xml.in:20 msgid "Width of the main window in pixels" @@ -1653,8 +1663,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:21 msgid "Specifies the width of the log viewer main window in pixels." msgstr "" -"Specifica la larghezza in pixel della finestra principale del visualizzatore " -"di registro." +"Specifica la larghezza in pixel della finestra principale del visualizzatore" +" di registro." #: logview/data/org.mate.system-log.gschema.xml.in:25 msgid "Log files to open up on startup" @@ -1679,7 +1689,7 @@ #: logview/data/logview-filter.ui:32 mate-disk-image-mounter/src/main.c:124 #: mate-screenshot/data/mate-screenshot.ui:92 msgid "_Cancel" -msgstr "A_nnulla" +msgstr "Annulla" #: logview/data/logview-filter.ui:48 msgid "_Apply" @@ -1766,11 +1776,11 @@ #: logview/src/logview-findbar.c:187 msgid "Find previous occurrence of the search string" -msgstr "Trova la precedente occorrenza della stringa di ricerca" +msgstr "Trova l'occorrenza precedente della stringa di ricerca" #: logview/src/logview-findbar.c:192 msgid "Find Next" -msgstr "Trova successiva" +msgstr "Trova successivo" #: logview/src/logview-findbar.c:195 msgid "Find next occurrence of the search string" @@ -1883,7 +1893,9 @@ #: logview/src/logview-window.c:778 msgid "View, monitor or analyze your system logs in a gradual manner." -msgstr "Visiona, monitora o analizza il vostro file system in modo graduale." +msgstr "" +"Visiona, monitora o analizza il registro del vostro sistema in modo " +"graduale." #: logview/src/logview-window.c:821 mate-dictionary/src/gdict-window.c:1258 msgid "_File" @@ -1907,7 +1919,7 @@ #: logview/src/logview-window.c:831 msgid "_Quit" -msgstr "_Esci" +msgstr "Esci" #: logview/src/logview-window.c:831 msgid "Quit the log viewer" @@ -1939,7 +1951,7 @@ #: logview/src/logview-window.c:841 msgid "Zoom _In" -msgstr "Aum_enta ingrandimento" +msgstr "Aumenta _ingrandimento" #: logview/src/logview-window.c:841 msgid "Bigger text size" @@ -1947,7 +1959,7 @@ #: logview/src/logview-window.c:843 msgid "Zoom _Out" -msgstr "Rid_uci ingrandimento" +msgstr "Riduci ingrandiment_o" #: logview/src/logview-window.c:843 msgid "Smaller text size" @@ -1976,7 +1988,7 @@ #: logview/src/logview-window.c:853 mate-dictionary/src/gdict-applet.c:1176 #: mate-dictionary/src/gdict-window.c:1314 msgid "_About" -msgstr "_Informazioni" +msgstr "Informazioni" #: logview/src/logview-window.c:853 msgid "Show the about dialog for the log viewer" @@ -1992,7 +2004,7 @@ #: logview/src/logview-window.c:860 msgid "Side _Pane" -msgstr "Riquadro _laterale" +msgstr "Pannello _laterale" #: logview/src/logview-window.c:860 msgid "Show Side Pane" @@ -2036,7 +2048,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Controlla definizioni e ortografia di parole su un dizionario on-line" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" @@ -2048,13 +2061,13 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" "Dizionario di MATE consente di cercare le parole nei dizionari on-line. " -"Viene fornito preconfigurato con una lista di server Dict (RFC 2229) a cui è " -"possibile aggiungere le proprie fonti ed è anche possibile selezionare " +"Viene fornito preconfigurato con una lista di server Dict (RFC 2229) a cui è" +" possibile aggiungere le proprie fonti ed è anche possibile selezionare " "server specifici per ricerche particolari." #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 @@ -2083,10 +2096,10 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"Nome del database individuale predefinito o del meta-database da utilizzare " -"su una sorgente del dizionario. Un punto esclamativo (\"!\") specifica che " -"debbano essere cercati tutti i database presenti in una sorgente di " -"dizionario" +"Il nome del database individuale o del meta-database predefiniti da " +"utilizzare su una sorgente dizionario. Un punto esclamativo (\"!\") " +"specifica che devono essere consultati tutti i database presenti in una " +"sorgente dizionario" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2097,9 +2110,9 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"Il nome della strategia di ricerca predefinita da utilizzare in una sorgente " -"dizionario, se disponibile. La strategia predefinita è «exact», che trova le " -"parole esattamente uguali." +"Il nome della strategia di ricerca predefinita da utilizzare in una sorgente" +" dizionario, se disponibile. La strategia predefinita è «exact», che trova " +"le parole esattamente uguali." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2169,7 +2182,8 @@ #, c-format msgid "Lookup failed for hostname '%s': no suitable resources found" msgstr "" -"Ricerca fallita per il nome host «%s»: nessuna risorsa adeguata trovata" +"Ricerca fallita per il nome host '%s': non è stata trovata nessuna risorsa " +"adeguata" #: mate-dictionary/libgdict/gdict-client-context.c:1083 #, c-format @@ -2326,7 +2340,7 @@ #: mate-dictionary/libgdict/gdict-source.c:229 msgid "Filename" -msgstr "Nome file" +msgstr "Nome del file" #: mate-dictionary/libgdict/gdict-source.c:230 msgid "The filename used by this dictionary source" @@ -2387,7 +2401,8 @@ #: mate-dictionary/libgdict/gdict-source.c:436 #, c-format msgid "No '%s' group found inside the dictionary source definition" -msgstr "Nessun gruppo «%s» trovato nella definizione della sorgente dizionario" +msgstr "" +"Nessun gruppo «%s» trovato nella definizione della sorgente dizionario" #: mate-dictionary/libgdict/gdict-source.c:452 #: mate-dictionary/libgdict/gdict-source.c:476 @@ -2790,8 +2805,9 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Una definizione trovata" -msgstr[1] "%d definizioni trovate" +msgstr[0] "trovata una definizione" +msgstr[1] "trovate %d definizioni " +msgstr[2] "trovate %d definizioni " #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -2889,7 +2905,7 @@ #: mate-dictionary/src/gdict-window.c:1304 msgid "Dictionary Sources" -msgstr "Sorgenti dizionario" +msgstr "Sorgenti del dizionario" #: mate-dictionary/src/gdict-window.c:1306 msgid "Available _Databases" @@ -3103,7 +3119,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Salva immagini della propria scrivania o singole finestre" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "MATE;screenshot;snapshot;desktop;window;image;" @@ -3300,8 +3317,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Opzioni in conflitto: --clipboard e --interactive non possono essere " "utilizzate allo stesso tempo.\n" @@ -3322,8 +3339,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Errore nel caricamento del file di definizione dell'interfaccia utente per " -"il programma di cattura schermata:\n" +"Errore nel caricamento del file di definizione dell'interfaccia utente per il programma di cattura schermata:\n" "%s\n" "\n" "Controllate l'installazione di mate-utils." Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ja.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ja.gmo differ diff -Nru mate-utils-1.26.0/po/ja.po mate-utils-1.26.1/po/ja.po --- mate-utils-1.26.0/po/ja.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/ja.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,7 +2,7 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # ふうせん Fu-sen. | BALLOON a.k.a. Fu-sen., 2018 # OKANO Takayoshi , 2018 @@ -16,19 +16,19 @@ # Stefano Karapetsas , 2021 # semicolon , 2021 # Green, 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" "PO-Revision-Date: 2018-03-12 09:18+0000\n" "Last-Translator: Green, 2021\n" "Language-Team: Japanese (https://www.transifex.com/mate/teams/13566/ja/)\n" -"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -40,7 +40,8 @@ msgid "Check folder sizes and available disk space" msgstr "フォルダと利用可能なディスク容量をチェックします" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "MATE;check;disk;usage;analyze;size;space;" @@ -208,8 +209,7 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:32 msgid "Whether the subfolder tooltips of the selected folder are drawn." -msgstr "" -"選択したフォルダにあるサブフォルダをツールチップの中に表示するかどうかです。" +msgstr "選択したフォルダにあるサブフォルダをツールチップの中に表示するかどうかです。" #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:36 msgid "Active Chart" @@ -225,13 +225,11 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" -"ディスク使用量解析器は、その名前が示すように、ディスク使用状況およびフォルダ" -"構造を表示および監視するために使用できるグラフィカル・ユーティリティです。円" -"グラフまたはツリーマップのグラフに大まかな情報を表示します。" +"ディスク使用量解析器は、その名前が示すように、ディスク使用状況およびフォルダ構造を表示および監視するために使用できるグラフィカル・ユーティリティです。円グラフまたはツリーマップのグラフに大まかな情報を表示します。" #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 msgid "" @@ -239,10 +237,7 @@ "local or remote. There is also an option to constantly monitor any external " "changes to the home directory and warn the user if a file is added/removed." msgstr "" -"ファイル・システムやホーム、その他のフォルダ(ローカルまたはリモート)に対し" -"てスキャンを実行できます。また、ホーム・ディレクトリに対する外部の変更を常時" -"に監視し、ファイルが追加または削除された場合にユーザーに警告するオプションも" -"あります。" +"ファイル・システムやホーム、その他のフォルダ(ローカルまたはリモート)に対してスキャンを実行できます。また、ホーム・ディレクトリに対する外部の変更を常時に監視し、ファイルが追加または削除された場合にユーザーに警告するオプションもあります。" #: baobab/src/baobab.c:141 baobab/src/baobab.c:358 msgid "Scanning..." @@ -492,9 +487,7 @@ msgid "" "The content of your home folder has changed. Select rescan to update the " "disk usage details." -msgstr "" -"ホーム・フォルダの内容が変更されています。再スキャンを選択してディスク使用量" -"の詳細を更新してください。" +msgstr "ホーム・フォルダの内容が変更されています。再スキャンを選択してディスク使用量の詳細を更新してください。" #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -586,8 +579,7 @@ "any later version." msgstr "" "このプログラムはフリーソフトウェアです。フリーソフトウェア財団が提供する GNU " -"一般公衆利用許諾契約書の第二版、あるいは(オプションで)それ以降の版が定める条" -"項の下で本プログラムを再頒布または変更することができます。" +"一般公衆利用許諾契約書の第二版、あるいは(オプションで)それ以降の版が定める条項の下で本プログラムを再頒布または変更することができます。" #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -597,19 +589,17 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"このプログラムは有用とは思いますが、頒布にあたっては市場性または特定の目的に" -"対する適合性についての暗黙の保証を含めて、いかなる保証も行ないません。詳細は " -"GNU 一般公衆利用許諾契約書をご覧ください。" +"このプログラムは有用とは思いますが、頒布にあたっては市場性または特定の目的に対する適合性についての暗黙の保証を含めて、いかなる保証も行ないません。詳細は" +" GNU 一般公衆利用許諾契約書をご覧ください。" #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" -"あなたはこのプログラムと一緒に GNU 一般公衆ライセンスの写しを受け取っているは" -"ずです。もしそうでない場合には をご参照くださ" -"い。" +"あなたはこのプログラムと一緒に GNU 一般公衆ライセンスの写しを受け取っているはずです。もしそうでない場合には " +" をご参照ください。" #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" @@ -667,20 +657,20 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." -msgstr "" -"

MATE 検索ツールは、マウント中のファイルシステムからファイルやフォルダーを" -"探し出すシンプルで強力なユーティリティです。ファイル内に含まれる文章、ファイ" -"ルの所有者、最終変更日時、ファイルサイズ、除外フォルダなど、様々な検索条件を" -"簡単に設定することができます。

" +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." +msgstr "" +"

MATE " +"検索ツールは、マウント中のファイルシステムからファイルやフォルダーを探し出すシンプルで強力なユーティリティです。ファイル内に含まれる文章、ファイルの所有者、最終変更日時、ファイルサイズ、除外フォルダなど、様々な検索条件を簡単に設定することができます。" +"

" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "このコンピュータから名前や内容でドキュメントとフォルダーを特定します" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -707,9 +697,7 @@ msgid "" "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." -msgstr "" -"簡易ファイル名検索を実施した後に、コマンド `locate` を利用したスキャンを実施" -"しないかどうかを選択します。" +msgstr "簡易ファイル名検索を実施した後に、コマンド `locate` を利用したスキャンを実施しないかどうかを選択します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -717,13 +705,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"クィック検索で対象外とするパスを指定します。サポートしているワイルドカードは " -"'*' と '?' です。デフォルト値: /mnt/*、/media/*、/dev/*、/tmp/*、/proc/*、/" -"var/*" +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"クィック検索で対象外とするパスを指定します。サポートしているワイルドカードは '*' と '?' です。デフォルト値: " +"/mnt/*、/media/*、/dev/*、/tmp/*、/proc/*、/var/*" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -733,9 +720,7 @@ msgid "" "This key determines if the search tool disables the use of the find command " "after performing a quick search." -msgstr "" -"クィック検索を実施した後に、コマンド `find` を利用した二度目のスキャンを実施" -"しないかどうかを選択します。" +msgstr "クィック検索を実施した後に、コマンド `find` を利用した二度目のスキャンを実施しないかどうかを選択します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -746,13 +731,12 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"クィック検索を実施する際に二度目のスキャンで対象外にするパスを指定します。二" -"度目のスキャンはコマンド `find` を使ってファイルを検索するために実施します。" -"スキャンを二回実施する目的は、未だインデックス化されていないファイルを検索す" -"るためです。サポートしているワイルドカードは '*' と '?' です。デフォルト値: /" +"クィック検索を実施する際に二度目のスキャンで対象外にするパスを指定します。二度目のスキャンはコマンド `find` " +"を使ってファイルを検索するために実施します。スキャンを二回実施する目的は、未だインデックス化されていないファイルを検索するためです。サポートしているワイルドカードは" +" '*' と '?' です。デフォルト値: /" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -762,9 +746,7 @@ msgid "" "This key defines the order of the columns in the search results. This key " "should not be modified by the user." -msgstr "" -"このキーは検索結果にある項目の順番を定義します (ユーザはこのキーを変更しない" -"でください)。" +msgstr "このキーは検索結果にある項目の順番を定義します (ユーザはこのキーを変更しないでください)。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -772,12 +754,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -"ウィンドウの幅を定義します。このキーは複数のセッションで検索ツールの大きさを" -"保存しておく際に使用します。-1 にすると、デフォルトの幅を使用します。" +"ウィンドウの幅を定義します。このキーは複数のセッションで検索ツールの大きさを保存しておく際に使用します。-1 にすると、デフォルトの幅を使用します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -786,11 +767,10 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"ウィンドウの高さを定義します。このキーは複数のセッションで検索ツールの大きさ" -"を保存しておく際に使用します。-1 にすると、デフォルトの高さを使用します。" +"ウィンドウの高さを定義します。このキーは複数のセッションで検索ツールの大きさを保存しておく際に使用します。-1 にすると、デフォルトの高さを使用します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -807,177 +787,148 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 msgid "This key defines the default value of the \"Look in Folder\" widget." -msgstr "" -"このキーは「対象となるフォルダ」ウィジェットのデフォルトの値を定義します。" +msgstr "このキーは「対象となるフォルダ」ウィジェットのデフォルトの値を定義します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 msgid "" "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." -msgstr "" -"検索オプション \"次の文字列を含む\" を有効にして、検索ツールを起動するかどう" -"かを選択します。" +msgstr "検索オプション \"次の文字列を含む\" を有効にして、検索ツールを起動するかどうかを選択します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." -msgstr "" -"検索オプション \"次の日数より前に変更した\" を有効にして、検索ツールを起動す" -"るかどうかを選択します。" +msgstr "検索オプション \"次の日数より前に変更した\" を有効にして、検索ツールを起動するかどうかを選択します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." -msgstr "" -"検索オプション \"次の日数より後に変更した\" を有効にして、検索ツールを起動す" -"るかどうかを選択します。" +msgstr "検索オプション \"次の日数より後に変更した\" を有効にして、検索ツールを起動するかどうかを選択します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." -msgstr "" -"検索オプション \"次のサイズよりも小さい\" を有効にして、検索ツールを起動する" -"かどうかを選択します。" +msgstr "検索オプション \"次のサイズよりも小さい\" を有効にして、検索ツールを起動するかどうかを選択します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." -msgstr "" -"検索オプション \"次のサイズよりも大きい\" を有効にして、検索ツールを起動する" -"かどうかを選択します。" +msgstr "検索オプション \"次のサイズよりも大きい\" を有効にして、検索ツールを起動するかどうかを選択します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." -msgstr "" -"検索オプション \"ファイルが空である\" を有効にして、検索ツールを起動するかど" -"うかを選択します。" +msgstr "検索オプション \"ファイルが空である\" を有効にして、検索ツールを起動するかどうかを選択します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." -msgstr "" -"検索オプション \"次のユーザが所有する\" を有効にして、検索ツールを起動するか" -"どうかを選択します。" +msgstr "検索オプション \"次のユーザが所有する\" を有効にして、検索ツールを起動するかどうかを選択します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." -msgstr "" -"検索オプション \"次のグループが所有する\" を有効にして、検索ツールを起動する" -"かどうかを選択します。" +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." +msgstr "検索オプション \"次のグループが所有する\" を有効にして、検索ツールを起動するかどうかを選択します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." -msgstr "" -"検索オプション \"所有者が不明である\" を有効にして、検索ツールを起動するかど" -"うかを選択します。" +msgstr "検索オプション \"所有者が不明である\" を有効にして、検索ツールを起動するかどうかを選択します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." -msgstr "" -"検索オプション \"次の名前を含まない\" を有効にして、検索ツールを起動するかど" -"うかを選択します。" +msgstr "検索オプション \"次の名前を含まない\" を有効にして、検索ツールを起動するかどうかを選択します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." -msgstr "" -"検索オプション \"名前が次の正規表現に一致する\" を有効にして、検索ツールを起" -"動するかどうかを選択します。" +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." +msgstr "検索オプション \"名前が次の正規表現に一致する\" を有効にして、検索ツールを起動するかどうかを選択します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." -msgstr "" -"検索オプション \"隠しファイル/フォルダを表示する\" を有効にして、検索ツールを" -"起動するかどうかを選択します。" +msgstr "検索オプション \"隠しファイル/フォルダを表示する\" を有効にして、検索ツールを起動するかどうかを選択します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." -msgstr "" -"検索オプション \"シンボリックリンクをたどる\" を有効にして、検索ツールを起動" -"するかどうかを選択します。" +msgstr "検索オプション \"シンボリックリンクをたどる\" を有効にして、検索ツールを起動するかどうかを選択します。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." -msgstr "" -"これは、検索オプション \"他のファイルシステムを除く\" を有効にして、検索ツー" -"ルを起動するかどうかを決定するキーです。" +msgstr "これは、検索オプション \"他のファイルシステムを除く\" を有効にして、検索ツールを起動するかどうかを決定するキーです。" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "妥当な .desktop ファイルではありません" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "バージョン '%s' の .desktop ファイルはサポートしていません" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s の起動中です" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "コマンドラインからドキュメントにはアクセスできません" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "不明な起動オプションです: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "'Type=Link' の .desktop エントリーにはドキュメントの URI を渡せません" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "起動できないアイテムです" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "セッションマネージャーに接続しない" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "設定を保存したファイルを指定する" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "セッション管理 ID を指定する" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "セッション管理のオプション:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "セッション管理のオプションを表示する" @@ -1130,8 +1081,7 @@ #: gsearchtool/src/gsearchtool.c:1325 msgid "Set the text of \"Name contains\" search option" -msgstr "" -"検索オプション \"次の名前を含む\" に該当するファイル名をセットしてください" +msgstr "検索オプション \"次の名前を含む\" に該当するファイル名をセットしてください" #: gsearchtool/src/gsearchtool.c:1326 msgid "Set the text of \"Look in folder\" search option" @@ -1139,9 +1089,7 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" -msgstr "" -"次のエントリから一つ選んでファイルの並べ替えます: 名前、フォルダ、サイズ、種" -"類、日付" +msgstr "次のエントリから一つ選んでファイルの並べ替えます: 名前、フォルダ、サイズ、種類、日付" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1177,9 +1125,7 @@ msgid "" "The search results may be invalid. There were errors while performing this " "search." -msgstr "" -"この検索を実行した際にエラーが発生したので、検索結果が間違っているかもしれま" -"せん。" +msgstr "この検索を実行した際にエラーが発生したので、検索結果が間違っているかもしれません。" #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1189,9 +1135,7 @@ msgid "" "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" -msgstr "" -"検索結果の期限が切れているか、または検索結果が間違っているかもしれません。" -"クィック検索を無効にしてみますか?" +msgstr "検索結果の期限が切れているか、または検索結果が間違っているかもしれません。クィック検索を無効にしてみますか?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1284,8 +1228,7 @@ #: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 msgid "Enter a filename or partial filename with or without wildcards." -msgstr "" -"ファイル名、またはワイルドカード有り/無しでファイル名の一部を入力してください" +msgstr "ファイル名、またはワイルドカード有り/無しでファイル名の一部を入力してください" #: gsearchtool/src/gsearchtool.c:2836 msgid "Name contains" @@ -1587,7 +1530,8 @@ msgid "View or monitor system log files" msgstr "システム・ログを表示したり監視します" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "MATE;monitor;view;system;log;files;logviewer;" @@ -1598,12 +1542,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"起動時に表示するログ・ファイルを指定してください。デフォルトは /var/adm/" -"message または /var/log/message のどちらかで、ご利用のオペレーティング・シス" -"テムに依存します。" +"起動時に表示するログ・ファイルを指定してください。デフォルトは /var/adm/message または /var/log/message " +"のどちらかで、ご利用のオペレーティング・システムに依存します。" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1614,9 +1557,8 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"ログをメイン・ウィンドウのツリーに表示する時に使用する固定幅のフォント・サイ" -"ズを指定してください。デフォルト値は MATE 端末で設定したフォント・サイズで" -"す。" +"ログをメイン・ウィンドウのツリーに表示する時に使用する固定幅のフォント・サイズを指定してください。デフォルト値は MATE " +"端末で設定したフォント・サイズです。" #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1624,8 +1566,7 @@ #: logview/data/org.mate.system-log.gschema.xml.in:16 msgid "Specifies the height of the log viewer main window in pixels." -msgstr "" -"ログ・ビューアのメイン・ウィンドウの高さをピクセル単位で指定してください。" +msgstr "ログ・ビューアのメイン・ウィンドウの高さをピクセル単位で指定してください。" #: logview/data/org.mate.system-log.gschema.xml.in:20 msgid "Width of the main window in pixels" @@ -1633,8 +1574,7 @@ #: logview/data/org.mate.system-log.gschema.xml.in:21 msgid "Specifies the width of the log viewer main window in pixels." -msgstr "" -"ログ・ビューアのメイン・ウィンドウの幅をピクセル単位で指定してください。" +msgstr "ログ・ビューアのメイン・ウィンドウの幅をピクセル単位で指定してください。" #: logview/data/org.mate.system-log.gschema.xml.in:25 msgid "Log files to open up on startup" @@ -1644,9 +1584,7 @@ msgid "" "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." -msgstr "" -"起動時に開くロ・グファイルの並びを指定してください。デフォルト値は /etc/" -"syslog.conf の内容から作成します。" +msgstr "起動時に開くロ・グファイルの並びを指定してください。デフォルト値は /etc/syslog.conf の内容から作成します。" #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1762,9 +1700,7 @@ #: logview/src/logview-log.c:589 msgid "Error while uncompressing the GZipped log. The file might be corrupt." -msgstr "" -"gzip で圧縮されたログの解凍中にエラーが発生しました (ファイルが壊れている可能" -"性あり)" +msgstr "gzip で圧縮されたログの解凍中にエラーが発生しました (ファイルが壊れている可能性あり)" #: logview/src/logview-log.c:635 msgid "You don't have enough permissions to read the file." @@ -1776,9 +1712,7 @@ #: logview/src/logview-log.c:743 msgid "This version of System Log does not support GZipped logs." -msgstr "" -"このバージョンのログ・ビューアは gzip で圧縮したログの閲覧をサポートしていま" -"せん。" +msgstr "このバージョンのログ・ビューアは gzip で圧縮したログの閲覧をサポートしていません。" #: logview/src/logview-loglist.c:103 msgid "%A, %e %b" @@ -2016,7 +1950,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "オンライン辞書を使って単語の意味や綴りを調べます" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" @@ -2028,13 +1963,12 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" -"

MATE 辞書では、オンライン辞書により単語の検索が可能です。事前に辞書サー" -"バー (RFC 2229) に追加可能なリストが予め設定されていますが、個別に検索する目" -"的で特定のサーバーを選択することもできます。

" +"

MATE 辞書では、オンライン辞書により単語の検索が可能です。事前に辞書サーバー (RFC 2229) " +"に追加可能なリストが予め設定されていますが、個別に検索する目的で特定のサーバーを選択することもできます。

" #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 msgid "Dictionary Applet Factory" @@ -2062,9 +1996,8 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"辞書で使用するデフォルトの個人用データベースまたは個人用メタ・データベースの" -"名前です。感嘆符 (\"!\") にすると、辞書にあるすべてのデータベースを検索対象に" -"します。" +"辞書で使用するデフォルトの個人用データベースまたは個人用メタ・データベースの名前です。感嘆符 (\"!\") " +"にすると、辞書にあるすべてのデータベースを検索対象にします。" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2074,9 +2007,7 @@ msgid "" "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." -msgstr "" -"辞書サーバで使用するデフォルトの検索ルールです。デフォルトのルールは 'exact' " -"で、単語全体にマッチするものを検索します。" +msgstr "辞書サーバで使用するデフォルトの検索ルールです。デフォルトのルールは 'exact' で、単語全体にマッチするものを検索します。" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2143,8 +2074,7 @@ #: mate-dictionary/libgdict/gdict-client-context.c:1052 #, c-format msgid "Lookup failed for hostname '%s': no suitable resources found" -msgstr "" -"ホスト名 '%s' の検索に失敗しました: 適当なリソースが見つかりませんでした" +msgstr "ホスト名 '%s' の検索に失敗しました: 適当なリソースが見つかりませんでした" #: mate-dictionary/libgdict/gdict-client-context.c:1083 #, c-format @@ -2161,9 +2091,7 @@ msgid "" "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" -msgstr "" -"'%s:%d' にある辞書サーバに接続できません。そのサーバがコード %d (サーバがダウ" -"ン) を返してきました" +msgstr "'%s:%d' にある辞書サーバに接続できません。そのサーバがコード %d (サーバがダウン) を返してきました" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -3013,9 +2941,7 @@ msgid "" "If checked, the mount will be read-only. This is useful if you don't want " "the underlying disk image to be modified" -msgstr "" -"チェックすると、マウントは読み取り専用になります。これは、基礎となるディスク" -"イメージに変更を加えたくない場合に便利です。" +msgstr "チェックすると、マウントは読み取り専用になります。これは、基礎となるディスクイメージに変更を加えたくない場合に便利です。" #: mate-disk-image-mounter/src/main.c:178 #, c-format @@ -3029,8 +2955,7 @@ #: mate-disk-image-mounter/src/main.c:234 #, c-format msgid "Cannot open `%s' - maybe the volume isn't mounted?" -msgstr "" -"%sを開くことができません。 - おそらくボリュームがマウントされていないのでは?" +msgstr "%sを開くことができません。 - おそらくボリュームがマウントされていないのでは?" #: mate-disk-image-mounter/src/main.c:241 #, c-format @@ -3057,10 +2982,9 @@ "system clipboard or save them in Portable Network Graphics (.png) image " "format." msgstr "" -"MATE スクリーンショットは、デスクトップやアプリケーション・ウィンドウのス ク" -"リーンショットをキャプチャすることができるシンプルなユーティリティです。キャ" -"プチャした画像は、システムのクリップボードにコピーするか、 PNG形式の画像" -"フォーマット (.png) で保存するかを選択できます。" +"MATE スクリーンショットは、デスクトップやアプリケーション・ウィンドウのス " +"クリーンショットをキャプチャすることができるシンプルなユーティリティです。キャプチャした画像は、システムのクリップボードにコピーするか、 " +"PNG形式の画像フォーマット (.png) で保存するかを選択できます。" #: mate-screenshot/data/mate-screenshot.desktop.in:3 #: mate-screenshot/src/mate-screenshot.c:519 @@ -3072,7 +2996,8 @@ msgid "Save images of your desktop or individual windows" msgstr "デスクトップ全体またはウィンドウの画像を保存します" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "MATE;screenshot;snapshot;desktop;window;image;" @@ -3111,8 +3036,7 @@ #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:16 msgid "Include the window manager border along with the screenshot" -msgstr "" -"スクリーンショットにウィンドウ・マネージャの境界線を含めるかどうかです。" +msgstr "スクリーンショットにウィンドウ・マネージャの境界線を含めるかどうかです。" #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:20 msgid "Include Pointer" @@ -3130,9 +3054,7 @@ msgid "" "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." -msgstr "" -"画像の境界の外側に適用する効果です。選択可能な値: \"shadow\"、\"none" -"\"、\"border\"" +msgstr "画像の境界の外側に適用する効果です。選択可能な値: \"shadow\"、\"none\"、\"border\"" #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3270,11 +3192,9 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" -msgstr "" -"矛盾するオプションです: --clipboard と --interactive を同時に使用することは" -"できません。\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" +msgstr "矛盾するオプションです: --clipboard と --interactive を同時に使用することはできません。\n" #: mate-screenshot/src/mate-screenshot.c:1363 msgid "" @@ -3290,8 +3210,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"スクリーンショットプログラムの UI 定義ファイルを読み込み中にエラーが発生しま" -"した:\n" +"スクリーンショットプログラムの UI 定義ファイルを読み込み中にエラーが発生しました:\n" "%s\n" "\n" "mate-utils がインストールされているか確認してください。" @@ -3318,9 +3237,7 @@ msgid "" "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." -msgstr "" -"保存用プロセスが突然終了したため、スクリーンショットを保存することができませ" -"んでした。" +msgstr "保存用プロセスが突然終了したため、スクリーンショットを保存することができませんでした。" #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/jv.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/jv.gmo differ diff -Nru mate-utils-1.26.0/po/jv.po mate-utils-1.26.1/po/jv.po --- mate-utils-1.26.0/po/jv.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/jv.po 2023-05-09 13:31:58.000000000 +0000 @@ -1,561 +1,548 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" -"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-29 10:58+0100\n" "PO-Revision-Date: 2017-09-22 02:12+0000\n" "Last-Translator: Vlad Orlov \n" "Language-Team: Javanese (http://www.transifex.com/mate/MATE/language/jv/)\n" -"Language: jv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: jv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 +#: ../baobab/data/mate-disk-usage-analyzer.desktop.in.in.h:1 msgid "MATE Disk Usage Analyzer" msgstr "" -#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:4 +#: ../baobab/data/mate-disk-usage-analyzer.desktop.in.in.h:2 msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 -msgid "MATE;check;disk;usage;analyze;size;space;" -msgstr "" - -#: baobab/data/baobab-dialog-scan-props.ui:18 +#: ../baobab/data/baobab-dialog-scan-props.ui.h:1 msgid "Disk Usage Analyzer Preferences" msgstr "" -#: baobab/data/baobab-dialog-scan-props.ui:32 -#: baobab/data/baobab-main-window.ui:129 logview/src/logview-window.c:825 -#: mate-dictionary/src/gdict-applet.c:1173 -#: mate-dictionary/src/gdict-window.c:1262 -#: mate-screenshot/data/mate-screenshot.ui:41 -msgid "_Help" -msgstr "" - -#: baobab/data/baobab-dialog-scan-props.ui:48 logview/src/logview-window.c:829 -#: mate-dictionary/src/gdict-window.c:1273 -msgid "_Close" -msgstr "" - -#: baobab/data/baobab-dialog-scan-props.ui:81 +#: ../baobab/data/baobab-dialog-scan-props.ui.h:2 msgid "Select _devices to include in filesystem scan:" msgstr "" -#: baobab/data/baobab-dialog-scan-props.ui:119 +#: ../baobab/data/baobab-dialog-scan-props.ui.h:3 msgid "_Monitor changes to your home folder" msgstr "" -#: baobab/data/baobab-main-window.ui:10 +#: ../baobab/data/baobab-main-window.ui.h:1 msgid "_Analyzer" msgstr "" -#: baobab/data/baobab-main-window.ui:17 +#: ../baobab/data/baobab-main-window.ui.h:2 msgid "Scan _Home Folder" msgstr "" -#: baobab/data/baobab-main-window.ui:26 +#: ../baobab/data/baobab-main-window.ui.h:3 msgid "Scan _Filesystem" msgstr "" -#: baobab/data/baobab-main-window.ui:35 +#: ../baobab/data/baobab-main-window.ui.h:4 msgid "Scan F_older..." msgstr "" -#: baobab/data/baobab-main-window.ui:44 +#: ../baobab/data/baobab-main-window.ui.h:5 msgid "S_can Remote Folder..." msgstr "" -#: baobab/data/baobab-main-window.ui:74 logview/src/logview-window.c:822 -#: mate-dictionary/src/gdict-window.c:1259 +#: ../baobab/data/baobab-main-window.ui.h:6 +#: ../logview/src/logview-window.c:821 +#: ../mate-dictionary/src/gdict-window.c:1292 msgid "_Edit" msgstr "" -#: baobab/data/baobab-main-window.ui:80 +#: ../baobab/data/baobab-main-window.ui.h:7 msgid "_Expand All" msgstr "" -#: baobab/data/baobab-main-window.ui:87 +#: ../baobab/data/baobab-main-window.ui.h:8 msgid "_Collapse All" msgstr "" -#: baobab/data/baobab-main-window.ui:101 logview/src/logview-window.c:823 -#: mate-dictionary/src/gdict-window.c:1260 +#: ../baobab/data/baobab-main-window.ui.h:9 +#: ../logview/src/logview-window.c:822 +#: ../mate-dictionary/src/gdict-window.c:1293 msgid "_View" msgstr "" -#: baobab/data/baobab-main-window.ui:108 +#: ../baobab/data/baobab-main-window.ui.h:10 msgid "_Toolbar" msgstr "" -#: baobab/data/baobab-main-window.ui:115 +#: ../baobab/data/baobab-main-window.ui.h:11 msgid "St_atusbar" msgstr "" -#: baobab/data/baobab-main-window.ui:122 +#: ../baobab/data/baobab-main-window.ui.h:12 msgid "All_ocated Space" msgstr "" -#: baobab/data/baobab-main-window.ui:136 logview/src/logview-window.c:851 -#: mate-dictionary/src/gdict-window.c:1312 +#: ../baobab/data/baobab-main-window.ui.h:13 +#: ../logview/src/logview-window.c:824 +#: ../mate-dictionary/src/gdict-applet.c:1189 +#: ../mate-dictionary/src/gdict-window.c:1295 +msgid "_Help" +msgstr "" + +#. Help menu +#: ../baobab/data/baobab-main-window.ui.h:14 +#: ../logview/src/logview-window.c:850 +#: ../mate-dictionary/src/gdict-window.c:1345 msgid "_Contents" msgstr "" -#: baobab/data/baobab-main-window.ui:183 baobab/src/baobab.c:1237 -#: baobab/src/callbacks.c:103 +#: ../baobab/data/baobab-main-window.ui.h:15 ../baobab/src/baobab.c:1242 msgid "Disk Usage Analyzer" msgstr "" -#: baobab/data/baobab-main-window.ui:224 baobab/data/baobab-main-window.ui:236 +#: ../baobab/data/baobab-main-window.ui.h:16 msgid "Scan home folder" msgstr "" -#: baobab/data/baobab-main-window.ui:225 +#: ../baobab/data/baobab-main-window.ui.h:17 msgid "Scan Home" msgstr "" -#: baobab/data/baobab-main-window.ui:248 +#: ../baobab/data/baobab-main-window.ui.h:18 msgid "Scan filesystem" msgstr "" -#: baobab/data/baobab-main-window.ui:249 +#: ../baobab/data/baobab-main-window.ui.h:19 msgid "Scan Filesystem" msgstr "" -#: baobab/data/baobab-main-window.ui:265 +#: ../baobab/data/baobab-main-window.ui.h:20 msgid "Scan a folder" msgstr "" -#: baobab/data/baobab-main-window.ui:266 +#: ../baobab/data/baobab-main-window.ui.h:21 msgid "Scan Folder" msgstr "" -#: baobab/data/baobab-main-window.ui:282 +#: ../baobab/data/baobab-main-window.ui.h:22 msgid "Scan a remote folder" msgstr "" -#: baobab/data/baobab-main-window.ui:283 +#: ../baobab/data/baobab-main-window.ui.h:23 msgid "Scan Remote Folder" msgstr "" -#: baobab/data/baobab-main-window.ui:312 +#: ../baobab/data/baobab-main-window.ui.h:24 msgid "Stop scanning" msgstr "" -#: baobab/data/baobab-main-window.ui:328 +#: ../baobab/data/baobab-main-window.ui.h:25 msgid "Refresh" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:9 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:1 msgid "Monitor Home" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:10 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:2 msgid "Whether any change to the home directory should be monitored." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:14 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:3 msgid "Excluded partitions URIs" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:15 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:4 msgid "A list of URIs for partitions to be excluded from scanning." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:21 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:5 msgid "Toolbar is Visible" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:22 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:6 msgid "Whether the toolbar should be visible in main window." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:26 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:7 msgid "Statusbar is Visible" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:27 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:8 msgid "Whether the status bar at the bottom of main window should be visible." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:31 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:9 msgid "Subfolder tips visible" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:32 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:10 msgid "Whether the subfolder tooltips of the selected folder are drawn." msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:36 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:11 msgid "Active Chart" msgstr "" -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:37 +#: ../baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in.h:12 msgid "Which type of chart should be displayed." msgstr "" -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:8 +#: ../baobab/data/mate-disk-usage-analyzer.appdata.xml.in.h:1 msgid "A disk usage analyzing tool for MATE Desktop" msgstr "" -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 +#: ../baobab/data/mate-disk-usage-analyzer.appdata.xml.in.h:2 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " -"summary information in ring or treemap charts." +"

As its name implies, Disk Usage Analyzer is a graphical utility that you" +" can use to view and monitor your disk usage and folder structure. It " +"displays summary information in ring or treemap charts.

You can " +"perform scans on a file system, your home or any other folder - local or " +"remote. There is also an option to constantly monitor any external changes " +"to the home directory and warn the user if a file is added/removed.

" msgstr "" -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 -msgid "" -"You can perform scans on a file system, your home or any other folder - " -"local or remote. There is also an option to constantly monitor any external " -"changes to the home directory and warn the user if a file is added/removed." -msgstr "" - -#: baobab/src/baobab.c:141 baobab/src/baobab.c:358 +#: ../baobab/src/baobab.c:137 ../baobab/src/baobab.c:357 msgid "Scanning..." msgstr "" -#: baobab/src/baobab.c:186 +#: ../baobab/src/baobab.c:183 msgid "Total filesystem capacity:" msgstr "" -#: baobab/src/baobab.c:187 +#: ../baobab/src/baobab.c:184 msgid "used:" msgstr "" -#: baobab/src/baobab.c:188 +#: ../baobab/src/baobab.c:185 msgid "available:" msgstr "" -#: baobab/src/baobab.c:243 baobab/src/baobab.c:300 baobab/src/callbacks.c:268 +#. set statusbar, percentage and allocated/normal size +#: ../baobab/src/baobab.c:242 ../baobab/src/baobab.c:299 +#: ../baobab/src/callbacks.c:259 msgid "Calculating percentage bars..." msgstr "" -#: baobab/src/baobab.c:254 baobab/src/baobab.c:1300 baobab/src/callbacks.c:272 +#: ../baobab/src/baobab.c:253 ../baobab/src/baobab.c:1306 +#: ../baobab/src/callbacks.c:263 msgid "Ready" msgstr "" -#: baobab/src/baobab.c:392 +#: ../baobab/src/baobab.c:391 msgid "Total filesystem capacity" msgstr "" -#: baobab/src/baobab.c:416 +#: ../baobab/src/baobab.c:415 msgid "Total filesystem usage" msgstr "" -#: baobab/src/baobab.c:458 +#: ../baobab/src/baobab.c:457 msgid "contains hardlinks for:" msgstr "" -#: baobab/src/baobab.c:467 +#: ../baobab/src/baobab.c:466 #, c-format msgid "%5d item" msgid_plural "%5d items" msgstr[0] "" msgstr[1] "" -#: baobab/src/baobab.c:593 +#: ../baobab/src/baobab.c:592 msgid "Could not initialize monitoring" msgstr "" -#: baobab/src/baobab.c:594 +#: ../baobab/src/baobab.c:593 msgid "Changes to your home folder will not be monitored." msgstr "" -#: baobab/src/baobab.c:913 +#: ../baobab/src/baobab.c:921 msgid "Move to parent folder" msgstr "" -#: baobab/src/baobab.c:917 +#: ../baobab/src/baobab.c:925 msgid "Zoom in" msgstr "" -#: baobab/src/baobab.c:921 +#: ../baobab/src/baobab.c:929 msgid "Zoom out" msgstr "" -#: baobab/src/baobab.c:925 +#: ../baobab/src/baobab.c:933 msgid "Save screenshot" msgstr "" -#: baobab/src/baobab.c:1111 +#: ../baobab/src/baobab.c:1120 msgid "View as Rings Chart" msgstr "" -#: baobab/src/baobab.c:1113 +#: ../baobab/src/baobab.c:1122 msgid "View as Treemap Chart" msgstr "" -#: baobab/src/baobab.c:1224 +#: ../baobab/src/baobab.c:1231 msgid "Show version" msgstr "" -#: baobab/src/baobab.c:1225 +#: ../baobab/src/baobab.c:1232 msgid "[DIRECTORY]" msgstr "" -#: baobab/src/baobab.c:1257 +#: ../baobab/src/baobab.c:1262 msgid "Too many arguments. Only one directory can be specified." msgstr "" -#: baobab/src/baobab.c:1274 +#: ../baobab/src/baobab.c:1279 msgid "Could not detect any mount point." msgstr "" -#: baobab/src/baobab.c:1276 +#: ../baobab/src/baobab.c:1281 msgid "Without mount points disk usage cannot be analyzed." msgstr "" -#: baobab/src/baobab-chart.c:204 +#: ../baobab/src/baobab-chart.c:209 msgid "Maximum depth" msgstr "" -#: baobab/src/baobab-chart.c:205 +#: ../baobab/src/baobab-chart.c:210 msgid "The maximum depth drawn in the chart from the root" msgstr "" -#: baobab/src/baobab-chart.c:214 +#: ../baobab/src/baobab-chart.c:219 msgid "Chart model" msgstr "" -#: baobab/src/baobab-chart.c:215 +#: ../baobab/src/baobab-chart.c:220 msgid "Set the model of the chart" msgstr "" -#: baobab/src/baobab-chart.c:222 +#: ../baobab/src/baobab-chart.c:227 msgid "Chart root node" msgstr "" -#: baobab/src/baobab-chart.c:223 +#: ../baobab/src/baobab-chart.c:228 msgid "Set the root node from the model" msgstr "" -#: baobab/src/baobab-chart.c:1713 +#: ../baobab/src/baobab-chart.c:1718 msgid "Cannot create pixbuf image!" msgstr "" -#: baobab/src/baobab-chart.c:1723 +#. Popup the File chooser dialog +#: ../baobab/src/baobab-chart.c:1728 msgid "Save Snapshot" msgstr "" -#: baobab/src/baobab-chart.c:1750 +#: ../baobab/src/baobab-chart.c:1755 msgid "_Image type:" msgstr "" -#: baobab/src/baobab-prefs.c:171 +#: ../baobab/src/baobab-prefs.c:172 msgid "Scan" msgstr "" -#: baobab/src/baobab-prefs.c:178 +#: ../baobab/src/baobab-prefs.c:179 msgid "Device" msgstr "" -#: baobab/src/baobab-prefs.c:186 +#: ../baobab/src/baobab-prefs.c:187 msgid "Mount Point" msgstr "" -#: baobab/src/baobab-prefs.c:194 +#: ../baobab/src/baobab-prefs.c:195 msgid "Filesystem Type" msgstr "" -#: baobab/src/baobab-prefs.c:202 +#: ../baobab/src/baobab-prefs.c:203 msgid "Total Size" msgstr "" -#: baobab/src/baobab-prefs.c:211 +#: ../baobab/src/baobab-prefs.c:212 msgid "Available" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:70 +#: ../baobab/src/baobab-remote-connect-dialog.c:75 #, c-format msgid "Cannot scan location \"%s\"" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:168 +#: ../baobab/src/baobab-remote-connect-dialog.c:173 msgid "Custom Location" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:170 +#: ../baobab/src/baobab-remote-connect-dialog.c:175 msgid "SSH" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:173 +#: ../baobab/src/baobab-remote-connect-dialog.c:178 msgid "Public FTP" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:175 +#: ../baobab/src/baobab-remote-connect-dialog.c:180 msgid "FTP (with login)" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:178 +#: ../baobab/src/baobab-remote-connect-dialog.c:183 msgid "Windows share" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:180 +#: ../baobab/src/baobab-remote-connect-dialog.c:185 msgid "WebDAV (HTTP)" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:182 +#: ../baobab/src/baobab-remote-connect-dialog.c:187 msgid "Secure WebDAV (HTTPS)" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:242 +#: ../baobab/src/baobab-remote-connect-dialog.c:247 msgid "Cannot Connect to Server. You must enter a name for the server." msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:245 +#: ../baobab/src/baobab-remote-connect-dialog.c:250 msgid "Please enter a name and try again." msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:439 +#: ../baobab/src/baobab-remote-connect-dialog.c:438 msgid "_Location (URI):" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:455 +#: ../baobab/src/baobab-remote-connect-dialog.c:458 msgid "_Server:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:468 +#: ../baobab/src/baobab-remote-connect-dialog.c:475 msgid "Optional information:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:477 +#: ../baobab/src/baobab-remote-connect-dialog.c:488 msgid "_Share:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:492 -#: mate-dictionary/data/mate-dictionary-source.ui:121 +#: ../baobab/src/baobab-remote-connect-dialog.c:507 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:4 msgid "_Port:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:506 +#: ../baobab/src/baobab-remote-connect-dialog.c:525 msgid "_Folder:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:520 +#: ../baobab/src/baobab-remote-connect-dialog.c:543 msgid "_User Name:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:535 +#: ../baobab/src/baobab-remote-connect-dialog.c:562 msgid "_Domain Name:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:592 +#: ../baobab/src/baobab-remote-connect-dialog.c:627 msgid "Connect to Server" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:608 +#: ../baobab/src/baobab-remote-connect-dialog.c:643 msgid "Service _type:" msgstr "" -#: baobab/src/baobab-remote-connect-dialog.c:726 +#: ../baobab/src/baobab-remote-connect-dialog.c:765 msgid "_Scan" msgstr "" -#: baobab/src/baobab-treeview.c:83 +#: ../baobab/src/baobab-treeview.c:82 msgid "Rescan your home folder?" msgstr "" -#: baobab/src/baobab-treeview.c:84 +#: ../baobab/src/baobab-treeview.c:83 msgid "" "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -#: baobab/src/baobab-treeview.c:85 +#: ../baobab/src/baobab-treeview.c:84 msgid "_Rescan" msgstr "" -#: baobab/src/baobab-treeview.c:222 gsearchtool/src/gsearchtool.c:2453 +#: ../baobab/src/baobab-treeview.c:222 ../gsearchtool/src/gsearchtool.c:2426 msgid "Folder" msgstr "" -#: baobab/src/baobab-treeview.c:244 +#: ../baobab/src/baobab-treeview.c:244 msgid "Usage" msgstr "" -#: baobab/src/baobab-treeview.c:258 gsearchtool/src/gsearchtool.c:2466 +#: ../baobab/src/baobab-treeview.c:258 ../gsearchtool/src/gsearchtool.c:2439 msgid "Size" msgstr "" -#: baobab/src/baobab-treeview.c:274 +#: ../baobab/src/baobab-treeview.c:274 msgid "Contents" msgstr "" -#: baobab/src/baobab-utils.c:105 +#: ../baobab/src/baobab-utils.c:106 msgid "Select Folder" msgstr "" -#: baobab/src/baobab-utils.c:117 +#. add extra widget +#: ../baobab/src/baobab-utils.c:118 msgid "_Show hidden folders" msgstr "" -#: baobab/src/baobab-utils.c:280 +#: ../baobab/src/baobab-utils.c:299 msgid "Cannot check an excluded folder!" msgstr "" -#: baobab/src/baobab-utils.c:304 +#: ../baobab/src/baobab-utils.c:323 #, c-format msgid "\"%s\" is not a valid folder" msgstr "" -#: baobab/src/baobab-utils.c:307 +#: ../baobab/src/baobab-utils.c:326 msgid "Could not analyze disk usage." msgstr "" -#: baobab/src/baobab-utils.c:343 +#: ../baobab/src/baobab-utils.c:362 msgid "_Open Folder" msgstr "" -#: baobab/src/baobab-utils.c:349 gsearchtool/src/gsearchtool-callbacks.c:1330 +#: ../baobab/src/baobab-utils.c:368 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1215 msgid "Mo_ve to Trash" msgstr "" -#: baobab/src/baobab-utils.c:378 +#: ../baobab/src/baobab-utils.c:402 #, c-format msgid "Could not open folder \"%s\"" msgstr "" -#: baobab/src/baobab-utils.c:381 +#: ../baobab/src/baobab-utils.c:405 msgid "There is no installed viewer capable of displaying the folder." msgstr "" -#: baobab/src/baobab-utils.c:448 +#: ../baobab/src/baobab-utils.c:474 #, c-format msgid "Could not move \"%s\" to the Trash" msgstr "" -#: baobab/src/baobab-utils.c:456 +#: ../baobab/src/baobab-utils.c:482 msgid "Could not move file to the Trash" msgstr "" -#: baobab/src/baobab-utils.c:458 +#: ../baobab/src/baobab-utils.c:484 #, c-format msgid "Details: %s" msgstr "" -#: baobab/src/baobab-utils.c:496 +#: ../baobab/src/baobab-utils.c:527 msgid "There was an error displaying help." msgstr "" -#: baobab/src/callbacks.c:74 logview/src/logview-about.h:44 -#: mate-dictionary/src/gdict-about.c:49 -msgid "MATE Documentation Team" -msgstr "" - -#: baobab/src/callbacks.c:79 logview/src/logview-about.h:49 -#: mate-dictionary/src/gdict-about.c:57 +#: ../baobab/src/callbacks.c:76 ../logview/src/logview-about.h:49 msgid "" "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 " @@ -563,8 +550,7 @@ "any later version." msgstr "" -#: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 -#: mate-dictionary/src/gdict-about.c:62 +#: ../baobab/src/callbacks.c:81 ../logview/src/logview-about.h:53 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " @@ -572,1773 +558,1728 @@ "more details." msgstr "" -#: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 -#: mate-dictionary/src/gdict-about.c:67 +#: ../baobab/src/callbacks.c:86 ../logview/src/logview-about.h:57 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program; if not, write to the Free Software Foundation, Inc., 51 " +"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA" msgstr "" -#: baobab/src/callbacks.c:105 -msgid "About Disk Usage Analyzer" +#: ../baobab/src/callbacks.c:98 +msgid "A graphical tool to analyze disk usage." msgstr "" -#: baobab/src/callbacks.c:106 -msgid "Analyze your disk usage through a graphical tool." -msgstr "" - -#: baobab/src/callbacks.c:107 -msgid "" -"Copyright © 2005-2010 Fabio Marzocca\n" -"Copyright © 2011-2021 MATE developers" -msgstr "" - -#: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 -#: mate-dictionary/src/gdict-about.c:53 +#. translator credits +#: ../baobab/src/callbacks.c:104 ../logview/src/logview-about.h:63 +#: ../mate-dictionary/src/gdict-about.c:55 msgid "translator-credits" msgstr "kridit-wong sing nyalin nganggo basa liya" -#: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 -#: gsearchtool/src/gsearchtool-callbacks.c:879 +#: ../baobab/src/callbacks.c:202 +#: ../gsearchtool/src/gsearchtool-callbacks.c:513 +#: ../gsearchtool/src/gsearchtool-callbacks.c:853 msgid "The document does not exist." msgstr "" -#: baobab/src/callbacks.c:292 +#: ../baobab/src/callbacks.c:283 msgid "The folder does not exist." msgstr "" -#: gsearchtool/data/mate-search-tool.appdata.xml.in:7 -#: gsearchtool/data/mate-search-tool.desktop.in:3 -msgid "MATE Search Tool" -msgstr "" - -#: gsearchtool/data/mate-search-tool.appdata.xml.in:8 +#: ../gsearchtool/data/mate-search-tool.appdata.xml.in.h:1 msgid "A file searching tool for MATE Desktop" msgstr "" -#: gsearchtool/data/mate-search-tool.appdata.xml.in:10 +#: ../gsearchtool/data/mate-search-tool.appdata.xml.in.h:2 msgid "" -"MATE Search Tool is a simple but powerful utility that allows you to search " -"for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"

MATE Search Tool is a simple but powerful utility that allows you to " +"search for files and folders on any mounted file system. Its interface gives" +" you instant access to a wide variety of parameters for each search, such as" +" text contained within a file, ownership, date of modification, file size, " +"folder exclusion, etc..

" msgstr "" -#: gsearchtool/data/mate-search-tool.desktop.in:4 -msgid "Locate documents and folders on this computer by name or content" +#: ../gsearchtool/data/mate-search-tool.desktop.in.h:1 +msgid "MATE Search Tool" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: gsearchtool/data/mate-search-tool.desktop.in:13 -msgid "" -"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" +#: ../gsearchtool/data/mate-search-tool.desktop.in.h:2 +msgid "Locate documents and folders on this computer by name or content" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:1 msgid "Search history" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:6 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:2 msgid "This key defines the items which were searched for in the past." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:10 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:3 msgid "Show Additional Options" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:14 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:4 msgid "Disable Quick Search" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:15 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:5 msgid "" "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:6 msgid "Quick Search Excluded Paths" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:7 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:8 msgid "Disable Quick Search Second Scan" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:25 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:9 msgid "" "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:10 msgid "Quick Search Second Scan Excluded Paths" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:30 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:11 msgid "" "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:12 msgid "Search Result Columns Order" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:35 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:13 msgid "" "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:14 msgid "Default Window Width" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:15 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:16 msgid "Default Window Height" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:17 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:18 msgid "Default Window Maximized" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:50 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:19 msgid "" "This key determines if the search tool window starts in a maximized state." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:20 msgid "Look in Folder" msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:21 msgid "This key defines the default value of the \"Look in Folder\" widget." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:22 msgid "" "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:23 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:24 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:25 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:26 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:27 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:28 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:29 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:30 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:31 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:32 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:33 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:34 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 +#: ../gsearchtool/data/org.mate.search-tool.gschema.xml.in.h:35 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:165 +#, c-format msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:188 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:957 #, c-format msgid "Starting %s" msgstr "Miwiti %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1098 +#, c-format msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1166 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1364 +#, c-format msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: ../gsearchtool/libeggsmclient/eggdesktopfile.c:1383 +#, c-format msgid "Not a launchable item" msgstr "Sanes barang sing saged dilakokna" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:225 msgid "Disable connection to session manager" msgstr "Mateni sambungan menyang manager sesi" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:228 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:228 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:231 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:231 msgid "ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:252 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: ../gsearchtool/libeggsmclient/eggsmclient.c:253 msgid "Show session management options" msgstr "" -#: gsearchtool/src/gsearchtool.c:82 +#: ../gsearchtool/src/gsearchtool.c:82 msgid "Contains the _text" msgstr "" -#: gsearchtool/src/gsearchtool.c:84 +#: ../gsearchtool/src/gsearchtool.c:84 msgid "_Date modified less than" msgstr "" -#: gsearchtool/src/gsearchtool.c:84 gsearchtool/src/gsearchtool.c:85 +#: ../gsearchtool/src/gsearchtool.c:84 ../gsearchtool/src/gsearchtool.c:85 msgid "days" msgstr "" -#: gsearchtool/src/gsearchtool.c:85 +#: ../gsearchtool/src/gsearchtool.c:85 msgid "Date modified more than" msgstr "" -#: gsearchtool/src/gsearchtool.c:87 +#: ../gsearchtool/src/gsearchtool.c:87 msgid "S_ize at least" msgstr "" -#: gsearchtool/src/gsearchtool.c:87 gsearchtool/src/gsearchtool.c:88 +#: ../gsearchtool/src/gsearchtool.c:87 ../gsearchtool/src/gsearchtool.c:88 msgid "kilobytes" msgstr "" -#: gsearchtool/src/gsearchtool.c:88 +#: ../gsearchtool/src/gsearchtool.c:88 msgid "Si_ze at most" msgstr "" -#: gsearchtool/src/gsearchtool.c:89 +#: ../gsearchtool/src/gsearchtool.c:89 msgid "File is empty" msgstr "" -#: gsearchtool/src/gsearchtool.c:91 +#: ../gsearchtool/src/gsearchtool.c:91 msgid "Owned by _user" msgstr "" -#: gsearchtool/src/gsearchtool.c:92 +#: ../gsearchtool/src/gsearchtool.c:92 msgid "Owned by _group" msgstr "" -#: gsearchtool/src/gsearchtool.c:93 +#: ../gsearchtool/src/gsearchtool.c:93 msgid "Owner is unrecognized" msgstr "" -#: gsearchtool/src/gsearchtool.c:95 +#: ../gsearchtool/src/gsearchtool.c:95 msgid "Na_me does not contain" msgstr "" -#: gsearchtool/src/gsearchtool.c:96 +#: ../gsearchtool/src/gsearchtool.c:96 msgid "Name matches regular e_xpression" msgstr "" -#: gsearchtool/src/gsearchtool.c:98 +#: ../gsearchtool/src/gsearchtool.c:98 msgid "Show hidden and backup files" msgstr "" -#: gsearchtool/src/gsearchtool.c:99 +#: ../gsearchtool/src/gsearchtool.c:99 msgid "Follow symbolic links" msgstr "" -#: gsearchtool/src/gsearchtool.c:100 +#: ../gsearchtool/src/gsearchtool.c:100 msgid "Exclude other filesystems" msgstr "" -#: gsearchtool/src/gsearchtool.c:158 +#: ../gsearchtool/src/gsearchtool.c:158 msgid "Show version of the application" msgstr "" -#: gsearchtool/src/gsearchtool.c:159 gsearchtool/src/gsearchtool.c:164 -#: gsearchtool/src/gsearchtool.c:173 +#: ../gsearchtool/src/gsearchtool.c:159 ../gsearchtool/src/gsearchtool.c:164 +#: ../gsearchtool/src/gsearchtool.c:173 msgid "STRING" msgstr "" -#: gsearchtool/src/gsearchtool.c:160 +#: ../gsearchtool/src/gsearchtool.c:160 msgid "PATH" msgstr "" -#: gsearchtool/src/gsearchtool.c:161 +#: ../gsearchtool/src/gsearchtool.c:161 msgid "VALUE" msgstr "" -#: gsearchtool/src/gsearchtool.c:165 gsearchtool/src/gsearchtool.c:166 +#: ../gsearchtool/src/gsearchtool.c:165 ../gsearchtool/src/gsearchtool.c:166 msgid "DAYS" msgstr "" -#: gsearchtool/src/gsearchtool.c:167 gsearchtool/src/gsearchtool.c:168 +#: ../gsearchtool/src/gsearchtool.c:167 ../gsearchtool/src/gsearchtool.c:168 msgid "KILOBYTES" msgstr "" -#: gsearchtool/src/gsearchtool.c:170 +#: ../gsearchtool/src/gsearchtool.c:170 msgid "USER" msgstr "" -#: gsearchtool/src/gsearchtool.c:171 +#: ../gsearchtool/src/gsearchtool.c:171 msgid "GROUP" msgstr "" -#: gsearchtool/src/gsearchtool.c:174 +#: ../gsearchtool/src/gsearchtool.c:174 msgid "PATTERN" msgstr "" -#: gsearchtool/src/gsearchtool.c:385 +#: ../gsearchtool/src/gsearchtool.c:385 msgid "A locate database has probably not been created." msgstr "" -#: gsearchtool/src/gsearchtool.c:487 +#: ../gsearchtool/src/gsearchtool.c:487 #, c-format msgid "Character set conversion failed for \"%s\"" msgstr "" -#: gsearchtool/src/gsearchtool.c:511 +#: ../gsearchtool/src/gsearchtool.c:511 msgid "Searching..." msgstr "" -#: gsearchtool/src/gsearchtool.c:511 gsearchtool/src/gsearchtool.c:1048 -#: gsearchtool/src/gsearchtool.c:3078 +#: ../gsearchtool/src/gsearchtool.c:511 ../gsearchtool/src/gsearchtool.c:1031 +#: ../gsearchtool/src/gsearchtool.c:3031 msgid "Search for Files" msgstr "" -#: gsearchtool/src/gsearchtool.c:994 gsearchtool/src/gsearchtool.c:1023 +#: ../gsearchtool/src/gsearchtool.c:977 ../gsearchtool/src/gsearchtool.c:1006 msgid "No files found" msgstr "" -#: gsearchtool/src/gsearchtool.c:1016 +#: ../gsearchtool/src/gsearchtool.c:999 msgid "(stopped)" msgstr "" -#: gsearchtool/src/gsearchtool.c:1022 +#: ../gsearchtool/src/gsearchtool.c:1005 msgid "No Files Found" msgstr "" -#: gsearchtool/src/gsearchtool.c:1027 +#: ../gsearchtool/src/gsearchtool.c:1010 #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 +#: ../gsearchtool/src/gsearchtool.c:1014 ../gsearchtool/src/gsearchtool.c:1052 #, c-format msgid "%'d file found" msgid_plural "%'d files found" msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool.c:1160 +#: ../gsearchtool/src/gsearchtool.c:1143 msgid "Entry changed called for a non entry option!" msgstr "" -#: gsearchtool/src/gsearchtool.c:1325 +#: ../gsearchtool/src/gsearchtool.c:1308 msgid "Set the text of \"Name contains\" search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:1326 +#: ../gsearchtool/src/gsearchtool.c:1309 msgid "Set the text of \"Look in folder\" search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:1327 +#: ../gsearchtool/src/gsearchtool.c:1310 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -#: gsearchtool/src/gsearchtool.c:1328 +#: ../gsearchtool/src/gsearchtool.c:1311 msgid "Set sort order to descending, the default is ascending" msgstr "" -#: gsearchtool/src/gsearchtool.c:1329 +#: ../gsearchtool/src/gsearchtool.c:1312 msgid "Automatically start a search" msgstr "" -#: gsearchtool/src/gsearchtool.c:1335 +#: ../gsearchtool/src/gsearchtool.c:1318 #, c-format msgid "Select the \"%s\" search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:1338 +#: ../gsearchtool/src/gsearchtool.c:1321 #, c-format msgid "Select and set the \"%s\" search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:1445 +#: ../gsearchtool/src/gsearchtool.c:1428 msgid "Invalid option passed to sortby command line argument." msgstr "" -#: gsearchtool/src/gsearchtool.c:1737 +#: ../gsearchtool/src/gsearchtool.c:1720 msgid "" "\n" "... Too many errors to display ..." msgstr "" -#: gsearchtool/src/gsearchtool.c:1751 +#: ../gsearchtool/src/gsearchtool.c:1734 msgid "" "The search results may be invalid. There were errors while performing this " "search." msgstr "" -#: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 +#: ../gsearchtool/src/gsearchtool.c:1746 ../gsearchtool/src/gsearchtool.c:1790 msgid "Show more _details" msgstr "" -#: gsearchtool/src/gsearchtool.c:1793 +#: ../gsearchtool/src/gsearchtool.c:1776 msgid "" "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -#: gsearchtool/src/gsearchtool.c:1818 +#: ../gsearchtool/src/gsearchtool.c:1801 msgid "Disable _Quick Search" msgstr "" -#: gsearchtool/src/gsearchtool.c:1845 +#: ../gsearchtool/src/gsearchtool.c:1828 #, c-format msgid "Failed to set process group id of child %d: %s.\n" msgstr "" -#: gsearchtool/src/gsearchtool.c:1870 +#: ../gsearchtool/src/gsearchtool.c:1853 msgid "Error parsing the search command." msgstr "" -#: gsearchtool/src/gsearchtool.c:1902 +#: ../gsearchtool/src/gsearchtool.c:1885 msgid "Error running the search command." msgstr "" -#: gsearchtool/src/gsearchtool.c:2025 +#: ../gsearchtool/src/gsearchtool.c:2008 #, c-format msgid "Enter a text value for the \"%s\" search option." msgstr "" #. Translators: Below is a string displaying the search options name #. and unit value. For example, "\"Date modified less than\" in days". -#: gsearchtool/src/gsearchtool.c:2030 +#: ../gsearchtool/src/gsearchtool.c:2013 #, c-format msgid "\"%s\" in %s" msgstr "" -#: gsearchtool/src/gsearchtool.c:2032 +#: ../gsearchtool/src/gsearchtool.c:2015 #, c-format msgid "Enter a value in %s for the \"%s\" search option." msgstr "" -#: gsearchtool/src/gsearchtool.c:2095 +#: ../gsearchtool/src/gsearchtool.c:2073 #, c-format msgid "Remove \"%s\"" msgstr "" -#: gsearchtool/src/gsearchtool.c:2096 +#: ../gsearchtool/src/gsearchtool.c:2074 #, c-format msgid "Click to remove the \"%s\" search option." msgstr "" -#: gsearchtool/src/gsearchtool.c:2189 +#: ../gsearchtool/src/gsearchtool.c:2167 msgid "A_vailable options:" msgstr "" -#: gsearchtool/src/gsearchtool.c:2218 +#: ../gsearchtool/src/gsearchtool.c:2196 msgid "Available options" msgstr "" -#: gsearchtool/src/gsearchtool.c:2219 +#: ../gsearchtool/src/gsearchtool.c:2197 msgid "Select a search option from the drop-down list." msgstr "" -#: gsearchtool/src/gsearchtool.c:2236 +#: ../gsearchtool/src/gsearchtool.c:2209 msgid "Add search option" msgstr "" -#: gsearchtool/src/gsearchtool.c:2237 +#: ../gsearchtool/src/gsearchtool.c:2210 msgid "Click to add the selected available search option." msgstr "" -#: gsearchtool/src/gsearchtool.c:2326 +#: ../gsearchtool/src/gsearchtool.c:2299 msgid "S_earch results:" msgstr "" -#: gsearchtool/src/gsearchtool.c:2369 +#: ../gsearchtool/src/gsearchtool.c:2342 msgid "List View" msgstr "" -#: gsearchtool/src/gsearchtool.c:2429 -#: mate-dictionary/libgdict/gdict-source.c:243 +#: ../gsearchtool/src/gsearchtool.c:2402 +#: ../mate-dictionary/libgdict/gdict-source.c:246 msgid "Name" msgstr "" -#: gsearchtool/src/gsearchtool.c:2478 +#: ../gsearchtool/src/gsearchtool.c:2451 msgid "Type" msgstr "" -#: gsearchtool/src/gsearchtool.c:2490 +#: ../gsearchtool/src/gsearchtool.c:2463 msgid "Date Modified" msgstr "" -#: gsearchtool/src/gsearchtool.c:2820 +#: ../gsearchtool/src/gsearchtool.c:2798 msgid "_Name contains:" msgstr "" -#: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 +#: ../gsearchtool/src/gsearchtool.c:2813 ../gsearchtool/src/gsearchtool.c:2814 msgid "Enter a filename or partial filename with or without wildcards." msgstr "" -#: gsearchtool/src/gsearchtool.c:2836 +#: ../gsearchtool/src/gsearchtool.c:2814 msgid "Name contains" msgstr "" -#: gsearchtool/src/gsearchtool.c:2842 +#: ../gsearchtool/src/gsearchtool.c:2820 msgid "_Look in folder:" msgstr "" -#: gsearchtool/src/gsearchtool.c:2848 +#: ../gsearchtool/src/gsearchtool.c:2826 msgid "Browse" msgstr "" -#: gsearchtool/src/gsearchtool.c:2858 +#: ../gsearchtool/src/gsearchtool.c:2836 msgid "Look in folder" msgstr "" -#: gsearchtool/src/gsearchtool.c:2858 +#: ../gsearchtool/src/gsearchtool.c:2836 msgid "Select the folder or device from which you want to begin the search." msgstr "" -#: gsearchtool/src/gsearchtool.c:2876 +#: ../gsearchtool/src/gsearchtool.c:2854 msgid "Select more _options" msgstr "" -#: gsearchtool/src/gsearchtool.c:2885 +#: ../gsearchtool/src/gsearchtool.c:2863 msgid "Select more options" msgstr "" -#: gsearchtool/src/gsearchtool.c:2885 +#: ../gsearchtool/src/gsearchtool.c:2863 msgid "Click to expand or collapse the list of available options." msgstr "" -#: gsearchtool/src/gsearchtool.c:2916 +#: ../gsearchtool/src/gsearchtool.c:2887 msgid "Click to display the help manual." msgstr "" -#: gsearchtool/src/gsearchtool.c:2929 +#: ../gsearchtool/src/gsearchtool.c:2895 msgid "Click to close \"Search for Files\"." msgstr "" -#: gsearchtool/src/gsearchtool.c:2964 +#: ../gsearchtool/src/gsearchtool.c:2921 msgid "Click to perform a search." msgstr "" -#: gsearchtool/src/gsearchtool.c:2965 +#: ../gsearchtool/src/gsearchtool.c:2922 msgid "Click to stop a search." msgstr "" -#: gsearchtool/src/gsearchtool.c:3061 +#: ../gsearchtool/src/gsearchtool.c:3016 msgid "- the MATE Search Tool" msgstr "" -#: gsearchtool/src/gsearchtool.c:3072 +#: ../gsearchtool/src/gsearchtool.c:3025 #, c-format msgid "Failed to parse command line arguments: %s\n" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:192 +#: ../gsearchtool/src/gsearchtool-callbacks.c:203 msgid "Could not open help document." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:343 +#: ../gsearchtool/src/gsearchtool-callbacks.c:354 #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool-callbacks.c:348 -#: gsearchtool/src/gsearchtool-callbacks.c:548 +#: ../gsearchtool/src/gsearchtool-callbacks.c:359 +#: ../gsearchtool/src/gsearchtool-callbacks.c:556 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool-callbacks.c:393 +#: ../gsearchtool/src/gsearchtool-callbacks.c:399 #, c-format msgid "Could not open document \"%s\"." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:422 +#: ../gsearchtool/src/gsearchtool-callbacks.c:428 #, c-format msgid "Could not open folder \"%s\"." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:430 +#: ../gsearchtool/src/gsearchtool-callbacks.c:436 msgid "The caja file manager is not running." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:521 +#: ../gsearchtool/src/gsearchtool-callbacks.c:528 msgid "There is no installed viewer capable of displaying the document." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:543 +#: ../gsearchtool/src/gsearchtool-callbacks.c:551 #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" msgstr[0] "" msgstr[1] "" -#: gsearchtool/src/gsearchtool-callbacks.c:725 +#: ../gsearchtool/src/gsearchtool-callbacks.c:704 #, c-format msgid "Could not move \"%s\" to trash." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:756 +#: ../gsearchtool/src/gsearchtool-callbacks.c:735 #, c-format msgid "Do you want to delete \"%s\" permanently?" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:759 +#: ../gsearchtool/src/gsearchtool-callbacks.c:738 #, c-format msgid "Trash is unavailable. Could not move \"%s\" to the trash." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:803 +#: ../gsearchtool/src/gsearchtool-callbacks.c:777 #, c-format msgid "Could not delete \"%s\"." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:915 +#: ../gsearchtool/src/gsearchtool-callbacks.c:889 #, c-format msgid "Deleting \"%s\" failed: %s." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:927 +#: ../gsearchtool/src/gsearchtool-callbacks.c:901 #, c-format msgid "Moving \"%s\" failed: %s." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1143 -#: gsearchtool/src/gsearchtool-callbacks.c:1169 +#. Popup menu item: Open +#: ../gsearchtool/src/gsearchtool-callbacks.c:1029 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1059 msgid "_Open" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1199 +#. Popup menu item: Open with (default) +#: ../gsearchtool/src/gsearchtool-callbacks.c:1084 #, c-format msgid "_Open with %s" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1220 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1119 #, c-format msgid "Open with %s" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1249 +#. Popup menu item: Open With +#: ../gsearchtool/src/gsearchtool-callbacks.c:1152 msgid "Open Wit_h" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1299 +#. Popup menu item: Open Containing Folder +#: ../gsearchtool/src/gsearchtool-callbacks.c:1197 msgid "Open Containing _Folder" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1310 -msgid "Copy _Path" -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1344 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1237 msgid "_Save Results As..." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1722 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1622 msgid "Save Search Results As..." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1751 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1651 msgid "Could not save document." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1752 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1652 msgid "You did not select a document name." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1782 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1682 #, c-format msgid "Could not save \"%s\" document to \"%s\"." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1815 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1715 #, c-format msgid "The document \"%s\" already exists. Would you like to replace it?" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1819 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1719 msgid "If you replace an existing file, its contents will be overwritten." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1834 -#: mate-screenshot/src/screenshot-xfer.c:84 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1734 +#: ../mate-screenshot/src/screenshot-xfer.c:82 msgid "_Replace" msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1883 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1783 msgid "The document name you selected is a folder." msgstr "" -#: gsearchtool/src/gsearchtool-callbacks.c:1919 +#: ../gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "You may not have write permissions to the document." msgstr "" -#: gsearchtool/src/gsearchtool-support.c:427 +#. Translators: Below are the strings displayed in the 'Date Modified' +#. column of the list view. The format of this string can vary depending +#. on age of a file. Please modify the format of the timestamp to match +#. your locale. For example, to display 24 hour time replace the '%-I' +#. with '%-H' and remove the '%p'. (See bugzilla report #120434.) +#: ../gsearchtool/src/gsearchtool-support.c:448 msgid "today at %-I:%M %p" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:429 +#: ../gsearchtool/src/gsearchtool-support.c:450 msgid "yesterday at %-I:%M %p" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:431 +#: ../gsearchtool/src/gsearchtool-support.c:452 +#: ../gsearchtool/src/gsearchtool-support.c:454 msgid "%A, %B %-d %Y at %-I:%M:%S %p" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:478 +#: ../gsearchtool/src/gsearchtool-support.c:641 msgid "link (broken)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:482 +#: ../gsearchtool/src/gsearchtool-support.c:645 #, c-format msgid "link to %s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1101 +#. START OF CAJA/EEL FUNCTIONS: USED FOR HANDLING OF DUPLICATE FILENAMES +#. Localizers: +#. * Feel free to leave out the st, nd, rd and th suffix or +#. * make some or all of them match. +#. localizers: tag used to detect the first copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1260 msgid " (copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1103 +#. localizers: tag used to detect the second copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1262 msgid " (another copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1106 -#: gsearchtool/src/gsearchtool-support.c:1108 -#: gsearchtool/src/gsearchtool-support.c:1110 -#: gsearchtool/src/gsearchtool-support.c:1120 +#. localizers: tag used to detect the x11th copy of a file +#. localizers: tag used to detect the x12th copy of a file +#. localizers: tag used to detect the x13th copy of a file +#. localizers: tag used to detect the xxth copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1265 +#: ../gsearchtool/src/gsearchtool-support.c:1267 +#: ../gsearchtool/src/gsearchtool-support.c:1269 +#: ../gsearchtool/src/gsearchtool-support.c:1279 msgid "th copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1113 +#. localizers: tag used to detect the x1st copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1272 msgid "st copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1115 +#. localizers: tag used to detect the x2nd copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1274 msgid "nd copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1117 +#. localizers: tag used to detect the x3rd copy of a file +#: ../gsearchtool/src/gsearchtool-support.c:1276 msgid "rd copy)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1134 +#. localizers: appended to first file copy +#: ../gsearchtool/src/gsearchtool-support.c:1293 #, c-format msgid "%s (copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1136 +#. localizers: appended to second file copy +#: ../gsearchtool/src/gsearchtool-support.c:1295 #, c-format msgid "%s (another copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1139 -#: gsearchtool/src/gsearchtool-support.c:1141 -#: gsearchtool/src/gsearchtool-support.c:1143 -#: gsearchtool/src/gsearchtool-support.c:1152 +#. localizers: appended to x11th file copy +#. localizers: appended to x12th file copy +#. localizers: appended to x13th file copy +#. localizers: appended to xxth file copy +#: ../gsearchtool/src/gsearchtool-support.c:1298 +#: ../gsearchtool/src/gsearchtool-support.c:1300 +#: ../gsearchtool/src/gsearchtool-support.c:1302 +#: ../gsearchtool/src/gsearchtool-support.c:1311 #, c-format msgid "%s (%dth copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1146 +#. localizers: appended to x1st file copy +#: ../gsearchtool/src/gsearchtool-support.c:1305 #, c-format msgid "%s (%dst copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1148 +#. localizers: appended to x2nd file copy +#: ../gsearchtool/src/gsearchtool-support.c:1307 #, c-format msgid "%s (%dnd copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1150 +#. localizers: appended to x3rd file copy +#: ../gsearchtool/src/gsearchtool-support.c:1309 #, c-format msgid "%s (%drd copy)%s" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1197 +#: ../gsearchtool/src/gsearchtool-support.c:1356 msgid " (invalid Unicode)" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1286 +#. localizers: opening parentheses to match the "th copy)" string +#: ../gsearchtool/src/gsearchtool-support.c:1445 msgid " (" msgstr "" -#: gsearchtool/src/gsearchtool-support.c:1294 +#. localizers: opening parentheses of the "th copy)" string +#: ../gsearchtool/src/gsearchtool-support.c:1453 #, c-format msgid " (%d" msgstr "" -#: logview/data/mate-system-log.desktop.in.in:3 +#: ../logview/data/mate-system-log.desktop.in.in.h:1 msgid "Log File Viewer" msgstr "" -#: logview/data/mate-system-log.desktop.in.in:4 +#: ../logview/data/mate-system-log.desktop.in.in.h:2 msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: logview/data/mate-system-log.desktop.in.in:13 -msgid "MATE;monitor;view;system;log;files;logviewer;" -msgstr "" - -#: logview/data/org.mate.system-log.gschema.xml.in:5 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:1 msgid "Log file to open up on startup" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:6 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:2 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:10 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:3 msgid "Size of the font used to display the log" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:11 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:4 msgid "" "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:15 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:5 msgid "Height of the main window in pixels" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:16 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:6 msgid "Specifies the height of the log viewer main window in pixels." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:20 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:7 msgid "Width of the main window in pixels" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:21 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:8 msgid "Specifies the width of the log viewer main window in pixels." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:25 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:9 msgid "Log files to open up on startup" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:26 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:10 msgid "" "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:30 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:11 msgid "List of saved filters" msgstr "" -#: logview/data/org.mate.system-log.gschema.xml.in:31 +#: ../logview/data/org.mate.system-log.gschema.xml.in.h:12 msgid "List of saved regexp filters" msgstr "" -#: logview/data/logview-filter.ui:32 mate-disk-image-mounter/src/main.c:124 -#: mate-screenshot/data/mate-screenshot.ui:92 -msgid "_Cancel" -msgstr "" - -#: logview/data/logview-filter.ui:48 -msgid "_Apply" -msgstr "" - -#: logview/data/logview-filter.ui:91 -#: mate-screenshot/data/mate-screenshot.ui:178 +#: ../logview/data/logview-filter.ui.h:1 +#: ../mate-screenshot/data/mate-screenshot.ui.h:3 msgid "_Name:" msgstr "" -#: logview/data/logview-filter.ui:108 +#: ../logview/data/logview-filter.ui.h:2 msgid "_Regular Expression:" msgstr "" -#: logview/data/logview-filter.ui:180 +#: ../logview/data/logview-filter.ui.h:3 msgid "Highlight" msgstr "" -#: logview/data/logview-filter.ui:205 -msgid "Foreground:" +#: ../logview/data/logview-filter.ui.h:4 +msgid "Hide" msgstr "" -#: logview/data/logview-filter.ui:220 -msgid "Background:" +#: ../logview/data/logview-filter.ui.h:5 +msgid "Foreground:" msgstr "" -#: logview/data/logview-filter.ui:274 -msgid "Hide" +#: ../logview/data/logview-filter.ui.h:6 +msgid "Background:" msgstr "" -#: logview/data/logview-filter.ui:296 +#: ../logview/data/logview-filter.ui.h:7 msgid "Effect:" msgstr "" -#: logview/src/logview-about.h:41 mate-dictionary/src/gdict-about.c:46 -msgid "Sun GNOME Documentation Team " -msgstr "" - -#: logview/src/logview-app.c:369 +#: ../logview/src/logview-app.c:377 #, c-format msgid "Impossible to open the file %s" msgstr "" -#: logview/src/logview-filter-manager.c:93 +#: ../logview/src/logview-filter-manager.c:94 msgid "Filter name is empty!" msgstr "" -#: logview/src/logview-filter-manager.c:106 +#: ../logview/src/logview-filter-manager.c:107 msgid "Filter name may not contain the ':' character" msgstr "" -#: logview/src/logview-filter-manager.c:129 +#: ../logview/src/logview-filter-manager.c:130 msgid "Regular expression is empty!" msgstr "" -#: logview/src/logview-filter-manager.c:145 +#: ../logview/src/logview-filter-manager.c:146 #, c-format msgid "Regular expression is invalid: %s" msgstr "" -#: logview/src/logview-filter-manager.c:207 +#: ../logview/src/logview-filter-manager.c:242 msgid "Please specify either foreground or background color!" msgstr "" -#: logview/src/logview-filter-manager.c:282 +#: ../logview/src/logview-filter-manager.c:296 msgid "Edit filter" msgstr "" -#: logview/src/logview-filter-manager.c:282 +#: ../logview/src/logview-filter-manager.c:296 msgid "Add new filter" msgstr "" -#: logview/src/logview-filter-manager.c:469 +#: ../logview/src/logview-filter-manager.c:510 msgid "Filters" msgstr "" -#: logview/src/logview-findbar.c:169 +#: ../logview/src/logview-findbar.c:172 msgid "_Find:" msgstr "" -#: logview/src/logview-findbar.c:184 +#: ../logview/src/logview-findbar.c:187 msgid "Find Previous" msgstr "" -#: logview/src/logview-findbar.c:187 +#: ../logview/src/logview-findbar.c:190 msgid "Find previous occurrence of the search string" msgstr "" -#: logview/src/logview-findbar.c:192 +#: ../logview/src/logview-findbar.c:195 msgid "Find Next" msgstr "" -#: logview/src/logview-findbar.c:195 +#: ../logview/src/logview-findbar.c:198 msgid "Find next occurrence of the search string" msgstr "" -#: logview/src/logview-findbar.c:202 +#: ../logview/src/logview-findbar.c:205 msgid "Clear the search string" msgstr "" -#: logview/src/logview-log.c:589 +#: ../logview/src/logview-log.c:598 msgid "Error while uncompressing the GZipped log. The file might be corrupt." msgstr "" -#: logview/src/logview-log.c:635 +#: ../logview/src/logview-log.c:645 msgid "You don't have enough permissions to read the file." msgstr "" -#: logview/src/logview-log.c:650 +#: ../logview/src/logview-log.c:660 msgid "The file is not a regular file or is not a text file." msgstr "" -#: logview/src/logview-log.c:743 +#: ../logview/src/logview-log.c:742 msgid "This version of System Log does not support GZipped logs." msgstr "" -#: logview/src/logview-loglist.c:103 -msgid "%A, %e %b" -msgstr "" - -#: logview/src/logview-loglist.c:314 +#: ../logview/src/logview-loglist.c:316 msgid "Loading..." msgstr "" -#: logview/src/logview-main.c:48 -#, c-format -msgid "" -"%s - Version %s\n" -"Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n" -"Copyright (C) 2011-2021 MATE developers.\n" -msgstr "" - -#: logview/src/logview-main.c:64 +#: ../logview/src/logview-main.c:61 msgid "Show the application's version" msgstr "" -#: logview/src/logview-main.c:66 +#: ../logview/src/logview-main.c:63 msgid "[LOGFILE...]" msgstr "" -#: logview/src/logview-main.c:70 +#: ../logview/src/logview-main.c:67 msgid " - Browse and monitor logs" msgstr "" -#: logview/src/logview-main.c:107 +#: ../logview/src/logview-main.c:100 msgid "Log Viewer" msgstr "" -#: logview/src/logview-window.c:41 logview/src/logview-window.c:771 +#: ../logview/src/logview-window.c:38 ../logview/src/logview-window.c:771 msgid "System Log Viewer" msgstr "" -#: logview/src/logview-window.c:216 +#: ../logview/src/logview-window.c:217 #, c-format msgid "last update: %s" msgstr "" -#: logview/src/logview-window.c:220 +#: ../logview/src/logview-window.c:221 #, c-format msgid "%d lines (%s) - %s" msgstr "" -#: logview/src/logview-window.c:325 +#: ../logview/src/logview-window.c:325 msgid "Open Log" msgstr "" -#: logview/src/logview-window.c:364 +#: ../logview/src/logview-window.c:368 #, c-format msgid "There was an error displaying help: %s" msgstr "" -#: logview/src/logview-window.c:478 +#: ../logview/src/logview-window.c:482 msgid "Wrapped" msgstr "" -#: logview/src/logview-window.c:493 -#: mate-dictionary/libgdict/gdict-defbox.c:1125 -#: mate-dictionary/libgdict/gdict-defbox.c:1219 -#: mate-dictionary/libgdict/gdict-defbox.c:1253 +#: ../logview/src/logview-window.c:497 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1127 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1221 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1255 msgid "Not found" msgstr "" -#: logview/src/logview-window.c:773 -msgid "About System Log Viewer" +#: ../logview/src/logview-window.c:777 +msgid "A system log viewer for MATE." msgstr "" -#: logview/src/logview-window.c:774 -msgid "" -"Copyright © 1998-2008 Free Software Foundation, Inc.\n" -"Copyright © 2011-2021 MATE developers" -msgstr "" - -#: logview/src/logview-window.c:778 -msgid "View, monitor or analyze your system logs in a gradual manner." -msgstr "" - -#: logview/src/logview-window.c:821 mate-dictionary/src/gdict-window.c:1258 +#: ../logview/src/logview-window.c:820 +#: ../mate-dictionary/src/gdict-window.c:1291 msgid "_File" msgstr "" -#: logview/src/logview-window.c:824 +#: ../logview/src/logview-window.c:823 msgid "_Filters" msgstr "" -#: logview/src/logview-window.c:827 +#: ../logview/src/logview-window.c:826 msgid "_Open..." msgstr "" -#: logview/src/logview-window.c:827 +#: ../logview/src/logview-window.c:826 msgid "Open a log from file" msgstr "" -#: logview/src/logview-window.c:829 +#: ../logview/src/logview-window.c:828 +msgid "_Close" +msgstr "" + +#: ../logview/src/logview-window.c:828 msgid "Close this log" msgstr "" -#: logview/src/logview-window.c:831 +#: ../logview/src/logview-window.c:830 msgid "_Quit" msgstr "" -#: logview/src/logview-window.c:831 +#: ../logview/src/logview-window.c:830 msgid "Quit the log viewer" msgstr "" -#: logview/src/logview-window.c:834 mate-dictionary/src/gdict-window.c:1277 +#: ../logview/src/logview-window.c:833 msgid "_Copy" msgstr "" -#: logview/src/logview-window.c:834 +#: ../logview/src/logview-window.c:833 msgid "Copy the selection" msgstr "" -#: logview/src/logview-window.c:836 mate-dictionary/src/gdict-window.c:1279 +#: ../logview/src/logview-window.c:835 +#: ../mate-dictionary/src/gdict-window.c:1312 msgid "Select _All" msgstr "" -#: logview/src/logview-window.c:836 +#: ../logview/src/logview-window.c:835 msgid "Select the entire log" msgstr "" -#: logview/src/logview-window.c:838 +#: ../logview/src/logview-window.c:837 msgid "_Find..." msgstr "" -#: logview/src/logview-window.c:838 +#: ../logview/src/logview-window.c:837 msgid "Find a word or phrase in the log" msgstr "" -#: logview/src/logview-window.c:841 -msgid "Zoom _In" -msgstr "" - -#: logview/src/logview-window.c:841 +#: ../logview/src/logview-window.c:840 msgid "Bigger text size" msgstr "" -#: logview/src/logview-window.c:843 -msgid "Zoom _Out" -msgstr "" - -#: logview/src/logview-window.c:843 +#: ../logview/src/logview-window.c:842 msgid "Smaller text size" msgstr "" -#: logview/src/logview-window.c:845 -msgid "_Normal Size" -msgstr "" - -#: logview/src/logview-window.c:845 +#: ../logview/src/logview-window.c:844 msgid "Normal text size" msgstr "" -#: logview/src/logview-window.c:848 +#: ../logview/src/logview-window.c:847 msgid "Manage Filters" msgstr "" -#: logview/src/logview-window.c:848 +#: ../logview/src/logview-window.c:847 msgid "Manage filters" msgstr "" -#: logview/src/logview-window.c:851 +#: ../logview/src/logview-window.c:850 msgid "Open the help contents for the log viewer" msgstr "" -#: logview/src/logview-window.c:853 mate-dictionary/src/gdict-applet.c:1176 -#: mate-dictionary/src/gdict-window.c:1314 +#: ../logview/src/logview-window.c:852 +#: ../mate-dictionary/src/gdict-applet.c:1192 +#: ../mate-dictionary/src/gdict-window.c:1347 msgid "_About" msgstr "_Watara" -#: logview/src/logview-window.c:853 +#: ../logview/src/logview-window.c:852 msgid "Show the about dialog for the log viewer" msgstr "" -#: logview/src/logview-window.c:858 +#: ../logview/src/logview-window.c:857 msgid "_Statusbar" msgstr "" -#: logview/src/logview-window.c:858 +#: ../logview/src/logview-window.c:857 msgid "Show Status Bar" msgstr "" -#: logview/src/logview-window.c:860 +#: ../logview/src/logview-window.c:859 msgid "Side _Pane" msgstr "" -#: logview/src/logview-window.c:860 +#: ../logview/src/logview-window.c:859 msgid "Show Side Pane" msgstr "" -#: logview/src/logview-window.c:862 +#: ../logview/src/logview-window.c:861 msgid "Show matches only" msgstr "" -#: logview/src/logview-window.c:862 +#: ../logview/src/logview-window.c:861 msgid "Only show lines that match one of the given filters" msgstr "" -#: logview/src/logview-window.c:994 +#: ../logview/src/logview-window.c:993 #, c-format msgid "Can't read from \"%s\"" msgstr "" -#: logview/src/logview-window.c:1419 +#: ../logview/src/logview-window.c:1421 msgid "Version: " msgstr "" -#: logview/src/logview-window.c:1525 +#: ../logview/src/logview-window.c:1529 msgid "Could not open the following files:" msgstr "" -#: mate-dictionary/data/default.desktop.in:3 -msgid "Default" -msgstr "" - -#: mate-dictionary/data/default.desktop.in:4 +#: ../mate-dictionary/data/default.desktop.in.h:1 msgid "Default Dictionary Server" msgstr "" -#: mate-dictionary/data/mate-dictionary.desktop.in.in:3 -#: mate-dictionary/data/mate-dictionary.appdata.xml.in:7 +#: ../mate-dictionary/data/mate-dictionary.desktop.in.in.h:1 msgid "MATE Dictionary" msgstr "" -#: mate-dictionary/data/mate-dictionary.desktop.in.in:4 +#: ../mate-dictionary/data/mate-dictionary.desktop.in.in.h:2 msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: mate-dictionary/data/mate-dictionary.desktop.in.in:13 -msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" -msgstr "" - -#: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 +#: ../mate-dictionary/data/mate-dictionary.appdata.xml.in.h:1 msgid "A dictionary for MATE Desktop" msgstr "" -#: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 +#: ../mate-dictionary/data/mate-dictionary.appdata.xml.in.h:2 msgid "" -"MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " -"query." +"

MATE Dictionary allows you to look up words in on-line dictionaries. It " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " +"query.

" msgstr "" -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 +#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:1 msgid "Dictionary Applet Factory" msgstr "" -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:6 +#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:2 msgid "Factory for the dictionary applet" msgstr "" -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:9 +#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:3 msgid "Dictionary Look up" msgstr "" -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:10 +#: ../mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.in.in.h:4 msgid "Look up words in a dictionary" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:6 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:1 msgid "The default database to use" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:7 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:2 msgid "" "The name of the default individual database or meta-database to use on a " "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:3 msgid "The default search strategy to use" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:12 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:4 msgid "" "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:5 msgid "The font to be used when printing" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:17 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:6 msgid "The font to be used when printing a definition." msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:21 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:7 msgid "The name of the dictionary source used" msgstr "" -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22 +#: ../mate-dictionary/data/org.mate.dictionary.gschema.xml.in.h:8 msgid "" "The name of the dictionary source used to retrieve the definitions of words." msgstr "" -#: mate-dictionary/data/thai.desktop.in:3 -msgid "Thai" -msgstr "" - -#: mate-dictionary/data/thai.desktop.in:4 +#: ../mate-dictionary/data/thai.desktop.in.h:1 msgid "Longdo Thai-English Dictionaries" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:283 +#: ../mate-dictionary/libgdict/gdict-client-context.c:283 msgid "Client Name" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:284 +#: ../mate-dictionary/libgdict/gdict-client-context.c:284 msgid "The name of the client of the context object" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:297 +#: ../mate-dictionary/libgdict/gdict-client-context.c:297 msgid "Hostname" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:298 +#: ../mate-dictionary/libgdict/gdict-client-context.c:298 msgid "The hostname of the dictionary server to connect to" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:311 +#: ../mate-dictionary/libgdict/gdict-client-context.c:311 msgid "Port" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:312 +#: ../mate-dictionary/libgdict/gdict-client-context.c:312 msgid "The port of the dictionary server to connect to" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:327 +#: ../mate-dictionary/libgdict/gdict-client-context.c:327 msgid "Status" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:328 +#: ../mate-dictionary/libgdict/gdict-client-context.c:328 msgid "The status code as returned by the dictionary server" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:772 +#: ../mate-dictionary/libgdict/gdict-client-context.c:777 #, c-format msgid "No connection to the dictionary server at '%s:%d'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1052 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1060 #, c-format msgid "Lookup failed for hostname '%s': no suitable resources found" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1083 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1091 #, c-format msgid "Lookup failed for host '%s': %s" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1117 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1125 #, c-format msgid "Lookup failed for host '%s': host not found" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1169 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1177 #, c-format msgid "" "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1188 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1196 #, c-format msgid "" "Unable to parse the dictionary server reply\n" ": '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1217 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1225 #, c-format msgid "No definitions found for '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1232 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1240 #, c-format msgid "Invalid database '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1247 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1255 #, c-format msgid "Invalid strategy '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1262 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1270 #, c-format msgid "Bad command '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1277 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1285 #, c-format msgid "Bad parameters for command '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1292 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1300 #, c-format msgid "No databases found on dictionary server at '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1307 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1315 #, c-format msgid "No strategies found on dictionary server at '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1732 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1740 #, c-format msgid "Connection failed to the dictionary server at %s:%d" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1771 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1779 #, c-format msgid "" "Error while reading reply from server:\n" "%s" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1844 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1852 #, c-format msgid "Connection timeout for the dictionary server at '%s:%d'" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1878 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1886 +#, c-format msgid "No hostname defined for the dictionary server" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1914 -#: mate-dictionary/libgdict/gdict-client-context.c:1929 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1922 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1937 +#, c-format msgid "Unable to create socket" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1955 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1963 #, c-format msgid "Unable to set the channel as non-blocking: %s" msgstr "" -#: mate-dictionary/libgdict/gdict-client-context.c:1970 +#: ../mate-dictionary/libgdict/gdict-client-context.c:1978 #, c-format msgid "Unable to connect to the dictionary server at '%s:%d'" msgstr "" -#: mate-dictionary/libgdict/gdict-context.c:220 +#: ../mate-dictionary/libgdict/gdict-context.c:218 msgid "Local Only" msgstr "" -#: mate-dictionary/libgdict/gdict-context.c:221 +#: ../mate-dictionary/libgdict/gdict-context.c:219 msgid "Whether the context uses only local dictionaries or not" msgstr "" -#: mate-dictionary/libgdict/gdict-database-chooser.c:376 +#: ../mate-dictionary/libgdict/gdict-database-chooser.c:379 msgid "Reload the list of available databases" msgstr "" -#: mate-dictionary/libgdict/gdict-database-chooser.c:388 +#: ../mate-dictionary/libgdict/gdict-database-chooser.c:391 msgid "Clear the list of available databases" msgstr "" -#: mate-dictionary/libgdict/gdict-database-chooser.c:836 -#: mate-dictionary/libgdict/gdict-speller.c:773 -#: mate-dictionary/libgdict/gdict-strategy-chooser.c:783 +#: ../mate-dictionary/libgdict/gdict-database-chooser.c:841 +#: ../mate-dictionary/libgdict/gdict-speller.c:773 +#: ../mate-dictionary/libgdict/gdict-strategy-chooser.c:783 msgid "Error while matching" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:1314 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1316 msgid "F_ind:" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:1327 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1329 msgid "_Previous" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:1335 +#: ../mate-dictionary/libgdict/gdict-defbox.c:1337 msgid "_Next" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:2483 +#: ../mate-dictionary/libgdict/gdict-defbox.c:2494 msgid "Error while looking up definition" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:2525 -#: mate-dictionary/libgdict/gdict-speller.c:731 +#: ../mate-dictionary/libgdict/gdict-defbox.c:2536 +#: ../mate-dictionary/libgdict/gdict-speller.c:731 msgid "Another search is in progress" msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:2526 -#: mate-dictionary/libgdict/gdict-speller.c:732 +#: ../mate-dictionary/libgdict/gdict-defbox.c:2537 +#: ../mate-dictionary/libgdict/gdict-speller.c:732 msgid "Please wait until the current search ends." msgstr "" -#: mate-dictionary/libgdict/gdict-defbox.c:2565 +#: ../mate-dictionary/libgdict/gdict-defbox.c:2576 msgid "Error while retrieving the definition" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:229 +#: ../mate-dictionary/libgdict/gdict-source.c:232 msgid "Filename" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:230 +#: ../mate-dictionary/libgdict/gdict-source.c:233 msgid "The filename used by this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:244 +#: ../mate-dictionary/libgdict/gdict-source.c:247 msgid "The display name of this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:257 +#: ../mate-dictionary/libgdict/gdict-source.c:260 msgid "Description" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:258 +#: ../mate-dictionary/libgdict/gdict-source.c:261 msgid "The description of this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:271 -#: mate-dictionary/libgdict/gdict-speller.c:375 +#: ../mate-dictionary/libgdict/gdict-source.c:274 +#: ../mate-dictionary/libgdict/gdict-speller.c:375 msgid "Database" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:272 +#: ../mate-dictionary/libgdict/gdict-source.c:275 msgid "The default database of this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:285 -#: mate-dictionary/libgdict/gdict-speller.c:382 +#: ../mate-dictionary/libgdict/gdict-source.c:288 +#: ../mate-dictionary/libgdict/gdict-speller.c:382 msgid "Strategy" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:286 +#: ../mate-dictionary/libgdict/gdict-source.c:289 msgid "The default strategy of this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:299 +#: ../mate-dictionary/libgdict/gdict-source.c:302 msgid "Transport" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:300 +#: ../mate-dictionary/libgdict/gdict-source.c:303 msgid "The transport mechanism used by this dictionary source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:314 -#: mate-dictionary/libgdict/gdict-speller.c:368 +#: ../mate-dictionary/libgdict/gdict-source.c:317 +#: ../mate-dictionary/libgdict/gdict-speller.c:368 msgid "Context" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:315 +#: ../mate-dictionary/libgdict/gdict-source.c:318 msgid "The GdictContext bound to this source" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:408 +#: ../mate-dictionary/libgdict/gdict-source.c:413 #, c-format msgid "Invalid transport type '%d'" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:436 +#: ../mate-dictionary/libgdict/gdict-source.c:441 #, c-format msgid "No '%s' group found inside the dictionary source definition" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:452 -#: mate-dictionary/libgdict/gdict-source.c:476 -#: mate-dictionary/libgdict/gdict-source.c:500 -#: mate-dictionary/libgdict/gdict-source.c:525 +#: ../mate-dictionary/libgdict/gdict-source.c:457 +#: ../mate-dictionary/libgdict/gdict-source.c:481 +#: ../mate-dictionary/libgdict/gdict-source.c:505 +#: ../mate-dictionary/libgdict/gdict-source.c:530 #, c-format msgid "Unable to get the '%s' key inside the dictionary source definition: %s" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:550 +#: ../mate-dictionary/libgdict/gdict-source.c:555 #, c-format msgid "" "Unable to get the '%s' key inside the dictionary source definition file: %s" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:736 +#: ../mate-dictionary/libgdict/gdict-source.c:741 +#, c-format msgid "Dictionary source does not have name" msgstr "" -#: mate-dictionary/libgdict/gdict-source.c:745 +#: ../mate-dictionary/libgdict/gdict-source.c:750 #, c-format msgid "Dictionary source '%s' has invalid transport '%s'" msgstr "" -#: mate-dictionary/libgdict/gdict-source-chooser.c:283 +#: ../mate-dictionary/libgdict/gdict-source-chooser.c:283 msgid "Reload the list of available sources" msgstr "" -#: mate-dictionary/libgdict/gdict-source-loader.c:163 +#: ../mate-dictionary/libgdict/gdict-source-loader.c:171 msgid "Paths" msgstr "" -#: mate-dictionary/libgdict/gdict-source-loader.c:164 +#: ../mate-dictionary/libgdict/gdict-source-loader.c:172 msgid "Search paths used by this object" msgstr "" -#: mate-dictionary/libgdict/gdict-source-loader.c:176 +#: ../mate-dictionary/libgdict/gdict-source-loader.c:184 msgid "Sources" msgstr "" -#: mate-dictionary/libgdict/gdict-source-loader.c:177 +#: ../mate-dictionary/libgdict/gdict-source-loader.c:185 msgid "Dictionary sources found" msgstr "" -#: mate-dictionary/libgdict/gdict-speller.c:347 +#: ../mate-dictionary/libgdict/gdict-speller.c:347 msgid "Clear the list of similar words" msgstr "" -#: mate-dictionary/libgdict/gdict-speller.c:369 +#: ../mate-dictionary/libgdict/gdict-speller.c:369 msgid "The GdictContext object used to get the word definition" msgstr "" -#: mate-dictionary/libgdict/gdict-speller.c:376 +#: ../mate-dictionary/libgdict/gdict-speller.c:376 msgid "The database used to query the GdictContext" msgstr "" -#: mate-dictionary/libgdict/gdict-speller.c:383 +#: ../mate-dictionary/libgdict/gdict-speller.c:383 msgid "The strategy used to query the GdictContext" msgstr "" -#: mate-dictionary/libgdict/gdict-strategy-chooser.c:358 +#: ../mate-dictionary/libgdict/gdict-strategy-chooser.c:358 msgid "Reload the list of available strategies" msgstr "" -#: mate-dictionary/libgdict/gdict-strategy-chooser.c:370 +#: ../mate-dictionary/libgdict/gdict-strategy-chooser.c:370 msgid "Clear the list of available strategies" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:97 +#: ../mate-dictionary/libgdict/gdict-utils.c:97 msgid "GDict debugging flags to set" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:97 -#: mate-dictionary/libgdict/gdict-utils.c:99 +#: ../mate-dictionary/libgdict/gdict-utils.c:97 +#: ../mate-dictionary/libgdict/gdict-utils.c:99 msgid "FLAGS" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:99 +#: ../mate-dictionary/libgdict/gdict-utils.c:99 msgid "GDict debugging flags to unset" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:153 +#: ../mate-dictionary/libgdict/gdict-utils.c:157 msgid "GDict Options" msgstr "" -#: mate-dictionary/libgdict/gdict-utils.c:154 +#: ../mate-dictionary/libgdict/gdict-utils.c:158 msgid "Show GDict Options" msgstr "" -#: mate-dictionary/src/gdict-about.c:54 -msgid "Look up words or terms in a dictionary source." +#: ../mate-dictionary/src/gdict-about.c:58 +#: ../mate-dictionary/src/gdict-applet.c:587 +msgid "Look up words in dictionaries" msgstr "" -#: mate-dictionary/src/gdict-about.c:82 mate-dictionary/src/gdict-app.c:363 -#: mate-dictionary/src/gdict-window.c:580 -#: mate-dictionary/src/gdict-window.c:1864 +#: ../mate-dictionary/src/gdict-about.c:79 +#: ../mate-dictionary/src/gdict-app.c:371 +#: ../mate-dictionary/src/gdict-window.c:607 +#: ../mate-dictionary/src/gdict-window.c:1900 msgid "Dictionary" msgstr "" -#: mate-dictionary/src/gdict-about.c:84 -msgid "About Dictionary" -msgstr "" - -#: mate-dictionary/src/gdict-about.c:85 -msgid "" -"Copyright © 2005-2006 Emmanuele Bassi\n" -"Copyright © 2011-2021 MATE developers" -msgstr "" - #. Translators: the first is the word found, the second is the #. * database name and the last is the definition's text; please #. * keep the new lines. -#: mate-dictionary/src/gdict-app.c:207 +#: ../mate-dictionary/src/gdict-app.c:217 #, c-format msgid "" "Definition for '%s'\n" @@ -2347,701 +2288,635 @@ "%s\n" msgstr "" -#: mate-dictionary/src/gdict-app.c:221 +#: ../mate-dictionary/src/gdict-app.c:231 #, c-format msgid "Error: %s\n" msgstr "" -#: mate-dictionary/src/gdict-app.c:247 +#: ../mate-dictionary/src/gdict-app.c:257 +#, c-format msgid "See mate-dictionary --help for usage\n" msgstr "" -#: mate-dictionary/src/gdict-app.c:260 +#: ../mate-dictionary/src/gdict-app.c:270 msgid "Unable to find a suitable dictionary source" msgstr "" -#: mate-dictionary/src/gdict-app.c:294 +#: ../mate-dictionary/src/gdict-app.c:304 #, c-format msgid "" "Error while looking up the definition of \"%s\":\n" "%s" msgstr "" -#: mate-dictionary/src/gdict-app.c:323 mate-dictionary/src/gdict-app.c:333 +#: ../mate-dictionary/src/gdict-app.c:333 +#: ../mate-dictionary/src/gdict-app.c:343 msgid "Words to look up" msgstr "" -#: mate-dictionary/src/gdict-app.c:323 mate-dictionary/src/gdict-app.c:325 -#: mate-dictionary/src/gdict-app.c:333 +#: ../mate-dictionary/src/gdict-app.c:333 +#: ../mate-dictionary/src/gdict-app.c:335 +#: ../mate-dictionary/src/gdict-app.c:343 msgid "word" msgstr "" -#: mate-dictionary/src/gdict-app.c:325 +#: ../mate-dictionary/src/gdict-app.c:335 msgid "Words to match" msgstr "" -#: mate-dictionary/src/gdict-app.c:327 +#: ../mate-dictionary/src/gdict-app.c:337 msgid "Dictionary source to use" msgstr "" -#: mate-dictionary/src/gdict-app.c:327 +#: ../mate-dictionary/src/gdict-app.c:337 msgid "source" msgstr "" -#: mate-dictionary/src/gdict-app.c:329 +#: ../mate-dictionary/src/gdict-app.c:339 msgid "Print result to the console" msgstr "" -#: mate-dictionary/src/gdict-app.c:331 +#: ../mate-dictionary/src/gdict-app.c:341 msgid "Database to use" msgstr "" -#: mate-dictionary/src/gdict-app.c:331 +#: ../mate-dictionary/src/gdict-app.c:341 msgid "db" msgstr "" -#: mate-dictionary/src/gdict-app.c:343 +#. create the new option context +#: ../mate-dictionary/src/gdict-app.c:353 msgid " - Look up words in dictionaries" msgstr "" -#: mate-dictionary/src/gdict-applet.c:194 -#: mate-dictionary/src/gdict-window.c:935 +#: ../mate-dictionary/src/gdict-applet.c:219 +#: ../mate-dictionary/src/gdict-window.c:964 msgid "Save a Copy" msgstr "" -#: mate-dictionary/src/gdict-applet.c:204 -#: mate-dictionary/src/gdict-window.c:945 +#: ../mate-dictionary/src/gdict-applet.c:229 +#: ../mate-dictionary/src/gdict-window.c:974 msgid "Untitled document" msgstr "" -#: mate-dictionary/src/gdict-applet.c:225 -#: mate-dictionary/src/gdict-window.c:966 +#: ../mate-dictionary/src/gdict-applet.c:250 +#: ../mate-dictionary/src/gdict-window.c:995 #, c-format msgid "Error while writing to '%s'" msgstr "" -#: mate-dictionary/src/gdict-applet.c:350 +#: ../mate-dictionary/src/gdict-applet.c:370 msgid "Clear the definitions found" msgstr "" -#: mate-dictionary/src/gdict-applet.c:352 +#: ../mate-dictionary/src/gdict-applet.c:372 msgid "Clear definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:353 +#: ../mate-dictionary/src/gdict-applet.c:373 msgid "Clear the text of the definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:365 +#: ../mate-dictionary/src/gdict-applet.c:380 msgid "Print the definitions found" msgstr "" -#: mate-dictionary/src/gdict-applet.c:367 +#: ../mate-dictionary/src/gdict-applet.c:382 msgid "Print definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:368 +#: ../mate-dictionary/src/gdict-applet.c:383 msgid "Print the text of the definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:380 +#: ../mate-dictionary/src/gdict-applet.c:390 msgid "Save the definitions found" msgstr "" -#: mate-dictionary/src/gdict-applet.c:382 +#: ../mate-dictionary/src/gdict-applet.c:392 msgid "Save definition" msgstr "" -#: mate-dictionary/src/gdict-applet.c:383 +#: ../mate-dictionary/src/gdict-applet.c:393 msgid "Save the text of the definition to a file" msgstr "" -#: mate-dictionary/src/gdict-applet.c:520 +#: ../mate-dictionary/src/gdict-applet.c:530 msgid "Click to view the dictionary window" msgstr "" -#: mate-dictionary/src/gdict-applet.c:522 +#: ../mate-dictionary/src/gdict-applet.c:532 msgid "Toggle dictionary window" msgstr "" -#: mate-dictionary/src/gdict-applet.c:523 +#: ../mate-dictionary/src/gdict-applet.c:533 msgid "Show or hide the definition window" msgstr "" -#: mate-dictionary/src/gdict-applet.c:574 +#: ../mate-dictionary/src/gdict-applet.c:584 msgid "Type the word you want to look up" msgstr "" -#: mate-dictionary/src/gdict-applet.c:576 +#: ../mate-dictionary/src/gdict-applet.c:586 msgid "Dictionary entry" msgstr "" -#: mate-dictionary/src/gdict-applet.c:577 -msgid "Look up words in dictionaries" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:705 -#: mate-dictionary/src/gdict-window.c:1077 +#: ../mate-dictionary/src/gdict-applet.c:715 +#: ../mate-dictionary/src/gdict-window.c:1106 msgid "Dictionary Preferences" msgstr "" -#: mate-dictionary/src/gdict-applet.c:729 -#: mate-dictionary/src/gdict-pref-dialog.c:496 -#: mate-dictionary/src/gdict-source-dialog.c:477 -#: mate-dictionary/src/gdict-window.c:1224 +#: ../mate-dictionary/src/gdict-applet.c:743 +#: ../mate-dictionary/src/gdict-pref-dialog.c:499 +#: ../mate-dictionary/src/gdict-source-dialog.c:482 +#: ../mate-dictionary/src/gdict-window.c:1257 +#, c-format msgid "There was an error while displaying help" msgstr "" -#: mate-dictionary/src/gdict-applet.c:868 -#: mate-dictionary/src/gdict-window.c:495 +#: ../mate-dictionary/src/gdict-applet.c:882 +#: ../mate-dictionary/src/gdict-window.c:522 #, c-format msgid "No dictionary source available with name '%s'" msgstr "" -#: mate-dictionary/src/gdict-applet.c:872 -#: mate-dictionary/src/gdict-window.c:499 +#: ../mate-dictionary/src/gdict-applet.c:886 +#: ../mate-dictionary/src/gdict-window.c:526 msgid "Unable to find dictionary source" msgstr "" -#: mate-dictionary/src/gdict-applet.c:888 -#: mate-dictionary/src/gdict-window.c:515 +#: ../mate-dictionary/src/gdict-applet.c:902 +#: ../mate-dictionary/src/gdict-window.c:542 #, c-format msgid "No context available for source '%s'" msgstr "" -#: mate-dictionary/src/gdict-applet.c:892 -#: mate-dictionary/src/gdict-window.c:519 +#: ../mate-dictionary/src/gdict-applet.c:906 +#: ../mate-dictionary/src/gdict-window.c:546 msgid "Unable to create a context" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1158 +#: ../mate-dictionary/src/gdict-applet.c:1174 msgid "_Look Up Selected Text" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1161 +#: ../mate-dictionary/src/gdict-applet.c:1177 msgid "Cl_ear" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1164 +#: ../mate-dictionary/src/gdict-applet.c:1180 msgid "_Print" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1167 -#: mate-screenshot/data/mate-screenshot.ui:109 +#: ../mate-dictionary/src/gdict-applet.c:1183 msgid "_Save" msgstr "" -#: mate-dictionary/src/gdict-applet.c:1170 +#: ../mate-dictionary/src/gdict-applet.c:1186 msgid "Preferences" msgstr "Paling disenengi" -#: mate-dictionary/src/gdict-common.c:77 +#: ../mate-dictionary/src/gdict-common.c:80 #, c-format msgid "Unable to rename file '%s' to '%s': %s" msgstr "" -#: mate-dictionary/src/gdict-common.c:101 -#: mate-dictionary/src/gdict-common.c:124 +#: ../mate-dictionary/src/gdict-common.c:104 +#: ../mate-dictionary/src/gdict-common.c:127 #, c-format msgid "Unable to create the data directory '%s': %s" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:238 -#: mate-dictionary/src/gdict-pref-dialog.c:427 +#: ../mate-dictionary/src/gdict-pref-dialog.c:240 +#: ../mate-dictionary/src/gdict-pref-dialog.c:429 msgid "Edit Dictionary Source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:302 +#: ../mate-dictionary/src/gdict-pref-dialog.c:304 msgid "Add Dictionary Source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:347 +#: ../mate-dictionary/src/gdict-pref-dialog.c:349 #, c-format msgid "Remove \"%s\"?" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:349 +#: ../mate-dictionary/src/gdict-pref-dialog.c:351 msgid "This will permanently remove the dictionary source from the list." msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:379 +#: ../mate-dictionary/src/gdict-pref-dialog.c:381 #, c-format msgid "Unable to remove source '%s'" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:713 +#: ../mate-dictionary/src/gdict-pref-dialog.c:646 msgid "Add a new dictionary source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:719 +#: ../mate-dictionary/src/gdict-pref-dialog.c:652 msgid "Remove the currently selected dictionary source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:725 +#: ../mate-dictionary/src/gdict-pref-dialog.c:658 msgid "Edit the currently selected dictionary source" msgstr "" -#: mate-dictionary/src/gdict-pref-dialog.c:733 +#: ../mate-dictionary/src/gdict-pref-dialog.c:666 msgid "Set the font used for printing the definitions" msgstr "" -#: mate-dictionary/src/gdict-print.c:238 mate-dictionary/src/gdict-print.c:302 +#: ../mate-dictionary/src/gdict-print.c:241 +#: ../mate-dictionary/src/gdict-print.c:305 #, c-format msgid "Unable to display the preview: %s" msgstr "" -#: mate-dictionary/src/gdict-source-dialog.c:339 -#: mate-dictionary/src/gdict-source-dialog.c:432 +#: ../mate-dictionary/src/gdict-source-dialog.c:340 +#: ../mate-dictionary/src/gdict-source-dialog.c:433 msgid "Unable to create a source file" msgstr "" -#: mate-dictionary/src/gdict-source-dialog.c:357 -#: mate-dictionary/src/gdict-source-dialog.c:450 +#: ../mate-dictionary/src/gdict-source-dialog.c:358 +#: ../mate-dictionary/src/gdict-source-dialog.c:451 msgid "Unable to save source file" msgstr "" -#: mate-dictionary/src/gdict-window.c:290 +#: ../mate-dictionary/src/gdict-window.c:317 #, c-format msgid "Searching for '%s'..." msgstr "" -#: mate-dictionary/src/gdict-window.c:322 -#: mate-dictionary/src/gdict-window.c:379 +#: ../mate-dictionary/src/gdict-window.c:349 +#: ../mate-dictionary/src/gdict-window.c:406 msgid "No definitions found" msgstr "" -#: mate-dictionary/src/gdict-window.c:324 +#: ../mate-dictionary/src/gdict-window.c:351 #, c-format msgid "A definition found" msgid_plural "%d definitions found" msgstr[0] "" msgstr[1] "" -#: mate-dictionary/src/gdict-window.c:578 +#: ../mate-dictionary/src/gdict-window.c:605 #, c-format msgid "%s - Dictionary" msgstr "" -#: mate-dictionary/src/gdict-window.c:1261 +#: ../mate-dictionary/src/gdict-window.c:1294 msgid "_Go" msgstr "" -#: mate-dictionary/src/gdict-window.c:1265 -#: mate-screenshot/data/mate-screenshot.ui:58 +#. File menu +#: ../mate-dictionary/src/gdict-window.c:1298 msgid "_New" msgstr "" -#: mate-dictionary/src/gdict-window.c:1266 +#: ../mate-dictionary/src/gdict-window.c:1299 msgid "New look up" msgstr "" -#: mate-dictionary/src/gdict-window.c:1267 +#: ../mate-dictionary/src/gdict-window.c:1300 msgid "_Save a Copy..." msgstr "" -#: mate-dictionary/src/gdict-window.c:1269 +#: ../mate-dictionary/src/gdict-window.c:1302 msgid "P_review..." msgstr "" -#: mate-dictionary/src/gdict-window.c:1270 +#: ../mate-dictionary/src/gdict-window.c:1303 msgid "Preview this document" msgstr "" -#: mate-dictionary/src/gdict-window.c:1271 +#: ../mate-dictionary/src/gdict-window.c:1304 msgid "_Print..." msgstr "" -#: mate-dictionary/src/gdict-window.c:1272 +#: ../mate-dictionary/src/gdict-window.c:1305 msgid "Print this document" msgstr "" -#: mate-dictionary/src/gdict-window.c:1281 -msgid "_Find" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1282 +#: ../mate-dictionary/src/gdict-window.c:1315 msgid "Find a word or phrase in the document" msgstr "" -#: mate-dictionary/src/gdict-window.c:1284 +#: ../mate-dictionary/src/gdict-window.c:1317 msgid "Find Ne_xt" msgstr "" -#: mate-dictionary/src/gdict-window.c:1286 +#: ../mate-dictionary/src/gdict-window.c:1319 msgid "Find Pre_vious" msgstr "" -#: mate-dictionary/src/gdict-window.c:1288 +#: ../mate-dictionary/src/gdict-window.c:1321 msgid "_Preferences" msgstr "_Paling disenengi" -#: mate-dictionary/src/gdict-window.c:1292 +#. Go menu +#: ../mate-dictionary/src/gdict-window.c:1325 msgid "_Previous Definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1293 +#: ../mate-dictionary/src/gdict-window.c:1326 msgid "Go to the previous definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1294 +#: ../mate-dictionary/src/gdict-window.c:1327 msgid "_Next Definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1295 +#: ../mate-dictionary/src/gdict-window.c:1328 msgid "Go to the next definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1296 +#: ../mate-dictionary/src/gdict-window.c:1329 msgid "_First Definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1297 +#: ../mate-dictionary/src/gdict-window.c:1330 msgid "Go to the first definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1298 +#: ../mate-dictionary/src/gdict-window.c:1331 msgid "_Last Definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1299 +#: ../mate-dictionary/src/gdict-window.c:1332 msgid "Go to the last definition" msgstr "" -#: mate-dictionary/src/gdict-window.c:1302 +#. View menu +#: ../mate-dictionary/src/gdict-window.c:1335 msgid "Similar _Words" msgstr "" -#: mate-dictionary/src/gdict-window.c:1304 +#: ../mate-dictionary/src/gdict-window.c:1337 msgid "Dictionary Sources" msgstr "" -#: mate-dictionary/src/gdict-window.c:1306 +#: ../mate-dictionary/src/gdict-window.c:1339 msgid "Available _Databases" msgstr "" -#: mate-dictionary/src/gdict-window.c:1308 +#: ../mate-dictionary/src/gdict-window.c:1341 msgid "Available St_rategies" msgstr "" -#: mate-dictionary/src/gdict-window.c:1325 +#. View menu +#: ../mate-dictionary/src/gdict-window.c:1358 msgid "_Sidebar" msgstr "" -#: mate-dictionary/src/gdict-window.c:1327 +#: ../mate-dictionary/src/gdict-window.c:1360 msgid "S_tatusbar" msgstr "" -#: mate-dictionary/src/gdict-window.c:1392 +#: ../mate-dictionary/src/gdict-window.c:1425 #, c-format msgid "Dictionary source `%s' selected" msgstr "" -#: mate-dictionary/src/gdict-window.c:1413 +#: ../mate-dictionary/src/gdict-window.c:1446 #, c-format msgid "Strategy `%s' selected" msgstr "" -#: mate-dictionary/src/gdict-window.c:1433 +#: ../mate-dictionary/src/gdict-window.c:1466 #, c-format msgid "Database `%s' selected" msgstr "" -#: mate-dictionary/src/gdict-window.c:1453 +#: ../mate-dictionary/src/gdict-window.c:1486 #, c-format msgid "Word `%s' selected" msgstr "" -#: mate-dictionary/src/gdict-window.c:1478 +#. speller +#: ../mate-dictionary/src/gdict-window.c:1511 msgid "Double-click on the word to look up" msgstr "" -#: mate-dictionary/src/gdict-window.c:1484 +#. strat-chooser +#: ../mate-dictionary/src/gdict-window.c:1517 msgid "Double-click on the matching strategy to use" msgstr "" -#: mate-dictionary/src/gdict-window.c:1489 +#. source-chooser +#: ../mate-dictionary/src/gdict-window.c:1522 msgid "Double-click on the source to use" msgstr "" -#: mate-dictionary/src/gdict-window.c:1498 +#. db-chooser +#: ../mate-dictionary/src/gdict-window.c:1531 msgid "Double-click on the database to use" msgstr "" -#: mate-dictionary/src/gdict-window.c:1670 +#: ../mate-dictionary/src/gdict-window.c:1706 msgid "Look _up:" msgstr "" -#: mate-dictionary/src/gdict-window.c:1745 +#: ../mate-dictionary/src/gdict-window.c:1781 msgid "Similar words" msgstr "" -#: mate-dictionary/src/gdict-window.c:1758 +#: ../mate-dictionary/src/gdict-window.c:1794 msgid "Available dictionaries" msgstr "" -#: mate-dictionary/src/gdict-window.c:1776 +#: ../mate-dictionary/src/gdict-window.c:1812 msgid "Available strategies" msgstr "" -#: mate-dictionary/src/gdict-window.c:1792 +#: ../mate-dictionary/src/gdict-window.c:1828 msgid "Dictionary sources" msgstr "" -#: mate-dictionary/data/mate-dictionary-preferences.ui:27 +#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:1 msgid "_Select a dictionary source for looking up words:" msgstr "" -#: mate-dictionary/data/mate-dictionary-preferences.ui:132 -#: mate-dictionary/data/mate-dictionary-source.ui:148 +#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:2 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:6 msgid "Source" msgstr "" -#: mate-dictionary/data/mate-dictionary-preferences.ui:162 +#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:3 msgid "_Print font:" msgstr "" -#: mate-dictionary/data/mate-dictionary-preferences.ui:216 +#: ../mate-dictionary/data/mate-dictionary-preferences.ui.h:4 msgid "Print" msgstr "" -#: mate-dictionary/data/mate-dictionary-source.ui:38 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:1 msgid "_Description:" msgstr "" -#: mate-dictionary/data/mate-dictionary-source.ui:53 -msgid "Source Name" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-source.ui:65 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:2 msgid "_Transport:" msgstr "" -#: mate-dictionary/data/mate-dictionary-source.ui:96 +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:3 msgid "H_ostname:" msgstr "" -#: mate-dictionary/data/mate-dictionary-source.ui:175 -msgid "Dictionaries" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-source.ui:200 -msgid "Strategies" -msgstr "" - -#: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:3 -#: mate-disk-image-mounter/src/main.c:62 -msgid "MATE Disk Image Mounter" -msgstr "" - -#: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:4 -msgid "Attach and mount one or more disk image files" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:60 -msgid "An error occurred" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:81 -msgid "Allow writing to the image" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:101 -msgid "All Files" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:105 -msgid "Disk Images (*.img, *.iso)" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:121 -msgid "Select Disk Image(s) to Mount" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:125 -msgid "_Mount" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:131 -msgid "Set up _read-only mount" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:132 -msgid "" -"If checked, the mount will be read-only. This is useful if you don't want " -"the underlying disk image to be modified" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:178 -#, c-format -msgid "Error connecting to udisks daemon: %s (%s, %d)" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:186 -msgid "Attach and mount one or more disk image files." -msgstr "" - -#: mate-disk-image-mounter/src/main.c:234 -#, c-format -msgid "Cannot open `%s' - maybe the volume isn't mounted?" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:241 -#, c-format -msgid "Error opening `%s': %m" +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:5 +msgid "Source Name" msgstr "" -#: mate-disk-image-mounter/src/main.c:262 -#, c-format -msgid "Error attaching disk image: %s (%s, %d)" +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:7 +msgid "Dictionaries" msgstr "" -#: mate-screenshot/data/mate-screenshot.appdata.xml.in:7 -msgid "MATE Screenshot" +#: ../mate-dictionary/data/mate-dictionary-source.ui.h:8 +msgid "Strategies" msgstr "" -#: mate-screenshot/data/mate-screenshot.appdata.xml.in:8 +#: ../mate-screenshot/data/mate-screenshot.appdata.xml.in.h:1 msgid "A screenshot utility for MATE Desktop" msgstr "" -#: mate-screenshot/data/mate-screenshot.appdata.xml.in:10 +#: ../mate-screenshot/data/mate-screenshot.appdata.xml.in.h:2 msgid "" -"MATE Screenshot is a simple utility that lets you capture screenshots of " -"your desktop or of application windows. You can select to copy them to the " +"

MATE Screenshot is a simple utility that lets you capture screenshots of" +" your desktop or of application windows. You can select to copy them to the " "system clipboard or save them in Portable Network Graphics (.png) image " -"format." +"format.

" msgstr "" -#: mate-screenshot/data/mate-screenshot.desktop.in:3 -#: mate-screenshot/src/mate-screenshot.c:519 -#: mate-screenshot/src/mate-screenshot.c:527 +#: ../mate-screenshot/data/mate-screenshot.desktop.in.h:1 +#: ../mate-screenshot/src/mate-screenshot.c:540 +#: ../mate-screenshot/src/mate-screenshot.c:548 msgid "Take Screenshot" msgstr "" -#: mate-screenshot/data/mate-screenshot.desktop.in:4 +#: ../mate-screenshot/data/mate-screenshot.desktop.in.h:2 msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: mate-screenshot/data/mate-screenshot.desktop.in:13 -msgid "MATE;screenshot;snapshot;desktop;window;image;" -msgstr "" - -#: mate-screenshot/data/mate-screenshot.ui:24 +#: ../mate-screenshot/data/mate-screenshot.ui.h:1 msgid "Save Screenshot" msgstr "" -#: mate-screenshot/data/mate-screenshot.ui:74 +#: ../mate-screenshot/data/mate-screenshot.ui.h:2 msgid "C_opy to Clipboard" msgstr "" -#: mate-screenshot/data/mate-screenshot.ui:192 +#: ../mate-screenshot/data/mate-screenshot.ui.h:4 msgid "Save in _folder:" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:5 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:1 msgid "Screenshot delay" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:6 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:2 msgid "The number of seconds to wait before taking the screenshot." msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:10 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:3 msgid "Screenshot directory" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:11 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:4 msgid "The directory the last screenshot was saved in." msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:15 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:5 msgid "Include Border" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:16 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:6 msgid "Include the window manager border along with the screenshot" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:20 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:7 msgid "Include Pointer" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:21 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:8 msgid "Include the pointer in the screenshot" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:25 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:9 msgid "Border Effect" msgstr "" -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:26 +#: ../mate-screenshot/data/org.mate.screenshot.gschema.xml.in.h:10 msgid "" "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -#: mate-screenshot/src/mate-screenshot.c:138 +#: ../mate-screenshot/src/mate-screenshot.c:139 msgid "Error loading the help page" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:250 +#: ../mate-screenshot/src/mate-screenshot.c:251 msgid "None" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:251 +#: ../mate-screenshot/src/mate-screenshot.c:252 msgid "Drop shadow" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:252 +#: ../mate-screenshot/src/mate-screenshot.c:253 msgid "Border" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:353 +#. * Include pointer * +#: ../mate-screenshot/src/mate-screenshot.c:358 msgid "Include _pointer" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:362 +#. * Include window border * +#: ../mate-screenshot/src/mate-screenshot.c:367 msgid "Include the window _border" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:377 +#: ../mate-screenshot/src/mate-screenshot.c:382 msgid "Apply _effect:" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:437 +#: ../mate-screenshot/src/mate-screenshot.c:450 msgid "Grab the whole _desktop" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:449 +#: ../mate-screenshot/src/mate-screenshot.c:462 msgid "Grab the current _window" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:461 +#: ../mate-screenshot/src/mate-screenshot.c:474 msgid "Select _area to grab" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:479 +#. translators: this is the first part of the "grab after a +#. * delay of seconds". +#: ../mate-screenshot/src/mate-screenshot.c:492 msgid "Grab _after a delay of" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:500 -#: mate-screenshot/src/mate-screenshot.c:1320 +#. translators: this is the last part of the "grab after a +#. * delay of seconds". +#: ../mate-screenshot/src/mate-screenshot.c:517 +#: ../mate-screenshot/src/mate-screenshot.c:1274 msgid "seconds" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:528 +#: ../mate-screenshot/src/mate-screenshot.c:549 msgid "Effects" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:532 +#: ../mate-screenshot/src/mate-screenshot.c:553 msgid "Take _Screenshot" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:651 +#: ../mate-screenshot/src/mate-screenshot.c:672 msgid "Error while saving screenshot" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:654 +#: ../mate-screenshot/src/mate-screenshot.c:675 #, c-format msgid "" "Impossible to save the screenshot to %s.\n" @@ -3049,81 +2924,77 @@ " Please choose another location and retry." msgstr "" -#: mate-screenshot/src/mate-screenshot.c:796 +#: ../mate-screenshot/src/mate-screenshot.c:807 msgid "Screenshot taken" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:851 +#: ../mate-screenshot/src/mate-screenshot.c:862 msgid "Unable to take a screenshot of the current window" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:916 +#. translators: this is the name of the file that gets made up +#. * with the screenshot if the entire screen is taken +#: ../mate-screenshot/src/mate-screenshot.c:919 #, c-format msgid "Screenshot at %s.png" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:923 +#. translators: this is the name of the file that gets +#. * made up with the screenshot if the entire screen is +#. * taken +#: ../mate-screenshot/src/mate-screenshot.c:926 #, c-format msgid "Screenshot at %s - %d.png" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1315 +#: ../mate-screenshot/src/mate-screenshot.c:1270 msgid "Grab a window instead of the entire screen" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1316 +#: ../mate-screenshot/src/mate-screenshot.c:1271 msgid "Grab an area of the screen instead of the entire screen" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1317 -msgid "Send grabbed area directly to the clipboard" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1318 +#: ../mate-screenshot/src/mate-screenshot.c:1272 msgid "Include the window border with the screenshot" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1319 +#: ../mate-screenshot/src/mate-screenshot.c:1273 msgid "Remove the window border from the screenshot" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1320 +#: ../mate-screenshot/src/mate-screenshot.c:1274 msgid "Take screenshot after specified delay [in seconds]" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1321 +#: ../mate-screenshot/src/mate-screenshot.c:1275 msgid "Effect to add to the border (shadow, border or none)" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1321 +#: ../mate-screenshot/src/mate-screenshot.c:1275 msgid "effect" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1322 +#: ../mate-screenshot/src/mate-screenshot.c:1276 msgid "Interactively set options" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1323 +#: ../mate-screenshot/src/mate-screenshot.c:1277 msgid "Print version information and exit" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1334 +#: ../mate-screenshot/src/mate-screenshot.c:1286 msgid "Take a picture of the screen" msgstr "" -#: mate-screenshot/src/mate-screenshot.c:1357 -msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1363 +#: ../mate-screenshot/src/mate-screenshot.c:1309 +#, c-format msgid "" "Conflicting options: --window and --area should not be used at the same " "time.\n" msgstr "" -#: mate-screenshot/src/screenshot-dialog.c:210 +#: ../mate-screenshot/src/screenshot-dialog.c:207 #, c-format msgid "" "Error loading UI definition file for the screenshot program: \n" @@ -3132,45 +3003,45 @@ "Please check your installation of mate-utils." msgstr "" -#: mate-screenshot/src/screenshot-dialog.c:233 +#: ../mate-screenshot/src/screenshot-dialog.c:230 msgid "Select a folder" msgstr "" -#: mate-screenshot/src/screenshot-dialog.c:328 -#: mate-screenshot/src/screenshot-save.c:202 +#: ../mate-screenshot/src/screenshot-dialog.c:325 +#: ../mate-screenshot/src/screenshot-save.c:196 msgid "Screenshot.png" msgstr "" -#: mate-screenshot/src/screenshot-save.c:60 +#: ../mate-screenshot/src/screenshot-save.c:57 #, c-format msgid "" "Unable to clear the temporary folder:\n" "%s" msgstr "" -#: mate-screenshot/src/screenshot-save.c:98 +#: ../mate-screenshot/src/screenshot-save.c:95 msgid "" "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -#: mate-screenshot/src/screenshot-save.c:231 +#: ../mate-screenshot/src/screenshot-save.c:223 msgid "Unknown error saving screenshot to disk" msgstr "" -#: mate-screenshot/src/screenshot-xfer.c:74 +#: ../mate-screenshot/src/screenshot-xfer.c:72 msgid "File already exists" msgstr "" -#: mate-screenshot/src/screenshot-xfer.c:77 +#: ../mate-screenshot/src/screenshot-xfer.c:75 #, c-format msgid "The file \"%s\" already exists. Would you like to replace it?" msgstr "" -#: mate-screenshot/src/screenshot-xfer.c:122 +#: ../mate-screenshot/src/screenshot-xfer.c:120 msgid "Saving file..." msgstr "" -#: mate-screenshot/src/screenshot-xfer.c:292 +#: ../mate-screenshot/src/screenshot-xfer.c:290 msgid "Can't access source file" msgstr "" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/kab.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/kab.gmo differ diff -Nru mate-utils-1.26.0/po/kab.po mate-utils-1.26.1/po/kab.po --- mate-utils-1.26.0/po/kab.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/kab.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Slimane Selyan AMIRI , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Slimane Selyan AMIRI , 2021\n" -"Language-Team: Kabyle (https://www.transifex.com/mate/teams/13566/kab/)\n" -"Language: kab\n" +"Language-Team: Kabyle (https://app.transifex.com/mate/teams/13566/kab/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: kab\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -626,16 +627,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -669,9 +671,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -693,8 +695,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -713,9 +715,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -725,8 +727,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -790,8 +792,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -808,8 +810,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -830,62 +832,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "AFAYLU" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1490,7 +1492,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1501,8 +1504,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1900,7 +1903,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1912,8 +1916,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2927,7 +2931,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3119,8 +3124,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ka.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ka.gmo differ diff -Nru mate-utils-1.26.0/po/ka.po mate-utils-1.26.1/po/ka.po --- mate-utils-1.26.0/po/ka.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/ka.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefano Karapetsas , 2021 -# +# Temuri Doghonadze , 2023 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Georgian (https://www.transifex.com/mate/teams/13566/ka/)\n" -"Language: ka\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Temuri Doghonadze , 2023\n" +"Language-Team: Georgian (https://app.transifex.com/mate/teams/13566/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ka\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +580,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -623,16 +625,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "ფაილების და დასტების სახელის ან შინაარსი მიხედვით მოძებნა" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -667,13 +670,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"ეს·გასაღები·განსაზღვრავს გეზებს, რომლებსაც არ მოიცავს სწრაფი ძებნის პროცესი." -"·დასაშვებია შაბლონები \"*\" და *?*. ნაგულისხმები გეზებია /mnt/*,·/media/*,·/" -"dev/*,·/tmp/*,·/proc/*,·და·/var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"ეს·გასაღები·განსაზღვრავს გეზებს, რომლებსაც არ მოიცავს სწრაფი ძებნის " +"პროცესი.·დასაშვებია შაბლონები \"*\" და *?*. ნაგულისხმები გეზებია " +"/mnt/*,·/media/*,·/dev/*,·/tmp/*,·/proc/*,·და·/var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -694,13 +697,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "ეს·გასაღები·განსაზღვრავს·სწრაფი ძებნისას მეორადი სკანირების მიერ " "გამოსატოვებელ გეზებს. ·მეორადი·სკანირება იყენებს ძებნის კომანდას " -"არაინდექსირებული ფაილების მოსაძებნად. დასაშვებია·შაბლონები·\"*\"·და·*?*." -"·ნაგულისხმები·გეზებია·/" +"არაინდექსირებული ფაილების მოსაძებნად. " +"დასაშვებია·შაბლონები·\"*\"·და·*?*.·ნაგულისხმები·გეზებია·/" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -720,9 +723,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "ეს·გასაღები·აყენებს·ფანჯარის·სიგანეს·და·გამოიყენება·სესიებს·შორის·ძებნის " "ფანჯრის·ზომების·დასამახსოვრებლად.·თუ·მითითებული·იქნება·1,·აღებული იქნება " @@ -735,8 +738,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "ეს გასაღები აყენებს ფანჯარის სიმაღლეს და გამოიყენება სესიებს შორის " "ძებნის·ფანჯრის ზომების დასამახსოვრებლად. თუ მითითებული იქნება 1, " @@ -766,85 +769,84 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"ეს გასაღები ძებნის დაწყებამდე ადგენს, არის თუ არა გამოყენებული ძებნა პირობით " -"\"შეიცავს ტექსტს\"." +"ეს გასაღები ძებნის დაწყებამდე ადგენს, არის თუ არა გამოყენებული ძებნა პირობით" +" \"შეიცავს ტექსტს\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"ეს·გასაღები·ძებნის·დაწყებამდე·ადგენს,·არის·თუ·არა·გამოყენებული·ძებნა·პირობით·" -"\"შეცვლის თარიღი ნაკლებია ვიდრე\"." +"ეს·გასაღები·ძებნის·დაწყებამდე·ადგენს,·არის·თუ·არა·გამოყენებული·ძებნა·პირობით·\"შეცვლის" +" თარიღი ნაკლებია ვიდრე\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"ეს გასაღები ძებნის დაწყებამდე ადგენს, არის თუ არა გამოყენებული ძებნა პირობით " -"\"შეცვლის·თარიღი·მეტია·ვიდრე\"." +"ეს გასაღები ძებნის დაწყებამდე ადგენს, არის თუ არა გამოყენებული ძებნა პირობით" +" \"შეცვლის·თარიღი·მეტია·ვიდრე\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"ეს გასაღები ძებნის დაწყებამდე ადგენს, არის თუ არა გამოყენებული ძებნა პირობით " -"\"ზომა არანაკლებ\"." +"ეს გასაღები ძებნის დაწყებამდე ადგენს, არის თუ არა გამოყენებული ძებნა პირობით" +" \"ზომა არანაკლებ\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"ეს·გასაღები·ძებნის·დაწყებამდე·ადგენს,·არის·თუ·არა·გამოყენებული·ძებნა·პირობით·" -"\"ზომა·არაუმეტეს\"." +"ეს·გასაღები·ძებნის·დაწყებამდე·ადგენს,·არის·თუ·არა·გამოყენებული·ძებნა·პირობით·\"ზომა·არაუმეტეს\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"ეს გასაღები ძებნის დაწყებამდე ადგენს, არის თუ არა გამოყენებული ძებნა პირობით " -"\"ცარიელი ფაილი\"." +"ეს გასაღები ძებნის დაწყებამდე ადგენს, არის თუ არა გამოყენებული ძებნა პირობით" +" \"ცარიელი ფაილი\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"ეს გასაღები ძებნის დაწყებამდე ადგენს, არის თუ არა გამოყენებული ძებნა პირობით " -"\"მფლობელი·-·მომხმარებელი\"." +"ეს გასაღები ძებნის დაწყებამდე ადგენს, არის თუ არა გამოყენებული ძებნა პირობით" +" \"მფლობელი·-·მომხმარებელი\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"ეს·გასაღები·ძებნის·დაწყებამდე·ადგენს,·არის·თუ·არა·გამოყენებული·ძებნა·პირობით·" -"\"მფლობელი - ჯგუფი\"." +"ეს·გასაღები·ძებნის·დაწყებამდე·ადგენს,·არის·თუ·არა·გამოყენებული·ძებნა·პირობით·\"მფლობელი" +" - ჯგუფი\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"ეს გასაღები ძებნის დაწყებამდე ადგენს, არის თუ არა გამოყენებული ძებნა პირობით " -"\"მფლობელი·უცნობია\"." +"ეს გასაღები ძებნის დაწყებამდე ადგენს, არის თუ არა გამოყენებული ძებნა პირობით" +" \"მფლობელი·უცნობია\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"ეს·გასაღები·ძებნის·დაწყებამდე·ადგენს,·არის·თუ·არა·გამოყენებული·ძებნა·პირობით·" -"\"სახელი არ შეიცავს\"." +"ეს·გასაღები·ძებნის·დაწყებამდე·ადგენს,·არის·თუ·არა·გამოყენებული·ძებნა·პირობით·\"სახელი" +" არ შეიცავს\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "ეს გასაღები, ძიების ხელსაწყოს გამოძახებისას, განსაზღვრავს აქტივირებულია თუ " "არა პარამეტრი „ძიება რეგულარული გამოსახულებით\"." @@ -854,16 +856,16 @@ "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"ეს გასაღები ძებნის დაწყებამდე ადგენს, არის თუ არა გამოყენებული ძებნა პირობით " -"\"დაფარული ფაილების და დასტების ჩვენება\"." +"ეს გასაღები ძებნის დაწყებამდე ადგენს, არის თუ არა გამოყენებული ძებნა პირობით" +" \"დაფარული ფაილების და დასტების ჩვენება\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"ეს·გასაღები·ძებნის·დაწყებამდე·ადგენს,·არის·თუ·არა·გამოყენებული·ძებნა·პირობით·" -"\"სიმბოლურ ბმულზე მიყოლა\"." +"ეს·გასაღები·ძებნის·დაწყებამდე·ადგენს,·არის·თუ·არა·გამოყენებული·ძებნა·პირობით·\"სიმბოლურ" +" ბმულზე მიყოლა\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" @@ -871,62 +873,63 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" -msgstr "" +msgstr "ფაილი არასწორი .desktop ფაილია" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "ამოუცნობი desktop ფაილის ვერსია '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "ირთვება %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" -msgstr "" +msgstr "აპლიკაციას დოკუმენტების ბრძანების სტრიქონიდან აღება არ შეუძლია" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" -msgstr "" +msgstr "გაშვების უცნობი პარამეტრი: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" +"დოკუმენტის URI-ების გადაცემა დესკტოპის ჩანაწერში „Type=Link“ შეუძლებელია" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "არ არის გაშვებადი ელემენტი" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "ვერ ვუკავშირდები სესიის მენეჯერს" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "დამახსოვრებული კონფიგურაციის მქონე ფაილის მინიშნება" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ფაილი" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "აღნიშნეთ თუ რომელი სეანსი ჩაიტვირთოს" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" -msgstr "" +msgstr "სესიების მმართველის პარამეტრები:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "აჩვენე სეანსის მართვის პარამეტრები" @@ -1001,7 +1004,7 @@ #: gsearchtool/src/gsearchtool.c:159 gsearchtool/src/gsearchtool.c:164 #: gsearchtool/src/gsearchtool.c:173 msgid "STRING" -msgstr "" +msgstr "სტრიქონი" #: gsearchtool/src/gsearchtool.c:160 msgid "PATH" @@ -1307,8 +1310,8 @@ #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "ეს %d ცალკე ფანჯარას გახსნის." +msgstr[1] "ეს %d ცალკე ფანჯარას გახსნის." #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1327,7 +1330,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:521 msgid "There is no installed viewer capable of displaying the document." msgstr "" -"არ არის დაყენებული სანახავი პროგრამა, რომელსაც შეეძლოს ამ დოკუმენტის ჩვენება." +"არ არის დაყენებული სანახავი პროგრამა, რომელსაც შეეძლოს ამ დოკუმენტის " +"ჩვენება." #: gsearchtool/src/gsearchtool-callbacks.c:543 #, c-format @@ -1432,7 +1436,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1883 msgid "The document name you selected is a folder." -msgstr "სახელი, რომელიც თქვენ მიუთითეთ, არის დასტის, და არა დოკუმენტის სახელი." +msgstr "" +"სახელი, რომელიც თქვენ მიუთითეთ, არის დასტის, და არა დოკუმენტის სახელი." #: gsearchtool/src/gsearchtool-callbacks.c:1919 msgid "You may not have write permissions to the document." @@ -1540,7 +1545,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1551,11 +1557,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"ჩატვირთვისას საჩვენებელი ჟურნალის მითითება. ნაგულისხმებია ან var/adm/" -"messages, ან /var/log/messages - ეს დამოკიდებულია სისტემაზე." +"ჩატვირთვისას საჩვენებელი ჟურნალის მითითება. ნაგულისხმებია ან " +"var/adm/messages, ან /var/log/messages - ეს დამოკიდებულია სისტემაზე." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1567,7 +1573,8 @@ "main tree view. The default is taken from the default terminal font size." msgstr "" "ჟურნალის·ხისებრი·ხედით·ჩვენებისას·განსაზღვრავს ფიქსირებული სიგანის ფონტის " -"ზომას. ნაგულისხმები მნიშვნელობა აიღება ტემინალის ფონტის ნაგულისხმები ზომიდან." +"ზომას. ნაგულისხმები მნიშვნელობა აიღება ტემინალის ფონტის ნაგულისხმები " +"ზომიდან." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1956,7 +1963,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1968,8 +1976,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -3004,7 +3012,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3196,8 +3205,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/kk.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/kk.gmo differ diff -Nru mate-utils-1.26.0/po/kk.po mate-utils-1.26.1/po/kk.po --- mate-utils-1.26.0/po/kk.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/kk.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2019 # Baurzhan Muftakhidinov , 2021 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Baurzhan Muftakhidinov , 2021\n" -"Language-Team: Kazakh (https://www.transifex.com/mate/teams/13566/kk/)\n" -"Language: kk\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Kazakh (https://app.transifex.com/mate/teams/13566/kk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: kk\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "Бумалар өлшемдерін және дисктердегі қолжетерлік орынды тексеру" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -569,8 +570,8 @@ "any later version." msgstr "" "Бұл - еркін бағдарлама; сіз оны Free Software Foundation шығарған GNU " -"General Public License аясында еркін тарата не/және өзгерте аласыз; лицензия " -"нұсқасы 2 не (тандауыңызша) кез-келген кейін шыққан." +"General Public License аясында еркін тарата не/және өзгерте аласыз; лицензия" +" нұсқасы 2 не (тандауыңызша) кез-келген кейін шыққан." #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -588,8 +589,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -633,16 +634,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Бұл компьютердегі құжаттар және бумаларды атауы бойынша іздеу" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -676,9 +678,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -700,8 +702,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -720,9 +722,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -732,8 +734,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -797,8 +799,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -815,8 +817,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -837,62 +839,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Файл дұрыс .desktop файлы емес" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Белгісіз desktop файлдың нұсқасы '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s іске қосылуда" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Қолданба команда жолында құжаттарды қабылдамайды" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Белгісіз жөнелту опциясы: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Құжат URI-ін 'Type=Link' desktop элементіне беру мүмкін емес" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Жөнелтілетін элемент емес" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Сессиялар менеджеріне байланыстарды сөндіру" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Сақталған баптаулары бар файлды көрсету" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Сессия менеджментінің ID-ін көрсету" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Сессия менеджмент опциялары:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Сессия менеджмент опцияларын көрсету" @@ -1497,7 +1499,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1508,8 +1511,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1907,7 +1910,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Сөз анықтамасын және емлесін желідегі сөздікте тексеру" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1919,8 +1923,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -1950,8 +1954,8 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"Сөздіктерді ұсынатын қайнар көзінде үнсіз келісім бойынша қолданылатын бөлек " -"дерекқор немесе метадерекқор аты. Леп белгісі (\"!\") қойылса, онда іздеу " +"Сөздіктерді ұсынатын қайнар көзінде үнсіз келісім бойынша қолданылатын бөлек" +" дерекқор немесе метадерекқор аты. Леп белгісі (\"!\") қойылса, онда іздеу " "қайнар көздегі барлық сөздіктер ішінде орындалады" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 @@ -1963,8 +1967,8 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"Сөздіктерді ұсынатын қайнар көзінде қолжетерлік болса, үнсіз келісім бойынша " -"қолданылатын стратегия. Бастапқы стратегия - \"exact\", яғни, тек толық " +"Сөздіктерді ұсынатын қайнар көзінде қолжетерлік болса, үнсіз келісім бойынша" +" қолданылатын стратегия. Бастапқы стратегия - \"exact\", яғни, тек толық " "сөздерді сәйкестендіру." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 @@ -2962,7 +2966,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3154,8 +3159,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/kn.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/kn.gmo differ diff -Nru mate-utils-1.26.0/po/kn.po mate-utils-1.26.1/po/kn.po --- mate-utils-1.26.0/po/kn.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/kn.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,24 +2,24 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Yogesh K S , 2018 -# karthik holla , 2019 # Stefano Karapetsas , 2021 -# +# karthik holla , 2021 +# Sai Vinoba , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Kannada (https://www.transifex.com/mate/teams/13566/kn/)\n" -"Language: kn\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Sai Vinoba , 2021\n" +"Language-Team: Kannada (https://app.transifex.com/mate/teams/13566/kn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -31,7 +31,8 @@ msgid "Check folder sizes and available disk space" msgstr "ಕಡತಕೋಶದ ಗಾತ್ರಗಳು ಹಾಗು ಲಭ್ಯವಿರುವ ಡಿಸ್ಕಿನ ಜಾಗಕ್ಕಾಗಿ ನೋಡು" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -46,7 +47,7 @@ #: mate-dictionary/src/gdict-window.c:1262 #: mate-screenshot/data/mate-screenshot.ui:41 msgid "_Help" -msgstr "ನೆರವು(_H)" +msgstr "ನೆರವು (_H)" #: baobab/data/baobab-dialog-scan-props.ui:48 logview/src/logview-window.c:829 #: mate-dictionary/src/gdict-window.c:1273 @@ -84,7 +85,7 @@ #: baobab/data/baobab-main-window.ui:74 logview/src/logview-window.c:822 #: mate-dictionary/src/gdict-window.c:1259 msgid "_Edit" -msgstr "ಸಂಪಾದಿಸು(_E)" +msgstr "ತಿದ್ದು (_E)" #: baobab/data/baobab-main-window.ui:80 msgid "_Expand All" @@ -215,8 +216,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -418,7 +419,8 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." msgstr "" -"ಪರಿಚಾರಕಕ್ಕೆ ಸಂಪರ್ಕ ಜೋಡಿಸಲಾಗಿಲ್ಲ. ನೀವು ಪರಿಚಾರಕಕ್ಕಾಗಿನ ಒಂದು ಹೆಸರನ್ನು ನಮೂದಿಸತಕ್ಕದ್ದು." +"ಪರಿಚಾರಕಕ್ಕೆ ಸಂಪರ್ಕ ಜೋಡಿಸಲಾಗಿಲ್ಲ. ನೀವು ಪರಿಚಾರಕಕ್ಕಾಗಿನ ಒಂದು ಹೆಸರನ್ನು " +"ನಮೂದಿಸತಕ್ಕದ್ದು." #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -478,8 +480,8 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"ನಿಮ್ಮ ನೆಲೆ ಕಡತಕೋಶದಲ್ಲಿನ ವಿಷಯಗಳು ಬದಲಾಗಿವೆ. ಡಿಸ್ಕಿನ ಬಳಕೆಯ ವಿವರಗಳನ್ನು ಅಪ್‌ಡೇಟ್‌ ಮಾಡಲು " -"ಇನ್ನೊಮ್ಮೆ ಶೋಧಿಸುವುದನ್ನು ಆಯ್ಕೆ ಮಾಡಿ." +"ನಿಮ್ಮ ನೆಲೆ ಕಡತಕೋಶದಲ್ಲಿನ ವಿಷಯಗಳು ಬದಲಾಗಿವೆ. ಡಿಸ್ಕಿನ ಬಳಕೆಯ ವಿವರಗಳನ್ನು ಅಪ್‌ಡೇಟ್‌" +" ಮಾಡಲು ಇನ್ನೊಮ್ಮೆ ಶೋಧಿಸುವುದನ್ನು ಆಯ್ಕೆ ಮಾಡಿ." #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -591,8 +593,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -613,7 +615,8 @@ #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" msgstr "" -"ಶಂಕರ್ ಪ್ರಸಾದ್ ,ಕಾರ್ತಿಕ ಹೊಳ್ಳ " +"ಶಂಕರ್ ಪ್ರಸಾದ್ ,ಕಾರ್ತಿಕ ಹೊಳ್ಳ " +",ಸಾಯಿ ವಿನೋಬ" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -637,18 +640,19 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -"ಹೆಸರು ಅಥವ ವಿಷಯಗಳ ಆಧಾರದ ಮೇಲೆ ಈ ಗಣಕ ಯಂತ್ರದಲ್ಲಿನ ದಸ್ತಾವೇಜುಗಳನ್ನು ಮತ್ತು ಕಡತಕೋಶಗಳನ್ನು " -"ಹುಡುಕಿ" +"ಹೆಸರು ಅಥವ ವಿಷಯಗಳ ಆಧಾರದ ಮೇಲೆ ಈ ಗಣಕ ಯಂತ್ರದಲ್ಲಿನ ದಸ್ತಾವೇಜುಗಳನ್ನು ಮತ್ತು " +"ಕಡತಕೋಶಗಳನ್ನು ಹುಡುಕಿ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -675,8 +679,9 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"ಸರಳವಾದ ಕಡತದ ಹೆಸರಿನ ಹುಡುಕಾಟಗಳನ್ನು ನಿರ್ವಹಿಸಿದ ನಂತರ ಪತ್ತೆ ಮಾಡು ಆಜ್ಞೆಯನ್ನು ಬಳಸದಂತೆ " -"ಹುಡುಕು ಉಪಕರಣವನ್ನು ಅಶಕ್ತಗೊಳಿಸುತ್ತದೆ ಎನ್ನುವುದನ್ನು ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." +"ಸರಳವಾದ ಕಡತದ ಹೆಸರಿನ ಹುಡುಕಾಟಗಳನ್ನು ನಿರ್ವಹಿಸಿದ ನಂತರ ಪತ್ತೆ ಮಾಡು ಆಜ್ಞೆಯನ್ನು " +"ಬಳಸದಂತೆ ಹುಡುಕು ಉಪಕರಣವನ್ನು ಅಶಕ್ತಗೊಳಿಸುತ್ತದೆ ಎನ್ನುವುದನ್ನು ಈ ಕೀಲಿಯು " +"ನಿರ್ಧರಿಸುತ್ತದೆ." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -684,13 +689,14 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "ಕ್ಷಿಪ್ರ ಹುಡುಕಾಟದಿಂದ ಹುಡುಕು ಉಪಕರಣವು ಹೊರತಾಗಿಸಬೇಕಿರುವ ಮಾರ್ಗವನ್ನು ಈ ಕೀಲಿಯು " -"ಸೂಚಿಸುತ್ತದೆ. '*' ಹಾಗು '?' ನಂತಹ ವೈಲ್ಡ್‌ಕಾರ್ಡುಗಳಿಗೆ ಇಲ್ಲಿ ಬೆಂಬಲವಿದೆ. ಪೂರ್ವನಿಯೋಜಿತ " -"ಮೌಲ್ಯಗಳು /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, and /var/* ಆಗಿರುತ್ತವೆ." +"ಸೂಚಿಸುತ್ತದೆ. '*' ಹಾಗು '?' ನಂತಹ ವೈಲ್ಡ್‌ಕಾರ್ಡುಗಳಿಗೆ ಇಲ್ಲಿ ಬೆಂಬಲವಿದೆ. " +"ಪೂರ್ವನಿಯೋಜಿತ ಮೌಲ್ಯಗಳು /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, and /var/* " +"ಆಗಿರುತ್ತವೆ." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -701,8 +707,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"ಒಂದು ಕ್ಷಿಪ್ರವಾದ ಹುಡುಕಾಟವನ್ನು ನಿರ್ವಹಿಸಿದ ನಂತರ ಹುಡುಕು ಆಜ್ಞೆಯನ್ನು ಬಳಸದಂತೆ ಹುಡುಕು " -"ಉಪಕರಣವನ್ನು ಅಶಕ್ತಗೊಳಿಸುತ್ತದೆ ಎನ್ನುವುದನ್ನು ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." +"ಒಂದು ಕ್ಷಿಪ್ರವಾದ ಹುಡುಕಾಟವನ್ನು ನಿರ್ವಹಿಸಿದ ನಂತರ ಹುಡುಕು ಆಜ್ಞೆಯನ್ನು ಬಳಸದಂತೆ " +"ಹುಡುಕು ಉಪಕರಣವನ್ನು ಅಶಕ್ತಗೊಳಿಸುತ್ತದೆ ಎನ್ನುವುದನ್ನು ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -713,14 +719,15 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "ಕ್ಷಿಪ್ರ ಹುಡುಕಾಟವನ್ನು ನಿರ್ವಹಿಸುವಾಗ ಹುಡುಕು ಉಪಕರಣವು ಎರಡನೆ ಬಾರಿ ಶೋಧಿಸುವಿಕೆಯಿಂದ " "ಹೊರತಾಗಿಸಬೇಕಿರುವ ಮಾರ್ಗವನ್ನು ಈ ಕೀಲಿಯು ಸೂಚಿಸುತ್ತದೆ. ಎರಡನೆ ಬಾರಿಯು ಶೋಧನೆಯು " "ಕಡತಗಳಿಗಾಗಿ ಹುಡುಕಲು ಹುಡುಕು ಆಜ್ಞೆಯನ್ನು ಬಳಸುತ್ತದೆ. ಎರಡನೇ ಬಾರಿ ಶೋಧಿಸುವ " -"ಉದ್ದೇಶವೇನೆಂದರೆ ಸೂಚಿಯಲ್ಲಿ ಸೇರಿಸದೆ ಇರುವ ಕಡತಗಳನ್ನೂ ಸಹ ಸೇರಿಸುವುದಾಗಿರುತ್ತದೆ. '*' ಹಾಗು " -"'?' ನಂತಹ ವೈಲ್ಡ್‌ಕಾರ್ಡುಗಳಿಗೆ ಇಲ್ಲಿ ಬೆಂಬಲವಿದೆ. ಪೂರ್ವನಿಯೋಜಿತ ಮೌಲ್ಯವು / ಆಗಿರುತ್ತದೆ." +"ಉದ್ದೇಶವೇನೆಂದರೆ ಸೂಚಿಯಲ್ಲಿ ಸೇರಿಸದೆ ಇರುವ ಕಡತಗಳನ್ನೂ ಸಹ ಸೇರಿಸುವುದಾಗಿರುತ್ತದೆ. '*' " +"ಹಾಗು '?' ನಂತಹ ವೈಲ್ಡ್‌ಕಾರ್ಡುಗಳಿಗೆ ಇಲ್ಲಿ ಬೆಂಬಲವಿದೆ. ಪೂರ್ವನಿಯೋಜಿತ ಮೌಲ್ಯವು / " +"ಆಗಿರುತ್ತದೆ." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -740,13 +747,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "ಈ ಕೀಲಿಯು ವಿಂಡೋದ ಅಗಲವನ್ನು ಸೂಚಿಸುತ್ತದೆ, ಹಾಗು ಅಧಿವೇಶನಗಳ ನಡುವೆ ಹುಡುಕು ಉಪಕರಣದ " -"ಗಾತ್ರವನ್ನು ನೆನಪಿಟ್ಟುಕೊಳ್ಳಲು ಇದನ್ನು ಬಳಸಲಾಗುತ್ತದೆ. ಇದನ್ನು -1 ಗೆ ಬದಲಾಯಿಸಿದಲ್ಲಿ ಉಪಕರಣವು " -"ಪೂರ್ವನಿಯೋಜಿತ ಅಗಲವನ್ನು ಬಳಸುತ್ತದೆ." +"ಗಾತ್ರವನ್ನು ನೆನಪಿಟ್ಟುಕೊಳ್ಳಲು ಇದನ್ನು ಬಳಸಲಾಗುತ್ತದೆ. ಇದನ್ನು -1 ಗೆ ಬದಲಾಯಿಸಿದಲ್ಲಿ " +"ಉಪಕರಣವು ಪೂರ್ವನಿಯೋಜಿತ ಅಗಲವನ್ನು ಬಳಸುತ್ತದೆ." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -755,12 +762,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "ಈ ಕೀಲಿಯು ವಿಂಡೋದ ಎತ್ತರವನ್ನು ಸೂಚಿಸುತ್ತದೆ, ಹಾಗು ಅಧಿವೇಶನಗಳ ನಡುವೆ ಹುಡುಕು ಉಪಕರಣದ " -"ಗಾತ್ರವನ್ನು ನೆನಪಿಟ್ಟುಕೊಳ್ಳಲು ಇದನ್ನು ಬಳಸಲಾಗುತ್ತದೆ. ಇದನ್ನು -1 ಗೆ ಬದಲಾಯಿಸಿದಲ್ಲಿ ಉಪಕರಣವು " -"ಪೂರ್ವನಿಯೋಜಿತ ಎತ್ತರವನ್ನು ಬಳಸುತ್ತದೆ." +"ಗಾತ್ರವನ್ನು ನೆನಪಿಟ್ಟುಕೊಳ್ಳಲು ಇದನ್ನು ಬಳಸಲಾಗುತ್ತದೆ. ಇದನ್ನು -1 ಗೆ ಬದಲಾಯಿಸಿದಲ್ಲಿ " +"ಉಪಕರಣವು ಪೂರ್ವನಿಯೋಜಿತ ಎತ್ತರವನ್ನು ಬಳಸುತ್ತದೆ." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -770,8 +777,8 @@ msgid "" "This key determines if the search tool window starts in a maximized state." msgstr "" -"ಹುಡುಕು ಉಪಕರಣ ವಿಂಡೋವು ಒಂದು ಹಿಗ್ಗಿಸಲಾದ ಸ್ಥಿತಿಯಲ್ಲಿ ಆರಂಭಗೊಳ್ಳುತ್ತದೆಯೆ ಎಂದು ಈ ಕೀಲಿಯು " -"ನಿರ್ಧರಿಸುತ್ತದೆ." +"ಹುಡುಕು ಉಪಕರಣ ವಿಂಡೋವು ಒಂದು ಹಿಗ್ಗಿಸಲಾದ ಸ್ಥಿತಿಯಲ್ಲಿ ಆರಂಭಗೊಳ್ಳುತ್ತದೆಯೆ ಎಂದು ಈ " +"ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -779,7 +786,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 msgid "This key defines the default value of the \"Look in Folder\" widget." -msgstr "ಈ ಕೀಲಿಯು \"ಕಡತಕೋಶದಲ್ಲಿ ಹುಡುಕು\" ವಿಜೆಟ್‌ನ ಪೂರ್ವನಿಯೋಜಿತ ಮೌಲ್ಯವನ್ನು ಸೂಚಿಸುತ್ತದೆ." +msgstr "" +"ಈ ಕೀಲಿಯು \"ಕಡತಕೋಶದಲ್ಲಿ ಹುಡುಕು\" ವಿಜೆಟ್‌ನ ಪೂರ್ವನಿಯೋಜಿತ ಮೌಲ್ಯವನ್ನು " +"ಸೂಚಿಸುತ್ತದೆ." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 msgid "" @@ -794,40 +803,40 @@ "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"ಹುಡುಕು ಉಪಕರಣವನ್ನು ಆರಂಭಿಸಿದಾಗ \"ಈ ದಿನಾಂಕಕ್ಕಿಂತ ಮೊದಲು ಮಾರ್ಪಡಿಸಲಾಗಿದ್ದು\" ಹುಡುಕು " -"ಆಯ್ಕೆಯನ್ನು ಆರಿಸಲಾಗಿದೆಯೆ ಎಂದು ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." +"ಹುಡುಕು ಉಪಕರಣವನ್ನು ಆರಂಭಿಸಿದಾಗ \"ಈ ದಿನಾಂಕಕ್ಕಿಂತ ಮೊದಲು ಮಾರ್ಪಡಿಸಲಾಗಿದ್ದು\" " +"ಹುಡುಕು ಆಯ್ಕೆಯನ್ನು ಆರಿಸಲಾಗಿದೆಯೆ ಎಂದು ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"ಹುಡುಕು ಉಪಕರಣವನ್ನು ಆರಂಭಿಸಿದಾಗ \"ಈ ದಿನಾಂಕಕ್ಕಿಂತ ನಂತರ ಮಾರ್ಪಡಿಸಲಾಗಿದ್ದು\" ಹುಡುಕು " -"ಆಯ್ಕೆಯನ್ನು ಆರಿಸಲಾಗಿದೆಯೆ ಎಂದು ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." +"ಹುಡುಕು ಉಪಕರಣವನ್ನು ಆರಂಭಿಸಿದಾಗ \"ಈ ದಿನಾಂಕಕ್ಕಿಂತ ನಂತರ ಮಾರ್ಪಡಿಸಲಾಗಿದ್ದು\" ಹುಡುಕು" +" ಆಯ್ಕೆಯನ್ನು ಆರಿಸಲಾಗಿದೆಯೆ ಎಂದು ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"ಹುಡುಕು ಉಪಕರಣವನ್ನು ಆರಂಭಿಸಿದಾಗ \"ಕನಿಷ್ಟ ಗಾತ್ರ\" ಹುಡುಕು ಆಯ್ಕೆಯನ್ನು ಆರಿಸಲಾಗಿದೆಯೆ ಎಂದು " -"ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." +"ಹುಡುಕು ಉಪಕರಣವನ್ನು ಆರಂಭಿಸಿದಾಗ \"ಕನಿಷ್ಟ ಗಾತ್ರ\" ಹುಡುಕು ಆಯ್ಕೆಯನ್ನು ಆರಿಸಲಾಗಿದೆಯೆ" +" ಎಂದು ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"ಹುಡುಕು ಉಪಕರಣವನ್ನು ಆರಂಭಿಸಿದಾಗ \"ಗರಿಷ್ಟ ಗಾತ್ರ\" ಹುಡುಕು ಆಯ್ಕೆಯನ್ನು ಆರಿಸಲಾಗಿದೆಯೆ ಎಂದು " -"ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." +"ಹುಡುಕು ಉಪಕರಣವನ್ನು ಆರಂಭಿಸಿದಾಗ \"ಗರಿಷ್ಟ ಗಾತ್ರ\" ಹುಡುಕು ಆಯ್ಕೆಯನ್ನು ಆರಿಸಲಾಗಿದೆಯೆ" +" ಎಂದು ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"ಹುಡುಕು ಉಪಕರಣವನ್ನು ಆರಂಭಿಸಿದಾಗ \"ಕಡತವು ಖಾಲಿ ಇದೆ\" ಹುಡುಕು ಆಯ್ಕೆಯನ್ನು ಆರಿಸಲಾಗಿದೆಯೆ " -"ಎಂದು ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." +"ಹುಡುಕು ಉಪಕರಣವನ್ನು ಆರಂಭಿಸಿದಾಗ \"ಕಡತವು ಖಾಲಿ ಇದೆ\" ಹುಡುಕು ಆಯ್ಕೆಯನ್ನು " +"ಆರಿಸಲಾಗಿದೆಯೆ ಎಂದು ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" @@ -839,8 +848,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "ಹುಡುಕು ಉಪಕರಣವನ್ನು ಆರಂಭಿಸಿದಾಗ \"ಸಮೂಹದಿಂದ ಮಾಲಿಕತ್ವವನ್ನು ಹೊಂದಿರುವ\" ಹುಡುಕು " "ಆಯ್ಕೆಯನ್ನು ಆರಿಸಲಾಗಿದೆಯೆ ಎಂದು ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." @@ -863,8 +872,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "ಹುಡುಕು ಉಪಕರಣವನ್ನು ಆರಂಭಿಸಿದಾಗ \"ಸಾಮಾನ್ಯ ಗಣಿತೋಕ್ತಿಗೆ ತಾಳೆಯಾಗುವ ಹೆಸರು\" ಹುಡುಕು " "ಆಯ್ಕೆಯನ್ನು ಆರಿಸಲಾಗಿದೆಯೆ ಎಂದು ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." @@ -882,8 +891,8 @@ "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"ಹುಡುಕು ಉಪಕರಣವನ್ನು ಆರಂಭಿಸಿದಾಗ \"ಸಾಂಕೇತಿಕ ಕೊಂಡಿಗಳನ್ನು ಅನುಸರಿಸು\" ಹುಡುಕು ಆಯ್ಕೆಯನ್ನು " -"ಆರಿಸಲಾಗಿದೆಯೆ ಎಂದು ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." +"ಹುಡುಕು ಉಪಕರಣವನ್ನು ಆರಂಭಿಸಿದಾಗ \"ಸಾಂಕೇತಿಕ ಕೊಂಡಿಗಳನ್ನು ಅನುಸರಿಸು\" ಹುಡುಕು " +"ಆಯ್ಕೆಯನ್ನು ಆರಿಸಲಾಗಿದೆಯೆ ಎಂದು ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" @@ -893,62 +902,62 @@ "ಹುಡುಕು ಉಪಕರಣವನ್ನು ಆರಂಭಿಸಿದಾಗ \"ಇತರೆ ಕಡತವ್ಯವಸ್ಥೆಗಳನ್ನು ಹೊರತುಪಡಿಸು\" ಹುಡುಕು " "ಆಯ್ಕೆಯನ್ನು ಆರಿಸಲಾಗಿದೆಯೆ ಎಂದು ಈ ಕೀಲಿಯು ನಿರ್ಧರಿಸುತ್ತದೆ." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "ಕಡತವು ಮಾನ್ಯವಾದ .desktop ಕಡತವಾಗಿಲ್ಲ" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "ಗುರುತಿಸಲಾಗದ ಗಣಕತೆರೆ ಕಡತ ಆವೃತ್ತಿ '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" -msgstr "%s ಅನ್ನು ಆರಂಭಿಸಲಾಗುತ್ತಿದೆ" +msgstr "%s ಅನ್ನು ತೊಡಗಿಸಲಾಗುತ್ತಿದೆ" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "ಅನ್ವಯವು ಆಜ್ಞಾ ಸಾಲಿನಲ್ಲಿ ದಸ್ತಾವೇಜುಗಳನ್ನು ಅಂಗೀಕರಿಸುವುದಿಲ್ಲ" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "ಗುರುತಿಸಲಾಗದ ಆರಂಭದ ಆಯ್ಕೆ: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "ಒಂದು 'Type=Link' ಗಣಕತೆರೆ ನಮೂದಿಗಾಗಿ ದಸ್ತಾವೇಜು URIಗಳನ್ನು ಒದಗಿಸಲಾಗಿಲ್ಲ" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" -msgstr "ಆರಂಭಿಸಬಹುದಾದ ಅಂಶವಾಗಿಲ್ಲ" +msgstr "ತೊಡಗಿಸಬಹುದಾದ ಅಡಕವಾಗಿಲ್ಲ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "ಅಧಿವೇಶನದ ವ್ಯವಸ್ಥಾಪಕನೊಂದಿಗಿನ ಸಂಪರ್ಕವನ್ನು ಅಶಕ್ತಗೊಳಿಸು" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "ಉಳಿಸಲಾದ ಸಂರಚನೆಯನ್ನು ಹೊಂದಿರುವ ಕಡತವನ್ನು ಸೂಚಿಸಿ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "ಅಧೀವೇಶನ ವ್ಯವಸ್ಥಾಪನಾ ID ಯನ್ನು ಸೂಚಿಸಿ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ಐಡಿ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "ಅಧಿವೇಶನ ವ್ಯವಸ್ಥಾಪನಾ ಆಯ್ಕೆಗಳು:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "ಅಧಿವೇಶನ ವ್ಯವಸ್ಥಾಪನಾ ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು" @@ -1112,13 +1121,14 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"ಈ ಕೆಳಗಿನವುಗಳಲ್ಲಿ ಒಂದರ ಆಧಾರದ ಮೇಲೆ ಕಡತಗಳನ್ನು ವಿಂಗಡಿಸಿ: ಹೆಸರು, ಕಡತಕೋಶ, ಗಾತ್ರ, ಬಗೆ " -"ಅಥವ ದಿನಾಂಕ" +"ಈ ಕೆಳಗಿನವುಗಳಲ್ಲಿ ಒಂದರ ಆಧಾರದ ಮೇಲೆ ಕಡತಗಳನ್ನು ವಿಂಗಡಿಸಿ: ಹೆಸರು, ಕಡತಕೋಶ, ಗಾತ್ರ, " +"ಬಗೆ ಅಥವ ದಿನಾಂಕ" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" msgstr "" -"ವಿಂಗಡಣಾ ಕ್ರಮವನ್ನು ಇಳಿಕೆ ಕ್ರಮದಲ್ಲಿ ಜೋಡಿಸಿ, ಏರಿಕೆ ಕ್ರಮವು ಪೂರ್ವನಿಯೋಜಿತ ಆಗಿರುತ್ತದೆ" +"ವಿಂಗಡಣಾ ಕ್ರಮವನ್ನು ಇಳಿಕೆ ಕ್ರಮದಲ್ಲಿ ಜೋಡಿಸಿ, ಏರಿಕೆ ಕ್ರಮವು ಪೂರ್ವನಿಯೋಜಿತ " +"ಆಗಿರುತ್ತದೆ" #: gsearchtool/src/gsearchtool.c:1329 msgid "Automatically start a search" @@ -1151,7 +1161,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"ಹುಡುಕು ಫಲಿತಾಂಶವು ಅಮಾನ್ಯವಾಗಿರಬಹುದು. ಈ ಹುಡುಕನ್ನು ನಿರ್ವಹಿಸುವಾಗ ಕೆಲವು ದೋಷಗಳಾಗಿವೆ." +"ಹುಡುಕು ಫಲಿತಾಂಶವು ಅಮಾನ್ಯವಾಗಿರಬಹುದು. ಈ ಹುಡುಕನ್ನು ನಿರ್ವಹಿಸುವಾಗ ಕೆಲವು " +"ದೋಷಗಳಾಗಿವೆ." #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1172,7 +1183,8 @@ #: gsearchtool/src/gsearchtool.c:1845 #, c-format msgid "Failed to set process group id of child %d: %s.\n" -msgstr "ಚೈಲ್ಡ್‌ %d ನ ಪ್ರಕ್ರಿಯೆಯ ಗುಂಪು id ಅನ್ನು ಸಿದ್ಧಗೊಳಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ: %s.\n" +msgstr "" +"ಚೈಲ್ಡ್‌ %d ನ ಪ್ರಕ್ರಿಯೆಯ ಗುಂಪು id ಅನ್ನು ಸಿದ್ಧಗೊಳಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ: %s.\n" #: gsearchtool/src/gsearchtool.c:1870 msgid "Error parsing the search command." @@ -1257,8 +1269,8 @@ #: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 msgid "Enter a filename or partial filename with or without wildcards." msgstr "" -"ವೈಲ್ಡ್‌ಕಾರ್ಡುಗಳೊಂದಿಗೆ ಅಥವ ವೈಲ್ಡ್‌ಕಾರ್ಡುಗಳಿಲ್ಲದೆ ಒಂದು ಕಡತದ ಹೆಸರು ಅಥವ ಆಂಶಿಕ ಕಡತದ " -"ಹೆಸರನ್ನು ನಮೂದಿಸಿ." +"ವೈಲ್ಡ್‌ಕಾರ್ಡುಗಳೊಂದಿಗೆ ಅಥವ ವೈಲ್ಡ್‌ಕಾರ್ಡುಗಳಿಲ್ಲದೆ ಒಂದು ಕಡತದ ಹೆಸರು ಅಥವ ಆಂಶಿಕ " +"ಕಡತದ ಹೆಸರನ್ನು ನಮೂದಿಸಿ." #: gsearchtool/src/gsearchtool.c:2836 msgid "Name contains" @@ -1353,7 +1365,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:521 msgid "There is no installed viewer capable of displaying the document." msgstr "" -"ದಸ್ತಾವೇಜನ್ನು ತೋರಿಸಲು ಸಾಮರ್ಥ್ಯವನ್ನು ಹೊಂದಿರುವ ಯಾವುದೆ ವೀಕ್ಷಕವು ಅನುಸ್ಥಾಪಿತಗೊಂಡಿಲ್ಲ." +"ದಸ್ತಾವೇಜನ್ನು ತೋರಿಸಲು ಸಾಮರ್ಥ್ಯವನ್ನು ಹೊಂದಿರುವ ಯಾವುದೆ ವೀಕ್ಷಕವು " +"ಅನುಸ್ಥಾಪಿತಗೊಂಡಿಲ್ಲ." #: gsearchtool/src/gsearchtool-callbacks.c:543 #, c-format @@ -1444,8 +1457,8 @@ #, c-format msgid "The document \"%s\" already exists. Would you like to replace it?" msgstr "" -"\"%s\" ಎಂಬ ಹೆಸರಿನ ಒಂದು ದಸ್ತಾವೇಜು ಈಗಾಗಲೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. ನೀವದನ್ನು ಬದಲಾಯಿಸಲು " -"ಬಯಸುತ್ತೀರಾ?" +"\"%s\" ಎಂಬ ಹೆಸರಿನ ಒಂದು ದಸ್ತಾವೇಜು ಈಗಾಗಲೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. ನೀವದನ್ನು ಬದಲಾಯಿಸಲು" +" ಬಯಸುತ್ತೀರಾ?" #: gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "If you replace an existing file, its contents will be overwritten." @@ -1566,7 +1579,8 @@ msgid "View or monitor system log files" msgstr "ವ್ಯವಸ್ಥೆಯ ದಾಖಲೆ ಕಡತಗಳನ್ನು ನೋಡಿ ಅಥವ ಮೇಲ್ವಿಚಾರಣೆ ನಡೆಸಿ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1577,11 +1591,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"ಆರಂಭಗೊಂಡಾಗ ತೋರಿಸಲ್ಪಡಬೇಕಿರುವ ದಾಖಲೆ ಕಡತವನ್ನು ಸೂಚಿಸುತ್ತದೆ. ಪೂರ್ವನಿಯೋಜಿತ, ನಿಮ್ಮಲ್ಲಿರುವ " -"ಕಾರ್ಯವ್ಯವಸ್ಥೆಗೆ ಅನುಗುಣವಾಗಿ var/adm/messages ಅಥವ /var/log/messages ಆಗಿರುತ್ತದೆ." +"ಆರಂಭಗೊಂಡಾಗ ತೋರಿಸಲ್ಪಡಬೇಕಿರುವ ದಾಖಲೆ ಕಡತವನ್ನು ಸೂಚಿಸುತ್ತದೆ. ಪೂರ್ವನಿಯೋಜಿತ, " +"ನಿಮ್ಮಲ್ಲಿರುವ ಕಾರ್ಯವ್ಯವಸ್ಥೆಗೆ ಅನುಗುಣವಾಗಿ var/adm/messages ಅಥವ " +"/var/log/messages ಆಗಿರುತ್ತದೆ." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1592,8 +1607,8 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"ಮುಖ್ಯ ವೃಕ್ಷ ನೋಟದಲ್ಲಿ ದಾಖಲೆಯನ್ನು ತೋರಿಸಲು ಬಳಸಲಾಗುವ ನಿಗದಿತ-ಅಗಲದ ಅಕ್ಷರಶೈಲಿಯ ಗಾತ್ರವನ್ನು " -"ಸೂಚಿಸುತ್ತದೆ. ಪೂರ್ವನಿಯೋಜಿತ ಅಕ್ಷರಶೈಲಿಯ ಗಾತ್ರದಿಂದ ಪೂರ್ವನಿಯೋಜಿತವನ್ನು " +"ಮುಖ್ಯ ವೃಕ್ಷ ನೋಟದಲ್ಲಿ ದಾಖಲೆಯನ್ನು ತೋರಿಸಲು ಬಳಸಲಾಗುವ ನಿಗದಿತ-ಅಗಲದ ಅಕ್ಷರಶೈಲಿಯ " +"ಗಾತ್ರವನ್ನು ಸೂಚಿಸುತ್ತದೆ. ಪೂರ್ವನಿಯೋಜಿತ ಅಕ್ಷರಶೈಲಿಯ ಗಾತ್ರದಿಂದ ಪೂರ್ವನಿಯೋಜಿತವನ್ನು " "ತೆಗೆದುಕೊಳ್ಳಲಾಗುತ್ತದೆ." #: logview/data/org.mate.system-log.gschema.xml.in:15 @@ -1635,7 +1650,7 @@ #: logview/data/logview-filter.ui:32 mate-disk-image-mounter/src/main.c:124 #: mate-screenshot/data/mate-screenshot.ui:92 msgid "_Cancel" -msgstr "ರದ್ದು ಮಾಡಲಾಗಿದೆ(_C)" +msgstr "ನೀಗು (_C)" #: logview/data/logview-filter.ui:48 msgid "_Apply" @@ -1925,7 +1940,7 @@ #: logview/src/logview-window.c:853 mate-dictionary/src/gdict-applet.c:1176 #: mate-dictionary/src/gdict-window.c:1314 msgid "_About" -msgstr "ಇದರ ಬಗ್ಗೆ(_A)" +msgstr "ಬಗ್ಗೆ (_A)" #: logview/src/logview-window.c:853 msgid "Show the about dialog for the log viewer" @@ -1985,7 +2000,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "ಒಂದು ಆನ್‌ಲೈನ್‌ ಶಬ್ಧಕೋಶದಲ್ಲಿ ಪದದ ವಿವರಣೆಗಳನ್ನು ಹಾಗು ಕಾಗುಣಿತಗಳನ್ನು ನೋಡು" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1997,8 +2013,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2028,9 +2044,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"ಶಬ್ಧಕೋಶ ಆಕರದಲ್ಲಿ ಬಳಸಲು ಪೂರ್ವನಿಯೋಜಿತ ಪ್ರತ್ಯೇಕ ದತ್ತಸಂಚಯದ ಅಥವ ಮೆಟಾ-ದತ್ತಸಂಚಯದ ಹೆಸರು. " -"ಒಂದು ಆಶ್ಚರ್ಯ ಸೂಚಕ ಚಿಹ್ನೆಯು (\"!\") ಶಬ್ಧಕೋಶ ಆಕರದಲ್ಲಿ ನೀಡಲಾದ ಎಲ್ಲಾ ದತ್ತಸಂಚಯವನ್ನು " -"ಹುಡುಕಬೇಕು ಎನ್ನುವುದನ್ನು ಸೂಚಿಸುತ್ತದೆ" +"ಶಬ್ಧಕೋಶ ಆಕರದಲ್ಲಿ ಬಳಸಲು ಪೂರ್ವನಿಯೋಜಿತ ಪ್ರತ್ಯೇಕ ದತ್ತಸಂಚಯದ ಅಥವ ಮೆಟಾ-ದತ್ತಸಂಚಯದ " +"ಹೆಸರು. ಒಂದು ಆಶ್ಚರ್ಯ ಸೂಚಕ ಚಿಹ್ನೆಯು (\"!\") ಶಬ್ಧಕೋಶ ಆಕರದಲ್ಲಿ ನೀಡಲಾದ ಎಲ್ಲಾ " +"ದತ್ತಸಂಚಯವನ್ನು ಹುಡುಕಬೇಕು ಎನ್ನುವುದನ್ನು ಸೂಚಿಸುತ್ತದೆ" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2041,8 +2057,9 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"ಒಂದು ಶಬ್ಧಕೋಶ ಆಕರದಲ್ಲಿ ಬಳಸಬೇಕಿರುವ ಹುಡುಕು ತಂತ್ರವು ಲಭ್ಯವಿದ್ದಲ್ಲಿ ಅದರ ಪೂರ್ವನಿಯೋಜಿತ " -"ಹೆಸರು. ಪದಗಳು ನಿಖರವಾಗಿ ತಾಳೆಯಾದಲ್ಲಿ ಪೂರ್ವನಿಯೋಜಿತ ತಂತ್ರವು 'exact' ಆಗಿರುತ್ತದೆ." +"ಒಂದು ಶಬ್ಧಕೋಶ ಆಕರದಲ್ಲಿ ಬಳಸಬೇಕಿರುವ ಹುಡುಕು ತಂತ್ರವು ಲಭ್ಯವಿದ್ದಲ್ಲಿ ಅದರ " +"ಪೂರ್ವನಿಯೋಜಿತ ಹೆಸರು. ಪದಗಳು ನಿಖರವಾಗಿ ತಾಳೆಯಾದಲ್ಲಿ ಪೂರ್ವನಿಯೋಜಿತ ತಂತ್ರವು 'exact' " +"ಆಗಿರುತ್ತದೆ." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2643,7 +2660,7 @@ #: mate-dictionary/src/gdict-applet.c:1170 msgid "Preferences" -msgstr "ಆದ್ಯತೆಗಳು" +msgstr "ಒಲವುಗಳು" #: mate-dictionary/src/gdict-common.c:77 #, c-format @@ -2783,7 +2800,7 @@ #: mate-dictionary/src/gdict-window.c:1288 msgid "_Preferences" -msgstr "ಆದ್ಯತೆಗಳು(_P)" +msgstr "ಒಲವುಗಳು (_P)" #: mate-dictionary/src/gdict-window.c:1292 msgid "_Previous Definition" @@ -3031,7 +3048,8 @@ msgid "Save images of your desktop or individual windows" msgstr "ನಿಮ್ಮ ಗಣಕತೆರೆಯನ್ನು ಅಥವ ಪ್ರತ್ಯೇಕ ವಿಂಡೋಗಳ ಚಿತ್ರವನ್ನು ಉಳಿಸಿ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3089,8 +3107,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"ಅಂಚಿನ ಹೊರಬದಿಗೆ ಸೇರಿಸಬೇಕಿರುವ ಪರಿಣಾಮ. ಸಾಧ್ಯವಿರುವ ಮೌಲ್ಯಗಳೆಂದರೆ \"shadow\"(ನೆರಳು), " -"\"none\"(ಯಾವುದೂ ಇಲ್ಲ), ಹಾಗು \"border\"(ಅಂಚು)." +"ಅಂಚಿನ ಹೊರಬದಿಗೆ ಸೇರಿಸಬೇಕಿರುವ ಪರಿಣಾಮ. ಸಾಧ್ಯವಿರುವ ಮೌಲ್ಯಗಳೆಂದರೆ " +"\"shadow\"(ನೆರಳು), \"none\"(ಯಾವುದೂ ಇಲ್ಲ), ಹಾಗು \"border\"(ಅಂಚು)." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3228,8 +3246,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3272,8 +3290,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"ಚೈಲ್ಡ್‌ ಉಳಿಸುವ ಪ್ರಕ್ರಿಯೆಯು ಅನಿರೀಕ್ಷಿತವಾಗಿ ನಿರ್ಗಮಿಸಿದೆ. ತೆರೆಚಿತ್ರವನ್ನು ಡಿಸ್ಕಿಗೆ ಬರೆಯಲು " -"ಸಾಧ್ಯವಾಗಿಲ್ಲ." +"ಚೈಲ್ಡ್‌ ಉಳಿಸುವ ಪ್ರಕ್ರಿಯೆಯು ಅನಿರೀಕ್ಷಿತವಾಗಿ ನಿರ್ಗಮಿಸಿದೆ. ತೆರೆಚಿತ್ರವನ್ನು " +"ಡಿಸ್ಕಿಗೆ ಬರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ." #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ko.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ko.gmo differ diff -Nru mate-utils-1.26.0/po/ko.po mate-utils-1.26.1/po/ko.po --- mate-utils-1.26.0/po/ko.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/ko.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,26 +2,28 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Alan Lee , 2018 +# Alan Lee , 2021 +# clefebvre , 2021 # Seong-ho Cho , 2021 -# JungHee Lee , 2021 # Stefano Karapetsas , 2021 -# 박정규(Jung-Kyu Park) , 2021 -# +# 1763f4a4329a2376c933c5e919a36cbc_341ca53 <1f851310383599d03339229d772e1290_119292>, 2021 +# Wolfgang Ulbrich , 2021 +# Junghee Lee , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: 박정규(Jung-Kyu Park) , 2021\n" -"Language-Team: Korean (https://www.transifex.com/mate/teams/13566/ko/)\n" -"Language: ko\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Junghee Lee , 2021\n" +"Language-Team: Korean (https://app.transifex.com/mate/teams/13566/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -33,7 +35,8 @@ msgid "Check folder sizes and available disk space" msgstr "폴더 크기와 디스크의 사용 가능한 공간을 검사합니다" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -217,8 +220,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -269,7 +272,7 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "항목 %5d개" +msgstr[0] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -477,9 +480,7 @@ msgid "" "The content of your home folder has changed. Select rescan to update the " "disk usage details." -msgstr "" -"홈 폴더의 내용이 바뀌었습니다. 디스크 사용량 정보를 업데이트하려면 다시 검사" -"를 선택하십시오." +msgstr "홈 폴더의 내용이 바뀌었습니다. 디스크 사용량 정보를 업데이트하려면 다시 검사를 선택하십시오." #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -491,7 +492,7 @@ #: baobab/src/baobab-treeview.c:244 msgid "Usage" -msgstr "사용량" +msgstr "사용법" #: baobab/src/baobab-treeview.c:258 gsearchtool/src/gsearchtool.c:2466 msgid "Size" @@ -570,9 +571,8 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"이 프로그램은 자유 소프트웨어입니다. 소프트웨어의 피양도자는 자유 소프트웨어 " -"재단이 공표한 GNU 일반 공중 사용 허가서 2판 또는 그 이후 판을 임의로 선택해" -"서, 그 규정에 따라 프로그램을 개작하거나 재배포할 수 있습니다." +"이 프로그램은 자유 소프트웨어 입니다; 자유 소프트웨어 재단이 발표한 GNU 일반 공중 사용 허가서 버전 2 또는 (선택에 따라) 그 " +"이상의 버전의 조항에 의거하여 재배포하거나 수정할 수 있습니다." #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -582,19 +582,18 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"이 프로그램은 유용하게 사용될 수 있으리라는 희망에서 배포되고 있지만, 특정한 " -"목적에 맞는 적합성 여부나 판매용으로 사용할 수 있으리라는 묵시적인 보증을 포" -"함한 어떠한 형태의 보증도 제공하지 않습니다. 보다 자세한 사항에 대해서는 GNU " -"일반 공중 사용 허가서를 참고하시기 바랍니다." +"이 프로그램은 유용하게 사용될 수 있으리라는 희망에서 배포되고 있지만, 특정한 목적에 맞는 적합성 여부나 판매용으로 사용할 수 있으리라는" +" 묵시적인 보증을 포함한 어떠한 형태의 보증도 제공하지 않습니다. 보다 자세한 사항에 대해서는 GNU 일반 공중 사용 허가서를 참고하시기" +" 바랍니다." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" -"이 프로그램과 함께 GNU 일반 공중 사용 허가서 사본을 받았어야 합니다. 그렇지 " -"않은 경우, 문서를 참조하십시오" +"이 프로그램과 함께 GNU 일반 공중 사용 허가서 사본을 받았어야 합니다. 그렇지 않은 경우, " +" 문서를 참조하십시오" #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" @@ -622,8 +621,7 @@ "onlyeriko https://launchpad.net/~onlyeriko\n" "Seong-ho Cho \n" "JungHee Lee \n" -"MATE Desktop Environment Team " +"MATE Desktop Environment Team " #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -647,22 +645,22 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "이 컴퓨터의 문서나 폴더를 이름이나 내용으로 찾습니다" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" -"MATE;MATE;search;검색;files;파일;locate;위치;documents;문서;folder;폴더;디렉" -"터리;computer;컴퓨터;name;이름;명칭;content;내용;컨텐츠;find;찾기;tool;도구;" +"MATE;MATE;search;검색;files;파일;locate;위치;documents;문서;folder;폴더;디렉터리;computer;컴퓨터;name;이름;명칭;content;내용;컨텐츠;find;찾기;tool;도구;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -684,9 +682,7 @@ msgid "" "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." -msgstr "" -"이 키는 검색 도구가 간단한 파일 이름 검색을 할 때 locate 명령을 사용하지 않" -"을 지 결정합니다." +msgstr "이 키는 검색 도구가 간단한 파일 이름 검색을 할 때 locate 명령을 사용하지 않을 지 결정합니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -694,13 +690,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"이 키는 검색 도구의 빠른 찾기에서 제외할 경로를 지정합니다. '*' 및 '?' 와일" -"드 카드를 사용할 수 있습니다. 기본값은 /mnt/*, /media/*, /dev/*, /tmp/*, /" -"proc/* 그리고 /var/*입니다." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"이 키는 검색 도구의 빠른 찾기에서 제외할 경로를 지정합니다. '*' 및 '?' 와일드 카드를 사용할 수 있습니다. 기본값은 " +"/mnt/*, /media/*, /dev/*, /tmp/*, /proc/* 그리고 /var/*입니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -710,9 +705,7 @@ msgid "" "This key determines if the search tool disables the use of the find command " "after performing a quick search." -msgstr "" -"이 키는 검색 도구가 빠른 검색을 한 후에 find 명령을 사용하지 않을 지 결정합니" -"다." +msgstr "이 키는 검색 도구가 빠른 검색을 한 후에 find 명령을 사용하지 않을 지 결정합니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -723,13 +716,12 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"이 키는 검색 도구의 빠른 검색 2단계에서 제외할 경로를 지정합니다. 2단계에서" -"는 find 명령을 사용합니다. 2단계의 목적은 색인을 만들지 않은 파일을 찾는 것입" -"니다. '*' 및 '?' 와일드 카드를 사용할 수 있습니다. 기본값은 /mnt/*, /media/" -"*, /dev/*, /tmp/*, /proc/* 그리고 /var/*입니다." +"이 키는 검색 도구의 빠른 검색 2단계에서 제외할 경로를 지정합니다. 2단계에서는 find 명령을 사용합니다. 2단계의 목적은 색인을 " +"만들지 않은 파일을 찾는 것입니다. '*' 및 '?' 와일드 카드를 사용할 수 있습니다. 기본값은 /mnt/*, /media/*, " +"/dev/*, /tmp/*, /proc/* 그리고 /var/*입니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -739,9 +731,7 @@ msgid "" "This key defines the order of the columns in the search results. This key " "should not be modified by the user." -msgstr "" -"이 키는 찾은 결과에서 컬럼 순서를 정합니다. 이 키는 사용자가 고치면 안 됩니" -"다." +msgstr "이 키는 찾은 결과에서 컬럼 순서를 정합니다. 이 키는 사용자가 고치면 안 됩니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -749,12 +739,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -"이 키는 창 너비를 정합니다. 그리고 세션 사이에서 검색 도구의 크기를 저장하는 " -"데 쓰입니다. -1이 설정되어 있으면 기본 너비로 설정됩니다." +"이 키는 창 너비를 정합니다. 그리고 세션 사이에서 검색 도구의 크기를 저장하는 데 쓰입니다. -1이 설정되어 있으면 기본 너비로 " +"설정됩니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -763,11 +753,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"이 키는 창 높이를 정합니다. 그리고 세션 사이에서 검색 도구의 크기를 저장하는 " -"데 쓰입니다. -1이 설정되어 있으면 기본 높이로 설정됩니다." +"이 키는 창 높이를 정합니다. 그리고 세션 사이에서 검색 도구의 크기를 저장하는 데 쓰입니다. -1이 설정되어 있으면 기본 높이로 " +"설정됩니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -790,168 +780,142 @@ msgid "" "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." -msgstr "" -"이 키는 검색 도구를 시작할 때 \"텍스트 포함\" 검색 옵션을 선택할 지 결정합니" -"다." +msgstr "이 키는 검색 도구를 시작할 때 \"텍스트 포함\" 검색 옵션을 선택할 지 결정합니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." -msgstr "" -"이 키는 검색 도구를 시작할 때 \"최근에 바뀐 기간\" 검색 옵션을 선택할 지 결정" -"합니다." +msgstr "이 키는 검색 도구를 시작할 때 \"최근에 바뀐 기간\" 검색 옵션을 선택할 지 결정합니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." -msgstr "" -"이 키는 검색 도구를 시작할 때 \"이후에 바뀐 기간\" 검색 옵션을 선택할 지 결정" -"합니다." +msgstr "이 키는 검색 도구를 시작할 때 \"이후에 바뀐 기간\" 검색 옵션을 선택할 지 결정합니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." -msgstr "" -"이 키는 검색 도구를 시작할 때 \"최소 크기\" 검색 옵션을 선택할 지 결정합니다." +msgstr "이 키는 검색 도구를 시작할 때 \"최소 크기\" 검색 옵션을 선택할 지 결정합니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." -msgstr "" -"이 키는 검색 도구를 시작할 때 \"최대 크기\" 검색 옵션을 선택할 지 결정합니다." +msgstr "이 키는 검색 도구를 시작할 때 \"최대 크기\" 검색 옵션을 선택할 지 결정합니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." -msgstr "" -"이 키는 검색 도구를 시작할 때 \"비어 있는 파일\" 검색 옵션을 선택할 지 결정합" -"니다." +msgstr "이 키는 검색 도구를 시작할 때 \"비어 있는 파일\" 검색 옵션을 선택할 지 결정합니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." -msgstr "" -"이 키는 검색 도구를 시작할 때 \"소유한 사람\" 검색 옵션을 선택할 지 결정합니" -"다." +msgstr "이 키는 검색 도구를 시작할 때 \"소유한 사람\" 검색 옵션을 선택할 지 결정합니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." -msgstr "" -"이 키는 검색 도구를 시작할 때 \"소유한 그룹\" 검색 옵션을 선택할 지 결정합니" -"다." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." +msgstr "이 키는 검색 도구를 시작할 때 \"소유한 그룹\" 검색 옵션을 선택할 지 결정합니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." -msgstr "" -"이 키는 검색 도구를 시작할 때 \"소유자 알 수 없음\" 검색 옵션을 선택할 지 결" -"정합니다." +msgstr "이 키는 검색 도구를 시작할 때 \"소유자 알 수 없음\" 검색 옵션을 선택할 지 결정합니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." -msgstr "" -"이 키는 검색 도구를 시작할 때 \"이름에 포함하지 않음\" 검색 옵션을 선택할 지 " -"결정합니다." +msgstr "이 키는 검색 도구를 시작할 때 \"이름에 포함하지 않음\" 검색 옵션을 선택할 지 결정합니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." -msgstr "" -"이 키는 검색 도구를 시작할 때 \"이름에 맞는 정규 표현식\" 검색 옵션을 선택할 " -"지 결정합니다." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." +msgstr "이 키는 검색 도구를 시작할 때 \"이름에 맞는 정규 표현식\" 검색 옵션을 선택할 지 결정합니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." -msgstr "" -"이 키는 검색 도구를 시작할 때 \"숨겨진 파일 또는 폴더 보기\" 검색 옵션을 선택" -"할 지 결정합니다." +msgstr "이 키는 검색 도구를 시작할 때 \"숨겨진 파일 또는 폴더 보기\" 검색 옵션을 선택할 지 결정합니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." -msgstr "" -"이 키는 검색 도구를 시작할 때 \"심볼릭 링크 따라가기\" 검색 옵션을 선택할 지 " -"결정합니다." +msgstr "이 키는 검색 도구를 시작할 때 \"심볼릭 링크 따라가기\" 검색 옵션을 선택할 지 결정합니다." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." -msgstr "" -"이 키는 검색 도구를 시작할 때 \"다른 파일 시스템 제외\" 검색 옵션을 선택할 " -"지 결정합니다." +msgstr "이 키는 검색 도구를 시작할 때 \"다른 파일 시스템 제외\" 검색 옵션을 선택할 지 결정합니다." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "올바른 .desktop 파일이 아닙니다" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "desktop 파일 버전을 ('%s') 인식할 수 없습니다" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s 시작" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "명령문에서 문서를 지정할 수 없는 프로그램입니다" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "알 수 없는 실행 옵션: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "문서 URI는 'Type=Link' desktop 항목에 넘길 수 없습니다" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "실행할 수 있는 항목이 없습니다" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "세션 관리자에 연결하지 않습니다" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "설정을 저장할 파일을 지정합니다" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "<파일>" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "세션 관리 ID를 지정합니다" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "세션 관리 옵션:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "세션 관리 옵션을 표시합니다" @@ -997,7 +961,7 @@ #: gsearchtool/src/gsearchtool.c:93 msgid "Owner is unrecognized" -msgstr "소유자 알 수 없음" +msgstr "소유자를 알 수 없음" #: gsearchtool/src/gsearchtool.c:95 msgid "Na_me does not contain" @@ -1090,13 +1054,13 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "파일 %'d개 찾음" +msgstr[0] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "파일 %'d개 찾음" +msgstr[0] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1148,8 +1112,7 @@ msgid "" "The search results may be invalid. There were errors while performing this " "search." -msgstr "" -"찾은 결과가 잘못되었을 것입니다. 검색을 실행하는 중에 오류가 발생했습니다." +msgstr "찾은 결과가 잘못되었을 것입니다. 검색을 실행하는 중에 오류가 발생했습니다." #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1319,14 +1282,14 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "정말로 문서 %d개를 여시겠습니까?" +msgstr[0] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "창 %d개를 각각 엽니다." +msgstr[0] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1350,7 +1313,7 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "정말로 폴더 %d개를 여시겠습니까?" +msgstr[0] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1365,8 +1328,7 @@ #: gsearchtool/src/gsearchtool-callbacks.c:759 #, c-format msgid "Trash is unavailable. Could not move \"%s\" to the trash." -msgstr "" -"휴지통을 사용할 수 없습니다. \"%s\"을(를) 휴지통으로 옮길 수 없습니다." +msgstr "휴지통을 사용할 수 없습니다. \"%s\"을(를) 휴지통으로 옮길 수 없습니다." #: gsearchtool/src/gsearchtool-callbacks.c:803 #, c-format @@ -1555,12 +1517,12 @@ msgid "View or monitor system log files" msgstr "시스템의 로그 파일을 보거나 상태 변화를 봅니다" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" -"MATE;MATE;monitor;감시자;view;보기;system;시스템;log;로그;기록;files;파일;" -"logviewer;로그보기;뷰어;" +"MATE;MATE;monitor;감시자;view;보기;system;시스템;log;로그;기록;files;파일;logviewer;로그보기;뷰어;" #: logview/data/org.mate.system-log.gschema.xml.in:5 msgid "Log file to open up on startup" @@ -1568,11 +1530,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"시작할 때 열어 볼 로그 파일을 지정합니다. 기본값은 운영체제에 따라 /var/adm/" -"messages 아니면 /var/log/messages입니다." +"시작할 때 열어 볼 로그 파일을 지정합니다. 기본값은 운영체제에 따라 /var/adm/messages 아니면 " +"/var/log/messages입니다." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1583,8 +1545,7 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"기본 트리 보기에서 로그를 표시하는 데 사용되는 고정 너비 글꼴의 크기를 지정합" -"니다. 기본값은 기본 터미널 글꼴 크기에서 가져옵니다." +"기본 트리 보기에서 로그를 표시하는 데 사용되는 고정 너비 글꼴의 크기를 지정합니다. 기본값은 기본 터미널 글꼴 크기에서 가져옵니다." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1610,9 +1571,7 @@ msgid "" "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." -msgstr "" -"시작할 때 열어 볼 로그 파일의 목록을 지정합니다. 기본 목록은 /etc/syslog." -"conf 파일을 읽어서 만듭니다." +msgstr "시작할 때 열어 볼 로그 파일의 목록을 지정합니다. 기본 목록은 /etc/syslog.conf 파일을 읽어서 만듭니다." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1728,9 +1687,7 @@ #: logview/src/logview-log.c:589 msgid "Error while uncompressing the GZipped log. The file might be corrupt." -msgstr "" -"GZIP 압축한 로그의 압축을 푸는 중 오류가 발생했습니다. 파일이 손상되었을 수 " -"있습니다." +msgstr "GZIP 압축한 로그의 압축을 푸는 중 오류가 발생했습니다. 파일이 손상되었을 수 있습니다." #: logview/src/logview-log.c:635 msgid "You don't have enough permissions to read the file." @@ -1980,7 +1937,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "온라인 사전에서 단어의 의미와 맞춤법을 찾아 봅니다" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1992,8 +1950,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2023,8 +1981,8 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"사전 서버에서 사용할 각 데이터베이스의 이름. 느낌표(\"!\")는 사전 소스에 주어" -"진 서버에 있는 모든 데이터베이스를 찾는다는 뜻입니다." +"사전 서버에서 사용할 각 데이터베이스의 이름. 느낌표(\"!\")는 사전 소스에 주어진 서버에 있는 모든 데이터베이스를 찾는다는 " +"뜻입니다." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2034,9 +1992,7 @@ msgid "" "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." -msgstr "" -"주어진 사전 소스에서 사용할 기본 검색 방식 (사용 가능하다면). 기본 방식은 " -"'exact'로 정확히 맞는 단어만 찾습니다." +msgstr "주어진 사전 소스에서 사용할 기본 검색 방식 (사용 가능하다면). 기본 방식은 'exact'로 정확히 맞는 단어만 찾습니다." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2120,9 +2076,7 @@ msgid "" "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" -msgstr "" -"'%s:%d' 사전 서버에 연결할 수 없습니다. 서버에서 %d번 코드로 응답했습니다 (서" -"버 다운)" +msgstr "'%s:%d' 사전 서버에 연결할 수 없습니다. 서버에서 %d번 코드로 응답했습니다 (서버 다운)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2718,7 +2672,7 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "단어 정의 %d개 찾음" +msgstr[0] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -3024,7 +2978,8 @@ msgid "Save images of your desktop or individual windows" msgstr "데스크톱이나 창 한 개의 스크린샷을 저장합니다" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3081,9 +3036,7 @@ msgid "" "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." -msgstr "" -"테두리에 바깥 쪽에 넣을 효과. 쓸 수 있는 값은 \"shadow\", \"none\", \"border" -"\"입니다." +msgstr "테두리에 바깥 쪽에 넣을 효과. 쓸 수 있는 값은 \"shadow\", \"none\", \"border\"입니다." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3221,10 +3174,9 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" -msgstr "" -"옵션 충돌: --clipboard와 --interactive 옵션은 같이 사용할 수 없습니다.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" +msgstr "옵션 충돌: --clipboard와 --interactive 옵션은 같이 사용할 수 없습니다.\n" #: mate-screenshot/src/mate-screenshot.c:1363 msgid "" @@ -3267,9 +3219,7 @@ msgid "" "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." -msgstr "" -"하위 저장 프로세스가 갑자기 끝났습니다. 잡은 화면 파일을 디스크에 쓸 수 없습" -"니다." +msgstr "하위 저장 프로세스가 갑자기 끝났습니다. 잡은 화면 파일을 디스크에 쓸 수 없습니다." #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ks.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ks.gmo differ diff -Nru mate-utils-1.26.0/po/ks.po mate-utils-1.26.1/po/ks.po --- mate-utils-1.26.0/po/ks.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/ks.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2019 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2019\n" -"Language-Team: Kashmiri (https://www.transifex.com/mate/teams/13566/ks/)\n" -"Language: ks\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Kashmiri (https://app.transifex.com/mate/teams/13566/ks/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ks\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -623,16 +624,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -666,9 +668,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -690,8 +692,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -710,9 +712,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -722,8 +724,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -787,8 +789,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -805,8 +807,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -827,62 +829,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1487,7 +1489,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1498,8 +1501,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1897,7 +1900,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1909,8 +1913,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2924,7 +2928,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3116,8 +3121,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ku.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ku.gmo differ Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ku_IQ.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ku_IQ.gmo differ diff -Nru mate-utils-1.26.0/po/ku_IQ.po mate-utils-1.26.1/po/ku_IQ.po --- mate-utils-1.26.0/po/ku_IQ.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/ku_IQ.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,24 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Haval Abdulkarim , 2018 -# Rasti K5 , 2019 -# +# Haval Abdulkarim , 2021 +# Rasti K5 , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Rasti K5 , 2019\n" -"Language-Team: Kurdish (Iraq) (https://www.transifex.com/mate/teams/13566/" -"ku_IQ/)\n" -"Language: ku_IQ\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Rasti K5 , 2021\n" +"Language-Team: Kurdish (Iraq) (https://app.transifex.com/mate/teams/13566/ku_IQ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -31,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -215,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -580,8 +580,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -625,16 +625,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -668,9 +669,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -692,8 +693,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -712,9 +713,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -724,8 +725,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -789,8 +790,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -807,8 +808,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -829,62 +830,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "پەڕگە" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "پێناسە" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1489,7 +1490,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1500,8 +1502,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1899,7 +1901,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1911,8 +1914,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2926,7 +2929,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3118,8 +3122,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 diff -Nru mate-utils-1.26.0/po/ku.po mate-utils-1.26.1/po/ku.po --- mate-utils-1.26.0/po/ku.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/ku.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Kurdish (https://www.transifex.com/mate/teams/13566/ku/)\n" -"Language: ku\n" +"Language-Team: Kurdish (https://app.transifex.com/mate/teams/13566/ku/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ku\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -623,16 +624,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -666,9 +668,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -690,8 +692,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -710,9 +712,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -722,8 +724,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -787,8 +789,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -805,8 +807,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -827,62 +829,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Dest bi %s dike" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Ev tişt nayê dan destpêkirin" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Girêdana bi rêveberiyê hatiye kirin betal bike" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "PEL" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "IDa rêveberiyê diyar bike" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Bijarekên gerînendeya beşê nîşan bide" @@ -1487,7 +1489,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1498,8 +1501,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1897,7 +1900,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1909,8 +1913,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2929,7 +2933,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Wêneyên sermaseya xwe an jî paceyên kesane tomar bike" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3121,8 +3126,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ky.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ky.gmo differ diff -Nru mate-utils-1.26.0/po/ky.po mate-utils-1.26.1/po/ky.po --- mate-utils-1.26.0/po/ky.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/ky.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,24 +2,24 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2018 -# ballpen, 2018 +# Stefano Karapetsas , 2021 +# ballpen, 2021 # 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2021\n" -"Language-Team: Kyrgyz (https://www.transifex.com/mate/teams/13566/ky/)\n" -"Language: ky\n" +"Language-Team: Kyrgyz (https://app.transifex.com/mate/teams/13566/ky/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ky\n" "Plural-Forms: nplurals=1; plural=0;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -31,7 +31,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -215,8 +216,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -579,8 +580,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -624,9 +625,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -634,7 +635,8 @@ msgstr "" "Бул компьютерден аты же мазмуну боюнча иш кагаздарды жана папкаларды табуу" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -668,9 +670,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -692,8 +694,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -712,9 +714,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -724,8 +726,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -789,8 +791,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -807,8 +809,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -829,62 +831,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Файл туура эмес .desktop файлы" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "desktop файлынын версиясы белгисиз «%s»" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s жүргүзүлүүдө" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Тиркеме командалык саптан иш кагаздарды кабыл албайт" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Белгисиз жүргүзүү параметри: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Жүргүзүлбөгөн объект" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Сеанс менеджерине туташтырбоо" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Сакталган ырастоолору бар файлды көрсөтүү" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ФАЙЛ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Сеансты башкаруунун ID'син көрсөтүү" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Сеансты башкаруу параметрлери:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Сеансты башкаруунун параметрлерин көрсөтүү" @@ -1486,7 +1488,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1497,8 +1500,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1896,7 +1899,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Онлайн-сөздүктөн аныктамасын жана жазуу эрежелерин текшерүү" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1908,8 +1912,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2922,7 +2926,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3114,8 +3119,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/li.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/li.gmo differ diff -Nru mate-utils-1.26.0/po/LINGUAS mate-utils-1.26.1/po/LINGUAS --- mate-utils-1.26.0/po/LINGUAS 2021-08-05 19:43:41.000000000 +0000 +++ mate-utils-1.26.1/po/LINGUAS 2023-05-09 13:31:58.000000000 +0000 @@ -25,6 +25,7 @@ en_AU en_CA en_GB +en_US eo es es_AR diff -Nru mate-utils-1.26.0/po/li.po mate-utils-1.26.1/po/li.po --- mate-utils-1.26.0/po/li.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/li.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2018 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Limburgian (https://www.transifex.com/mate/teams/13566/li/)\n" -"Language: li\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Limburgian (https://app.transifex.com/mate/teams/13566/li/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: li\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -623,16 +624,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -666,9 +668,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -690,8 +692,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -710,9 +712,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -722,8 +724,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -787,8 +789,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -805,8 +807,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -827,62 +829,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s weurt gesjtart" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Gei sjtartbaar item" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Verbènjing mit de sessiemeister oetsjakele" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Sessiemeister-ID sjpesifisere" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "PID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1487,7 +1489,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1498,8 +1501,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1897,7 +1900,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1909,8 +1913,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2924,7 +2928,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3116,8 +3121,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/lt.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/lt.gmo differ diff -Nru mate-utils-1.26.0/po/lt.po mate-utils-1.26.1/po/lt.po --- mate-utils-1.26.0/po/lt.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/lt.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,29 +2,27 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Mantas Kriaučiūnas Baltix , 2018 -# brennus , 2018 -# Džiugas Grėbliūnas , 2020 +# Mantas Kriaučiūnas Baltix , 2021 +# brennus , 2021 # Stefano Karapetsas , 2021 +# Džiugas Grėbliūnas , 2021 # Moo, 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Moo, 2021\n" -"Language-Team: Lithuanian (https://www.transifex.com/mate/teams/13566/lt/)\n" -"Language: lt\n" +"Language-Team: Lithuanian (https://app.transifex.com/mate/teams/13566/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < " -"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? " -"1 : n % 1 != 0 ? 2: 3);\n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -35,7 +33,8 @@ msgid "Check folder sizes and available disk space" msgstr "Tikrinti aplankų dydžius ir laisvą vietą" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -221,8 +220,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" "Kaip matoma iš pavadinimo, Disko naudojimo analizatorius yra grafinė " @@ -236,9 +235,9 @@ "local or remote. There is also an option to constantly monitor any external " "changes to the home directory and warn the user if a file is added/removed." msgstr "" -"Galite atlikti failų sistemos, savo namų aplanko ar bet kokio kito aplanko - " -"vietinio ar nuotolinio skaitymą. Taip pat yra galimybė pastoviai stebėti bet " -"kokius išorinius namų katalogo pokyčius ir įspėti naudotoją, jei yra " +"Galite atlikti failų sistemos, savo namų aplanko ar bet kokio kito aplanko -" +" vietinio ar nuotolinio skaitymą. Taip pat yra galimybė pastoviai stebėti " +"bet kokius išorinius namų katalogo pokyčius ir įspėti naudotoją, jei yra " "pridedamas/šalinamas failas. " #: baobab/src/baobab.c:141 baobab/src/baobab.c:358 @@ -281,10 +280,10 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d elementas" -msgstr[1] "%5d elementai" -msgstr[2] "%5d elementų" -msgstr[3] "%5d elementas" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -601,14 +600,18 @@ msgstr "" "Ši programa yra platinama tikintis, kad ji bus naudinga, tačiau BE JOKIŲ " "GARANTIJŲ; netgi be numanomų PARDAVIMO arba TINKAMUMO TAM TIKRAM TIKSLUI " -"garantijų. Išsamesnę informaciją rasite GNU bendrojoje viešojoje licencijoje." +"garantijų. Išsamesnę informaciją rasite GNU bendrojoje viešojoje " +"licencijoje." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" +"Kartu su šia programa turėjote gauti ir GNU Bendrosios Viešosios licencijos " +"kopiją; jei negavote – jos ieškokite, adresu " +"." #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" @@ -623,6 +626,8 @@ "Copyright © 2005-2010 Fabio Marzocca\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Autorių teisės © 2005-2010 Fabio Marzocca\n" +"Autorių teisės © 2011-2021 MATE kūrėjai" #: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 #: mate-dictionary/src/gdict-about.c:53 @@ -637,7 +642,8 @@ "Gintautas Miliauskas \n" "Tomas Kuliavas \n" "Gediminas Paulauskas \n" -"Moo" +"Moo\n" +"Džiugas Grėbliūnas " #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -661,26 +667,26 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." -msgstr "" -"MATE paieškos įrankis yra paprasta, bet galinga programa, leidžianti ieškoti " -"failų ir aplankų kiekvienoje prijungtoje failų sistemoje. Jos sąsąja " -"suteikia greitą prieigą prie įvairių paieškos parametrų, kaip tekstas faile, " -"nuosavybė, keitimo data, failo dydis, aplanko išskyrimas ir t. t. " +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." +msgstr "" +"MATE paieškos įrankis yra paprasta, bet galinga programa, leidžianti ieškoti" +" failų ir aplankų kiekvienoje prijungtoje failų sistemoje. Jos sąsąja " +"suteikia greitą prieigą prie įvairių paieškos parametrų, kaip tekstas faile," +" nuosavybė, keitimo data, failo dydis, aplanko išskyrimas ir t. t. " #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Rasti kompiuteryje esančius dokumentus pagal pavadinimą ar turinį" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" -"MATE;paieška;ieška;failai;vieta;dokumentai;aplankai;kompiuteris;vardas;" -"pavadinimas;turinys;rasti;įrankis;" +"MATE;paieška;ieška;failai;vieta;dokumentai;aplankai;kompiuteris;vardas;pavadinimas;turinys;rasti;įrankis;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -712,13 +718,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Šis raktas nurodo kelius, kuriuos paieškos įrankis išskirs iš sparčiosios " -"paieškos. Žymės „*“ ir „?“ yra palaikomos. Įprastos reikšmės yra /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/* ir /var/*." +"paieškos. Žymės „*“ ir „?“ yra palaikomos. Įprastos reikšmės yra /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/* ir /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -741,8 +747,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Šiame rakte nurodomi keliai, kuriuos paieškos įrankis sparčiosios paieškos " "metu išskirs iš antrojo perskaitymo. Antrasis perskaitymas failų paieškai " @@ -768,9 +774,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Šiame rakte nurodomas lango plotis, jis naudojamas atsiminti paieškos " "įrankio dydžiui tarp seansų. Nustačius jį į -1, paieškos įrankis naudos " @@ -783,8 +789,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Šiame rakte nurodomas lango aukštis, jis naudojamas atsiminti paieškos " "įrankio dydžiui tarp seansų. Nustačius jį į -1, paieškos įrankis naudos " @@ -797,7 +803,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:50 msgid "" "This key determines if the search tool window starts in a maximized state." -msgstr "Šis raktas nurodo ar paieškos įrankio langas paleidžiamas išskleistas." +msgstr "" +"Šis raktas nurodo ar paieškos įrankio langas paleidžiamas išskleistas." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -866,8 +873,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Šis raktas nurodo ar „priklauso grupei“ parametras yra pažymėtas, kai " "paleidžiamas paieškos įrankis." @@ -885,13 +892,13 @@ "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"Šis raktas nurodo ar „varde nėra“ parametras yra pažymėtas, kai paleidžiamas " -"paieškos įrankis." +"Šis raktas nurodo ar „varde nėra“ parametras yra pažymėtas, kai paleidžiamas" +" paieškos įrankis." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Šis raktas nurodo ar „vardas atitinka reguliarųjį reiškinį“ parametras yra " "pažymėtas, kai paleidžiamas paieškos įrankis." @@ -917,65 +924,65 @@ "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"Šis raktas nurodo, ar paieškos parametras „Neieškoti kitose failų sistemose“ " -"yra pažymėtas, kai paleidžiamas paieškos įrankis." +"Šis raktas nurodo, ar paieškos parametras „Neieškoti kitose failų sistemose“" +" yra pažymėtas, kai paleidžiamas paieškos įrankis." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Šis failas nėra taisyklingas .desktop failas" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Neatpažinta darbalaukio failo versija „%s“" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Paleidžiama %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Programa nepriima dokumentų komandų eilutėje" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Neatpažintas paleidimo parametras: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Negalima perduoti dokumentų URI „Type=Link“ darbalaukio elementui" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Nepaleidžiamas elementas" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Išjungti ryšį su seansų tvarkytuve" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Nurodyti failą su įrašytais nustatymais" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FAILAS" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Nurodykite seanso valdymo ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Seanso valdymo parametrai:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Rodyti seanso valdymo parametrus" @@ -1114,19 +1121,19 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "Rastas %'d failas" -msgstr[1] "Rasti %'d failai" -msgstr[2] "Rasta %'d failų" -msgstr[3] "Rasta %'d failų" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "Rastas %'d failas" -msgstr[1] "Rasti %'d failai" -msgstr[2] "Rasta %'d failų" -msgstr[3] "Rasta %'d failų" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1181,7 +1188,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"Paieškos rezultatai gali būti neteisingi. Vykdant šią paiešką, iškilo klaidų." +"Paieškos rezultatai gali būti neteisingi. Vykdant šią paiešką, iškilo " +"klaidų." #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1355,20 +1363,20 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Ar tikrai norite atverti %d dokumentą?" -msgstr[1] "Ar tikrai norite atverti %d dokumentus?" -msgstr[2] "Ar tikrai norite atverti %d dokumentų?" -msgstr[3] "Ar tikrai norite atverti %d dokumentų?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Tai atvers %d atskirą langą." -msgstr[1] "Tai atvers %d atskirus langus." -msgstr[2] "Tai atvers %d atskirų langų." -msgstr[3] "Tai atvers %d atskirų langų." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1392,10 +1400,10 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Ar tikrai norite atverti %d aplanką?" -msgstr[1] "Ar tikrai norite atverti %d aplankus?" -msgstr[2] "Ar tikrai norite atverti %d aplankų?" -msgstr[3] "Ar tikrai norite atverti %d aplankų?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1599,7 +1607,8 @@ msgid "View or monitor system log files" msgstr "Peržiūrėti ar stebėti sistemos žurnalų failus" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "MATE;sistemos;monitorius;sistema;žurnalas;žiūryklė" @@ -1610,11 +1619,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Nurodo programos paleidimo metu atveriamą žurnalą. Numatytasis yra /var/adm/" -"messages arba /var/log/messages, tai priklauso nuo jūsų operacinės sistemos." +"Nurodo programos paleidimo metu atveriamą žurnalą. Numatytasis yra " +"/var/adm/messages arba /var/log/messages, tai priklauso nuo jūsų operacinės " +"sistemos." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1803,6 +1813,9 @@ "Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n" "Copyright (C) 2011-2021 MATE developers.\n" msgstr "" +"%s - Versija %s\n" +"Autorių teisės (C) 2004-2008 Vincent Noel, Cosimo Cecchi ir kiti.\n" +"Autorių teisės (C) 2011-2021 MATE kūrėjai.\n" #: logview/src/logview-main.c:64 msgid "Show the application's version" @@ -1863,6 +1876,8 @@ "Copyright © 1998-2008 Free Software Foundation, Inc.\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Autorių teisės © 1998-2008 Free Software Foundation, Inc.\n" +"Autorių teisės © 2011-2021 MATE kūrėjai" #: logview/src/logview-window.c:778 msgid "View, monitor or analyze your system logs in a gradual manner." @@ -2019,7 +2034,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Pasitikrinkite žodžių apibrėžimus ir rašybą internetiniame žodyne" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "MATE;žodynas;žodyno;įtaisas;tezauras;rašyba;definicijos;internete" @@ -2031,8 +2047,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" "MATE žodynas leidžia ieškoti žodžių interneto žodynuose. Jame jau yra " @@ -2474,6 +2490,8 @@ "Copyright © 2005-2006 Emmanuele Bassi\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Autorių teisės © 2005-2006 Emmanuele Bassi\n" +"Autorių teisės © 2011-2021 MATE kūrėjai" #. Translators: the first is the word found, the second is the #. * database name and the last is the definition's text; please @@ -2761,10 +2779,10 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Rastas %d apibrėžimas" -msgstr[1] "Rasti %d apibrėžimai" -msgstr[2] "Rasta %d apibrėžimų" -msgstr[3] "Rasta %d apibrėžimų" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -2814,11 +2832,11 @@ #: mate-dictionary/src/gdict-window.c:1284 msgid "Find Ne_xt" -msgstr "Ieškoti _kito" +msgstr "Rasti _kitą" #: mate-dictionary/src/gdict-window.c:1286 msgid "Find Pre_vious" -msgstr "Ieškoti a_nkstesnio" +msgstr "Rasti _ankstesnį" #: mate-dictionary/src/gdict-window.c:1288 msgid "_Preferences" @@ -3019,8 +3037,8 @@ "If checked, the mount will be read-only. This is useful if you don't want " "the underlying disk image to be modified" msgstr "" -"Jei pažymėta, bus prijungiama tik skaitymui. Tai naudinga, jei nenorite, kad " -"prijungto disko atvaizdžiui būtų daromi pakeitimai" +"Jei pažymėta, bus prijungiama tik skaitymui. Tai naudinga, jei nenorite, kad" +" prijungto disko atvaizdžiui būtų daromi pakeitimai" #: mate-disk-image-mounter/src/main.c:178 #, c-format @@ -3075,7 +3093,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Įrašyti jūsų darbalaukio ar atskirų langų nuotraukas" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "MATE;ekrano;kopija;ekranvaizdis;screenshot;vaizdas" @@ -3272,8 +3291,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Konfliktuojantys parametrai: --clipboard ir --interactive neturėtų būti " "naudojami tuo pačiu metu.\n" @@ -3294,8 +3313,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Klaida, įkeliant Naudotojo Sąsajos apibrėžimo failą ekrano kopijų " -"programai:\n" +"Klaida, įkeliant Naudotojo Sąsajos apibrėžimo failą ekrano kopijų programai:\n" "%s\n" "Prašome patikrinti mate-utils įdiegimą." Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/lv.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/lv.gmo differ diff -Nru mate-utils-1.26.0/po/lv.po mate-utils-1.26.1/po/lv.po --- mate-utils-1.26.0/po/lv.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/lv.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,27 +2,26 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Rihards Priedītis , 2018 -# duck , 2018 -# Imants Liepiņš , 2019 +# Rihards Priedītis , 2021 # Stefano Karapetsas , 2021 -# +# Imants Liepiņš , 2021 +# duck , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Latvian (https://www.transifex.com/mate/teams/13566/lv/)\n" -"Language: lv\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: duck , 2021\n" +"Language-Team: Latvian (https://app.transifex.com/mate/teams/13566/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -33,7 +32,8 @@ msgid "Check folder sizes and available disk space" msgstr "Pārbauda mapju izmērus un pieejamo diska vietu" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -217,8 +217,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -584,15 +584,15 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"Šī programma tiek izplatīta ar cerību, ka tā būs noderīga, tā tiek izplatīta " -"BEZ JEBKĀDAS GARANTIJAS vai DERĪBAS KĀDAM MĒRĶIM. Sīkāku informāciju " +"Šī programma tiek izplatīta ar cerību, ka tā būs noderīga, tā tiek izplatīta" +" BEZ JEBKĀDAS GARANTIJAS vai DERĪBAS KĀDAM MĒRĶIM. Sīkāku informāciju " "meklējiet GNU Vispārējās publiskās licences tekstā." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -638,16 +638,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Meklē datorā mapes un failus pēc to nosaukumiem un satura" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -674,8 +675,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"Šī vērtība nosaka vai meklēšanas rīks atslēdz locate komandas lietošanu, kad " -"veic vienkāršu failu meklēšanu." +"Šī vērtība nosaka vai meklēšanas rīks atslēdz locate komandas lietošanu, kad" +" veic vienkāršu failu meklēšanu." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -683,13 +684,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Šī atslēga nosaka ceļus, kurus meklēšanas rīks izslēgs no ātrās meklēšanas. " -"Aizstājējzīmes '*' un '?' ir izmantojami. Noklusētās vērtības ir /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/* un /var/*." +"Aizstājējzīmes '*' un '?' ir izmantojami. Noklusētās vērtības ir /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/* un /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -712,8 +713,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Šī vērtība nosaka ceļus, kurus meklēšanas rīks izslēgs no ātrās meklēšanas " "otrās kārtas. Otrā kārta izmanto find komandu, lai meklētu failus. Otrās " @@ -729,8 +730,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"Šī vērtība nosaka meklēšanas rezultātu kolonnu secību. Šo atslēgu lietotājam " -"nevajadzētu mainīt." +"Šī vērtība nosaka meklēšanas rezultātu kolonnu secību. Šo atslēgu lietotājam" +" nevajadzētu mainīt." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -738,9 +739,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Šī vērtība nosaka loga platumu. To izmanto, lai saglabātu loga izmēru starp " "sesijām. Iestatot to uz -1 meklēšanas rīks izmantos noklusēto platumu." @@ -752,11 +753,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"Šī vērtība nosaka loga augstumu. To izmanto, lai saglabātu loga izmēru starp " -"sesijām. Iestatot to uz -1 meklēšanas rīks izmantos noklusēto augstumu." +"Šī vērtība nosaka loga augstumu. To izmanto, lai saglabātu loga izmēru starp" +" sesijām. Iestatot to uz -1 meklēšanas rīks izmantos noklusēto augstumu." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -833,8 +834,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Šī vērtība nosaka vai \"Pieder grupai\" meklēšanas iespēja ir izvēlēta, " "startējot meklēšanas rīku." @@ -857,8 +858,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Šī vērtība nosaka vai \"Nosaukums atbilst regulārai izteiksmei\" meklēšanas " "iespēja ir izvēlēta, startējot meklēšanas rīku." @@ -884,65 +885,65 @@ "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"Šī vērtība nosaka vai \"Izslēgt citas failu sistēmas\" meklēšanas iespēja ir " -"izvēlēta, startējot meklēšanas rīku." +"Šī vērtība nosaka vai \"Izslēgt citas failu sistēmas\" meklēšanas iespēja ir" +" izvēlēta, startējot meklēšanas rīku." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Fails nav derīgs .desktop fails" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Neatpazīta darbvirsmas faila versija '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Startē %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Lietotne nepieņem norādes uz dokumentiem no komandrindas" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Neatpazīta palaišanas opcija: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Nevar nodot dokumenta URI 'Typa=Link' darbvirsmas ierakstam" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Nepalaižama vienība" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Atvienoties no sesiju pārvaldnieka" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Norādīt failu, kurš satur saglabāto konfigurāciju" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FAILS" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Norādīt sesijas pārvaldības ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Sesijas pārvaldības opcijas:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Rādīt sesijas pārvaldības opcijas" @@ -1559,7 +1560,8 @@ msgid "View or monitor system log files" msgstr "Skatīt vai novērot sistēmas žurnāla failu" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1570,11 +1572,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Norāda pēc palaišanas rādāmo žurnāla failu. Noklusētais ir vai nu /var/adm/" -"messages vai arī /var/log/messages, atkarībā no jūsu operētājsistēmas." +"Norāda pēc palaišanas rādāmo žurnāla failu. Noklusētais ir vai nu " +"/var/adm/messages vai arī /var/log/messages, atkarībā no jūsu " +"operētājsistēmas." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1977,7 +1980,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Pārbauda vārdu skaidrojumus un rakstību interneta vārdnīcā" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1989,8 +1993,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2121,8 +2125,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"Nevar savienoties ar vārdnīcas serveri vietā '%s:%d'. Serveris atgrieza kodu " -"%d (serveris nedarbojas)" +"Nevar savienoties ar vārdnīcas serveri vietā '%s:%d'. Serveris atgrieza kodu" +" %d (serveris nedarbojas)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -3024,7 +3028,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Saglabā jūsu darbvirsmas vai logu attēlus" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3082,8 +3087,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Rāmja ārpusē pievienojamais efekts. Iespējamās vērtības ir \"shadow\", \"none" -"\", un \"border\"." +"Rāmja ārpusē pievienojamais efekts. Iespējamās vērtības ir \"shadow\", " +"\"none\", un \"border\"." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3221,8 +3226,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/mai.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/mai.gmo differ diff -Nru mate-utils-1.26.0/po/mai.po mate-utils-1.26.1/po/mai.po --- mate-utils-1.26.0/po/mai.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/mai.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Maithili (https://www.transifex.com/mate/teams/13566/mai/)\n" -"Language: mai\n" +"Language-Team: Maithili (https://app.transifex.com/mate/teams/13566/mai/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: mai\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -475,8 +476,8 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"अहाँक होम फोल्डर क' सामग्री बदैल गेल अछि डिस्क प्रयोग विवरणकेँ अद्यतन करब क' लेल फिनु " -"स्कैन करै लेल चुनू." +"अहाँक होम फोल्डर क' सामग्री बदैल गेल अछि डिस्क प्रयोग विवरणकेँ अद्यतन करब क'" +" लेल फिनु स्कैन करै लेल चुनू." #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -534,7 +535,8 @@ #: baobab/src/baobab-utils.c:381 msgid "There is no installed viewer capable of displaying the folder." -msgstr "एतय कोनो एहन प्रदर्शक संस्थापित नहि अछि जे फोल्डरकेँ प्रदर्शित कए सकै." +msgstr "" +"एतय कोनो एहन प्रदर्शक संस्थापित नहि अछि जे फोल्डरकेँ प्रदर्शित कए सकै." #: baobab/src/baobab-utils.c:448 #, c-format @@ -580,8 +582,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -625,16 +627,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "नाम आ सामग्री क' आधार पर एहि कंप्यूटर पर दस्ताबेज आ फोल्डर लोकेट करू" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -661,8 +664,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"ई कुँजी निर्धारित करैत अछि जे जँ खोज अओजार locate कमांड क' प्रयोगकेँ निष्क्रिय करैत अछि " -"जखन साधारण फाइल नाम खोज क' निष्पादन करैत अछि." +"ई कुँजी निर्धारित करैत अछि जे जँ खोज अओजार locate कमांड क' प्रयोगकेँ " +"निष्क्रिय करैत अछि जखन साधारण फाइल नाम खोज क' निष्पादन करैत अछि." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -670,13 +673,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"कुँजी ओहि पथकेँ परिभाषित करैत अछि जकरा खोज अओजार एकटा द्रुत खोज सँ अलग करताह. " -"वाइल्डकार्ड '*' आ '?' समर्थित अछि. मूलभूत मान अछि /mnt/*, /media/*, /dev/*, /tmp/" -"*, /proc/*, आओर /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"कुँजी ओहि पथकेँ परिभाषित करैत अछि जकरा खोज अओजार एकटा द्रुत खोज सँ अलग " +"करताह. वाइल्डकार्ड '*' आ '?' समर्थित अछि. मूलभूत मान अछि /mnt/*, /media/*, " +"/dev/*, /tmp/*, /proc/*, आओर /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -687,8 +690,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"ई कुँजी निर्धारित करैत अछि जे जँ खोज अओजार खोजबाक कमांड क' प्रयोगकेँ निष्क्रिय करैत अछि " -"एकटा द्रुत खोज क' निष्पादन क' बाद." +"ई कुँजी निर्धारित करैत अछि जे जँ खोज अओजार खोजबाक कमांड क' प्रयोगकेँ " +"निष्क्रिय करैत अछि एकटा द्रुत खोज क' निष्पादन क' बाद." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -699,13 +702,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"ई कुँजी पथकेँ परिभाषित करैत अछि जकरा खोज अओजार दोसर स्कैन सँ अलग करैत अछि जखन एकटा " -"द्रुत खोज कएल जाएत अछि दोसर स्कैन खोजू कमांड क' प्रयोग फाइल क'लेल करैत अछि. दोसर स्कैन " -"क' उद्देश्य ई पता कएनाइ अछि जे ककरा सूचीबद्ध नहि कएनाइ अछि वाइल्डकार्ड '*' आओर '?' " -"समर्थित अछि. मूलभूत मान अछि /." +"ई कुँजी पथकेँ परिभाषित करैत अछि जकरा खोज अओजार दोसर स्कैन सँ अलग करैत अछि " +"जखन एकटा द्रुत खोज कएल जाएत अछि दोसर स्कैन खोजू कमांड क' प्रयोग फाइल क'लेल " +"करैत अछि. दोसर स्कैन क' उद्देश्य ई पता कएनाइ अछि जे ककरा सूचीबद्ध नहि कएनाइ " +"अछि वाइल्डकार्ड '*' आओर '?' समर्थित अछि. मूलभूत मान अछि /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -716,8 +719,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"कुँजी कॉलम क' क्रमकेँ खोज परिणाममे परिभाषित करैत अछि. एहि कुँजीकेँ प्रयोक्ता क' द्वारा नहि " -"बदलल जएनाइ चाही." +"कुँजी कॉलम क' क्रमकेँ खोज परिणाममे परिभाषित करैत अछि. एहि कुँजीकेँ प्रयोक्ता" +" क' द्वारा नहि बदलल जएनाइ चाही." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -725,12 +728,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"ई कुँजी विंडो चओड़ाइकेँ परिभाषित करैत अछि, आओर सत्र क' बीच खोज टूल क' आकारकेँ याद राखब " -"क' लेल प्रयुक्त हाएत अछि एकरा -1मे सेट कएनाइ मूलभूत चओड़ाइ क' प्रयोगकेँ बनओताह." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"ई कुँजी विंडो चओड़ाइकेँ परिभाषित करैत अछि, आओर सत्र क' बीच खोज टूल क' " +"आकारकेँ याद राखब क' लेल प्रयुक्त हाएत अछि एकरा -1मे सेट कएनाइ मूलभूत चओड़ाइ " +"क' प्रयोगकेँ बनओताह." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -739,11 +743,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"ई कुँजी विंडो उँचाइकेँ परिभाषित करैत अछि, आओर सत्र क' बीच खोज टूल क' आकारकेँ याद राखब " -"क' लेल प्रयुक्त हाएत अछि एकरा -1मे सेट कएनाइ मूलभूत उँचाइ क' प्रयोगकेँ बनओताह." +"ई कुँजी विंडो उँचाइकेँ परिभाषित करैत अछि, आओर सत्र क' बीच खोज टूल क' आकारकेँ" +" याद राखब क' लेल प्रयुक्त हाएत अछि एकरा -1मे सेट कएनाइ मूलभूत उँचाइ क' " +"प्रयोगकेँ बनओताह." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -752,7 +757,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:50 msgid "" "This key determines if the search tool window starts in a maximized state." -msgstr "ई कुँजी निर्धारित करैत अछि जे जँ खोज अओजार विंडो अघिकतम स्थितिमे आरंभ हाएत अछि." +msgstr "" +"ई कुँजी निर्धारित करैत अछि जे जँ खोज अओजार विंडो अघिकतम स्थितिमे आरंभ हाएत " +"अछि." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -767,104 +774,104 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"ई कुँजी निश्चित करैत अछि जे जँ \"पाठ समाहित करैत अछि\" खोज विकल्प चुनल जाएत अछि जखन " -"खोज अओजार शुरू हाएत अछि." +"ई कुँजी निश्चित करैत अछि जे जँ \"पाठ समाहित करैत अछि\" खोज विकल्प चुनल जाएत " +"अछि जखन खोज अओजार शुरू हाएत अछि." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"ई कुँजी निश्चित करैत अछि जे जँ \"एकरासँ कम क' तिथि रूपांतरित\" खोज विकल्प चुनल जाएत अछि " -"जखन खोज अओजार शुरू हाएत अछि." +"ई कुँजी निश्चित करैत अछि जे जँ \"एकरासँ कम क' तिथि रूपांतरित\" खोज विकल्प " +"चुनल जाएत अछि जखन खोज अओजार शुरू हाएत अछि." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"ई कुँजी निश्चित करैत अछि जे जँ \"एकरासँ बेसी तिथि रूपांतरित\" खोज विकल्प चुनल जाएत अछि " -"जखन खोज अओजार शुरू हाएत अछि." +"ई कुँजी निश्चित करैत अछि जे जँ \"एकरासँ बेसी तिथि रूपांतरित\" खोज विकल्प " +"चुनल जाएत अछि जखन खोज अओजार शुरू हाएत अछि." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"ई कुँजी निश्चित करैत अछि जे जँ \"आकार कम सँ कम\" खोज विकल्प चुनल जाएत अछि जखन खोज " -"अओजार शुरू हाएत अछि." +"ई कुँजी निश्चित करैत अछि जे जँ \"आकार कम सँ कम\" खोज विकल्प चुनल जाएत अछि " +"जखन खोज अओजार शुरू हाएत अछि." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"ई कुँजी निश्चित करैत अछि जे जँ \"आकार बेसी सँ बेसी \" खोज विकल्प चुनल जाएत अछि जखन खोज " -"अओजार शुरू हाएत अछि." +"ई कुँजी निश्चित करैत अछि जे जँ \"आकार बेसी सँ बेसी \" खोज विकल्प चुनल जाएत " +"अछि जखन खोज अओजार शुरू हाएत अछि." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"ई कुँजी निश्चित करैत अछि जे जँ \"फाइल रिक्त अछि\" खोज विकल्प चुनल जाएत अछि जखन खोज " -"अओजार शुरू हाएत अछि." +"ई कुँजी निश्चित करैत अछि जे जँ \"फाइल रिक्त अछि\" खोज विकल्प चुनल जाएत अछि " +"जखन खोज अओजार शुरू हाएत अछि." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"ई कुँजी निश्चित करैत अछि जे जँ \"प्रयोक्ता क' द्वारा स्वामित्व\" खोज विकल्प चुनल जाएत अछि " -"जखन खोज अओजार शुरू हाएत अछि." +"ई कुँजी निश्चित करैत अछि जे जँ \"प्रयोक्ता क' द्वारा स्वामित्व\" खोज विकल्प " +"चुनल जाएत अछि जखन खोज अओजार शुरू हाएत अछि." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"ई कुँजी निश्चित करैत अछि जे जँ \"समूह क' द्वारा स्वामित्व\" खोज विकल्प चुनल जाएत अछि जखन " -"खोज अओजार शुरू हाएत अछि." +"ई कुँजी निश्चित करैत अछि जे जँ \"समूह क' द्वारा स्वामित्व\" खोज विकल्प चुनल " +"जाएत अछि जखन खोज अओजार शुरू हाएत अछि." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"ई कुँजी निश्चित करैत अछि जे जँ \"स्वामी अपरिचित अछि\" खोज विकल्प चुनल जाएत अछि जखन " -"खोज अओजार शुरू हाएत अछि." +"ई कुँजी निश्चित करैत अछि जे जँ \"स्वामी अपरिचित अछि\" खोज विकल्प चुनल जाएत " +"अछि जखन खोज अओजार शुरू हाएत अछि." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"ई कुँजी निश्चित करैत अछि जे जँ \"नाममे सामिल नहि अछि\" खोज विकल्प चुनल जाएत अछि जखन " -"खोज अओजार शुरू हाएत अछि." +"ई कुँजी निश्चित करैत अछि जे जँ \"नाममे सामिल नहि अछि\" खोज विकल्प चुनल जाएत " +"अछि जखन खोज अओजार शुरू हाएत अछि." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"ई कुँजी निश्चित करैत अछि जे जँ \"नाम नियमित अभिव्यक्ति सँ मेल करैत अछि\" खोज विकल्प चुनल " -"जाएत अछि जखन खोज अओजार शुरू हाएत अछि." +"ई कुँजी निश्चित करैत अछि जे जँ \"नाम नियमित अभिव्यक्ति सँ मेल करैत अछि\" खोज" +" विकल्प चुनल जाएत अछि जखन खोज अओजार शुरू हाएत अछि." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"खोज अओजार निश्चित करैत अछि जे जँ \"नुकाएल फाइल आ फोल्डर देखाबू\" खोज विकल्प चुनल जाएत " -"अछि जखन खोज अओजार शुरू हाएत अछि." +"खोज अओजार निश्चित करैत अछि जे जँ \"नुकाएल फाइल आ फोल्डर देखाबू\" खोज विकल्प " +"चुनल जाएत अछि जखन खोज अओजार शुरू हाएत अछि." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"ई कुँजी निश्चित करैत अछि जे जँ \"सांकेतिक लिंक क' पालन करैत अछि\" खोज विकल्प चुनल जाएत " -"अछि जखन खोज अओजार शुरू हाएत अछि." +"ई कुँजी निश्चित करैत अछि जे जँ \"सांकेतिक लिंक क' पालन करैत अछि\" खोज विकल्प" +" चुनल जाएत अछि जखन खोज अओजार शुरू हाएत अछि." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" @@ -872,62 +879,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s शुरू भ' रहल अछि" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "चलाबैबला मद नहि अछि " -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "सत्र प्रबंधकसँ संपर्क रद करू" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "फाइल" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "सत्र प्रबंधन आईडी निर्दिष्ट करू" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "सत्र प्रबंधन विकल्प देखाबू" @@ -1091,7 +1098,8 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"फ़ाइलसभकेँ निम्नमे सँ कोनो एकटा आधार पर क्रमबद्ध करू: नाम, फ़ोल्डर, आकार, प्रकार आओर तिथि" +"फ़ाइलसभकेँ निम्नमे सँ कोनो एकटा आधार पर क्रमबद्ध करू: नाम, फ़ोल्डर, आकार, " +"प्रकार आओर तिथि" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1250,7 +1258,8 @@ #: gsearchtool/src/gsearchtool.c:2858 msgid "Select the folder or device from which you want to begin the search." -msgstr "फ़ोल्डर अथवा डिवाइस क' नाम चुनू जतए अहाँ खोजनाइ प्रारंभ कएनाइ चाहैत अछि." +msgstr "" +"फ़ोल्डर अथवा डिवाइस क' नाम चुनू जतए अहाँ खोजनाइ प्रारंभ कएनाइ चाहैत अछि." #: gsearchtool/src/gsearchtool.c:2876 msgid "Select more _options" @@ -1324,7 +1333,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:521 msgid "There is no installed viewer capable of displaying the document." -msgstr "एतय कोनो एहन प्रदर्शक संस्थापित नहि अछि जे दस्ताबेज़केँ प्रदर्शित कए सकै." +msgstr "" +"एतय कोनो एहन प्रदर्शक संस्थापित नहि अछि जे दस्ताबेज़केँ प्रदर्शित कए सकै." #: gsearchtool/src/gsearchtool-callbacks.c:543 #, c-format @@ -1535,7 +1545,8 @@ msgid "View or monitor system log files" msgstr "सिस्टम लॉग फ़ाइल देखाबू आ मॉनीटर करू" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1546,11 +1557,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"प्रारंभमे खोलब लेल लॉग फ़ाइल निर्दिष्ट करैत अछि. मूलभूत अथवा तँ अछि /var/adm/messages " -"अथवा /var/log/messages, जे अहाँक ऑपरेटिंग सिस्टम पर निर्भर करैत अछि." +"प्रारंभमे खोलब लेल लॉग फ़ाइल निर्दिष्ट करैत अछि. मूलभूत अथवा तँ अछि " +"/var/adm/messages अथवा /var/log/messages, जे अहाँक ऑपरेटिंग सिस्टम पर निर्भर" +" करैत अछि." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1561,8 +1573,8 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"मुख्य तरू दृश्यमे लॉग देखाबै क' लेल प्रयुक्त स्थिर चओड़ाइ फोन्ट क' आकारकेँ निर्दिष्ट करैत अछि. " -"मूलभूतकेँ मूलभूत टर्मिनल फोन्ट आकार सँ लेल जाएत अछि." +"मुख्य तरू दृश्यमे लॉग देखाबै क' लेल प्रयुक्त स्थिर चओड़ाइ फोन्ट क' आकारकेँ " +"निर्दिष्ट करैत अछि. मूलभूतकेँ मूलभूत टर्मिनल फोन्ट आकार सँ लेल जाएत अछि." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1589,8 +1601,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"प्रारंभमे खोलब लेल लॉग फ़ाइल क' सूची निर्दिष्ट करैत अछि. मूलभूत सूचीकेँ /etc/syslog.confकेँ " -"पढ़ि कए बनाओल जाएत अछि." +"प्रारंभमे खोलब लेल लॉग फ़ाइल क' सूची निर्दिष्ट करैत अछि. मूलभूत सूचीकेँ " +"/etc/syslog.confकेँ पढ़ि कए बनाओल जाएत अछि." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1951,7 +1963,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "ऑन लाइन शब्दकोशमे परिभाषा आ वर्तनी देखू" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1963,8 +1976,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -1994,9 +2007,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"शब्दकोश श्रोतमेमे निजी डाटाबेस अथवामेटा-डाटाबेस क' प्रयोग क'लेल नाम. विस्मयादिबोधक " -"चिह्न (\"!\") निर्दिष्ट करैत अछि जे शब्दकोश श्रोतमे उपस्थित सबहि डाटाबेसकेँ खोजल जएनाइ " -"चाही." +"शब्दकोश श्रोतमेमे निजी डाटाबेस अथवामेटा-डाटाबेस क' प्रयोग क'लेल नाम. " +"विस्मयादिबोधक चिह्न (\"!\") निर्दिष्ट करैत अछि जे शब्दकोश श्रोतमे उपस्थित " +"सबहि डाटाबेसकेँ खोजल जएनाइ चाही." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2007,8 +2020,8 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"शब्दकोष श्रोत पर प्रयोग क' लेल मूलभूत खोज रणनीति क' नाम, जँ उपलब्ध अछि मूलभूत रणनीति " -"'सटीक' अछि जे सटीक शब्द मिलाओल अछि." +"शब्दकोष श्रोत पर प्रयोग क' लेल मूलभूत खोज रणनीति क' नाम, जँ उपलब्ध अछि " +"मूलभूत रणनीति 'सटीक' अछि जे सटीक शब्द मिलाओल अछि." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2025,7 +2038,8 @@ #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22 msgid "" "The name of the dictionary source used to retrieve the definitions of words." -msgstr "प्रयुक्त शब्दकोश श्रोत क' नाम जकरा शब्द क' परिभाषा क' प्रयोग कएनाइ अछि." +msgstr "" +"प्रयुक्त शब्दकोश श्रोत क' नाम जकरा शब्द क' परिभाषा क' प्रयोग कएनाइ अछि." #: mate-dictionary/data/thai.desktop.in:3 msgid "Thai" @@ -2093,7 +2107,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"शब्दकोष सर्वरमे '%s:%d' पर जुड़बमे असमर्थ. सर्वरकेँ कोड %d (सर्वर डाउन) सँ उत्तर देल गेल ." +"शब्दकोष सर्वरमे '%s:%d' पर जुड़बमे असमर्थ. सर्वरकेँ कोड %d (सर्वर डाउन) सँ " +"उत्तर देल गेल ." #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2990,7 +3005,8 @@ msgid "Save images of your desktop or individual windows" msgstr "अपन डेस्कटाप अथवा निजी विंडो क' चित्रकेँ सहेजू" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3182,8 +3198,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 diff -Nru mate-utils-1.26.0/po/Makefile.in.in mate-utils-1.26.1/po/Makefile.in.in --- mate-utils-1.26.0/po/Makefile.in.in 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/po/Makefile.in.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,510 +0,0 @@ -# Makefile for PO directory in any package using GNU gettext. -# Copyright (C) 1995-2000 Ulrich Drepper -# Copyright (C) 2000-2020 Free Software Foundation, Inc. -# -# 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. -# -# Origin: gettext-0.21 -GETTEXT_MACRO_VERSION = 0.20 - -PACKAGE = @PACKAGE@ -VERSION = @VERSION@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ - -SED = @SED@ -SHELL = /bin/sh -@SET_MAKE@ - -srcdir = @srcdir@ -top_srcdir = @top_srcdir@ -VPATH = @srcdir@ - -prefix = @prefix@ -exec_prefix = @exec_prefix@ -datarootdir = @datarootdir@ -datadir = @datadir@ -localedir = @localedir@ -gettextsrcdir = $(datadir)/gettext/po - -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ - -# We use $(mkdir_p). -# In automake <= 1.9.x, $(mkdir_p) is defined either as "mkdir -p --" or as -# "$(mkinstalldirs)" or as "$(install_sh) -d". For these automake versions, -# @install_sh@ does not start with $(SHELL), so we add it. -# In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined -# either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake -# versions, $(mkinstalldirs) and $(install_sh) are unused. -mkinstalldirs = $(SHELL) @install_sh@ -d -install_sh = $(SHELL) @install_sh@ -MKDIR_P = @MKDIR_P@ -mkdir_p = @mkdir_p@ - -# When building gettext-tools, we prefer to use the built programs -# rather than installed programs. However, we can't do that when we -# are cross compiling. -CROSS_COMPILING = @CROSS_COMPILING@ - -GMSGFMT_ = @GMSGFMT@ -GMSGFMT_no = @GMSGFMT@ -GMSGFMT_yes = @GMSGFMT_015@ -GMSGFMT = $(GMSGFMT_$(USE_MSGCTXT)) -XGETTEXT_ = @XGETTEXT@ -XGETTEXT_no = @XGETTEXT@ -XGETTEXT_yes = @XGETTEXT_015@ -XGETTEXT = $(XGETTEXT_$(USE_MSGCTXT)) -MSGMERGE = @MSGMERGE@ -MSGMERGE_UPDATE = @MSGMERGE@ --update -MSGMERGE_FOR_MSGFMT_OPTION = @MSGMERGE_FOR_MSGFMT_OPTION@ -MSGINIT = msginit -MSGCONV = msgconv -MSGFILTER = msgfilter - -POFILES = @POFILES@ -GMOFILES = @GMOFILES@ -UPDATEPOFILES = @UPDATEPOFILES@ -DUMMYPOFILES = @DUMMYPOFILES@ -DISTFILES.common = Makefile.in.in remove-potcdate.sin \ -$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) -DISTFILES = $(DISTFILES.common) Makevars POTFILES.in \ -$(POFILES) $(GMOFILES) \ -$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) - -POTFILES = \ - -CATALOGS = @CATALOGS@ - -POFILESDEPS_ = $(srcdir)/$(DOMAIN).pot -POFILESDEPS_yes = $(POFILESDEPS_) -POFILESDEPS_no = -POFILESDEPS = $(POFILESDEPS_$(PO_DEPENDS_ON_POT)) - -DISTFILESDEPS_ = update-po -DISTFILESDEPS_yes = $(DISTFILESDEPS_) -DISTFILESDEPS_no = -DISTFILESDEPS = $(DISTFILESDEPS_$(DIST_DEPENDS_ON_UPDATE_PO)) - -# Makevars gets inserted here. (Don't remove this line!) - -all: all-@USE_NLS@ - - -.SUFFIXES: -.SUFFIXES: .po .gmo .sed .sin .nop .po-create .po-update - -# The .pot file, stamp-po, .po files, and .gmo files appear in release tarballs. -# The GNU Coding Standards say in -# : -# "GNU distributions usually contain some files which are not source files -# ... . Since these files normally appear in the source directory, they -# should always appear in the source directory, not in the build directory. -# So Makefile rules to update them should put the updated files in the -# source directory." -# Therefore we put these files in the source directory, not the build directory. - -# During .po -> .gmo conversion, take into account the most recent changes to -# the .pot file. This eliminates the need to update the .po files when the -# .pot file has changed, which would be troublesome if the .po files are put -# under version control. -$(GMOFILES): $(srcdir)/$(DOMAIN).pot -.po.gmo: - @lang=`echo $* | sed -e 's,.*/,,'`; \ - test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ - echo "$${cdcmd}rm -f $${lang}.gmo && $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $${lang}.po $(DOMAIN).pot && $(GMSGFMT) -c --statistics --verbose -o $${lang}.gmo $${lang}.1po && rm -f $${lang}.1po"; \ - cd $(srcdir) && \ - rm -f $${lang}.gmo && \ - $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $${lang}.po $(DOMAIN).pot && \ - $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.1po && \ - mv t-$${lang}.gmo $${lang}.gmo && \ - rm -f $${lang}.1po - -.sin.sed: - sed -e '/^#/d' $< > t-$@ - mv t-$@ $@ - - -all-yes: $(srcdir)/stamp-po -all-no: - -# Ensure that the gettext macros and this Makefile.in.in are in sync. -CHECK_MACRO_VERSION = \ - test "$(GETTEXT_MACRO_VERSION)" = "@GETTEXT_MACRO_VERSION@" \ - || { echo "*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version $(GETTEXT_MACRO_VERSION) but the autoconf macros are from gettext version @GETTEXT_MACRO_VERSION@" 1>&2; \ - exit 1; \ - } - -# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no -# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because -# we don't want to bother translators with empty POT files). We assume that -# LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty. -# In this case, $(srcdir)/stamp-po is a nop (i.e. a phony target). - -# $(srcdir)/stamp-po is a timestamp denoting the last time at which the CATALOGS -# have been loosely updated. Its purpose is that when a developer or translator -# checks out the package from a version control system, and the $(DOMAIN).pot -# file is not under version control, "make" will update the $(DOMAIN).pot and -# the $(CATALOGS), but subsequent invocations of "make" will do nothing. This -# timestamp would not be necessary if updating the $(CATALOGS) would always -# touch them; however, the rule for $(POFILES) has been designed to not touch -# files that don't need to be changed. -$(srcdir)/stamp-po: $(srcdir)/$(DOMAIN).pot - @$(CHECK_MACRO_VERSION) - test ! -f $(srcdir)/$(DOMAIN).pot || \ - test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) - @test ! -f $(srcdir)/$(DOMAIN).pot || { \ - echo "touch $(srcdir)/stamp-po" && \ - echo timestamp > $(srcdir)/stamp-poT && \ - mv $(srcdir)/stamp-poT $(srcdir)/stamp-po; \ - } - -# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', -# otherwise packages like GCC can not be built if only parts of the source -# have been downloaded. - -# This target rebuilds $(DOMAIN).pot; it is an expensive operation. -# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. -# The determination of whether the package xyz is a GNU one is based on the -# heuristic whether some file in the top level directory mentions "GNU xyz". -# If GNU 'find' is available, we avoid grepping through monster files. -$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed - package_gnu="$(PACKAGE_GNU)"; \ - test -n "$$package_gnu" || { \ - if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \ - LC_ALL=C find -L $(top_srcdir) -maxdepth 1 -type f -size -10000000c -exec grep -i 'GNU @PACKAGE@' /dev/null '{}' ';' 2>/dev/null; \ - else \ - LC_ALL=C grep -i 'GNU @PACKAGE@' $(top_srcdir)/* 2>/dev/null; \ - fi; \ - } | grep -v 'libtool:' >/dev/null; then \ - package_gnu=yes; \ - else \ - package_gnu=no; \ - fi; \ - }; \ - if test "$$package_gnu" = "yes"; then \ - package_prefix='GNU '; \ - else \ - package_prefix=''; \ - fi; \ - if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \ - msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ - else \ - msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ - fi; \ - case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ - '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ - $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ - --add-comments=TRANSLATORS: \ - --files-from=$(srcdir)/POTFILES.in \ - --copyright-holder='$(COPYRIGHT_HOLDER)' \ - --msgid-bugs-address="$$msgid_bugs_address" \ - $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ - ;; \ - *) \ - $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ - --add-comments=TRANSLATORS: \ - --files-from=$(srcdir)/POTFILES.in \ - --copyright-holder='$(COPYRIGHT_HOLDER)' \ - --package-name="$${package_prefix}@PACKAGE@" \ - --package-version='@VERSION@' \ - --msgid-bugs-address="$$msgid_bugs_address" \ - $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ - ;; \ - esac - test ! -f $(DOMAIN).po || { \ - if test -f $(srcdir)/$(DOMAIN).pot-header; then \ - sed -e '1,/^#$$/d' < $(DOMAIN).po > $(DOMAIN).1po && \ - cat $(srcdir)/$(DOMAIN).pot-header $(DOMAIN).1po > $(DOMAIN).po && \ - rm -f $(DOMAIN).1po \ - || exit 1; \ - fi; \ - if test -f $(srcdir)/$(DOMAIN).pot; then \ - sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ - sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ - if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ - rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ - else \ - rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ - mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ - fi; \ - else \ - mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ - fi; \ - } - -# This rule has no dependencies: we don't need to update $(DOMAIN).pot at -# every "make" invocation, only create it when it is missing. -# Only "make $(DOMAIN).pot-update" or "make dist" will force an update. -$(srcdir)/$(DOMAIN).pot: - $(MAKE) $(DOMAIN).pot-update - -# This target rebuilds a PO file if $(DOMAIN).pot has changed. -# Note that a PO file is not touched if it doesn't need to be changed. -$(POFILES): $(POFILESDEPS) - @test -f $(srcdir)/$(DOMAIN).pot || $(MAKE) $(srcdir)/$(DOMAIN).pot - @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ - if test -f "$(srcdir)/$${lang}.po"; then \ - test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ - echo "$${cdcmd}$(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot"; \ - cd $(srcdir) \ - && { case `$(MSGMERGE_UPDATE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ - '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].*) \ - $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ - 0.1[6-7] | 0.1[6-7].*) \ - $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --previous $${lang}.po $(DOMAIN).pot;; \ - *) \ - $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot;; \ - esac; \ - }; \ - else \ - $(MAKE) $${lang}.po-create; \ - fi - - -install: install-exec install-data -install-exec: -install-data: install-data-@USE_NLS@ - if test "$(PACKAGE)" = "gettext-tools"; then \ - $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ - for file in $(DISTFILES.common) Makevars.template; do \ - $(INSTALL_DATA) $(srcdir)/$$file \ - $(DESTDIR)$(gettextsrcdir)/$$file; \ - done; \ - for file in Makevars; do \ - rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ - done; \ - else \ - : ; \ - fi -install-data-no: all -install-data-yes: all - @catalogs='$(CATALOGS)'; \ - for cat in $$catalogs; do \ - cat=`basename $$cat`; \ - lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ - dir=$(localedir)/$$lang/LC_MESSAGES; \ - $(mkdir_p) $(DESTDIR)$$dir; \ - if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ - $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ - echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ - for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ - if test -n "$$lc"; then \ - if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ - link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ - mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ - mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ - (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ - for file in *; do \ - if test -f $$file; then \ - ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ - fi; \ - done); \ - rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ - else \ - if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ - :; \ - else \ - rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ - mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ - fi; \ - fi; \ - rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ - ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ - ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ - cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ - echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ - fi; \ - done; \ - done - -install-strip: install - -installdirs: installdirs-exec installdirs-data -installdirs-exec: -installdirs-data: installdirs-data-@USE_NLS@ - if test "$(PACKAGE)" = "gettext-tools"; then \ - $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ - else \ - : ; \ - fi -installdirs-data-no: -installdirs-data-yes: - @catalogs='$(CATALOGS)'; \ - for cat in $$catalogs; do \ - cat=`basename $$cat`; \ - lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ - dir=$(localedir)/$$lang/LC_MESSAGES; \ - $(mkdir_p) $(DESTDIR)$$dir; \ - for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ - if test -n "$$lc"; then \ - if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ - link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ - mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ - mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ - (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ - for file in *; do \ - if test -f $$file; then \ - ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ - fi; \ - done); \ - rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ - else \ - if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ - :; \ - else \ - rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ - mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ - fi; \ - fi; \ - fi; \ - done; \ - done - -# Define this as empty until I found a useful application. -installcheck: - -uninstall: uninstall-exec uninstall-data -uninstall-exec: -uninstall-data: uninstall-data-@USE_NLS@ - if test "$(PACKAGE)" = "gettext-tools"; then \ - for file in $(DISTFILES.common) Makevars.template; do \ - rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ - done; \ - else \ - : ; \ - fi -uninstall-data-no: -uninstall-data-yes: - catalogs='$(CATALOGS)'; \ - for cat in $$catalogs; do \ - cat=`basename $$cat`; \ - lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ - for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ - rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ - done; \ - done - -check: all - -info dvi ps pdf html tags TAGS ctags CTAGS ID: - -install-dvi install-ps install-pdf install-html: - -mostlyclean: - rm -f remove-potcdate.sed - rm -f $(srcdir)/stamp-poT - rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po - rm -fr *.o - -clean: mostlyclean - -distclean: clean - rm -f Makefile Makefile.in POTFILES - -maintainer-clean: distclean - @echo "This command is intended for maintainers to use;" - @echo "it deletes files that may require special tools to rebuild." - rm -f $(srcdir)/$(DOMAIN).pot $(srcdir)/stamp-po $(GMOFILES) - -distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) -dist distdir: - test -z "$(DISTFILESDEPS)" || $(MAKE) $(DISTFILESDEPS) - @$(MAKE) dist2 -# This is a separate target because 'update-po' must be executed before. -dist2: $(srcdir)/stamp-po $(DISTFILES) - @dists="$(DISTFILES)"; \ - if test "$(PACKAGE)" = "gettext-tools"; then \ - dists="$$dists Makevars.template"; \ - fi; \ - if test -f $(srcdir)/$(DOMAIN).pot; then \ - dists="$$dists $(DOMAIN).pot stamp-po"; \ - else \ - case $(XGETTEXT) in \ - :) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because a suitable 'xgettext' program was not found in PATH." 1>&2;; \ - *) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because 'xgettext' found no strings to extract. Check the contents of the POTFILES.in file and the XGETTEXT_OPTIONS in the Makevars file." 1>&2;; \ - esac; \ - fi; \ - if test -f $(srcdir)/ChangeLog; then \ - dists="$$dists ChangeLog"; \ - fi; \ - for i in 0 1 2 3 4 5 6 7 8 9; do \ - if test -f $(srcdir)/ChangeLog.$$i; then \ - dists="$$dists ChangeLog.$$i"; \ - fi; \ - done; \ - if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ - for file in $$dists; do \ - if test -f $$file; then \ - cp -p $$file $(distdir) || exit 1; \ - else \ - cp -p $(srcdir)/$$file $(distdir) || exit 1; \ - fi; \ - done - -update-po: Makefile - $(MAKE) $(DOMAIN).pot-update - test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) - $(MAKE) update-gmo - -# General rule for creating PO files. - -.nop.po-create: - @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ - echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ - exit 1 - -# General rule for updating PO files. - -.nop.po-update: - @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ - if test "$(PACKAGE)" = "gettext-tools" && test "$(CROSS_COMPILING)" != "yes"; then PATH=`pwd`/../src:$$PATH; fi; \ - tmpdir=`pwd`; \ - echo "$$lang:"; \ - test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ - echo "$${cdcmd}$(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang --previous $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ - cd $(srcdir); \ - if { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ - '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].*) \ - $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ - 0.1[6-7] | 0.1[6-7].*) \ - $(MSGMERGE) $(MSGMERGE_OPTIONS) --previous -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ - *) \ - $(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang --previous -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ - esac; \ - }; then \ - if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ - rm -f $$tmpdir/$$lang.new.po; \ - else \ - if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ - :; \ - else \ - echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ - exit 1; \ - fi; \ - fi; \ - else \ - echo "msgmerge for $$lang.po failed!" 1>&2; \ - rm -f $$tmpdir/$$lang.new.po; \ - fi - -$(DUMMYPOFILES): - -update-gmo: Makefile $(GMOFILES) - @: - -# Recreate Makefile by invoking config.status. Explicitly invoke the shell, -# because execution permission bits may not work on the current file system. -# Use @SHELL@, which is the shell determined by autoconf for the use by its -# scripts, not $(SHELL) which is hardwired to /bin/sh and may be deficient. -Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@ - cd $(top_builddir) \ - && @SHELL@ ./config.status $(subdir)/$@.in po-directories - -force: - -# Tell versions [3.59,3.63) of GNU make not to export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru mate-utils-1.26.0/po/mate-utils.pot mate-utils-1.26.1/po/mate-utils.pot --- mate-utils-1.26.0/po/mate-utils.pot 2021-08-05 19:45:46.000000000 +0000 +++ mate-utils-1.26.1/po/mate-utils.pot 1970-01-01 00:00:00.000000000 +0000 @@ -1,3177 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR MATE Desktop Environment team -# This file is distributed under the same license as the mate-utils package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: mate-utils 1.26.0\n" -"Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" - -#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 -msgid "MATE Disk Usage Analyzer" -msgstr "" - -#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:4 -msgid "Check folder sizes and available disk space" -msgstr "" - -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 -msgid "MATE;check;disk;usage;analyze;size;space;" -msgstr "" - -#: baobab/data/baobab-dialog-scan-props.ui:18 -msgid "Disk Usage Analyzer Preferences" -msgstr "" - -#: baobab/data/baobab-dialog-scan-props.ui:32 -#: baobab/data/baobab-main-window.ui:129 logview/src/logview-window.c:825 -#: mate-dictionary/src/gdict-applet.c:1173 -#: mate-dictionary/src/gdict-window.c:1262 -#: mate-screenshot/data/mate-screenshot.ui:41 -msgid "_Help" -msgstr "" - -#: baobab/data/baobab-dialog-scan-props.ui:48 logview/src/logview-window.c:829 -#: mate-dictionary/src/gdict-window.c:1273 -msgid "_Close" -msgstr "" - -#: baobab/data/baobab-dialog-scan-props.ui:81 -msgid "Select _devices to include in filesystem scan:" -msgstr "" - -#: baobab/data/baobab-dialog-scan-props.ui:119 -msgid "_Monitor changes to your home folder" -msgstr "" - -#: baobab/data/baobab-main-window.ui:10 -msgid "_Analyzer" -msgstr "" - -#: baobab/data/baobab-main-window.ui:17 -msgid "Scan _Home Folder" -msgstr "" - -#: baobab/data/baobab-main-window.ui:26 -msgid "Scan _Filesystem" -msgstr "" - -#: baobab/data/baobab-main-window.ui:35 -msgid "Scan F_older..." -msgstr "" - -#: baobab/data/baobab-main-window.ui:44 -msgid "S_can Remote Folder..." -msgstr "" - -#: baobab/data/baobab-main-window.ui:74 logview/src/logview-window.c:822 -#: mate-dictionary/src/gdict-window.c:1259 -msgid "_Edit" -msgstr "" - -#: baobab/data/baobab-main-window.ui:80 -msgid "_Expand All" -msgstr "" - -#: baobab/data/baobab-main-window.ui:87 -msgid "_Collapse All" -msgstr "" - -#: baobab/data/baobab-main-window.ui:101 logview/src/logview-window.c:823 -#: mate-dictionary/src/gdict-window.c:1260 -msgid "_View" -msgstr "" - -#: baobab/data/baobab-main-window.ui:108 -msgid "_Toolbar" -msgstr "" - -#: baobab/data/baobab-main-window.ui:115 -msgid "St_atusbar" -msgstr "" - -#: baobab/data/baobab-main-window.ui:122 -msgid "All_ocated Space" -msgstr "" - -#: baobab/data/baobab-main-window.ui:136 logview/src/logview-window.c:851 -#: mate-dictionary/src/gdict-window.c:1312 -msgid "_Contents" -msgstr "" - -#: baobab/data/baobab-main-window.ui:183 baobab/src/baobab.c:1237 -#: baobab/src/callbacks.c:103 -msgid "Disk Usage Analyzer" -msgstr "" - -#: baobab/data/baobab-main-window.ui:224 baobab/data/baobab-main-window.ui:236 -msgid "Scan home folder" -msgstr "" - -#: baobab/data/baobab-main-window.ui:225 -msgid "Scan Home" -msgstr "" - -#: baobab/data/baobab-main-window.ui:248 -msgid "Scan filesystem" -msgstr "" - -#: baobab/data/baobab-main-window.ui:249 -msgid "Scan Filesystem" -msgstr "" - -#: baobab/data/baobab-main-window.ui:265 -msgid "Scan a folder" -msgstr "" - -#: baobab/data/baobab-main-window.ui:266 -msgid "Scan Folder" -msgstr "" - -#: baobab/data/baobab-main-window.ui:282 -msgid "Scan a remote folder" -msgstr "" - -#: baobab/data/baobab-main-window.ui:283 -msgid "Scan Remote Folder" -msgstr "" - -#: baobab/data/baobab-main-window.ui:312 -msgid "Stop scanning" -msgstr "" - -#: baobab/data/baobab-main-window.ui:328 -msgid "Refresh" -msgstr "" - -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:9 -msgid "Monitor Home" -msgstr "" - -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:10 -msgid "Whether any change to the home directory should be monitored." -msgstr "" - -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:14 -msgid "Excluded partitions URIs" -msgstr "" - -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:15 -msgid "A list of URIs for partitions to be excluded from scanning." -msgstr "" - -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:21 -msgid "Toolbar is Visible" -msgstr "" - -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:22 -msgid "Whether the toolbar should be visible in main window." -msgstr "" - -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:26 -msgid "Statusbar is Visible" -msgstr "" - -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:27 -msgid "Whether the status bar at the bottom of main window should be visible." -msgstr "" - -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:31 -msgid "Subfolder tips visible" -msgstr "" - -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:32 -msgid "Whether the subfolder tooltips of the selected folder are drawn." -msgstr "" - -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:36 -msgid "Active Chart" -msgstr "" - -#: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:37 -msgid "Which type of chart should be displayed." -msgstr "" - -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:8 -msgid "A disk usage analyzing tool for MATE Desktop" -msgstr "" - -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 -msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " -"summary information in ring or treemap charts." -msgstr "" - -#: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 -msgid "" -"You can perform scans on a file system, your home or any other folder - " -"local or remote. There is also an option to constantly monitor any external " -"changes to the home directory and warn the user if a file is added/removed." -msgstr "" - -#: baobab/src/baobab.c:141 baobab/src/baobab.c:358 -msgid "Scanning..." -msgstr "" - -#: baobab/src/baobab.c:186 -msgid "Total filesystem capacity:" -msgstr "" - -#: baobab/src/baobab.c:187 -msgid "used:" -msgstr "" - -#: baobab/src/baobab.c:188 -msgid "available:" -msgstr "" - -#: baobab/src/baobab.c:243 baobab/src/baobab.c:300 baobab/src/callbacks.c:268 -msgid "Calculating percentage bars..." -msgstr "" - -#: baobab/src/baobab.c:254 baobab/src/baobab.c:1300 baobab/src/callbacks.c:272 -msgid "Ready" -msgstr "" - -#: baobab/src/baobab.c:392 -msgid "Total filesystem capacity" -msgstr "" - -#: baobab/src/baobab.c:416 -msgid "Total filesystem usage" -msgstr "" - -#: baobab/src/baobab.c:458 -msgid "contains hardlinks for:" -msgstr "" - -#: baobab/src/baobab.c:467 -#, c-format -msgid "%5d item" -msgid_plural "%5d items" -msgstr[0] "" -msgstr[1] "" - -#: baobab/src/baobab.c:593 -msgid "Could not initialize monitoring" -msgstr "" - -#: baobab/src/baobab.c:594 -msgid "Changes to your home folder will not be monitored." -msgstr "" - -#: baobab/src/baobab.c:913 -msgid "Move to parent folder" -msgstr "" - -#: baobab/src/baobab.c:917 -msgid "Zoom in" -msgstr "" - -#: baobab/src/baobab.c:921 -msgid "Zoom out" -msgstr "" - -#: baobab/src/baobab.c:925 -msgid "Save screenshot" -msgstr "" - -#: baobab/src/baobab.c:1111 -msgid "View as Rings Chart" -msgstr "" - -#: baobab/src/baobab.c:1113 -msgid "View as Treemap Chart" -msgstr "" - -#: baobab/src/baobab.c:1224 -msgid "Show version" -msgstr "" - -#: baobab/src/baobab.c:1225 -msgid "[DIRECTORY]" -msgstr "" - -#: baobab/src/baobab.c:1257 -msgid "Too many arguments. Only one directory can be specified." -msgstr "" - -#: baobab/src/baobab.c:1274 -msgid "Could not detect any mount point." -msgstr "" - -#: baobab/src/baobab.c:1276 -msgid "Without mount points disk usage cannot be analyzed." -msgstr "" - -#: baobab/src/baobab-chart.c:204 -msgid "Maximum depth" -msgstr "" - -#: baobab/src/baobab-chart.c:205 -msgid "The maximum depth drawn in the chart from the root" -msgstr "" - -#: baobab/src/baobab-chart.c:214 -msgid "Chart model" -msgstr "" - -#: baobab/src/baobab-chart.c:215 -msgid "Set the model of the chart" -msgstr "" - -#: baobab/src/baobab-chart.c:222 -msgid "Chart root node" -msgstr "" - -#: baobab/src/baobab-chart.c:223 -msgid "Set the root node from the model" -msgstr "" - -#: baobab/src/baobab-chart.c:1713 -msgid "Cannot create pixbuf image!" -msgstr "" - -#: baobab/src/baobab-chart.c:1723 -msgid "Save Snapshot" -msgstr "" - -#: baobab/src/baobab-chart.c:1750 -msgid "_Image type:" -msgstr "" - -#: baobab/src/baobab-prefs.c:171 -msgid "Scan" -msgstr "" - -#: baobab/src/baobab-prefs.c:178 -msgid "Device" -msgstr "" - -#: baobab/src/baobab-prefs.c:186 -msgid "Mount Point" -msgstr "" - -#: baobab/src/baobab-prefs.c:194 -msgid "Filesystem Type" -msgstr "" - -#: baobab/src/baobab-prefs.c:202 -msgid "Total Size" -msgstr "" - -#: baobab/src/baobab-prefs.c:211 -msgid "Available" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:70 -#, c-format -msgid "Cannot scan location \"%s\"" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:168 -msgid "Custom Location" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:170 -msgid "SSH" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:173 -msgid "Public FTP" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:175 -msgid "FTP (with login)" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:178 -msgid "Windows share" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:180 -msgid "WebDAV (HTTP)" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:182 -msgid "Secure WebDAV (HTTPS)" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:242 -msgid "Cannot Connect to Server. You must enter a name for the server." -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:245 -msgid "Please enter a name and try again." -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:439 -msgid "_Location (URI):" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:455 -msgid "_Server:" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:468 -msgid "Optional information:" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:477 -msgid "_Share:" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:492 -#: mate-dictionary/data/mate-dictionary-source.ui:121 -msgid "_Port:" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:506 -msgid "_Folder:" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:520 -msgid "_User Name:" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:535 -msgid "_Domain Name:" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:592 -msgid "Connect to Server" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:608 -msgid "Service _type:" -msgstr "" - -#: baobab/src/baobab-remote-connect-dialog.c:726 -msgid "_Scan" -msgstr "" - -#: baobab/src/baobab-treeview.c:83 -msgid "Rescan your home folder?" -msgstr "" - -#: baobab/src/baobab-treeview.c:84 -msgid "" -"The content of your home folder has changed. Select rescan to update the " -"disk usage details." -msgstr "" - -#: baobab/src/baobab-treeview.c:85 -msgid "_Rescan" -msgstr "" - -#: baobab/src/baobab-treeview.c:222 gsearchtool/src/gsearchtool.c:2453 -msgid "Folder" -msgstr "" - -#: baobab/src/baobab-treeview.c:244 -msgid "Usage" -msgstr "" - -#: baobab/src/baobab-treeview.c:258 gsearchtool/src/gsearchtool.c:2466 -msgid "Size" -msgstr "" - -#: baobab/src/baobab-treeview.c:274 -msgid "Contents" -msgstr "" - -#: baobab/src/baobab-utils.c:105 -msgid "Select Folder" -msgstr "" - -#: baobab/src/baobab-utils.c:117 -msgid "_Show hidden folders" -msgstr "" - -#: baobab/src/baobab-utils.c:280 -msgid "Cannot check an excluded folder!" -msgstr "" - -#: baobab/src/baobab-utils.c:304 -#, c-format -msgid "\"%s\" is not a valid folder" -msgstr "" - -#: baobab/src/baobab-utils.c:307 -msgid "Could not analyze disk usage." -msgstr "" - -#: baobab/src/baobab-utils.c:343 -msgid "_Open Folder" -msgstr "" - -#: baobab/src/baobab-utils.c:349 gsearchtool/src/gsearchtool-callbacks.c:1330 -msgid "Mo_ve to Trash" -msgstr "" - -#: baobab/src/baobab-utils.c:378 -#, c-format -msgid "Could not open folder \"%s\"" -msgstr "" - -#: baobab/src/baobab-utils.c:381 -msgid "There is no installed viewer capable of displaying the folder." -msgstr "" - -#: baobab/src/baobab-utils.c:448 -#, c-format -msgid "Could not move \"%s\" to the Trash" -msgstr "" - -#: baobab/src/baobab-utils.c:456 -msgid "Could not move file to the Trash" -msgstr "" - -#: baobab/src/baobab-utils.c:458 -#, c-format -msgid "Details: %s" -msgstr "" - -#: baobab/src/baobab-utils.c:496 -msgid "There was an error displaying help." -msgstr "" - -#: baobab/src/callbacks.c:74 logview/src/logview-about.h:44 -#: mate-dictionary/src/gdict-about.c:49 -msgid "MATE Documentation Team" -msgstr "" - -#: baobab/src/callbacks.c:79 logview/src/logview-about.h:49 -#: mate-dictionary/src/gdict-about.c:57 -msgid "" -"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 2 of the License, or (at your option) " -"any later version." -msgstr "" - -#: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 -#: mate-dictionary/src/gdict-about.c:62 -msgid "" -"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." -msgstr "" - -#: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 -#: mate-dictionary/src/gdict-about.c:67 -msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." -msgstr "" - -#: baobab/src/callbacks.c:105 -msgid "About Disk Usage Analyzer" -msgstr "" - -#: baobab/src/callbacks.c:106 -msgid "Analyze your disk usage through a graphical tool." -msgstr "" - -#: baobab/src/callbacks.c:107 -msgid "" -"Copyright © 2005-2010 Fabio Marzocca\n" -"Copyright © 2011-2021 MATE developers" -msgstr "" - -#: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 -#: mate-dictionary/src/gdict-about.c:53 -msgid "translator-credits" -msgstr "" - -#: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 -#: gsearchtool/src/gsearchtool-callbacks.c:879 -msgid "The document does not exist." -msgstr "" - -#: baobab/src/callbacks.c:292 -msgid "The folder does not exist." -msgstr "" - -#: gsearchtool/data/mate-search-tool.appdata.xml.in:7 -#: gsearchtool/data/mate-search-tool.desktop.in:3 -msgid "MATE Search Tool" -msgstr "" - -#: gsearchtool/data/mate-search-tool.appdata.xml.in:8 -msgid "A file searching tool for MATE Desktop" -msgstr "" - -#: gsearchtool/data/mate-search-tool.appdata.xml.in:10 -msgid "" -"MATE Search Tool is a simple but powerful utility that allows you to search " -"for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." -msgstr "" - -#: gsearchtool/data/mate-search-tool.desktop.in:4 -msgid "Locate documents and folders on this computer by name or content" -msgstr "" - -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: gsearchtool/data/mate-search-tool.desktop.in:13 -msgid "" -"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 -msgid "Search history" -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:6 -msgid "This key defines the items which were searched for in the past." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:10 -msgid "Show Additional Options" -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:14 -msgid "Disable Quick Search" -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:15 -msgid "" -"This key determines if the search tool disables the use of the locate " -"command when performing simple file name searches." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 -msgid "Quick Search Excluded Paths" -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 -msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 -msgid "Disable Quick Search Second Scan" -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:25 -msgid "" -"This key determines if the search tool disables the use of the find command " -"after performing a quick search." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 -msgid "Quick Search Second Scan Excluded Paths" -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:30 -msgid "" -"This key defines the paths the search tool will exclude from a second scan " -"when performing a quick search. The second scan uses the find command to " -"search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 -msgid "Search Result Columns Order" -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:35 -msgid "" -"This key defines the order of the columns in the search results. This key " -"should not be modified by the user." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 -msgid "Default Window Width" -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 -msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 -msgid "Default Window Height" -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 -msgid "" -"This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 -msgid "Default Window Maximized" -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:50 -msgid "" -"This key determines if the search tool window starts in a maximized state." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 -msgid "Look in Folder" -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 -msgid "This key defines the default value of the \"Look in Folder\" widget." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 -msgid "" -"This key determines if the \"Contains the text\" search option is selected " -"when the search tool is started." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 -msgid "" -"This key determines if the \"Date modified less than\" search option is " -"selected when the search tool is started." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 -msgid "" -"This key determines if the \"Date modified more than\" search option is " -"selected when the search tool is started." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 -msgid "" -"This key determines if the \"Size at least\" search option is selected when " -"the search tool is started." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 -msgid "" -"This key determines if the \"Size at most\" search option is selected when " -"the search tool is started." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 -msgid "" -"This key determines if the \"File is empty\" search option is selected when " -"the search tool is started." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 -msgid "" -"This key determines if the \"Owned by user\" search option is selected when " -"the search tool is started." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 -msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 -msgid "" -"This key determines if the \"Owner is unrecognized\" search option is " -"selected when the search tool is started." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 -msgid "" -"This key determines if the \"Name does not contain\" search option is " -"selected when the search tool is started." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 -msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 -msgid "" -"This key determines if the \"Show hidden files and folders\" search option " -"is selected when the search tool is started." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 -msgid "" -"This key determines if the \"Follow symbolic links\" search option is " -"selected when the search tool is started." -msgstr "" - -#: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 -msgid "" -"This key determines if the \"Exclude other filesystems\" search option is " -"selected when the search tool is started." -msgstr "" - -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 -msgid "File is not a valid .desktop file" -msgstr "" - -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 -#, c-format -msgid "Unrecognized desktop file Version '%s'" -msgstr "" - -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 -#, c-format -msgid "Starting %s" -msgstr "" - -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 -msgid "Application does not accept documents on command line" -msgstr "" - -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 -#, c-format -msgid "Unrecognized launch option: %d" -msgstr "" - -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 -msgid "Can't pass document URIs to a 'Type=Link' desktop entry" -msgstr "" - -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 -msgid "Not a launchable item" -msgstr "" - -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 -msgid "Disable connection to session manager" -msgstr "" - -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 -msgid "Specify file containing saved configuration" -msgstr "" - -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 -msgid "FILE" -msgstr "" - -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 -msgid "Specify session management ID" -msgstr "" - -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 -msgid "ID" -msgstr "" - -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 -msgid "Session management options:" -msgstr "" - -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 -msgid "Show session management options" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:82 -msgid "Contains the _text" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:84 -msgid "_Date modified less than" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:84 gsearchtool/src/gsearchtool.c:85 -msgid "days" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:85 -msgid "Date modified more than" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:87 -msgid "S_ize at least" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:87 gsearchtool/src/gsearchtool.c:88 -msgid "kilobytes" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:88 -msgid "Si_ze at most" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:89 -msgid "File is empty" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:91 -msgid "Owned by _user" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:92 -msgid "Owned by _group" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:93 -msgid "Owner is unrecognized" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:95 -msgid "Na_me does not contain" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:96 -msgid "Name matches regular e_xpression" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:98 -msgid "Show hidden and backup files" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:99 -msgid "Follow symbolic links" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:100 -msgid "Exclude other filesystems" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:158 -msgid "Show version of the application" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:159 gsearchtool/src/gsearchtool.c:164 -#: gsearchtool/src/gsearchtool.c:173 -msgid "STRING" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:160 -msgid "PATH" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:161 -msgid "VALUE" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:165 gsearchtool/src/gsearchtool.c:166 -msgid "DAYS" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:167 gsearchtool/src/gsearchtool.c:168 -msgid "KILOBYTES" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:170 -msgid "USER" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:171 -msgid "GROUP" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:174 -msgid "PATTERN" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:385 -msgid "A locate database has probably not been created." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:487 -#, c-format -msgid "Character set conversion failed for \"%s\"" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:511 -msgid "Searching..." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:511 gsearchtool/src/gsearchtool.c:1048 -#: gsearchtool/src/gsearchtool.c:3078 -msgid "Search for Files" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:994 gsearchtool/src/gsearchtool.c:1023 -msgid "No files found" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1016 -msgid "(stopped)" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1022 -msgid "No Files Found" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1027 -#, c-format -msgid "%'d File Found" -msgid_plural "%'d Files Found" -msgstr[0] "" -msgstr[1] "" - -#: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 -#, c-format -msgid "%'d file found" -msgid_plural "%'d files found" -msgstr[0] "" -msgstr[1] "" - -#: gsearchtool/src/gsearchtool.c:1160 -msgid "Entry changed called for a non entry option!" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1325 -msgid "Set the text of \"Name contains\" search option" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1326 -msgid "Set the text of \"Look in folder\" search option" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1327 -msgid "Sort files by one of the following: name, folder, size, type, or date" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1328 -msgid "Set sort order to descending, the default is ascending" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1329 -msgid "Automatically start a search" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1335 -#, c-format -msgid "Select the \"%s\" search option" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1338 -#, c-format -msgid "Select and set the \"%s\" search option" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1445 -msgid "Invalid option passed to sortby command line argument." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1737 -msgid "" -"\n" -"... Too many errors to display ..." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1751 -msgid "" -"The search results may be invalid. There were errors while performing this " -"search." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 -msgid "Show more _details" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1793 -msgid "" -"The search results may be out of date or invalid. Do you want to disable " -"the quick search feature?" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1818 -msgid "Disable _Quick Search" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1845 -#, c-format -msgid "Failed to set process group id of child %d: %s.\n" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1870 -msgid "Error parsing the search command." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:1902 -msgid "Error running the search command." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2025 -#, c-format -msgid "Enter a text value for the \"%s\" search option." -msgstr "" - -#. Translators: Below is a string displaying the search options name -#. and unit value. For example, "\"Date modified less than\" in days". -#: gsearchtool/src/gsearchtool.c:2030 -#, c-format -msgid "\"%s\" in %s" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2032 -#, c-format -msgid "Enter a value in %s for the \"%s\" search option." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2095 -#, c-format -msgid "Remove \"%s\"" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2096 -#, c-format -msgid "Click to remove the \"%s\" search option." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2189 -msgid "A_vailable options:" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2218 -msgid "Available options" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2219 -msgid "Select a search option from the drop-down list." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2236 -msgid "Add search option" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2237 -msgid "Click to add the selected available search option." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2326 -msgid "S_earch results:" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2369 -msgid "List View" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2429 -#: mate-dictionary/libgdict/gdict-source.c:243 -msgid "Name" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2478 -msgid "Type" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2490 -msgid "Date Modified" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2820 -msgid "_Name contains:" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 -msgid "Enter a filename or partial filename with or without wildcards." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2836 -msgid "Name contains" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2842 -msgid "_Look in folder:" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2848 -msgid "Browse" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2858 -msgid "Look in folder" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2858 -msgid "Select the folder or device from which you want to begin the search." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2876 -msgid "Select more _options" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2885 -msgid "Select more options" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2885 -msgid "Click to expand or collapse the list of available options." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2916 -msgid "Click to display the help manual." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2929 -msgid "Click to close \"Search for Files\"." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2964 -msgid "Click to perform a search." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:2965 -msgid "Click to stop a search." -msgstr "" - -#: gsearchtool/src/gsearchtool.c:3061 -msgid "- the MATE Search Tool" -msgstr "" - -#: gsearchtool/src/gsearchtool.c:3072 -#, c-format -msgid "Failed to parse command line arguments: %s\n" -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:192 -msgid "Could not open help document." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:343 -#, c-format -msgid "Are you sure you want to open %d document?" -msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "" -msgstr[1] "" - -#: gsearchtool/src/gsearchtool-callbacks.c:348 -#: gsearchtool/src/gsearchtool-callbacks.c:548 -#, c-format -msgid "This will open %d separate window." -msgid_plural "This will open %d separate windows." -msgstr[0] "" -msgstr[1] "" - -#: gsearchtool/src/gsearchtool-callbacks.c:393 -#, c-format -msgid "Could not open document \"%s\"." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:422 -#, c-format -msgid "Could not open folder \"%s\"." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:430 -msgid "The caja file manager is not running." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:521 -msgid "There is no installed viewer capable of displaying the document." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:543 -#, c-format -msgid "Are you sure you want to open %d folder?" -msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "" -msgstr[1] "" - -#: gsearchtool/src/gsearchtool-callbacks.c:725 -#, c-format -msgid "Could not move \"%s\" to trash." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:756 -#, c-format -msgid "Do you want to delete \"%s\" permanently?" -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:759 -#, c-format -msgid "Trash is unavailable. Could not move \"%s\" to the trash." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:803 -#, c-format -msgid "Could not delete \"%s\"." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:915 -#, c-format -msgid "Deleting \"%s\" failed: %s." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:927 -#, c-format -msgid "Moving \"%s\" failed: %s." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1143 -#: gsearchtool/src/gsearchtool-callbacks.c:1169 -msgid "_Open" -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1199 -#, c-format -msgid "_Open with %s" -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1220 -#, c-format -msgid "Open with %s" -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1249 -msgid "Open Wit_h" -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1299 -msgid "Open Containing _Folder" -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1310 -msgid "Copy _Path" -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1344 -msgid "_Save Results As..." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1722 -msgid "Save Search Results As..." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1751 -msgid "Could not save document." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1752 -msgid "You did not select a document name." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1782 -#, c-format -msgid "Could not save \"%s\" document to \"%s\"." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1815 -#, c-format -msgid "The document \"%s\" already exists. Would you like to replace it?" -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1819 -msgid "If you replace an existing file, its contents will be overwritten." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1834 -#: mate-screenshot/src/screenshot-xfer.c:84 -msgid "_Replace" -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1883 -msgid "The document name you selected is a folder." -msgstr "" - -#: gsearchtool/src/gsearchtool-callbacks.c:1919 -msgid "You may not have write permissions to the document." -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:427 -msgid "today at %-I:%M %p" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:429 -msgid "yesterday at %-I:%M %p" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:431 -msgid "%A, %B %-d %Y at %-I:%M:%S %p" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:478 -msgid "link (broken)" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:482 -#, c-format -msgid "link to %s" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:1101 -msgid " (copy)" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:1103 -msgid " (another copy)" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:1106 -#: gsearchtool/src/gsearchtool-support.c:1108 -#: gsearchtool/src/gsearchtool-support.c:1110 -#: gsearchtool/src/gsearchtool-support.c:1120 -msgid "th copy)" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:1113 -msgid "st copy)" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:1115 -msgid "nd copy)" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:1117 -msgid "rd copy)" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:1134 -#, c-format -msgid "%s (copy)%s" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:1136 -#, c-format -msgid "%s (another copy)%s" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:1139 -#: gsearchtool/src/gsearchtool-support.c:1141 -#: gsearchtool/src/gsearchtool-support.c:1143 -#: gsearchtool/src/gsearchtool-support.c:1152 -#, c-format -msgid "%s (%dth copy)%s" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:1146 -#, c-format -msgid "%s (%dst copy)%s" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:1148 -#, c-format -msgid "%s (%dnd copy)%s" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:1150 -#, c-format -msgid "%s (%drd copy)%s" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:1197 -msgid " (invalid Unicode)" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:1286 -msgid " (" -msgstr "" - -#: gsearchtool/src/gsearchtool-support.c:1294 -#, c-format -msgid " (%d" -msgstr "" - -#: logview/data/mate-system-log.desktop.in.in:3 -msgid "Log File Viewer" -msgstr "" - -#: logview/data/mate-system-log.desktop.in.in:4 -msgid "View or monitor system log files" -msgstr "" - -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: logview/data/mate-system-log.desktop.in.in:13 -msgid "MATE;monitor;view;system;log;files;logviewer;" -msgstr "" - -#: logview/data/org.mate.system-log.gschema.xml.in:5 -msgid "Log file to open up on startup" -msgstr "" - -#: logview/data/org.mate.system-log.gschema.xml.in:6 -msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." -msgstr "" - -#: logview/data/org.mate.system-log.gschema.xml.in:10 -msgid "Size of the font used to display the log" -msgstr "" - -#: logview/data/org.mate.system-log.gschema.xml.in:11 -msgid "" -"Specifies the size of the fixed-width font used to display the log in the " -"main tree view. The default is taken from the default terminal font size." -msgstr "" - -#: logview/data/org.mate.system-log.gschema.xml.in:15 -msgid "Height of the main window in pixels" -msgstr "" - -#: logview/data/org.mate.system-log.gschema.xml.in:16 -msgid "Specifies the height of the log viewer main window in pixels." -msgstr "" - -#: logview/data/org.mate.system-log.gschema.xml.in:20 -msgid "Width of the main window in pixels" -msgstr "" - -#: logview/data/org.mate.system-log.gschema.xml.in:21 -msgid "Specifies the width of the log viewer main window in pixels." -msgstr "" - -#: logview/data/org.mate.system-log.gschema.xml.in:25 -msgid "Log files to open up on startup" -msgstr "" - -#: logview/data/org.mate.system-log.gschema.xml.in:26 -msgid "" -"Specifies a list of log files to open up at startup. A default list is " -"created by reading /etc/syslog.conf." -msgstr "" - -#: logview/data/org.mate.system-log.gschema.xml.in:30 -msgid "List of saved filters" -msgstr "" - -#: logview/data/org.mate.system-log.gschema.xml.in:31 -msgid "List of saved regexp filters" -msgstr "" - -#: logview/data/logview-filter.ui:32 mate-disk-image-mounter/src/main.c:124 -#: mate-screenshot/data/mate-screenshot.ui:92 -msgid "_Cancel" -msgstr "" - -#: logview/data/logview-filter.ui:48 -msgid "_Apply" -msgstr "" - -#: logview/data/logview-filter.ui:91 -#: mate-screenshot/data/mate-screenshot.ui:178 -msgid "_Name:" -msgstr "" - -#: logview/data/logview-filter.ui:108 -msgid "_Regular Expression:" -msgstr "" - -#: logview/data/logview-filter.ui:180 -msgid "Highlight" -msgstr "" - -#: logview/data/logview-filter.ui:205 -msgid "Foreground:" -msgstr "" - -#: logview/data/logview-filter.ui:220 -msgid "Background:" -msgstr "" - -#: logview/data/logview-filter.ui:274 -msgid "Hide" -msgstr "" - -#: logview/data/logview-filter.ui:296 -msgid "Effect:" -msgstr "" - -#: logview/src/logview-about.h:41 mate-dictionary/src/gdict-about.c:46 -msgid "Sun GNOME Documentation Team " -msgstr "" - -#: logview/src/logview-app.c:369 -#, c-format -msgid "Impossible to open the file %s" -msgstr "" - -#: logview/src/logview-filter-manager.c:93 -msgid "Filter name is empty!" -msgstr "" - -#: logview/src/logview-filter-manager.c:106 -msgid "Filter name may not contain the ':' character" -msgstr "" - -#: logview/src/logview-filter-manager.c:129 -msgid "Regular expression is empty!" -msgstr "" - -#: logview/src/logview-filter-manager.c:145 -#, c-format -msgid "Regular expression is invalid: %s" -msgstr "" - -#: logview/src/logview-filter-manager.c:207 -msgid "Please specify either foreground or background color!" -msgstr "" - -#: logview/src/logview-filter-manager.c:282 -msgid "Edit filter" -msgstr "" - -#: logview/src/logview-filter-manager.c:282 -msgid "Add new filter" -msgstr "" - -#: logview/src/logview-filter-manager.c:469 -msgid "Filters" -msgstr "" - -#: logview/src/logview-findbar.c:169 -msgid "_Find:" -msgstr "" - -#: logview/src/logview-findbar.c:184 -msgid "Find Previous" -msgstr "" - -#: logview/src/logview-findbar.c:187 -msgid "Find previous occurrence of the search string" -msgstr "" - -#: logview/src/logview-findbar.c:192 -msgid "Find Next" -msgstr "" - -#: logview/src/logview-findbar.c:195 -msgid "Find next occurrence of the search string" -msgstr "" - -#: logview/src/logview-findbar.c:202 -msgid "Clear the search string" -msgstr "" - -#: logview/src/logview-log.c:589 -msgid "Error while uncompressing the GZipped log. The file might be corrupt." -msgstr "" - -#: logview/src/logview-log.c:635 -msgid "You don't have enough permissions to read the file." -msgstr "" - -#: logview/src/logview-log.c:650 -msgid "The file is not a regular file or is not a text file." -msgstr "" - -#: logview/src/logview-log.c:743 -msgid "This version of System Log does not support GZipped logs." -msgstr "" - -#: logview/src/logview-loglist.c:103 -msgid "%A, %e %b" -msgstr "" - -#: logview/src/logview-loglist.c:314 -msgid "Loading..." -msgstr "" - -#: logview/src/logview-main.c:48 -#, c-format -msgid "" -"%s - Version %s\n" -"Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n" -"Copyright (C) 2011-2021 MATE developers.\n" -msgstr "" - -#: logview/src/logview-main.c:64 -msgid "Show the application's version" -msgstr "" - -#: logview/src/logview-main.c:66 -msgid "[LOGFILE...]" -msgstr "" - -#: logview/src/logview-main.c:70 -msgid " - Browse and monitor logs" -msgstr "" - -#: logview/src/logview-main.c:107 -msgid "Log Viewer" -msgstr "" - -#: logview/src/logview-window.c:41 logview/src/logview-window.c:771 -msgid "System Log Viewer" -msgstr "" - -#: logview/src/logview-window.c:216 -#, c-format -msgid "last update: %s" -msgstr "" - -#: logview/src/logview-window.c:220 -#, c-format -msgid "%d lines (%s) - %s" -msgstr "" - -#: logview/src/logview-window.c:325 -msgid "Open Log" -msgstr "" - -#: logview/src/logview-window.c:364 -#, c-format -msgid "There was an error displaying help: %s" -msgstr "" - -#: logview/src/logview-window.c:478 -msgid "Wrapped" -msgstr "" - -#: logview/src/logview-window.c:493 -#: mate-dictionary/libgdict/gdict-defbox.c:1125 -#: mate-dictionary/libgdict/gdict-defbox.c:1219 -#: mate-dictionary/libgdict/gdict-defbox.c:1253 -msgid "Not found" -msgstr "" - -#: logview/src/logview-window.c:773 -msgid "About System Log Viewer" -msgstr "" - -#: logview/src/logview-window.c:774 -msgid "" -"Copyright © 1998-2008 Free Software Foundation, Inc.\n" -"Copyright © 2011-2021 MATE developers" -msgstr "" - -#: logview/src/logview-window.c:778 -msgid "View, monitor or analyze your system logs in a gradual manner." -msgstr "" - -#: logview/src/logview-window.c:821 mate-dictionary/src/gdict-window.c:1258 -msgid "_File" -msgstr "" - -#: logview/src/logview-window.c:824 -msgid "_Filters" -msgstr "" - -#: logview/src/logview-window.c:827 -msgid "_Open..." -msgstr "" - -#: logview/src/logview-window.c:827 -msgid "Open a log from file" -msgstr "" - -#: logview/src/logview-window.c:829 -msgid "Close this log" -msgstr "" - -#: logview/src/logview-window.c:831 -msgid "_Quit" -msgstr "" - -#: logview/src/logview-window.c:831 -msgid "Quit the log viewer" -msgstr "" - -#: logview/src/logview-window.c:834 mate-dictionary/src/gdict-window.c:1277 -msgid "_Copy" -msgstr "" - -#: logview/src/logview-window.c:834 -msgid "Copy the selection" -msgstr "" - -#: logview/src/logview-window.c:836 mate-dictionary/src/gdict-window.c:1279 -msgid "Select _All" -msgstr "" - -#: logview/src/logview-window.c:836 -msgid "Select the entire log" -msgstr "" - -#: logview/src/logview-window.c:838 -msgid "_Find..." -msgstr "" - -#: logview/src/logview-window.c:838 -msgid "Find a word or phrase in the log" -msgstr "" - -#: logview/src/logview-window.c:841 -msgid "Zoom _In" -msgstr "" - -#: logview/src/logview-window.c:841 -msgid "Bigger text size" -msgstr "" - -#: logview/src/logview-window.c:843 -msgid "Zoom _Out" -msgstr "" - -#: logview/src/logview-window.c:843 -msgid "Smaller text size" -msgstr "" - -#: logview/src/logview-window.c:845 -msgid "_Normal Size" -msgstr "" - -#: logview/src/logview-window.c:845 -msgid "Normal text size" -msgstr "" - -#: logview/src/logview-window.c:848 -msgid "Manage Filters" -msgstr "" - -#: logview/src/logview-window.c:848 -msgid "Manage filters" -msgstr "" - -#: logview/src/logview-window.c:851 -msgid "Open the help contents for the log viewer" -msgstr "" - -#: logview/src/logview-window.c:853 mate-dictionary/src/gdict-applet.c:1176 -#: mate-dictionary/src/gdict-window.c:1314 -msgid "_About" -msgstr "" - -#: logview/src/logview-window.c:853 -msgid "Show the about dialog for the log viewer" -msgstr "" - -#: logview/src/logview-window.c:858 -msgid "_Statusbar" -msgstr "" - -#: logview/src/logview-window.c:858 -msgid "Show Status Bar" -msgstr "" - -#: logview/src/logview-window.c:860 -msgid "Side _Pane" -msgstr "" - -#: logview/src/logview-window.c:860 -msgid "Show Side Pane" -msgstr "" - -#: logview/src/logview-window.c:862 -msgid "Show matches only" -msgstr "" - -#: logview/src/logview-window.c:862 -msgid "Only show lines that match one of the given filters" -msgstr "" - -#: logview/src/logview-window.c:994 -#, c-format -msgid "Can't read from \"%s\"" -msgstr "" - -#: logview/src/logview-window.c:1419 -msgid "Version: " -msgstr "" - -#: logview/src/logview-window.c:1525 -msgid "Could not open the following files:" -msgstr "" - -#: mate-dictionary/data/default.desktop.in:3 -msgid "Default" -msgstr "" - -#: mate-dictionary/data/default.desktop.in:4 -msgid "Default Dictionary Server" -msgstr "" - -#: mate-dictionary/data/mate-dictionary.desktop.in.in:3 -#: mate-dictionary/data/mate-dictionary.appdata.xml.in:7 -msgid "MATE Dictionary" -msgstr "" - -#: mate-dictionary/data/mate-dictionary.desktop.in.in:4 -msgid "Check word definitions and spellings in an online dictionary" -msgstr "" - -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: mate-dictionary/data/mate-dictionary.desktop.in.in:13 -msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" -msgstr "" - -#: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 -msgid "A dictionary for MATE Desktop" -msgstr "" - -#: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 -msgid "" -"MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " -"query." -msgstr "" - -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 -msgid "Dictionary Applet Factory" -msgstr "" - -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:6 -msgid "Factory for the dictionary applet" -msgstr "" - -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:9 -msgid "Dictionary Look up" -msgstr "" - -#: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:10 -msgid "Look up words in a dictionary" -msgstr "" - -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:6 -msgid "The default database to use" -msgstr "" - -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:7 -msgid "" -"The name of the default individual database or meta-database to use on a " -"dictionary source. An exclamation mark (\"!\") means that all the databases " -"present in a dictionary source should be searched" -msgstr "" - -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 -msgid "The default search strategy to use" -msgstr "" - -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:12 -msgid "" -"The name of the default search strategy to use on a dictionary source, if " -"available. The default strategy is 'exact', that is match exact words." -msgstr "" - -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 -msgid "The font to be used when printing" -msgstr "" - -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:17 -msgid "The font to be used when printing a definition." -msgstr "" - -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:21 -msgid "The name of the dictionary source used" -msgstr "" - -#: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22 -msgid "" -"The name of the dictionary source used to retrieve the definitions of words." -msgstr "" - -#: mate-dictionary/data/thai.desktop.in:3 -msgid "Thai" -msgstr "" - -#: mate-dictionary/data/thai.desktop.in:4 -msgid "Longdo Thai-English Dictionaries" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:283 -msgid "Client Name" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:284 -msgid "The name of the client of the context object" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:297 -msgid "Hostname" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:298 -msgid "The hostname of the dictionary server to connect to" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:311 -msgid "Port" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:312 -msgid "The port of the dictionary server to connect to" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:327 -msgid "Status" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:328 -msgid "The status code as returned by the dictionary server" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:772 -#, c-format -msgid "No connection to the dictionary server at '%s:%d'" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1052 -#, c-format -msgid "Lookup failed for hostname '%s': no suitable resources found" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1083 -#, c-format -msgid "Lookup failed for host '%s': %s" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1117 -#, c-format -msgid "Lookup failed for host '%s': host not found" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1169 -#, c-format -msgid "" -"Unable to connect to the dictionary server at '%s:%d'. The server replied " -"with code %d (server down)" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1188 -#, c-format -msgid "" -"Unable to parse the dictionary server reply\n" -": '%s'" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1217 -#, c-format -msgid "No definitions found for '%s'" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1232 -#, c-format -msgid "Invalid database '%s'" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1247 -#, c-format -msgid "Invalid strategy '%s'" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1262 -#, c-format -msgid "Bad command '%s'" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1277 -#, c-format -msgid "Bad parameters for command '%s'" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1292 -#, c-format -msgid "No databases found on dictionary server at '%s'" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1307 -#, c-format -msgid "No strategies found on dictionary server at '%s'" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1732 -#, c-format -msgid "Connection failed to the dictionary server at %s:%d" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1771 -#, c-format -msgid "" -"Error while reading reply from server:\n" -"%s" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1844 -#, c-format -msgid "Connection timeout for the dictionary server at '%s:%d'" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1878 -msgid "No hostname defined for the dictionary server" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1914 -#: mate-dictionary/libgdict/gdict-client-context.c:1929 -msgid "Unable to create socket" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1955 -#, c-format -msgid "Unable to set the channel as non-blocking: %s" -msgstr "" - -#: mate-dictionary/libgdict/gdict-client-context.c:1970 -#, c-format -msgid "Unable to connect to the dictionary server at '%s:%d'" -msgstr "" - -#: mate-dictionary/libgdict/gdict-context.c:220 -msgid "Local Only" -msgstr "" - -#: mate-dictionary/libgdict/gdict-context.c:221 -msgid "Whether the context uses only local dictionaries or not" -msgstr "" - -#: mate-dictionary/libgdict/gdict-database-chooser.c:376 -msgid "Reload the list of available databases" -msgstr "" - -#: mate-dictionary/libgdict/gdict-database-chooser.c:388 -msgid "Clear the list of available databases" -msgstr "" - -#: mate-dictionary/libgdict/gdict-database-chooser.c:836 -#: mate-dictionary/libgdict/gdict-speller.c:773 -#: mate-dictionary/libgdict/gdict-strategy-chooser.c:783 -msgid "Error while matching" -msgstr "" - -#: mate-dictionary/libgdict/gdict-defbox.c:1314 -msgid "F_ind:" -msgstr "" - -#: mate-dictionary/libgdict/gdict-defbox.c:1327 -msgid "_Previous" -msgstr "" - -#: mate-dictionary/libgdict/gdict-defbox.c:1335 -msgid "_Next" -msgstr "" - -#: mate-dictionary/libgdict/gdict-defbox.c:2483 -msgid "Error while looking up definition" -msgstr "" - -#: mate-dictionary/libgdict/gdict-defbox.c:2525 -#: mate-dictionary/libgdict/gdict-speller.c:731 -msgid "Another search is in progress" -msgstr "" - -#: mate-dictionary/libgdict/gdict-defbox.c:2526 -#: mate-dictionary/libgdict/gdict-speller.c:732 -msgid "Please wait until the current search ends." -msgstr "" - -#: mate-dictionary/libgdict/gdict-defbox.c:2565 -msgid "Error while retrieving the definition" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:229 -msgid "Filename" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:230 -msgid "The filename used by this dictionary source" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:244 -msgid "The display name of this dictionary source" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:257 -msgid "Description" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:258 -msgid "The description of this dictionary source" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:271 -#: mate-dictionary/libgdict/gdict-speller.c:375 -msgid "Database" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:272 -msgid "The default database of this dictionary source" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:285 -#: mate-dictionary/libgdict/gdict-speller.c:382 -msgid "Strategy" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:286 -msgid "The default strategy of this dictionary source" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:299 -msgid "Transport" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:300 -msgid "The transport mechanism used by this dictionary source" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:314 -#: mate-dictionary/libgdict/gdict-speller.c:368 -msgid "Context" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:315 -msgid "The GdictContext bound to this source" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:408 -#, c-format -msgid "Invalid transport type '%d'" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:436 -#, c-format -msgid "No '%s' group found inside the dictionary source definition" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:452 -#: mate-dictionary/libgdict/gdict-source.c:476 -#: mate-dictionary/libgdict/gdict-source.c:500 -#: mate-dictionary/libgdict/gdict-source.c:525 -#, c-format -msgid "Unable to get the '%s' key inside the dictionary source definition: %s" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:550 -#, c-format -msgid "" -"Unable to get the '%s' key inside the dictionary source definition file: %s" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:736 -msgid "Dictionary source does not have name" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source.c:745 -#, c-format -msgid "Dictionary source '%s' has invalid transport '%s'" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source-chooser.c:283 -msgid "Reload the list of available sources" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source-loader.c:163 -msgid "Paths" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source-loader.c:164 -msgid "Search paths used by this object" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source-loader.c:176 -msgid "Sources" -msgstr "" - -#: mate-dictionary/libgdict/gdict-source-loader.c:177 -msgid "Dictionary sources found" -msgstr "" - -#: mate-dictionary/libgdict/gdict-speller.c:347 -msgid "Clear the list of similar words" -msgstr "" - -#: mate-dictionary/libgdict/gdict-speller.c:369 -msgid "The GdictContext object used to get the word definition" -msgstr "" - -#: mate-dictionary/libgdict/gdict-speller.c:376 -msgid "The database used to query the GdictContext" -msgstr "" - -#: mate-dictionary/libgdict/gdict-speller.c:383 -msgid "The strategy used to query the GdictContext" -msgstr "" - -#: mate-dictionary/libgdict/gdict-strategy-chooser.c:358 -msgid "Reload the list of available strategies" -msgstr "" - -#: mate-dictionary/libgdict/gdict-strategy-chooser.c:370 -msgid "Clear the list of available strategies" -msgstr "" - -#: mate-dictionary/libgdict/gdict-utils.c:97 -msgid "GDict debugging flags to set" -msgstr "" - -#: mate-dictionary/libgdict/gdict-utils.c:97 -#: mate-dictionary/libgdict/gdict-utils.c:99 -msgid "FLAGS" -msgstr "" - -#: mate-dictionary/libgdict/gdict-utils.c:99 -msgid "GDict debugging flags to unset" -msgstr "" - -#: mate-dictionary/libgdict/gdict-utils.c:153 -msgid "GDict Options" -msgstr "" - -#: mate-dictionary/libgdict/gdict-utils.c:154 -msgid "Show GDict Options" -msgstr "" - -#: mate-dictionary/src/gdict-about.c:54 -msgid "Look up words or terms in a dictionary source." -msgstr "" - -#: mate-dictionary/src/gdict-about.c:82 mate-dictionary/src/gdict-app.c:363 -#: mate-dictionary/src/gdict-window.c:580 -#: mate-dictionary/src/gdict-window.c:1864 -msgid "Dictionary" -msgstr "" - -#: mate-dictionary/src/gdict-about.c:84 -msgid "About Dictionary" -msgstr "" - -#: mate-dictionary/src/gdict-about.c:85 -msgid "" -"Copyright © 2005-2006 Emmanuele Bassi\n" -"Copyright © 2011-2021 MATE developers" -msgstr "" - -#. Translators: the first is the word found, the second is the -#. * database name and the last is the definition's text; please -#. * keep the new lines. -#: mate-dictionary/src/gdict-app.c:207 -#, c-format -msgid "" -"Definition for '%s'\n" -" From '%s':\n" -"\n" -"%s\n" -msgstr "" - -#: mate-dictionary/src/gdict-app.c:221 -#, c-format -msgid "Error: %s\n" -msgstr "" - -#: mate-dictionary/src/gdict-app.c:247 -msgid "See mate-dictionary --help for usage\n" -msgstr "" - -#: mate-dictionary/src/gdict-app.c:260 -msgid "Unable to find a suitable dictionary source" -msgstr "" - -#: mate-dictionary/src/gdict-app.c:294 -#, c-format -msgid "" -"Error while looking up the definition of \"%s\":\n" -"%s" -msgstr "" - -#: mate-dictionary/src/gdict-app.c:323 mate-dictionary/src/gdict-app.c:333 -msgid "Words to look up" -msgstr "" - -#: mate-dictionary/src/gdict-app.c:323 mate-dictionary/src/gdict-app.c:325 -#: mate-dictionary/src/gdict-app.c:333 -msgid "word" -msgstr "" - -#: mate-dictionary/src/gdict-app.c:325 -msgid "Words to match" -msgstr "" - -#: mate-dictionary/src/gdict-app.c:327 -msgid "Dictionary source to use" -msgstr "" - -#: mate-dictionary/src/gdict-app.c:327 -msgid "source" -msgstr "" - -#: mate-dictionary/src/gdict-app.c:329 -msgid "Print result to the console" -msgstr "" - -#: mate-dictionary/src/gdict-app.c:331 -msgid "Database to use" -msgstr "" - -#: mate-dictionary/src/gdict-app.c:331 -msgid "db" -msgstr "" - -#: mate-dictionary/src/gdict-app.c:343 -msgid " - Look up words in dictionaries" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:194 -#: mate-dictionary/src/gdict-window.c:935 -msgid "Save a Copy" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:204 -#: mate-dictionary/src/gdict-window.c:945 -msgid "Untitled document" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:225 -#: mate-dictionary/src/gdict-window.c:966 -#, c-format -msgid "Error while writing to '%s'" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:350 -msgid "Clear the definitions found" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:352 -msgid "Clear definition" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:353 -msgid "Clear the text of the definition" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:365 -msgid "Print the definitions found" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:367 -msgid "Print definition" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:368 -msgid "Print the text of the definition" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:380 -msgid "Save the definitions found" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:382 -msgid "Save definition" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:383 -msgid "Save the text of the definition to a file" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:520 -msgid "Click to view the dictionary window" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:522 -msgid "Toggle dictionary window" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:523 -msgid "Show or hide the definition window" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:574 -msgid "Type the word you want to look up" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:576 -msgid "Dictionary entry" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:577 -msgid "Look up words in dictionaries" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:705 -#: mate-dictionary/src/gdict-window.c:1077 -msgid "Dictionary Preferences" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:729 -#: mate-dictionary/src/gdict-pref-dialog.c:496 -#: mate-dictionary/src/gdict-source-dialog.c:477 -#: mate-dictionary/src/gdict-window.c:1224 -msgid "There was an error while displaying help" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:868 -#: mate-dictionary/src/gdict-window.c:495 -#, c-format -msgid "No dictionary source available with name '%s'" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:872 -#: mate-dictionary/src/gdict-window.c:499 -msgid "Unable to find dictionary source" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:888 -#: mate-dictionary/src/gdict-window.c:515 -#, c-format -msgid "No context available for source '%s'" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:892 -#: mate-dictionary/src/gdict-window.c:519 -msgid "Unable to create a context" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:1158 -msgid "_Look Up Selected Text" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:1161 -msgid "Cl_ear" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:1164 -msgid "_Print" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:1167 -#: mate-screenshot/data/mate-screenshot.ui:109 -msgid "_Save" -msgstr "" - -#: mate-dictionary/src/gdict-applet.c:1170 -msgid "Preferences" -msgstr "" - -#: mate-dictionary/src/gdict-common.c:77 -#, c-format -msgid "Unable to rename file '%s' to '%s': %s" -msgstr "" - -#: mate-dictionary/src/gdict-common.c:101 -#: mate-dictionary/src/gdict-common.c:124 -#, c-format -msgid "Unable to create the data directory '%s': %s" -msgstr "" - -#: mate-dictionary/src/gdict-pref-dialog.c:238 -#: mate-dictionary/src/gdict-pref-dialog.c:427 -msgid "Edit Dictionary Source" -msgstr "" - -#: mate-dictionary/src/gdict-pref-dialog.c:302 -msgid "Add Dictionary Source" -msgstr "" - -#: mate-dictionary/src/gdict-pref-dialog.c:347 -#, c-format -msgid "Remove \"%s\"?" -msgstr "" - -#: mate-dictionary/src/gdict-pref-dialog.c:349 -msgid "This will permanently remove the dictionary source from the list." -msgstr "" - -#: mate-dictionary/src/gdict-pref-dialog.c:379 -#, c-format -msgid "Unable to remove source '%s'" -msgstr "" - -#: mate-dictionary/src/gdict-pref-dialog.c:713 -msgid "Add a new dictionary source" -msgstr "" - -#: mate-dictionary/src/gdict-pref-dialog.c:719 -msgid "Remove the currently selected dictionary source" -msgstr "" - -#: mate-dictionary/src/gdict-pref-dialog.c:725 -msgid "Edit the currently selected dictionary source" -msgstr "" - -#: mate-dictionary/src/gdict-pref-dialog.c:733 -msgid "Set the font used for printing the definitions" -msgstr "" - -#: mate-dictionary/src/gdict-print.c:238 mate-dictionary/src/gdict-print.c:302 -#, c-format -msgid "Unable to display the preview: %s" -msgstr "" - -#: mate-dictionary/src/gdict-source-dialog.c:339 -#: mate-dictionary/src/gdict-source-dialog.c:432 -msgid "Unable to create a source file" -msgstr "" - -#: mate-dictionary/src/gdict-source-dialog.c:357 -#: mate-dictionary/src/gdict-source-dialog.c:450 -msgid "Unable to save source file" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:290 -#, c-format -msgid "Searching for '%s'..." -msgstr "" - -#: mate-dictionary/src/gdict-window.c:322 -#: mate-dictionary/src/gdict-window.c:379 -msgid "No definitions found" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:324 -#, c-format -msgid "A definition found" -msgid_plural "%d definitions found" -msgstr[0] "" -msgstr[1] "" - -#: mate-dictionary/src/gdict-window.c:578 -#, c-format -msgid "%s - Dictionary" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1261 -msgid "_Go" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1265 -#: mate-screenshot/data/mate-screenshot.ui:58 -msgid "_New" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1266 -msgid "New look up" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1267 -msgid "_Save a Copy..." -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1269 -msgid "P_review..." -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1270 -msgid "Preview this document" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1271 -msgid "_Print..." -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1272 -msgid "Print this document" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1281 -msgid "_Find" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1282 -msgid "Find a word or phrase in the document" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1284 -msgid "Find Ne_xt" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1286 -msgid "Find Pre_vious" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1288 -msgid "_Preferences" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1292 -msgid "_Previous Definition" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1293 -msgid "Go to the previous definition" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1294 -msgid "_Next Definition" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1295 -msgid "Go to the next definition" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1296 -msgid "_First Definition" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1297 -msgid "Go to the first definition" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1298 -msgid "_Last Definition" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1299 -msgid "Go to the last definition" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1302 -msgid "Similar _Words" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1304 -msgid "Dictionary Sources" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1306 -msgid "Available _Databases" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1308 -msgid "Available St_rategies" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1325 -msgid "_Sidebar" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1327 -msgid "S_tatusbar" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1392 -#, c-format -msgid "Dictionary source `%s' selected" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1413 -#, c-format -msgid "Strategy `%s' selected" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1433 -#, c-format -msgid "Database `%s' selected" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1453 -#, c-format -msgid "Word `%s' selected" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1478 -msgid "Double-click on the word to look up" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1484 -msgid "Double-click on the matching strategy to use" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1489 -msgid "Double-click on the source to use" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1498 -msgid "Double-click on the database to use" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1670 -msgid "Look _up:" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1745 -msgid "Similar words" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1758 -msgid "Available dictionaries" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1776 -msgid "Available strategies" -msgstr "" - -#: mate-dictionary/src/gdict-window.c:1792 -msgid "Dictionary sources" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-preferences.ui:27 -msgid "_Select a dictionary source for looking up words:" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-preferences.ui:132 -#: mate-dictionary/data/mate-dictionary-source.ui:148 -msgid "Source" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-preferences.ui:162 -msgid "_Print font:" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-preferences.ui:216 -msgid "Print" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-source.ui:38 -msgid "_Description:" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-source.ui:53 -msgid "Source Name" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-source.ui:65 -msgid "_Transport:" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-source.ui:96 -msgid "H_ostname:" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-source.ui:175 -msgid "Dictionaries" -msgstr "" - -#: mate-dictionary/data/mate-dictionary-source.ui:200 -msgid "Strategies" -msgstr "" - -#: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:3 -#: mate-disk-image-mounter/src/main.c:62 -msgid "MATE Disk Image Mounter" -msgstr "" - -#: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:4 -msgid "Attach and mount one or more disk image files" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:60 -msgid "An error occurred" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:81 -msgid "Allow writing to the image" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:101 -msgid "All Files" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:105 -msgid "Disk Images (*.img, *.iso)" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:121 -msgid "Select Disk Image(s) to Mount" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:125 -msgid "_Mount" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:131 -msgid "Set up _read-only mount" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:132 -msgid "" -"If checked, the mount will be read-only. This is useful if you don't want " -"the underlying disk image to be modified" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:178 -#, c-format -msgid "Error connecting to udisks daemon: %s (%s, %d)" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:186 -msgid "Attach and mount one or more disk image files." -msgstr "" - -#: mate-disk-image-mounter/src/main.c:234 -#, c-format -msgid "Cannot open `%s' - maybe the volume isn't mounted?" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:241 -#, c-format -msgid "Error opening `%s': %m" -msgstr "" - -#: mate-disk-image-mounter/src/main.c:262 -#, c-format -msgid "Error attaching disk image: %s (%s, %d)" -msgstr "" - -#: mate-screenshot/data/mate-screenshot.appdata.xml.in:7 -msgid "MATE Screenshot" -msgstr "" - -#: mate-screenshot/data/mate-screenshot.appdata.xml.in:8 -msgid "A screenshot utility for MATE Desktop" -msgstr "" - -#: mate-screenshot/data/mate-screenshot.appdata.xml.in:10 -msgid "" -"MATE Screenshot is a simple utility that lets you capture screenshots of " -"your desktop or of application windows. You can select to copy them to the " -"system clipboard or save them in Portable Network Graphics (.png) image " -"format." -msgstr "" - -#: mate-screenshot/data/mate-screenshot.desktop.in:3 -#: mate-screenshot/src/mate-screenshot.c:519 -#: mate-screenshot/src/mate-screenshot.c:527 -msgid "Take Screenshot" -msgstr "" - -#: mate-screenshot/data/mate-screenshot.desktop.in:4 -msgid "Save images of your desktop or individual windows" -msgstr "" - -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -#: mate-screenshot/data/mate-screenshot.desktop.in:13 -msgid "MATE;screenshot;snapshot;desktop;window;image;" -msgstr "" - -#: mate-screenshot/data/mate-screenshot.ui:24 -msgid "Save Screenshot" -msgstr "" - -#: mate-screenshot/data/mate-screenshot.ui:74 -msgid "C_opy to Clipboard" -msgstr "" - -#: mate-screenshot/data/mate-screenshot.ui:192 -msgid "Save in _folder:" -msgstr "" - -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:5 -msgid "Screenshot delay" -msgstr "" - -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:6 -msgid "The number of seconds to wait before taking the screenshot." -msgstr "" - -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:10 -msgid "Screenshot directory" -msgstr "" - -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:11 -msgid "The directory the last screenshot was saved in." -msgstr "" - -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:15 -msgid "Include Border" -msgstr "" - -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:16 -msgid "Include the window manager border along with the screenshot" -msgstr "" - -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:20 -msgid "Include Pointer" -msgstr "" - -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:21 -msgid "Include the pointer in the screenshot" -msgstr "" - -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:25 -msgid "Border Effect" -msgstr "" - -#: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:26 -msgid "" -"Effect to add to the outside of a border. Possible values are \"shadow\", " -"\"none\", and \"border\"." -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:138 -msgid "Error loading the help page" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:250 -msgid "None" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:251 -msgid "Drop shadow" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:252 -msgid "Border" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:353 -msgid "Include _pointer" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:362 -msgid "Include the window _border" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:377 -msgid "Apply _effect:" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:437 -msgid "Grab the whole _desktop" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:449 -msgid "Grab the current _window" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:461 -msgid "Select _area to grab" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:479 -msgid "Grab _after a delay of" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:500 -#: mate-screenshot/src/mate-screenshot.c:1320 -msgid "seconds" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:528 -msgid "Effects" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:532 -msgid "Take _Screenshot" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:651 -msgid "Error while saving screenshot" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:654 -#, c-format -msgid "" -"Impossible to save the screenshot to %s.\n" -" Error was %s.\n" -" Please choose another location and retry." -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:796 -msgid "Screenshot taken" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:851 -msgid "Unable to take a screenshot of the current window" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:916 -#, c-format -msgid "Screenshot at %s.png" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:923 -#, c-format -msgid "Screenshot at %s - %d.png" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1315 -msgid "Grab a window instead of the entire screen" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1316 -msgid "Grab an area of the screen instead of the entire screen" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1317 -msgid "Send grabbed area directly to the clipboard" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1318 -msgid "Include the window border with the screenshot" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1319 -msgid "Remove the window border from the screenshot" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1320 -msgid "Take screenshot after specified delay [in seconds]" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1321 -msgid "Effect to add to the border (shadow, border or none)" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1321 -msgid "effect" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1322 -msgid "Interactively set options" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1323 -msgid "Print version information and exit" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1334 -msgid "Take a picture of the screen" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1357 -msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" -msgstr "" - -#: mate-screenshot/src/mate-screenshot.c:1363 -msgid "" -"Conflicting options: --window and --area should not be used at the same " -"time.\n" -msgstr "" - -#: mate-screenshot/src/screenshot-dialog.c:210 -#, c-format -msgid "" -"Error loading UI definition file for the screenshot program: \n" -"%s\n" -"\n" -"Please check your installation of mate-utils." -msgstr "" - -#: mate-screenshot/src/screenshot-dialog.c:233 -msgid "Select a folder" -msgstr "" - -#: mate-screenshot/src/screenshot-dialog.c:328 -#: mate-screenshot/src/screenshot-save.c:202 -msgid "Screenshot.png" -msgstr "" - -#: mate-screenshot/src/screenshot-save.c:60 -#, c-format -msgid "" -"Unable to clear the temporary folder:\n" -"%s" -msgstr "" - -#: mate-screenshot/src/screenshot-save.c:98 -msgid "" -"The child save process unexpectedly exited. We are unable to write the " -"screenshot to disk." -msgstr "" - -#: mate-screenshot/src/screenshot-save.c:231 -msgid "Unknown error saving screenshot to disk" -msgstr "" - -#: mate-screenshot/src/screenshot-xfer.c:74 -msgid "File already exists" -msgstr "" - -#: mate-screenshot/src/screenshot-xfer.c:77 -#, c-format -msgid "The file \"%s\" already exists. Would you like to replace it?" -msgstr "" - -#: mate-screenshot/src/screenshot-xfer.c:122 -msgid "Saving file..." -msgstr "" - -#: mate-screenshot/src/screenshot-xfer.c:292 -msgid "Can't access source file" -msgstr "" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/mg.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/mg.gmo differ diff -Nru mate-utils-1.26.0/po/mg.po mate-utils-1.26.1/po/mg.po --- mate-utils-1.26.0/po/mg.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/mg.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Malagasy (https://www.transifex.com/mate/teams/13566/mg/)\n" -"Language: mg\n" +"Language-Team: Malagasy (https://app.transifex.com/mate/teams/13566/mg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: mg\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -219,8 +220,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -584,8 +585,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -629,9 +630,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -640,7 +641,8 @@ "Hitady tahirin-kevitra sy laha-tahiry araka ny anarany na ny mpiatiny " "anatin'ity solosaina ity" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -676,13 +678,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Io famaha io dia mamaritra ny sori-dàlana tsy hanaovana karoka faingana. " -"Ekena ireo marika ankapobe '*' ary '?'. /mnt/*, /media/*, /dev/*, /tmp/*, /" -"proc/*, ary /var/* ireo sanda tsotra." +"Ekena ireo marika ankapobe '*' ary '?'. /mnt/*, /media/*, /dev/*, /tmp/*, " +"/proc/*, ary /var/* ireo sanda tsotra." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -705,14 +707,14 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Io famaha io dia mamaritra ireo sori-dàlana tsy anaovan'ny fitaovana " -"fikarohana fizahana fanindroa rehefa manao karoka faingana. Ny baiko find no " -"ampiasain'ny fizahana fanindroa rehefa hitady rakitra. Ny tanjon'ny fizahana " -"fanindroa dia ny fitadiavana rakitra izay tsy mbola voasokajy. Ekena ireo " -"marika ankapobe '*' and '?'. / no sanda tsotra." +"fikarohana fizahana fanindroa rehefa manao karoka faingana. Ny baiko find no" +" ampiasain'ny fizahana fanindroa rehefa hitady rakitra. Ny tanjon'ny " +"fizahana fanindroa dia ny fitadiavana rakitra izay tsy mbola voasokajy. " +"Ekena ireo marika ankapobe '*' and '?'. / no sanda tsotra." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -732,14 +734,14 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Io famaha io dia mamaritra ny sakan'ny fikandrana ary natao itadidiana ny " "haben'ilay fikandran'ny fitaovam-pikarohana isaky ny session. Ny famaritana " -"azy ho -1 dia hahatonga ny fikandran'ny fitaovam-pikarohana hampiasa ny saka " -"tsotra." +"azy ho -1 dia hahatonga ny fikandran'ny fitaovam-pikarohana hampiasa ny saka" +" tsotra." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -748,8 +750,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Io famaha io dia mamaritra ny haavon'ny fikandrana ary natao itadidiana ny " "haben'ilay fikandran'ny fitaovam-pikarohana isaky ny session. Ny famaritana " @@ -779,8 +781,8 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"Io famaha io dia milaza raha toa ka nekena ny safidy \"Misy ilay lahabolana" -"\" rehefa alefa ny fitaovam-pikarohana." +"Io famaha io dia milaza raha toa ka nekena ny safidy \"Misy ilay " +"lahabolana\" rehefa alefa ny fitaovam-pikarohana." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" @@ -827,16 +829,16 @@ "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"Io famaha io dia milaza raha toa ka nekena ny safidy \"Fananan'ny mpampiasa" -"\" rehefa alefa ny fitaovam-pikarohana." +"Io famaha io dia milaza raha toa ka nekena ny safidy \"Fananan'ny " +"mpampiasa\" rehefa alefa ny fitaovam-pikarohana." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"Io famaha io dia milaza raha toa ka nekena ny safidy \"Fananan'ny vondrona\" " -"rehefa alefa ny fitaovam-pikarohana." +"Io famaha io dia milaza raha toa ka nekena ny safidy \"Fananan'ny vondrona\"" +" rehefa alefa ny fitaovam-pikarohana." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" @@ -856,8 +858,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Io famaha io dia milaza raha toa ka nekena ny safidy \"Mifanaraka amin'ny " "fiteny mahazatra ilay anarana\" rehefa alefa ny fitaovam-pikarohana." @@ -884,62 +886,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Rakitra tsy mety ho .desktop rakitra" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Mandefa %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Tsy fandefa ilay zavatra tanatin'ny karazan-tsafidy" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Manatsahatra ny fifandraisana amin'ny mpandrindra session" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "RAKITRA" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Mamaritra ny IDn'ny fandrindrana session" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Maneho ny safidin'ny fandrindrana session" @@ -1369,8 +1371,7 @@ #: gsearchtool/src/gsearchtool-callbacks.c:759 #, c-format msgid "Trash is unavailable. Could not move \"%s\" to the trash." -msgstr "" -"Tsy mety ampiasaina ny daba. Tsy afaka nandefa ny \"%s\" tany anaty daba." +msgstr "Tsy mety ampiasaina ny daba. Tsy afaka nandefa ny \"%s\" tany anaty daba." #: gsearchtool/src/gsearchtool-callbacks.c:803 #, c-format @@ -1560,7 +1561,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1571,11 +1573,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Mamaritra ilay raki-tatitra aseho rehefa manomboka. Na /var/adm/messages na /" -"var/log/messages ny sanda tsotra, arakaraka ny rafitra ampiasainao." +"Mamaritra ilay raki-tatitra aseho rehefa manomboka. Na /var/adm/messages na " +"/var/log/messages ny sanda tsotra, arakaraka ny rafitra ampiasainao." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1587,8 +1589,8 @@ "main tree view. The default is taken from the default terminal font size." msgstr "" "Mamaritra ny haben'ilay endri-tsoratra tsy miova saka anehoana ilay tatitra " -"eo amin'ny sehon'ny hazo voaohany indrindra. Nalaina tao amin'ny haben'endri-" -"tsotra tsotran'ny terminal ny sanda tsotra" +"eo amin'ny sehon'ny hazo voaohany indrindra. Nalaina tao amin'ny " +"haben'endri-tsotra tsotran'ny terminal ny sanda tsotra" #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1981,7 +1983,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1993,8 +1996,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2024,9 +2027,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"Ny anaran'ny soratra fototra tsotra iray na meta-database ampiasaina amin'ny " -"loharanon-drakibolana. Ny baraingo (\"!\") dia midika fa tokony ho karohina " -"avokoa ireo soratra fototra rehetra anatina rakibolana iray" +"Ny anaran'ny soratra fototra tsotra iray na meta-database ampiasaina amin'ny" +" loharanon-drakibolana. Ny baraingo (\"!\") dia midika fa tokony ho karohina" +" avokoa ireo soratra fototra rehetra anatina rakibolana iray" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2128,8 +2131,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"Tsy afaka mifandray amin'ny mpizara rakibolana amin'ny'%s:%d'. Fango %d (tsy " -"mandeha ny mpizara) no navalin'ilay mpizara" +"Tsy afaka mifandray amin'ny mpizara rakibolana amin'ny'%s:%d'. Fango %d (tsy" +" mandeha ny mpizara) no navalin'ilay mpizara" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2609,7 +2612,8 @@ #, c-format msgid "No dictionary source available with name '%s'" msgstr "" -"Tsy misy loharanon-drakibolana azo ampiasaina mifanaraka amin'ny anarana '%s'" +"Tsy misy loharanon-drakibolana azo ampiasaina mifanaraka amin'ny anarana " +"'%s'" #: mate-dictionary/src/gdict-applet.c:872 #: mate-dictionary/src/gdict-window.c:499 @@ -3035,7 +3039,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3228,8 +3233,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/mi.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/mi.gmo differ diff -Nru mate-utils-1.26.0/po/mi.po mate-utils-1.26.1/po/mi.po --- mate-utils-1.26.0/po/mi.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/mi.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2018 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Maori (https://www.transifex.com/mate/teams/13566/mi/)\n" -"Language: mi\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Maori (https://app.transifex.com/mate/teams/13566/mi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: mi\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -623,16 +624,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -666,9 +668,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -690,8 +692,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -710,9 +712,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -722,8 +724,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -787,8 +789,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -805,8 +807,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -827,62 +829,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Timata te %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1487,7 +1489,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1498,8 +1501,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1897,7 +1900,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1909,8 +1913,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2924,7 +2928,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3116,8 +3121,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/mk.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/mk.gmo differ diff -Nru mate-utils-1.26.0/po/mk.po mate-utils-1.26.1/po/mk.po --- mate-utils-1.26.0/po/mk.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/mk.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# exoos , 2018 # Stefano Karapetsas , 2021 -# +# exoos , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Macedonian (https://www.transifex.com/mate/teams/13566/mk/)\n" -"Language: mk\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: exoos , 2021\n" +"Language-Team: Macedonian (https://app.transifex.com/mate/teams/13566/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "Провери ја големината на папките и достапниот простор на дискот" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -215,8 +216,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -417,7 +418,8 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." -msgstr "Не можам да се поврзам со серверот. Морате да внесите име на серверот." +msgstr "" +"Не можам да се поврзам со серверот. Морате да внесите име на серверот." #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -477,8 +479,8 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"Содржината на Вашата домашна папка е променета. Одберете скенирање одново за " -"да ги освежите деталите за употребата на дискот." +"Содржината на Вашата домашна папка е променета. Одберете скенирање одново за" +" да ги освежите деталите за употребата на дискот." #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -536,7 +538,8 @@ #: baobab/src/baobab-utils.c:381 msgid "There is no installed viewer capable of displaying the folder." -msgstr "Немате инсталирано прегледувач кој способен за прикажување на папката." +msgstr "" +"Немате инсталирано прегледувач кој способен за прикажување на папката." #: baobab/src/baobab-utils.c:448 #, c-format @@ -582,8 +585,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -627,16 +630,18 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" -msgstr "Лоцирај ги документите и папките на овој компјутер по име или содржина" +msgstr "" +"Лоцирај ги документите и папките на овој компјутер по име или содржина" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -672,13 +677,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Копчето ја одредува патеките кои што ќе ги исклучи алатката за пребарување. " -"Знаците '*' и '?' се поддржани. Стандардните вредности се /mnt/*, /media/*, /" -"dev/*, /tmp/*, /proc/*, и /var/*." +"Знаците '*' и '?' се поддржани. Стандардните вредности се /mnt/*, /media/*, " +"/dev/*, /tmp/*, /proc/*, и /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -701,13 +706,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Ова копче ги одредува патеките кои што ќе бидат исклулени од пребарувањето " "со скенирање. Пребарувањето со скенирање ја користи командата find за да " -"пребарува датотеки. Целта на ова пребарување е да се најдат датотеки кои што " -"не биле индексирани. Знаците '*' и '?' се поддржани. Стандардната вредност " +"пребарува датотеки. Целта на ова пребарување е да се најдат датотеки кои што" +" не биле индексирани. Знаците '*' и '?' се поддржани. Стандардната вредност " "е /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -728,13 +733,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Овој клуч ја дефинира ширината на прозорецот и користи за да ја запомни " -"ширината на прозорецот на алатката за барање низ сесиите. Со поставување на " -"-1 прозорецот за барање ќе ја користи стандардната ширина." +"ширината на прозорецот на алатката за барање низ сесиите. Со поставување на" +" -1 прозорецот за барање ќе ја користи стандардната ширина." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -743,12 +748,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Овој клуч ја дефинира висината на прозорецот и користи за да ја запомни " -"висината на прозорецот на алатката за барање низ сесиите. Со поставување на " -"-1 прозорецот за барање ќе ја користи стандардната висина." +"висината на прозорецот на алатката за барање низ сесиите. Со поставување на" +" -1 прозорецот за барање ќе ја користи стандардната висина." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -774,24 +779,24 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"Ова копче одредува дали е избрана опцијата за пребарување \"Го содржи текстот" -"\"." +"Ова копче одредува дали е избрана опцијата за пребарување \"Го содржи " +"текстот\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"Ова копче одредува дали е избрана опцијата за пребарување \"Датум на промена " -"порано од\"." +"Ова копче одредува дали е избрана опцијата за пребарување \"Датум на промена" +" порано од\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"Ова копче одредува дали е избрана опцијата за пребарување \"Датум на промена " -"подоцна од\"." +"Ова копче одредува дали е избрана опцијата за пребарување \"Датум на промена" +" подоцна од\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" @@ -818,13 +823,13 @@ "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"Ова копче одредува дали е избрана опцијата за пребарување \"Во сопственост на" -"\"." +"Ова копче одредува дали е избрана опцијата за пребарување \"Во сопственост " +"на\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Ова копче одредува дали е избрана опцијата за пребарување \"Во сопственост " "на групата\"." @@ -842,16 +847,16 @@ "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"Ова копче одредува дали е избрана опцијата за пребарување \"Името не содржи" -"\"." +"Ова копче одредува дали е избрана опцијата за пребарување \"Името не " +"содржи\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"Ова копче одредува дали е избрана опцијата за пребарување \"Името се совпаѓа " -"со регуларниот израз\"." +"Ова копче одредува дали е избрана опцијата за пребарување \"Името се совпаѓа" +" со регуларниот израз\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" @@ -866,8 +871,8 @@ "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"Ова копче одредува дали е избрана опцијата за пребарување \"Следи симболички " -"врски\"." +"Ова копче одредува дали е избрана опцијата за пребарување \"Следи симболички" +" врски\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" @@ -875,63 +880,63 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Датотеката не е валидна .desktop датотека" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Непозната верзија на desktop датотеката %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Подигнувам %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Апликацијата не прифаќа документи на командната линија" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Непозната опција за лансирање: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Не можам да пренесеам URl документи во desktop записи чиј што Тип=Врска" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Предметот не може да се лансира" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Исклучи ја врската до менаџерот за сесии" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Одредете ја датотеката со зачуваната конфигурација" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Одредете ид. за менаџмент на сесиите" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Покажи ги опции за управување со сесии" @@ -1132,8 +1137,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"Резултатите од пребарувањето можеби се невалидни. Се појавија грешки додека " -"траеше пребарувањето." +"Резултатите од пребарувањето можеби се невалидни. Се појавија грешки додека" +" траеше пребарувањето." #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1144,8 +1149,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"Резултатите од пребарувањето може да се стари или невалидни. Дали сакате да " -"ја исклучите опцијата за брзо пребарување?" +"Резултатите од пребарувањето може да се стари или невалидни. Дали сакате да" +" ја исклучите опцијата за брзо пребарување?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1259,7 +1264,8 @@ #: gsearchtool/src/gsearchtool.c:2858 msgid "Select the folder or device from which you want to begin the search." msgstr "" -"Внесете го името на папката од каде што сакате да го започнете пребарувањето." +"Внесете го името на папката од каде што сакате да го започнете " +"пребарувањето." #: gsearchtool/src/gsearchtool.c:2876 msgid "Select more _options" @@ -1546,7 +1552,8 @@ msgid "View or monitor system log files" msgstr "Прегледај или набљудувај системски лог датотеки" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1557,11 +1564,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Ја одредува лог датотека која треба да се отвори при подигнување. Стандардна " -"датотека или /var/adm/порака или /var/log/пораки, зависно од вашиот " +"Ја одредува лог датотека која треба да се отвори при подигнување. Стандардна" +" датотека или /var/adm/порака или /var/log/пораки, зависно од вашиот " "оперативен систем." #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1967,7 +1974,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Пребарувај зборови во онлајн речник" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1979,8 +1987,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2010,8 +2018,8 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"Име на базата на податоци за користење на серверот за речници! Дефинира дали " -"mate речникот треба да ги пребарува сите бази на податоци на даден сервер. " +"Име на базата на податоци за користење на серверот за речници! Дефинира дали" +" mate речникот треба да ги пребарува сите бази на податоци на даден сервер. " "Извичникот (\"!\") значи дека сите бази на податоци во изворот на речникот " "ќе бидат пребарани." @@ -2044,7 +2052,8 @@ msgid "" "The name of the dictionary source used to retrieve the definitions of words." msgstr "" -"Името на изворот на речникот употребен за добивање на дефиниции за зборовите." +"Името на изворот на речникот употребен за добивање на дефиниции за " +"зборовите." #: mate-dictionary/data/thai.desktop.in:3 msgid "Thai" @@ -2095,7 +2104,8 @@ #, c-format msgid "Lookup failed for hostname '%s': no suitable resources found" msgstr "" -"Барањето не успеа за името на хостот '%s': не се пронајдени соодветни ресурси" +"Барањето не успеа за името на хостот '%s': не се пронајдени соодветни " +"ресурси" #: mate-dictionary/libgdict/gdict-client-context.c:1083 #, c-format @@ -2113,8 +2123,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"Не можам да се поврзам со серверот на речникот '%s:%d'. Серверот одговори со " -"код %d (Серверот не работи)" +"Не можам да се поврзам со серверот на речникот '%s:%d'. Серверот одговори со" +" код %d (Серверот не работи)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2329,8 +2339,8 @@ msgid "" "Unable to get the '%s' key inside the dictionary source definition file: %s" msgstr "" -"Не можам да го земам '%s' клучот во датотеката со дефиницијата на изворот на " -"речникот: %s" +"Не можам да го земам '%s' клучот во датотеката со дефиницијата на изворот на" +" речникот: %s" #: mate-dictionary/libgdict/gdict-source.c:736 msgid "Dictionary source does not have name" @@ -3018,7 +3028,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Зачувај слики од работната површина или од одредени прозорци" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3215,8 +3226,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ml.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ml.gmo differ diff -Nru mate-utils-1.26.0/po/ml.po mate-utils-1.26.1/po/ml.po --- mate-utils-1.26.0/po/ml.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/ml.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Malayalam (https://www.transifex.com/mate/teams/13566/ml/)\n" -"Language: ml\n" +"Language-Team: Malayalam (https://app.transifex.com/mate/teams/13566/ml/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "ഫോള്‍ഡറിന്റെ വ്യാപ്തിയും ഡിസ്കില്‍ ലഭ്യമായ സ്ഥലവും പരിശോധിയ്ക്കുക" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -53,7 +54,9 @@ #: baobab/data/baobab-dialog-scan-props.ui:81 msgid "Select _devices to include in filesystem scan:" -msgstr "ഫയല്‍ സിസ്റ്റത്തിന്റെ പരിശോധനയില്‍ ഉള്‍‌പ്പെടുത്തേണ്ട _ഉപകരണങ്ങള്‍ തിരഞ്ഞെടുക്കുക:" +msgstr "" +"ഫയല്‍ സിസ്റ്റത്തിന്റെ പരിശോധനയില്‍ ഉള്‍‌പ്പെടുത്തേണ്ട _ഉപകരണങ്ങള്‍ " +"തിരഞ്ഞെടുക്കുക:" #: baobab/data/baobab-dialog-scan-props.ui:119 msgid "_Monitor changes to your home folder" @@ -189,7 +192,9 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:27 msgid "Whether the status bar at the bottom of main window should be visible." -msgstr "പ്രധാന ജാലകത്തിന്റെ താഴെ ഭാഗത്തുളള അവസ്ഥ കാണിയ്ക്കുന്ന പട്ട ദൃശ്യമാകണമോ എന്നു്. " +msgstr "" +"പ്രധാന ജാലകത്തിന്റെ താഴെ ഭാഗത്തുളള അവസ്ഥ കാണിയ്ക്കുന്ന പട്ട ദൃശ്യമാകണമോ " +"എന്നു്. " #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:31 msgid "Subfolder tips visible" @@ -213,8 +218,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -318,7 +323,9 @@ #: baobab/src/baobab.c:1276 msgid "Without mount points disk usage cannot be analyzed." -msgstr "ചേര്‍ക്കാനുള്ള സ്ഥാനങ്ങള്‍ പറയാതെ ഡിസ്ക്കിന്റെ ഉപയോഗം വിശകലനം ചെയ്യാന്‍ സാധ്യമല്ല." +msgstr "" +"ചേര്‍ക്കാനുള്ള സ്ഥാനങ്ങള്‍ പറയാതെ ഡിസ്ക്കിന്റെ ഉപയോഗം വിശകലനം ചെയ്യാന്‍ " +"സാധ്യമല്ല." #: baobab/src/baobab-chart.c:204 msgid "Maximum depth" @@ -326,7 +333,8 @@ #: baobab/src/baobab-chart.c:205 msgid "The maximum depth drawn in the chart from the root" -msgstr "ചാര്‍ട്ടില്‍ റൂട്ടില്‍ നിന്നും ഏറ്റവും കൂടിയ എത്ര ആഴത്തിലുള്ളവ വരയ്ക്കണം" +msgstr "" +"ചാര്‍ട്ടില്‍ റൂട്ടില്‍ നിന്നും ഏറ്റവും കൂടിയ എത്ര ആഴത്തിലുള്ളവ വരയ്ക്കണം" #: baobab/src/baobab-chart.c:214 msgid "Chart model" @@ -415,7 +423,9 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." -msgstr "സെര്‍വറുമായി ബന്ധപ്പെടാന്‍ സാധിച്ചില്ല. സെര്‍വറിനു് ഒരു പേരു് നിര്‍ബന്ധമായും നല്‍കേണ്ടതാണു്." +msgstr "" +"സെര്‍വറുമായി ബന്ധപ്പെടാന്‍ സാധിച്ചില്ല. സെര്‍വറിനു് ഒരു പേരു് നിര്‍ബന്ധമായും" +" നല്‍കേണ്ടതാണു്." #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -475,8 +485,9 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"നിങ്ങളുടെ ഹോം ഫോള്‍ഡറിന്റെ ഉളളടക്കത്തില്‍ മാറ്റം വരുത്തിയിരിക്കുന്നു. ഡിസ്കിന്റെ ഉപയോഗം " -"സംബന്ധിച്ചുളള വിവരങ്ങള്‍ പരിഷ്കരിക്കുന്നതിനായി വീണ്ടും പരിശോധിയ്ക്കക എന്നത് തെരഞ്ഞെടുക്കുക." +"നിങ്ങളുടെ ഹോം ഫോള്‍ഡറിന്റെ ഉളളടക്കത്തില്‍ മാറ്റം വരുത്തിയിരിക്കുന്നു. " +"ഡിസ്കിന്റെ ഉപയോഗം സംബന്ധിച്ചുളള വിവരങ്ങള്‍ പരിഷ്കരിക്കുന്നതിനായി വീണ്ടും " +"പരിശോധിയ്ക്കക എന്നത് തെരഞ്ഞെടുക്കുക." #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -534,7 +545,9 @@ #: baobab/src/baobab-utils.c:381 msgid "There is no installed viewer capable of displaying the folder." -msgstr "ഫോള്‍ഡര്‍ ദൃശ്യമാക്കുന്നതിനുളള പ്രയോഗം (വ്യൂവര്‍) ഇന്‍‌സ്റ്റാള്‍ ചെയ്തിട്ടില്ല." +msgstr "" +"ഫോള്‍ഡര്‍ ദൃശ്യമാക്കുന്നതിനുളള പ്രയോഗം (വ്യൂവര്‍) ഇന്‍‌സ്റ്റാള്‍ " +"ചെയ്തിട്ടില്ല." #: baobab/src/baobab-utils.c:448 #, c-format @@ -567,9 +580,10 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"ഇതൊരു സ്വതന്ത്ര സോഫ്റ്റ്‌വെയറാണു്; നിങ്ങള്‍ക്കിതു് സ്വതന്ത്ര സോഫ്റ്റ്‌വെയര്‍ ഫൌണ്ടേഷന്‍ പ്രസിദ്ധീകരിച്ച ഗ്നു " -"പൊതു അനുമതി പത്രത്തിന്റെ 2 മത്തെ പതിപ്പോ അല്ലെങ്കില്‍ (നിങ്ങള്‍ക്കു് വേണമെങ്കില്‍) അതിലും പുതിയൊരു " -"പതിപ്പോ പ്രകാരം വിതരണം ചെയ്യുകയും മാറ്റം വരുത്തുകയും ചെയ്യാവുന്നതാണു്. " +"ഇതൊരു സ്വതന്ത്ര സോഫ്റ്റ്‌വെയറാണു്; നിങ്ങള്‍ക്കിതു് സ്വതന്ത്ര സോഫ്റ്റ്‌വെയര്‍" +" ഫൌണ്ടേഷന്‍ പ്രസിദ്ധീകരിച്ച ഗ്നു പൊതു അനുമതി പത്രത്തിന്റെ 2 മത്തെ പതിപ്പോ " +"അല്ലെങ്കില്‍ (നിങ്ങള്‍ക്കു് വേണമെങ്കില്‍) അതിലും പുതിയൊരു പതിപ്പോ പ്രകാരം " +"വിതരണം ചെയ്യുകയും മാറ്റം വരുത്തുകയും ചെയ്യാവുന്നതാണു്. " #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -579,15 +593,16 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"ഇതു് നിങ്ങള്‍ക്കു് ഉപയോഗപ്രദമാകും എന്ന വിശ്വാസത്തില്‍, എന്നാല്‍ യാതൊരുവിധ ഉത്തരവാദിത്തങ്ങളോ ഒരു " -"പ്രത്യേ‌ക ആവശ്യ‌ത്തിന് ഉതകുംവിധം വാണിജ്യസംബന്ധിയായ ഉത്തരവാദിത്തം പോലുമില്ലാതെയാണു് വിതരണം " -"ചെയ്യുന്നതു്. കൂടുതല്‍ വിവരങ്ങള്‍ക്കു് ഗ്നു പൊതു അനുമതി പത്രിക കാണുക." +"ഇതു് നിങ്ങള്‍ക്കു് ഉപയോഗപ്രദമാകും എന്ന വിശ്വാസത്തില്‍, എന്നാല്‍ യാതൊരുവിധ " +"ഉത്തരവാദിത്തങ്ങളോ ഒരു പ്രത്യേ‌ക ആവശ്യ‌ത്തിന് ഉതകുംവിധം വാണിജ്യസംബന്ധിയായ " +"ഉത്തരവാദിത്തം പോലുമില്ലാതെയാണു് വിതരണം ചെയ്യുന്നതു്. കൂടുതല്‍ " +"വിവരങ്ങള്‍ക്കു് ഗ്നു പൊതു അനുമതി പത്രിക കാണുക." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -633,17 +648,19 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -"പേരു് അല്ലെങ്കില്‍ ഉള്ളടക്കമനുസരിച്ചു് ഈ കമ്പ്യൂട്ടറില്‍ വിവരണങ്ങള്‍ അല്ലെങ്കില്‍ ഫോള്‍ഡറുകള്‍ കണ്ടുപിടിക്കുക" +"പേരു് അല്ലെങ്കില്‍ ഉള്ളടക്കമനുസരിച്ചു് ഈ കമ്പ്യൂട്ടറില്‍ വിവരണങ്ങള്‍ " +"അല്ലെങ്കില്‍ ഫോള്‍ഡറുകള്‍ കണ്ടുപിടിക്കുക" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -670,8 +687,9 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"ചെറിയ ഫയല്‍നാമത്തിനുള്ള തെരച്ചിലുകളില്‍ locate കമാന്‍ഡിന്റെ ഉപയോഗം തെരച്ചില്‍ പ്രയോഗം പ്രവര്‍" -"ത്തന രഹിതമാക്കുന്നുവോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"ചെറിയ ഫയല്‍നാമത്തിനുള്ള തെരച്ചിലുകളില്‍ locate കമാന്‍ഡിന്റെ ഉപയോഗം " +"തെരച്ചില്‍ പ്രയോഗം പ്രവര്‍ത്തന രഹിതമാക്കുന്നുവോ എന്നു് ഈ കീ " +"കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -679,41 +697,45 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"പെട്ടെന്നുള്ള തെരച്ചിലില്‍ നിന്നും തെരച്ചിലിനുള്ള പ്രയോഗം മാറ്റേണ്ട പാഥ് ഈ കീ നിഷ്കര്‍ഷിക്കുന്നു. " -"രണ്ടാമത്തെ പരിശോധനയില്‍ ഫയലുകള്‍. '*' , '?' എന്നീ വൈള്‍ഡ്കാര്‍ഡുകള്‍ പിന്തുണയ്ക്കുന്നു. സ്വതവേയുള്ള " -"മൂല്ല്യം /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, /var/* എന്നിവയാണു്." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"പെട്ടെന്നുള്ള തെരച്ചിലില്‍ നിന്നും തെരച്ചിലിനുള്ള പ്രയോഗം മാറ്റേണ്ട പാഥ് ഈ " +"കീ നിഷ്കര്‍ഷിക്കുന്നു. രണ്ടാമത്തെ പരിശോധനയില്‍ ഫയലുകള്‍. '*' , '?' എന്നീ " +"വൈള്‍ഡ്കാര്‍ഡുകള്‍ പിന്തുണയ്ക്കുന്നു. സ്വതവേയുള്ള മൂല്ല്യം /mnt/*, /media/*," +" /dev/*, /tmp/*, /proc/*, /var/* എന്നിവയാണു്." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" -msgstr "രണ്ടാമത്തെ പരിശോധനയില്‍ പെട്ടെന്നുളള തിരച്ചില്‍ പ്രവര്‍ത്തന രഹിതമാക്കുക" +msgstr "" +"രണ്ടാമത്തെ പരിശോധനയില്‍ പെട്ടെന്നുളള തിരച്ചില്‍ പ്രവര്‍ത്തന രഹിതമാക്കുക" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:25 msgid "" "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"പെട്ടെന്നുള്ള തെരച്ചിലിനു് ശേഷം find കമാന്‍ഡിന്റെ ഉപയോഗം തെരച്ചില്‍ പ്രയോഗം പ്രവര്‍ത്തന " -"രഹിതമാക്കുന്നുവോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"പെട്ടെന്നുള്ള തെരച്ചിലിനു് ശേഷം find കമാന്‍ഡിന്റെ ഉപയോഗം തെരച്ചില്‍ പ്രയോഗം " +"പ്രവര്‍ത്തന രഹിതമാക്കുന്നുവോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" -msgstr "പെട്ടെന്നുള്ള തെരച്ചിലില്‍ രണ്ടാമത്തെ പരിശോധന ഉള്‍പ്പെടുത്താത്ത പാഥുകള്‍" +msgstr "" +"പെട്ടെന്നുള്ള തെരച്ചിലില്‍ രണ്ടാമത്തെ പരിശോധന ഉള്‍പ്പെടുത്താത്ത പാഥുകള്‍" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:30 msgid "" "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"പെട്ടെന്നുള്ള തെരച്ചിലില്‍ രണ്ടാമത്തെ പരിശോധനയില്‍ തെരച്ചിലിനുള്ള പ്രയോഗം മാറ്റേണ്ട പാഥ് ഈ കീ " -"നിഷ്കര്‍ഷിക്കുന്നു. രണ്ടാമത്തെ പരിശോധനയില്‍ ഫയലുകള്‍ തെരയുന്നതിനായി find കമാന്‍ഡ് ഉപയോഗിക്കുന്നു. " -"സൂചികയില്ലാത്ത ഫയലുകള്‍ തെരയുന്നതിനായിട്ടാണു് രണ്ടാം പരിശോധന. '*' , '?' എന്നീ വൈള്‍ഡ്കാര്‍ഡുകള്‍ " +"പെട്ടെന്നുള്ള തെരച്ചിലില്‍ രണ്ടാമത്തെ പരിശോധനയില്‍ തെരച്ചിലിനുള്ള പ്രയോഗം " +"മാറ്റേണ്ട പാഥ് ഈ കീ നിഷ്കര്‍ഷിക്കുന്നു. രണ്ടാമത്തെ പരിശോധനയില്‍ ഫയലുകള്‍ " +"തെരയുന്നതിനായി find കമാന്‍ഡ് ഉപയോഗിക്കുന്നു. സൂചികയില്ലാത്ത ഫയലുകള്‍ " +"തെരയുന്നതിനായിട്ടാണു് രണ്ടാം പരിശോധന. '*' , '?' എന്നീ വൈള്‍ഡ്കാര്‍ഡുകള്‍ " "പിന്തുണയ്ക്കുന്നു. സ്വതവേയുള്ള മൂല്ല്യം / ആണു്." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -725,8 +747,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"തെരച്ചില്‍ ഫലങ്ങളിലുള്ള നിരകളുടെ ക്രമം ഈ കീ നിഷ്കര്‍ഷിക്കുന്നു. ഈ കീ ഉപയോക്താവു് മാറ്റുവാന്‍ " -"പാടില്ല." +"തെരച്ചില്‍ ഫലങ്ങളിലുള്ള നിരകളുടെ ക്രമം ഈ കീ നിഷ്കര്‍ഷിക്കുന്നു. ഈ കീ " +"ഉപയോക്താവു് മാറ്റുവാന്‍ പാടില്ല." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -734,13 +756,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"ഈ കീ ജാലകത്തിന്റെ വീതി നിഷ്കര്‍ഷിക്കുന്നു. സെഷനുകളുടെ ഇടയിലുള്ള തെരച്ചില്‍ പ്രയോഗത്തിന്റെ വ്യപ്തി " -"സൂക്ഷിക്കുന്നതിനായിതുപയോഗിക്കുന്നു. -1 ആയി സജ്ജമാക്കിയാല്‍ തെരച്ചിലിനുള്ള പ്രയോഗം സ്വതവേയുള്ള " -"വീതി ഉപയോഗിക്കുന്നു" +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"ഈ കീ ജാലകത്തിന്റെ വീതി നിഷ്കര്‍ഷിക്കുന്നു. സെഷനുകളുടെ ഇടയിലുള്ള തെരച്ചില്‍ " +"പ്രയോഗത്തിന്റെ വ്യപ്തി സൂക്ഷിക്കുന്നതിനായിതുപയോഗിക്കുന്നു. -1 ആയി " +"സജ്ജമാക്കിയാല്‍ തെരച്ചിലിനുള്ള പ്രയോഗം സ്വതവേയുള്ള വീതി ഉപയോഗിക്കുന്നു" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -749,12 +771,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"ഈ കീ ജാലകത്തിന്റെ ഉയരം നിഷ്കര്‍ഷിക്കുന്നു. സെഷനുകളുടെ ഇടയിലുള്ള തെരച്ചില്‍ പ്രയോഗത്തിന്റെ വ്യപ്തി " -"സൂക്ഷിക്കുന്നതിനായിതുപയോഗിക്കുന്നു. -1 ആയി സജ്ജമാക്കിയാല്‍ തെരച്ചിലിനുള്ള പ്രയോഗം സ്വതവേയുള്ള " -"ഉയരം ഉപയോഗിക്കുന്നു" +"ഈ കീ ജാലകത്തിന്റെ ഉയരം നിഷ്കര്‍ഷിക്കുന്നു. സെഷനുകളുടെ ഇടയിലുള്ള തെരച്ചില്‍ " +"പ്രയോഗത്തിന്റെ വ്യപ്തി സൂക്ഷിക്കുന്നതിനായിതുപയോഗിക്കുന്നു. -1 ആയി " +"സജ്ജമാക്കിയാല്‍ തെരച്ചിലിനുള്ള പ്രയോഗം സ്വതവേയുള്ള ഉയരം ഉപയോഗിക്കുന്നു" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -764,7 +786,8 @@ msgid "" "This key determines if the search tool window starts in a maximized state." msgstr "" -"തെരച്ചില്‍ പ്രയോഗത്തിനുള്ള ജാലകം ഏറ്റവും കൂടിയ അവസ്ഥയില്‍ ആരംഭിക്കുന്നോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"തെരച്ചില്‍ പ്രയോഗത്തിനുള്ള ജാലകം ഏറ്റവും കൂടിയ അവസ്ഥയില്‍ ആരംഭിക്കുന്നോ " +"എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -772,176 +795,185 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 msgid "This key defines the default value of the \"Look in Folder\" widget." -msgstr "\"ഫോള്‍ഡറില്‍ തെരയുക\" വിഡ്ജറ്റിനു് സ്വതവേയുള്ള മൂല്ല്യം ഈ കീ കണ്ടുപിടിക്കുന്നു." +msgstr "" +"\"ഫോള്‍ഡറില്‍ തെരയുക\" വിഡ്ജറ്റിനു് സ്വതവേയുള്ള മൂല്ല്യം ഈ കീ " +"കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 msgid "" "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"പദാവലിയടങ്ങുന്നു\" എന്ന തെരച്ചില്‍ ഉപാധി " -"തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"പദാവലിയടങ്ങുന്നു\" എന്ന " +"തെരച്ചില്‍ ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"തീയതി മാറ്റിയിരിക്കുന്നു, എത്ര ദിവസം കുറവു്\" എന്ന " -"തെരച്ചില്‍ ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"തീയതി മാറ്റിയിരിക്കുന്നു, എത്ര " +"ദിവസം കുറവു്\" എന്ന തെരച്ചില്‍ ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ " +"കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"തീയതി മാറ്റിയിരിക്കുന്നു, എത്ര ദിവസം കൂടുതല്‍\" എന്ന " -"തെരച്ചില്‍ ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"തീയതി മാറ്റിയിരിക്കുന്നു, എത്ര " +"ദിവസം കൂടുതല്‍\" എന്ന തെരച്ചില്‍ ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ " +"കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"കുറഞ്ഞ വ്യാപ്തി\" എന്ന തെരച്ചില്‍ ഉപാധി " -"തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"കുറഞ്ഞ വ്യാപ്തി\" എന്ന തെരച്ചില്‍" +" ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"കൂടിയ വ്യാപ്തി\" തെരച്ചില്‍ ഉപാധി " -"തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"കൂടിയ വ്യാപ്തി\" തെരച്ചില്‍ ഉപാധി" +" തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"ഫയല്‍ ശൂന്യമാണു്\" എന്ന തെരച്ചില്‍ ഉപാധി " -"തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"ഫയല്‍ ശൂന്യമാണു്\" എന്ന " +"തെരച്ചില്‍ ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"ഉപയോക്താവിന്റ് ഉടമസ്ഥതയില്‍\" എന്ന തെരച്ചില്‍ ഉപാധി " -"തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"ഉപയോക്താവിന്റ് ഉടമസ്ഥതയില്‍\" " +"എന്ന തെരച്ചില്‍ ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"ഗ്രൂപ്പിന്‍റെ ഉടമസ്ഥതയില്‍\" എന്ന തെരച്ചില്‍ ഉപാധി " -"തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"ഗ്രൂപ്പിന്‍റെ ഉടമസ്ഥതയില്‍\" എന്ന" +" തെരച്ചില്‍ ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"ഉടമസ്ഥന്‍ അപരിചിതം\" എന്നതെരച്ചില്‍ ഉപാധി " -"തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"ഉടമസ്ഥന്‍ അപരിചിതം\" " +"എന്നതെരച്ചില്‍ ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"പേരിലില്ല\" എന്ന തെരച്ചില്‍ ഉപാധി " -"തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"പേരിലില്ല\" എന്ന തെരച്ചില്‍ ഉപാധി" +" തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"പേരു് റെഗുലര്‍ എക്സ്പ്രെഷനുമായി ചേരുന്നു\" എന്ന തെരച്ചില്‍ " -"ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"പേരു് റെഗുലര്‍ എക്സ്പ്രെഷനുമായി " +"ചേരുന്നു\" എന്ന തെരച്ചില്‍ ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ " +"കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"അദൃശ്യമായ ഫയലുകളും ഫോള്‍ഡറുകളും കാണിക്കുക\" എന്ന " -"തെരച്ചില്‍ ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"അദൃശ്യമായ ഫയലുകളും ഫോള്‍ഡറുകളും " +"കാണിക്കുക\" എന്ന തെരച്ചില്‍ ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ " +"കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"സിംബോളിക് ലിങ്കുകള്‍ ഉപയോഗിക്കുക\" എന്ന തെരച്ചില്‍ " -"ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"സിംബോളിക് ലിങ്കുകള്‍ " +"ഉപയോഗിക്കുക\" എന്ന തെരച്ചില്‍ ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ " +"കണ്ടുപിടിക്കുന്നു." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"മറ്റു് ഫയല്‍സിസ്റ്റമുകള്‍ മാറ്റുക\" എന്ന തെരച്ചില്‍ ഉപാധി " -"തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ കണ്ടുപിടിക്കുന്നു." +"തെരച്ചിലിനുള്ള പ്രയോഗം ആരംഭിക്കുമ്പോള്‍, \"മറ്റു് ഫയല്‍സിസ്റ്റമുകള്‍ " +"മാറ്റുക\" എന്ന തെരച്ചില്‍ ഉപാധി തെരഞ്ഞെടുത്തിട്ടുണ്ടോ എന്നു് ഈ കീ " +"കണ്ടുപിടിക്കുന്നു." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "ഫയല്‍ ശരിയായ ഒരു .desktop ഫയല്‍ അല്ല" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "അപരിചിതമായ പണിയിട ഫയല്‍ പതിപ്പു് '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s ആരംഭിക്കുന്നു" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "കമാന്‍ഡ് ലൈനില്‍ പ്രയോഗം രേഖകള്‍ സ്വീകരിക്കുന്നതല്ല" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "അപരിചിതമായ ലഭ്യമാക്കുവാനുള്ള ഉപാധി: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" -msgstr "'Type=Link' പണിയിട അംഗത്തിലേക്കു് ഡോക്യുമെന്റ് URI അയക്കാന്‍ കഴിയില്ല" +msgstr "" +"'Type=Link' പണിയിട അംഗത്തിലേക്കു് ഡോക്യുമെന്റ് URI അയക്കാന്‍ കഴിയില്ല" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "ലഭ്യമാക്കുവാന്‍ സാധിക്കുന്ന വസ്തുവല്ല" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "സെഷന്‍ മാനേജറിലേക്കുള്ള കണക്ഷന്‍ പ്രവര്‍ത്തന രഹിതമാക്കുക" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "സൂക്ഷിച്ചിട്ടുള്ള ക്രമീകരണം അടങ്ങുന്ന ഫയല്‍ നല്‍കുക" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "സെഷന്‍ മാനേജ്മെന്റ് ID വ്യക്തമാക്കുക" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "സെഷന്‍ മാനേജ്മെന്റ് ഉപാധികള്‍:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "സെഷന്‍ മാനേജ്മെന്റ് ഉപാധികള്‍ കാണിക്കുക" @@ -1092,7 +1124,8 @@ #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" -msgstr "നോണ്‍ എന്‍ട്രി ഉപാധിയ്ക്കു് ഒരു എന്‍ട്രിയില്‍ മാറ്റം വരുത്തിയിരിക്കുന്നു!" +msgstr "" +"നോണ്‍ എന്‍ട്രി ഉപാധിയ്ക്കു് ഒരു എന്‍ട്രിയില്‍ മാറ്റം വരുത്തിയിരിക്കുന്നു!" #: gsearchtool/src/gsearchtool.c:1325 msgid "Set the text of \"Name contains\" search option" @@ -1105,11 +1138,14 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"ഇവയുടെ അടിസ്ഥാനത്തില്‍ ഫയലുകള്‍ ക്രമികരിക്കുക: പേരു്, ഫോള്‍ഡര്‍, വ്യാപ്തി, ഏത് തരം അല്ലെങ്കില്‍ തീയതി" +"ഇവയുടെ അടിസ്ഥാനത്തില്‍ ഫയലുകള്‍ ക്രമികരിക്കുക: പേരു്, ഫോള്‍ഡര്‍, വ്യാപ്തി, " +"ഏത് തരം അല്ലെങ്കില്‍ തീയതി" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" -msgstr "അവസാനം മുതല്‍ ആദ്യം വരെയുള്ള ക്രമത്തില്‍ സജ്ജമാക്കുക, സ്വതവേയുള്ളതു് തിരിച്ചുള്ള ക്രമമാണു്" +msgstr "" +"അവസാനം മുതല്‍ ആദ്യം വരെയുള്ള ക്രമത്തില്‍ സജ്ജമാക്കുക, സ്വതവേയുള്ളതു് " +"തിരിച്ചുള്ള ക്രമമാണു്" #: gsearchtool/src/gsearchtool.c:1329 msgid "Automatically start a search" @@ -1141,7 +1177,9 @@ msgid "" "The search results may be invalid. There were errors while performing this " "search." -msgstr "തിരച്ചിലിന്രെ ഫലം അസാധുവാകാന്‍ സാധുതയുണ്ട്. ഈ പ്റക്റിയയ്ക്കിടയില്‍ പിശക് സംഭവിച്ചിരുന്നു." +msgstr "" +"തിരച്ചിലിന്രെ ഫലം അസാധുവാകാന്‍ സാധുതയുണ്ട്. ഈ പ്റക്റിയയ്ക്കിടയില്‍ പിശക് " +"സംഭവിച്ചിരുന്നു." #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1152,8 +1190,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"തെരച്ചില്‍ ഫലങ്ങള്‍ തെറ്റോ അല്ലെങ്കില്‍ തീയതി കഴിഞ്ഞതോ ആവാം. വേഗത്തിലുള്ള തെരച്ചില്‍ വിശേഷത " -"നിങ്ങള്‍ക്കു് പ്രവര്‍ത്തന രഹിതമാക്കണമോ?" +"തെരച്ചില്‍ ഫലങ്ങള്‍ തെറ്റോ അല്ലെങ്കില്‍ തീയതി കഴിഞ്ഞതോ ആവാം. വേഗത്തിലുള്ള " +"തെരച്ചില്‍ വിശേഷത നിങ്ങള്‍ക്കു് പ്രവര്‍ത്തന രഹിതമാക്കണമോ?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1162,7 +1200,9 @@ #: gsearchtool/src/gsearchtool.c:1845 #, c-format msgid "Failed to set process group id of child %d: %s.\n" -msgstr "%d ചൈള്‍ഡിനുള്ള പ്റൊസസ്സ് ഗ്രൂപ്പ് id ക്രമികരിക്കുന്നതില്‍ പരാജയപ്പെട്ടു: %s.\n" +msgstr "" +"%d ചൈള്‍ഡിനുള്ള പ്റൊസസ്സ് ഗ്രൂപ്പ് id ക്രമികരിക്കുന്നതില്‍ പരാജയപ്പെട്ടു: " +"%s.\n" #: gsearchtool/src/gsearchtool.c:1870 msgid "Error parsing the search command." @@ -1209,7 +1249,8 @@ #: gsearchtool/src/gsearchtool.c:2219 msgid "Select a search option from the drop-down list." -msgstr "ഡ്രോപ്പ്-ഡൌണ്‍ പട്ടികയില്‍ നിന്നും ഒരു തെരച്ചില്‍ ഉപാധി തെരഞ്ഞെടുക്കുക." +msgstr "" +"ഡ്രോപ്പ്-ഡൌണ്‍ പട്ടികയില്‍ നിന്നും ഒരു തെരച്ചില്‍ ഉപാധി തെരഞ്ഞെടുക്കുക." #: gsearchtool/src/gsearchtool.c:2236 msgid "Add search option" @@ -1217,7 +1258,8 @@ #: gsearchtool/src/gsearchtool.c:2237 msgid "Click to add the selected available search option." -msgstr "തിരഞ്ഞെടുത്ത ലഭ്യമായ തിരച്ചില്‍ ഉപാധി ചേര്‍ക്കുന്നതിനായി ക്ളിക്ക് ചെയ്യുക." +msgstr "" +"തിരഞ്ഞെടുത്ത ലഭ്യമായ തിരച്ചില്‍ ഉപാധി ചേര്‍ക്കുന്നതിനായി ക്ളിക്ക് ചെയ്യുക." #: gsearchtool/src/gsearchtool.c:2326 msgid "S_earch results:" @@ -1246,7 +1288,9 @@ #: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 msgid "Enter a filename or partial filename with or without wildcards." -msgstr "വൈള്‍ഡ്കാര്‍ഡുള്ളതോ അല്ലാത്തതോ ആയി ഒരു ഫയല്‍നാമം അല്ലെങ്കില്‍ ഫയല്‍നാമത്തിന്റെ ഭാഗം നല്‍കുക." +msgstr "" +"വൈള്‍ഡ്കാര്‍ഡുള്ളതോ അല്ലാത്തതോ ആയി ഒരു ഫയല്‍നാമം അല്ലെങ്കില്‍ " +"ഫയല്‍നാമത്തിന്റെ ഭാഗം നല്‍കുക." #: gsearchtool/src/gsearchtool.c:2836 msgid "Name contains" @@ -1266,7 +1310,9 @@ #: gsearchtool/src/gsearchtool.c:2858 msgid "Select the folder or device from which you want to begin the search." -msgstr "നിങ്ങള്‍ക്ക് തിരച്ചില്‍ ആരംഭിക്കേണ്ട ഫോള്‍ഡര്‍ അല്ലെങ്കില്‍ ഉപകരണം തിരഞ്ഞെടുക്കുക." +msgstr "" +"നിങ്ങള്‍ക്ക് തിരച്ചില്‍ ആരംഭിക്കേണ്ട ഫോള്‍ഡര്‍ അല്ലെങ്കില്‍ ഉപകരണം " +"തിരഞ്ഞെടുക്കുക." #: gsearchtool/src/gsearchtool.c:2876 msgid "Select more _options" @@ -1279,7 +1325,8 @@ #: gsearchtool/src/gsearchtool.c:2885 msgid "Click to expand or collapse the list of available options." msgstr "" -"ലഭ്യമായ ഉപാധികളുടെ പട്ടിക വികസിപ്പിക്കുക അല്ലെങ്കില്‍ കൊളാപ്സ് ചെയ്യുന്നതിനായി ക്ലിക്ക് ചെയ്യുക." +"ലഭ്യമായ ഉപാധികളുടെ പട്ടിക വികസിപ്പിക്കുക അല്ലെങ്കില്‍ കൊളാപ്സ് " +"ചെയ്യുന്നതിനായി ക്ലിക്ക് ചെയ്യുക." #: gsearchtool/src/gsearchtool.c:2916 msgid "Click to display the help manual." @@ -1363,7 +1410,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:759 #, c-format msgid "Trash is unavailable. Could not move \"%s\" to the trash." -msgstr "ചവറ്റുകുട്ട ലഭ്യമല്ല. \"%s\" ചവറ്റുകുട്ടയിലേക്ക് നീക്കുവാന്‍ സാധ്യമായില്ല." +msgstr "" +"ചവറ്റുകുട്ട ലഭ്യമല്ല. \"%s\" ചവറ്റുകുട്ടയിലേക്ക് നീക്കുവാന്‍ സാധ്യമായില്ല." #: gsearchtool/src/gsearchtool-callbacks.c:803 #, c-format @@ -1436,8 +1484,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "If you replace an existing file, its contents will be overwritten." msgstr "" -"നിലവിലുള്ള ഒരു ഫയല്‍ മാറ്റി എഴുതിയാല്‍, അതിന്രെ ഉള്ളടക്കവും മാറ്റി എഴുതി അവ നിങ്ങള്‍ക്ക് " -"നഷ്ടമാകുന്നു." +"നിലവിലുള്ള ഒരു ഫയല്‍ മാറ്റി എഴുതിയാല്‍, അതിന്രെ ഉള്ളടക്കവും മാറ്റി എഴുതി അവ " +"നിങ്ങള്‍ക്ക് നഷ്ടമാകുന്നു." #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 @@ -1554,7 +1602,8 @@ msgid "View or monitor system log files" msgstr "സിസ്റ്റം ലോഗ് ഫയലുകള്‍ കാണുക അല്ലെങ്കില്‍ നിരീക്ഷിക്കുക" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1565,11 +1614,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"ആരംഭത്തിലുള്ള ലോഗ് ഫയല്‍ വ്യക്തമാക്കുന്നു. നിങ്ങളുടെ ഓപ്പറേറ്റിങ് സിസ്റ്റമനുസരിച്ചുള്ള /var/adm/" -"messages അല്ലെങ്കില്‍ /var/log/messages ആണു് സഹജമായുള്ളതു്." +"ആരംഭത്തിലുള്ള ലോഗ് ഫയല്‍ വ്യക്തമാക്കുന്നു. നിങ്ങളുടെ ഓപ്പറേറ്റിങ് " +"സിസ്റ്റമനുസരിച്ചുള്ള /var/adm/messages അല്ലെങ്കില്‍ /var/log/messages ആണു് " +"സഹജമായുള്ളതു്." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1580,8 +1630,9 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"ലോഗ് പ്രധാന ട്രീ പ്രദര്‍ശിപ്പിക്കുന്നതിനായുള്ള സ്ഥിര-വീതിയുള്ള അക്ഷരസഞ്ചയത്തിന്റെ വ്യാപ്തി " -"വ്യക്തമാക്കുന്നു. സ്വതവേയുള്ള ടെര്‍മിനല്‍ അക്ഷരസഞ്ചയത്തിന്റെ വ്യാപ്തിയാണു് സ്വതവേയുള്ളതു്." +"ലോഗ് പ്രധാന ട്രീ പ്രദര്‍ശിപ്പിക്കുന്നതിനായുള്ള സ്ഥിര-വീതിയുള്ള " +"അക്ഷരസഞ്ചയത്തിന്റെ വ്യാപ്തി വ്യക്തമാക്കുന്നു. സ്വതവേയുള്ള ടെര്‍മിനല്‍ " +"അക്ഷരസഞ്ചയത്തിന്റെ വ്യാപ്തിയാണു് സ്വതവേയുള്ളതു്." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1608,8 +1659,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"ആരംഭത്തില്‍ തുറക്കുവാനുള്ള ലോഗ് ഫയലുകളുടെ ഒരു പട്ടിക വ്യക്തമാക്കുന്നു. /etc/syslog.conf. " -"സഹജമായ ഒരു പട്ടിക ഉണ്ടാക്കുന്നു." +"ആരംഭത്തില്‍ തുറക്കുവാനുള്ള ലോഗ് ഫയലുകളുടെ ഒരു പട്ടിക വ്യക്തമാക്കുന്നു. " +"/etc/syslog.conf. സഹജമായ ഒരു പട്ടിക ഉണ്ടാക്കുന്നു." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1685,7 +1736,8 @@ #: logview/src/logview-filter-manager.c:207 msgid "Please specify either foreground or background color!" -msgstr "മുന്‍ഭാഗത്ത് അല്ലെങ്കില്‍ പശ്ചാത്തലത്തിലുള്ള നിറം ദയവായി വ്യക്തമാക്കുക!" +msgstr "" +"മുന്‍ഭാഗത്ത് അല്ലെങ്കില്‍ പശ്ചാത്തലത്തിലുള്ള നിറം ദയവായി വ്യക്തമാക്കുക!" #: logview/src/logview-filter-manager.c:282 msgid "Edit filter" @@ -1709,7 +1761,9 @@ #: logview/src/logview-findbar.c:187 msgid "Find previous occurrence of the search string" -msgstr "തിരച്ചില്‍ നടത്തുന്ന വാചകം ഇതിന് മുന്പ് ഏത് വരിയില്‍ ഉളളത് എന്ന് കണ്ടുപിടിക്കുക" +msgstr "" +"തിരച്ചില്‍ നടത്തുന്ന വാചകം ഇതിന് മുന്പ് ഏത് വരിയില്‍ ഉളളത് എന്ന് " +"കണ്ടുപിടിക്കുക" #: logview/src/logview-findbar.c:192 msgid "Find Next" @@ -1717,7 +1771,9 @@ #: logview/src/logview-findbar.c:195 msgid "Find next occurrence of the search string" -msgstr "തിരച്ചില്‍ നടത്തുന്ന വാചകം ഇതിന് ശേഷം ഏത് വരിയില്‍ ഉളളത് എന്ന് കണ്ടുപിടിക്കുക" +msgstr "" +"തിരച്ചില്‍ നടത്തുന്ന വാചകം ഇതിന് ശേഷം ഏത് വരിയില്‍ ഉളളത് എന്ന് " +"കണ്ടുപിടിക്കുക" #: logview/src/logview-findbar.c:202 msgid "Clear the search string" @@ -1737,7 +1793,8 @@ #: logview/src/logview-log.c:743 msgid "This version of System Log does not support GZipped logs." -msgstr "സിസ്റ്റം ലോഗിന്റെ ഈ പതിപ്പു് ജിസിപ്പു് ചെയ്ത ലോഗുകളെ പിന്തുണയ്ക്കുന്നില്ല." +msgstr "" +"സിസ്റ്റം ലോഗിന്റെ ഈ പതിപ്പു് ജിസിപ്പു് ചെയ്ത ലോഗുകളെ പിന്തുണയ്ക്കുന്നില്ല." #: logview/src/logview-loglist.c:103 msgid "%A, %e %b" @@ -1938,7 +1995,8 @@ #: logview/src/logview-window.c:862 msgid "Only show lines that match one of the given filters" -msgstr "തന്നരിക്കുന്ന ഫില്‍‌റ്ററുകളില്‍ ഒന്നുമായി ചേരുന്ന വരികള്‍ മാത്രം കാണിക്കുക" +msgstr "" +"തന്നരിക്കുന്ന ഫില്‍‌റ്ററുകളില്‍ ഒന്നുമായി ചേരുന്ന വരികള്‍ മാത്രം കാണിക്കുക" #: logview/src/logview-window.c:994 #, c-format @@ -1968,9 +2026,11 @@ #: mate-dictionary/data/mate-dictionary.desktop.in.in:4 msgid "Check word definitions and spellings in an online dictionary" -msgstr "ഓണ്‍ലൈന്‍ നിഘണ്ടുവില്‍ വാക്കുകളുടെ അക്ഷരങ്ങളും നിര്‍വചനങ്ങളും പരിശോധിയ്ക്കക" +msgstr "" +"ഓണ്‍ലൈന്‍ നിഘണ്ടുവില്‍ വാക്കുകളുടെ അക്ഷരങ്ങളും നിര്‍വചനങ്ങളും പരിശോധിയ്ക്കക" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1982,8 +2042,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2013,9 +2073,10 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"ഒരു നിഘണ്ടുവിന്റെ ഉറവിടത്തിലുപയോഗിക്കുവാനുള്ള സ്വതവേയുള്ള ഡേറ്റാബെയിസ് അല്ലെങ്കില്‍ " -"മെറ്റാഡേറ്റയുടെ പേരു്. എക്സ്‌ക്ലമേഷന്‍ അടയാളത്തിനര്‍ത്ഥം (\"!\") ഒരു നിഘണ്ടുവിന്റെ ഉറവിടത്തിലുള്ള " -"എല്ലാ ഡേറ്റാബെയിസുകളും തെരയണമെന്നാണു്." +"ഒരു നിഘണ്ടുവിന്റെ ഉറവിടത്തിലുപയോഗിക്കുവാനുള്ള സ്വതവേയുള്ള ഡേറ്റാബെയിസ് " +"അല്ലെങ്കില്‍ മെറ്റാഡേറ്റയുടെ പേരു്. എക്സ്‌ക്ലമേഷന്‍ അടയാളത്തിനര്‍ത്ഥം " +"(\"!\") ഒരു നിഘണ്ടുവിന്റെ ഉറവിടത്തിലുള്ള എല്ലാ ഡേറ്റാബെയിസുകളും " +"തെരയണമെന്നാണു്." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2026,8 +2087,9 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"ലഭ്യമെങ്കില്‍, നിഘണ്ടുവിന്റെ ഉറവിടത്തിലുപയോഗിക്കുവാനുള്ള സ്വതവേയുള്ള തെരച്ചില്‍ സ്ട്രാറ്റജിയുടെ " -"പേരു്. 'exact' ആണു് സ്വതവേയുള്ളതു്. അതായതു്, വാക്കുകളുമായി ഒരേ പൊരുത്തം." +"ലഭ്യമെങ്കില്‍, നിഘണ്ടുവിന്റെ ഉറവിടത്തിലുപയോഗിക്കുവാനുള്ള സ്വതവേയുള്ള " +"തെരച്ചില്‍ സ്ട്രാറ്റജിയുടെ പേരു്. 'exact' ആണു് സ്വതവേയുള്ളതു്. അതായതു്, " +"വാക്കുകളുമായി ഒരേ പൊരുത്തം." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2044,7 +2106,9 @@ #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22 msgid "" "The name of the dictionary source used to retrieve the definitions of words." -msgstr "വാക്കുകളുടെ നിര്‍വചനം ലഭ്യമാക്കുന്നതിനായുപയോഗിക്കുന്ന നിഘണ്ടുവിന്റെ ഉറവിടത്തിന്റെ പേരു്." +msgstr "" +"വാക്കുകളുടെ നിര്‍വചനം ലഭ്യമാക്കുന്നതിനായുപയോഗിക്കുന്ന നിഘണ്ടുവിന്റെ " +"ഉറവിടത്തിന്റെ പേരു്." #: mate-dictionary/data/thai.desktop.in:3 msgid "Thai" @@ -2094,7 +2158,8 @@ #: mate-dictionary/libgdict/gdict-client-context.c:1052 #, c-format msgid "Lookup failed for hostname '%s': no suitable resources found" -msgstr "'%s'ഹോസ്റ്റ്നാമം തെരച്ചില്‍ പരാജയപ്പെട്ടു: അനുയോജിച്ച റിസോഴ്സുകള്‍ ലഭ്യമല്ല" +msgstr "" +"'%s'ഹോസ്റ്റ്നാമം തെരച്ചില്‍ പരാജയപ്പെട്ടു: അനുയോജിച്ച റിസോഴ്സുകള്‍ ലഭ്യമല്ല" #: mate-dictionary/libgdict/gdict-client-context.c:1083 #, c-format @@ -2104,7 +2169,8 @@ #: mate-dictionary/libgdict/gdict-client-context.c:1117 #, c-format msgid "Lookup failed for host '%s': host not found" -msgstr "ഹോസ്റ്റ് '%s'-നായുളള തിരച്ചില്‍ പരാജയപ്പെട്ടു: ഹോസ്റ്റ് കണ്ടുകിട്ടിയില്ല" +msgstr "" +"ഹോസ്റ്റ് '%s'-നായുളള തിരച്ചില്‍ പരാജയപ്പെട്ടു: ഹോസ്റ്റ് കണ്ടുകിട്ടിയില്ല" #: mate-dictionary/libgdict/gdict-client-context.c:1169 #, c-format @@ -2112,8 +2178,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"'%s-ലുളള നിഘണ്ടു സര്‍വറിലോട്ട് കണക്ട് ചെയ്യുവാന്‍ സാധിച്ചില്ല:%d'. %d കോഡുമായി സെര്‍വര്‍ മറുപടി " -"അയച്ചു. (സെര്‍വര്‍ ലഭ്യമല്ല)" +"'%s-ലുളള നിഘണ്ടു സര്‍വറിലോട്ട് കണക്ട് ചെയ്യുവാന്‍ സാധിച്ചില്ല:%d'. %d " +"കോഡുമായി സെര്‍വര്‍ മറുപടി അയച്ചു. (സെര്‍വര്‍ ലഭ്യമല്ല)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2176,7 +2242,8 @@ #: mate-dictionary/libgdict/gdict-client-context.c:1844 #, c-format msgid "Connection timeout for the dictionary server at '%s:%d'" -msgstr "'%s-ലുളള നിഘണ്ടു സര്‍വറിലേക്കുളള കണക്ഷനുള്ള സമയം കഴിഞ്ഞിരിക്കുന്നു:%d'" +msgstr "" +"'%s-ലുളള നിഘണ്ടു സര്‍വറിലേക്കുളള കണക്ഷനുള്ള സമയം കഴിഞ്ഞിരിക്കുന്നു:%d'" #: mate-dictionary/libgdict/gdict-client-context.c:1878 msgid "No hostname defined for the dictionary server" @@ -2203,7 +2270,8 @@ #: mate-dictionary/libgdict/gdict-context.c:221 msgid "Whether the context uses only local dictionaries or not" -msgstr "കോണ്‍ടെക്സ്റ്റ് ലോക്കല്‍ നിഘണ്ടുകള്‍ മാത്രമേ ഉപയോഗിക്കുന്നുള്ളോ എന്നു്" +msgstr "" +"കോണ്‍ടെക്സ്റ്റ് ലോക്കല്‍ നിഘണ്ടുകള്‍ മാത്രമേ ഉപയോഗിക്കുന്നുള്ളോ എന്നു്" #: mate-dictionary/libgdict/gdict-database-chooser.c:376 msgid "Reload the list of available databases" @@ -2363,7 +2431,8 @@ #: mate-dictionary/libgdict/gdict-speller.c:369 msgid "The GdictContext object used to get the word definition" -msgstr "വാക്കിനുള്ള നിര്‍വചനം ലഭ്യമാക്കുന്നതിനായുപയോഗിക്കുന്ന GdictContext ഒബ്ജക്ട്" +msgstr "" +"വാക്കിനുള്ള നിര്‍വചനം ലഭ്യമാക്കുന്നതിനായുപയോഗിക്കുന്ന GdictContext ഒബ്ജക്ട്" #: mate-dictionary/libgdict/gdict-speller.c:376 msgid "The database used to query the GdictContext" @@ -2655,7 +2724,9 @@ #: mate-dictionary/src/gdict-pref-dialog.c:349 msgid "This will permanently remove the dictionary source from the list." -msgstr "ഇത് പട്ടികയില്‍ നിന്നും നിഘണ്ടുവിന്‍റെ ഉറവിടം എന്നേക്കുമായി നീക്കം ചെയ്യുന്നു." +msgstr "" +"ഇത് പട്ടികയില്‍ നിന്നും നിഘണ്ടുവിന്‍റെ ഉറവിടം എന്നേക്കുമായി നീക്കം " +"ചെയ്യുന്നു." #: mate-dictionary/src/gdict-pref-dialog.c:379 #, c-format @@ -3014,7 +3085,8 @@ msgid "Save images of your desktop or individual windows" msgstr "നിങ്ങളുടെ ഡസ്ക്ടോപ്പ് അല്ലെങ്കില്‍ ഓരോ ജാലകങ്ങളുടെ ഇമേജ് സൂക്ഷിക്കുക" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3037,7 +3109,9 @@ #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:6 msgid "The number of seconds to wait before taking the screenshot." -msgstr "സ്ക്രീന്‍ഷോട്ട് എടുക്കുന്നതിനു് മുമ്പായി കാത്തിരിക്കേണ്ട സമയം സെക്കന്റുകളില്‍." +msgstr "" +"സ്ക്രീന്‍ഷോട്ട് എടുക്കുന്നതിനു് മുമ്പായി കാത്തിരിക്കേണ്ട സമയം " +"സെക്കന്റുകളില്‍." #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:10 msgid "Screenshot directory" @@ -3072,8 +3146,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"അതിരിന്റെ പുറത്തു് ചേര്‍ക്കുവാനുള്ള പ്രഭാവം. സാധ്യമായ മൂല്ല്യങ്ങള്‍: \"shadow\", \"none\", " -"\"border\"." +"അതിരിന്റെ പുറത്തു് ചേര്‍ക്കുവാനുള്ള പ്രഭാവം. സാധ്യമായ മൂല്ല്യങ്ങള്‍: " +"\"shadow\", \"none\", \"border\"." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3187,11 +3261,13 @@ #: mate-screenshot/src/mate-screenshot.c:1320 msgid "Take screenshot after specified delay [in seconds]" -msgstr "നല്‍കിയിരിക്കുന്ന സമയത്തിന് [സെക്കന്‍ഡുകള്‍] ശേഷം സ്ക്രീന്‍ഷോട്ട് എടുക്കുക " +msgstr "" +"നല്‍കിയിരിക്കുന്ന സമയത്തിന് [സെക്കന്‍ഡുകള്‍] ശേഷം സ്ക്രീന്‍ഷോട്ട് എടുക്കുക " #: mate-screenshot/src/mate-screenshot.c:1321 msgid "Effect to add to the border (shadow, border or none)" -msgstr "അതിരിലേക്ക് ചേര്‍ക്കുവാനുള്ള പ്രഭാവം (shadow, border അല്ലെങ്കില്‍ none)" +msgstr "" +"അതിരിലേക്ക് ചേര്‍ക്കുവാനുള്ള പ്രഭാവം (shadow, border അല്ലെങ്കില്‍ none)" #: mate-screenshot/src/mate-screenshot.c:1321 msgid "effect" @@ -3211,15 +3287,17 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 msgid "" "Conflicting options: --window and --area should not be used at the same " "time.\n" -msgstr "പൊരുത്തപ്പെടാത്ത ഉപാധികള്‍: --window, --area ഒരേ സമയത്തുപയോഗിക്കുവാന്‍ പാടില്ല.\n" +msgstr "" +"പൊരുത്തപ്പെടാത്ത ഉപാധികള്‍: --window, --area ഒരേ സമയത്തുപയോഗിക്കുവാന്‍ " +"പാടില്ല.\n" #: mate-screenshot/src/screenshot-dialog.c:210 #, c-format @@ -3253,8 +3331,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"ചൈള്‍ഡ് സൂക്ഷിക്കുന്ന പ്രക്രിയയില്‍ നിന്നും അപ്രതീക്ഷിതമായി പുറത്തു് കടന്നു. ഡിസ്കിലേക്ക് സ്ക്രീന്‍ഷോട്ട് " -"സൂക്ഷിക്കുവാന്‍ സാധ്യമല്ല." +"ചൈള്‍ഡ് സൂക്ഷിക്കുന്ന പ്രക്രിയയില്‍ നിന്നും അപ്രതീക്ഷിതമായി പുറത്തു് കടന്നു." +" ഡിസ്കിലേക്ക് സ്ക്രീന്‍ഷോട്ട് സൂക്ഷിക്കുവാന്‍ സാധ്യമല്ല." #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/mn.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/mn.gmo differ diff -Nru mate-utils-1.26.0/po/mn.po mate-utils-1.26.1/po/mn.po --- mate-utils-1.26.0/po/mn.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/mn.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Zorig, 2018 -# Stefano Karapetsas , 2019 -# +# Zorig, 2021 +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2019\n" -"Language-Team: Mongolian (https://www.transifex.com/mate/teams/13566/mn/)\n" -"Language: mn\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Mongolian (https://app.transifex.com/mate/teams/13566/mn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -579,8 +580,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -626,16 +627,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -669,9 +671,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -693,8 +695,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -713,9 +715,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -725,8 +727,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -790,8 +792,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -808,8 +810,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -830,63 +832,63 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Файл нь зөв .desktop файл биш байна" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Дэсктоп файлын танигдахгүй Хувилбар '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s-ийг эхлүүлж байна" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Командын мөрний баримт бичгийг програм хүлээн авахгүй байна" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Танигдахгүй эхлүүлэх сонголт: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "URIs баримт бичгийг 'Type=Link' дэсктопын оролт руу оруулах боломжгүй байна" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Нээж болох зүйл биш байна" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Сэшн менежерт холбогдох боломжгүй болгох" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Тохиргоо сануулсан файлыг ялган харуулах" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ФАЙЛ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Сэшн менежментийн ID-г ялган харуулах" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "Дугаар" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Сэшн менежментийн сонголтууд:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Сэшн менежментийн сонголтуудыг харуулах" @@ -1495,7 +1497,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1506,8 +1509,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1905,7 +1908,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1917,8 +1921,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2932,7 +2936,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3124,8 +3129,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/mr.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/mr.gmo differ diff -Nru mate-utils-1.26.0/po/mr.po mate-utils-1.26.1/po/mr.po --- mate-utils-1.26.0/po/mr.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/mr.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Vaibhav S Dalvi , 2019 # Stefano Karapetsas , 2021 -# +# Vaibhav S Dalvi , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Marathi (https://www.transifex.com/mate/teams/13566/mr/)\n" -"Language: mr\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Vaibhav S Dalvi , 2021\n" +"Language-Team: Marathi (https://app.transifex.com/mate/teams/13566/mr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: mr\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "फोल्डर आकार व उपलब्ध डीस्क जागा तपासा" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -416,7 +417,8 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." -msgstr "सर्वरशी जुळवणी स्थापीत नाही. तुम्ही सर्वर करीता नाव प्रविष्ट केले पाहिजे." +msgstr "" +"सर्वरशी जुळवणी स्थापीत नाही. तुम्ही सर्वर करीता नाव प्रविष्ट केले पाहिजे." #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -475,7 +477,9 @@ msgid "" "The content of your home folder has changed. Select rescan to update the " "disk usage details." -msgstr "मुख्य संचयीकेचे आशय बदलले. डीस्क वापर तपशील अद्ययावत करण्याकरीता पुन्हा स्कॅन करा." +msgstr "" +"मुख्य संचयीकेचे आशय बदलले. डीस्क वापर तपशील अद्ययावत करण्याकरीता पुन्हा " +"स्कॅन करा." #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -587,8 +591,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -632,16 +636,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "या संगणकावरील दस्तऐवज व फोल्डर नाव विषयसूचीनुरूप शोधा" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -668,8 +673,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"शोध साधन साधारण फाइल नाव शोधतेवेळी शोध आदेशचा वापर अकार्यान्वीत करते का हे या कळ " -"द्वारे निश्चित केले जाते." +"शोध साधन साधारण फाइल नाव शोधतेवेळी शोध आदेशचा वापर अकार्यान्वीत करते का हे " +"या कळ द्वारे निश्चित केले जाते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -677,13 +682,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"शोध साधनाने जलद शोधमधून कोणते मार्ग वगळायचे हे या किल्ली द्वारे निश्चित केले जाते. " -"वाईल्डकार्ड '*' व '?' समर्थीत आहे. मुलभूत मुल्य आहे /mnt/*, /media/*, /dev/*, /tmp/" -"*, /proc/*, व /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"शोध साधनाने जलद शोधमधून कोणते मार्ग वगळायचे हे या किल्ली द्वारे निश्चित केले" +" जाते. वाईल्डकार्ड '*' व '?' समर्थीत आहे. मुलभूत मुल्य आहे /mnt/*, /media/*," +" /dev/*, /tmp/*, /proc/*, व /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -694,8 +699,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"जलद शोध केल्यावर शोध साधन find आदेशचा वापर अकार्यान्वीत करते का हे या कळ द्वारे " -"निश्चित केले जाते." +"जलद शोध केल्यावर शोध साधन find आदेशचा वापर अकार्यान्वीत करते का हे या कळ " +"द्वारे निश्चित केले जाते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -706,12 +711,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"सेकंद शोध साधनाने जलद शोधमधून कोणते मार्ग वगळायचे हे या किल्ली द्वारे निश्चित केले जाते. " -"फाइल शोधण्याकरीता सेकंद स्कॅन फाइल आदेश वापरले जाते. सेकंद स्कॅनचा उद्देश विनाक्रमांकीत " -"फाइली शोधण्याचे आहे.वाईल्डकार्ड '*' व '?' समर्थीत आहे. मुलभूत मुल्य आहे /." +"सेकंद शोध साधनाने जलद शोधमधून कोणते मार्ग वगळायचे हे या किल्ली द्वारे " +"निश्चित केले जाते. फाइल शोधण्याकरीता सेकंद स्कॅन फाइल आदेश वापरले जाते. " +"सेकंद स्कॅनचा उद्देश विनाक्रमांकीत फाइली शोधण्याचे आहे.वाईल्डकार्ड '*' व '?'" +" समर्थीत आहे. मुलभूत मुल्य आहे /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -722,8 +728,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"शोध परिणामात ही किल्ली स्तंभ क्रमवारी व्याख्यीत करते. वापरकर्त्याने ही किल्ली संपादीत " -"करायची नाही." +"शोध परिणामात ही किल्ली स्तंभ क्रमवारी व्याख्यीत करते. वापरकर्त्याने ही " +"किल्ली संपादीत करायची नाही." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -731,12 +737,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"ही किल्ली चौकट रूंदी व्याख्यीत करते, व त्याचा वापर सत्र आंतरीक शोध साधनचे आकार लक्षात " -"ठेवण्याकरीता वापरले जाते. -1 निश्चित केल्यास शोध साधन मुलभूत रूंदी वापरते." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"ही किल्ली चौकट रूंदी व्याख्यीत करते, व त्याचा वापर सत्र आंतरीक शोध साधनचे " +"आकार लक्षात ठेवण्याकरीता वापरले जाते. -1 निश्चित केल्यास शोध साधन मुलभूत " +"रूंदी वापरते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -745,11 +752,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"ही किल्ली चौकट ऊंची व्याख्यीत करते, व त्याचा वापर सत्र आंतरीक शोध साधनचे आकार लक्षात " -"ठेवण्याकरीता वापरले जाते. -1 निश्चित केल्यास शोध साधन मुलभूत ऊंची वापरते." +"ही किल्ली चौकट ऊंची व्याख्यीत करते, व त्याचा वापर सत्र आंतरीक शोध साधनचे " +"आकार लक्षात ठेवण्याकरीता वापरले जाते. -1 निश्चित केल्यास शोध साधन मुलभूत " +"ऊंची वापरते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -759,7 +767,8 @@ msgid "" "This key determines if the search tool window starts in a maximized state." msgstr "" -"ही कळ शोध साधन चौकट मोठ्यात मोठी स्थिती मध्ये सुरू करायचे की नाही हे निश्चित करते." +"ही कळ शोध साधन चौकट मोठ्यात मोठी स्थिती मध्ये सुरू करायचे की नाही हे निश्चित" +" करते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -774,169 +783,169 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"शोध साधन सुरू केल्यावर \"पाठ्य समाविष्टीत\" शोध पर्याय निवडले गेले का हे या कळ द्वारे " -"निश्चित केले जाते." +"शोध साधन सुरू केल्यावर \"पाठ्य समाविष्टीत\" शोध पर्याय निवडले गेले का हे या " +"कळ द्वारे निश्चित केले जाते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"शोध साधन सुरू केल्यावर \"यापेक्षा कमीवेळा बदल केलेली दिनांक\" शोध पर्याय निवडले गेले का हे " -"या कळ द्वारे निश्चित केले जाते." +"शोध साधन सुरू केल्यावर \"यापेक्षा कमीवेळा बदल केलेली दिनांक\" शोध पर्याय " +"निवडले गेले का हे या कळ द्वारे निश्चित केले जाते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"शोध साधन सुरू केल्यावर \"यापेक्षा अधिकवेळा बदल केलेली दिनांक\" शोध पर्याय निवडले गेले का हे " -"या कळ द्वारे निश्चित केले जाते." +"शोध साधन सुरू केल्यावर \"यापेक्षा अधिकवेळा बदल केलेली दिनांक\" शोध पर्याय " +"निवडले गेले का हे या कळ द्वारे निश्चित केले जाते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"शोध साधन सुरू केल्यावर \"किमान आकार\" शोध पर्याय निवडले गेले का हे या कळ द्वारे निश्चित " -"केले जाते." +"शोध साधन सुरू केल्यावर \"किमान आकार\" शोध पर्याय निवडले गेले का हे या कळ " +"द्वारे निश्चित केले जाते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"शोध साधन सुरू केल्यावर \"कमाल आकार\" शोध पर्याय निवडले गेले का हे या कळ द्वारे निश्चित " -"केले जाते." +"शोध साधन सुरू केल्यावर \"कमाल आकार\" शोध पर्याय निवडले गेले का हे या कळ " +"द्वारे निश्चित केले जाते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"शोध साधन सुरू केल्यावर \"फाइल रिकामी आहे\" शोध पर्याय निवडले गेले का हे या कळ द्वारे " -"निश्चित केले जाते." +"शोध साधन सुरू केल्यावर \"फाइल रिकामी आहे\" शोध पर्याय निवडले गेले का हे या " +"कळ द्वारे निश्चित केले जाते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"शोध साधन सुरू केल्यावर \"वापरकर्त्याची मालकी\" शोध पर्याय निवडले गेले का हे या कळ द्वारे " -"निश्चित केले जाते." +"शोध साधन सुरू केल्यावर \"वापरकर्त्याची मालकी\" शोध पर्याय निवडले गेले का हे " +"या कळ द्वारे निश्चित केले जाते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"शोध साधन सुरू केल्यावर \"गट मालकी\" शोध पर्याय निवडले गेले का हे या कळ द्वारे निश्चित केले " -"जाते." +"शोध साधन सुरू केल्यावर \"गट मालकी\" शोध पर्याय निवडले गेले का हे या कळ " +"द्वारे निश्चित केले जाते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"शोध साधन सुरू केल्यावर \"मालक अपरिचीत आहे\" शोध पर्याय निवडले गेले का हे या कळ द्वारे " -"निश्चित केले जाते." +"शोध साधन सुरू केल्यावर \"मालक अपरिचीत आहे\" शोध पर्याय निवडले गेले का हे या " +"कळ द्वारे निश्चित केले जाते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"शोध साधन सुरू केल्यावर \"नावत हे समाविष्टीत नाही\" शोध पर्याय निवडले गेले का हे या कळ " -"द्वारे निश्चित केले जाते." +"शोध साधन सुरू केल्यावर \"नावत हे समाविष्टीत नाही\" शोध पर्याय निवडले गेले का" +" हे या कळ द्वारे निश्चित केले जाते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"शोध साधन सुरू केल्यावर \"अक्षर माळाशी नाव जुळविले जाते\" शोध पर्याय निवडले गेले का हे या " -"कळ द्वारे निश्चित केले जाते." +"शोध साधन सुरू केल्यावर \"अक्षर माळाशी नाव जुळविले जाते\" शोध पर्याय निवडले " +"गेले का हे या कळ द्वारे निश्चित केले जाते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"शोध साधन सुरू केल्यावर \"लपविलेले फाइल व फोल्डर दर्शवा\" शोध पर्याय निवडले गेले का हे या " -"कळ द्वारे निश्चित केले जाते." +"शोध साधन सुरू केल्यावर \"लपविलेले फाइल व फोल्डर दर्शवा\" शोध पर्याय निवडले " +"गेले का हे या कळ द्वारे निश्चित केले जाते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"शोध साधन सुरू केल्यावर \"चिन्हांकीत जोडणी अनुसरा\" शोध पर्याय निवडले गेले का हे या कळ " -"द्वारे निश्चित केले जाते." +"शोध साधन सुरू केल्यावर \"चिन्हांकीत जोडणी अनुसरा\" शोध पर्याय निवडले गेले का" +" हे या कळ द्वारे निश्चित केले जाते." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"शोध उपकरन सुरू केल्यावर \"Exclude other filesystem\" शोध पर्याय नीवडयाचे, हे ही कि " -"ओळखले." +"शोध उपकरन सुरू केल्यावर \"Exclude other filesystem\" शोध पर्याय नीवडयाचे, हे" +" ही कि ओळखले." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "फाइल वैध .desktop फाइल नाही" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "अनोळखी डेस्कटॉप फाइल आवृत्ती '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s सुरू करत आहे" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "आदेश ओळ पासून अनुप्रयोग दस्तऐवज स्वीकारत नाही" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "अनोळखी प्रक्षेपण पर्याय: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "'Type=Link' डेस्कटॉप नोंदणी करीता दस्तऐवजातील URIs पाठवू शकत नाही" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "प्रक्षेपण घटक नाही" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "सत्र व्यवस्थापकशी जुळवणी अकार्यान्वीत करा" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "साठवलेली संयोजना समाविष्टीत फाइल निश्चित करा" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "सत्र व्यवस्थापन ID निश्चित करा" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "सत्र व्यवस्थापन पर्याय:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "सत्र व्यवस्थापन पर्याय दाखवा" @@ -1099,7 +1108,8 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" -msgstr "खालीलपैकी एका रीतीने फाइल चाळा: नाव, फोल्डर, आकार, प्रकार, किंवा दिनांक" +msgstr "" +"खालीलपैकी एका रीतीने फाइल चाळा: नाव, फोल्डर, आकार, प्रकार, किंवा दिनांक" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1146,7 +1156,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"शोध परिणाम कालबाह्य किंवा अवैध असतील. तुम्हाला जलद शोध वैशिष्ट अकार्यान्वीत करायचे?" +"शोध परिणाम कालबाह्य किंवा अवैध असतील. तुम्हाला जलद शोध वैशिष्ट अकार्यान्वीत" +" करायचे?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1427,7 +1438,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "If you replace an existing file, its contents will be overwritten." -msgstr "अस्तित्वात असलेली फाइल बदलविल्यास, त्यातील आशय खोडून पुन्हा लिहीले जाईल." +msgstr "" +"अस्तित्वात असलेली फाइल बदलविल्यास, त्यातील आशय खोडून पुन्हा लिहीले जाईल." #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 @@ -1544,7 +1556,8 @@ msgid "View or monitor system log files" msgstr "प्रणाली लॉग फाइली पहा किंवा निरिक्षीत करा" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1555,11 +1568,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"सुरूवातीला दर्शविण्याजोगी लॉग फाइल निश्चित करतो. कार्यप्रणालीवर अबलंबून, मुलभूत एकतर /" -"var/adm/messages किंवा /var/log/messages असते." +"सुरूवातीला दर्शविण्याजोगी लॉग फाइल निश्चित करतो. कार्यप्रणालीवर अबलंबून, " +"मुलभूत एकतर /var/adm/messages किंवा /var/log/messages असते." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1570,8 +1583,8 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"मुख्य वृक्ष दृश्यतील लॉग दर्शविण्याकरीता ठराविक-रूंदीचे फॉन्ट आकार निश्चित करतो. मुलभूत " -"टर्मिनल फॉन्ट आकारापासून मुलभूत मुल्य प्राप्त केले जाते." +"मुख्य वृक्ष दृश्यतील लॉग दर्शविण्याकरीता ठराविक-रूंदीचे फॉन्ट आकार निश्चित " +"करतो. मुलभूत टर्मिनल फॉन्ट आकारापासून मुलभूत मुल्य प्राप्त केले जाते." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1598,8 +1611,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"सुरूवातीला दर्शविण्याजोगी लॉग फाइलीची यादी निश्चित करतो. मुलभूत यादी /etc/syslog." -"conf वाचून निर्माण केली जाते." +"सुरूवातीला दर्शविण्याजोगी लॉग फाइलीची यादी निश्चित करतो. मुलभूत यादी " +"/etc/syslog.conf वाचून निर्माण केली जाते." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1960,7 +1973,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "ऑनलाईन शब्दकोशात शब्द व्याख्या व शब्दलेखन करीता तपासा" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1972,8 +1986,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2003,8 +2017,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"माहितीकोष स्त्रोत वर वापरण्याकरीताचे मुलभूत माहितीकोष किंवा मेटा-डाटाबेस नाव. विवरण " -"चिन्ह (\"!\") म्हणजे माहितीकोष स्त्रोत मधील सर्व डाटाबेस शोधले पाहिजे" +"माहितीकोष स्त्रोत वर वापरण्याकरीताचे मुलभूत माहितीकोष किंवा मेटा-डाटाबेस " +"नाव. विवरण चिन्ह (\"!\") म्हणजे माहितीकोष स्त्रोत मधील सर्व डाटाबेस शोधले " +"पाहिजे" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2015,8 +2030,8 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"उपलब्ध असल्यास, शब्दकोश स्त्रोत वापरण्याकरीताचे मुलभूत शोध योजना नाव. मुलभूत योजना " -"'अचूक' आहे, म्हणजेच अचूक शब्द शोधते." +"उपलब्ध असल्यास, शब्दकोश स्त्रोत वापरण्याकरीताचे मुलभूत शोध योजना नाव. मुलभूत" +" योजना 'अचूक' आहे, म्हणजेच अचूक शब्द शोधते." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2033,7 +2048,8 @@ #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22 msgid "" "The name of the dictionary source used to retrieve the definitions of words." -msgstr "शब्दांची व्याख्या प्राप्त करण्याकरीता वापरलेले शब्दकोश स्त्रोताचे नाव." +msgstr "" +"शब्दांची व्याख्या प्राप्त करण्याकरीता वापरलेले शब्दकोश स्त्रोताचे नाव." #: mate-dictionary/data/thai.desktop.in:3 msgid "Thai" @@ -2101,8 +2117,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"'%s:%d' वरील शब्दकोश सर्वरशी जुळवणी शक्य नाही. सर्वरने %d कोडसह प्रतिसाद दिला आहे " -"(सर्वर अकार्यक्षम)" +"'%s:%d' वरील शब्दकोश सर्वरशी जुळवणी शक्य नाही. सर्वरने %d कोडसह प्रतिसाद " +"दिला आहे (सर्वर अकार्यक्षम)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -3003,7 +3019,8 @@ msgid "Save images of your desktop or individual windows" msgstr "आपले कार्यस्थळ प्रतिमा किंवा चौकटी संचयीत करा" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3061,8 +3078,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"किनाराच्या बाहेरील बाजूस जोडण्याकरीता प्रभाव. संभाव्य मुल्य आहे \"छाया\", \"काहीच नाही" -"\", व \"किनार\"." +"किनाराच्या बाहेरील बाजूस जोडण्याकरीता प्रभाव. संभाव्य मुल्य आहे \"छाया\", " +"\"काहीच नाही\", व \"किनार\"." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3200,8 +3217,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3242,7 +3259,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"संचयन उपकार्यपध्दती अनपेक्षीतरीत्या बंद झाली. स्क्रीनशॉट डीस्कवर लिहीता आली नाही." +"संचयन उपकार्यपध्दती अनपेक्षीतरीत्या बंद झाली. स्क्रीनशॉट डीस्कवर लिहीता आली" +" नाही." #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ms.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ms.gmo differ diff -Nru mate-utils-1.26.0/po/ms.po mate-utils-1.26.1/po/ms.po --- mate-utils-1.26.0/po/ms.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/ms.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2018 # abuyop , 2021 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: abuyop , 2021\n" -"Language-Team: Malay (https://www.transifex.com/mate/teams/13566/ms/)\n" -"Language: ms\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Malay (https://app.transifex.com/mate/teams/13566/ms/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ms\n" "Plural-Forms: nplurals=1; plural=0;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "Semak saiz folder dan ruang cakera yang tersedia" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "MATE;periksa;cakera;penggunaan;analisis;saiz;ruang;" @@ -214,12 +215,12 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" -"Berdasarkan namanya, Penganalisis Penggunaan Cakera merupakan sebuah utiliti " -"yang anda boleh gunakan untuk melihat dan memantau penggunaan cakera dan " +"Berdasarkan namanya, Penganalisis Penggunaan Cakera merupakan sebuah utiliti" +" yang anda boleh gunakan untuk melihat dan memantau penggunaan cakera dan " "struktur foldernya. Ia memaparkan maklumat ringkasan dalam bentuk carta " "gelang atau peta pepohon." @@ -274,7 +275,7 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d item" +msgstr[0] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -590,17 +591,17 @@ msgstr "" "Program ini diedarkan dengan harapan ianya berguna tetapi TANPA SEBARANG " "JAMINAN; tanpa sebarang implakasi jaminan KEBOLEHDAGANGAN atau KESESUAIAN " -"UNTUK SESUATU TUJUAN. Sila rujuk GNU General Public LIcense untuk keterangan " -"lanjut." +"UNTUK SESUATU TUJUAN. Sila rujuk GNU General Public LIcense untuk keterangan" +" lanjut." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" -"Anda seharusnya menerima satu salinan Lesen Awam Am GNU bersama program " -"ini. Jika tidak, sila layari ." +"Anda seharusnya menerima satu salinan Lesen Awam Am GNU bersama program ini." +" Jika tidak, sila layari ." #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" @@ -645,9 +646,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" "Alat Gelintar MATE ialah sebuah utiliti ringkas tetapi hebat yang " "membolehkan anda gelintar fail dan folder pada mana-mana sistem fail " @@ -661,7 +662,8 @@ msgstr "" "Cari dokumen dan folder pada komputer ini berdasarkan nama atau kandungan" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -698,13 +700,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Kekunci ini takrifkan laluan alat gelintar akan diasingkan dari gelintar " -"pantas. Kad liar '*' dan '?' tidak disokong. Nilai lalai ialah /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, dan /var/*." +"pantas. Kad liar '*' dan '?' tidak disokong. Nilai lalai ialah /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, dan /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -727,8 +729,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Kekunci ini takrifkan laluan alat gelintar akan diasingkan dari imbasan " "kedua bila melakukan gelintar pantas. Imbasan kedua menggunakan perintah " @@ -745,8 +747,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"Kekunci ini takrifkan tertib lajur didalam hasil gelintar. Kekunci ini tidak " -"patut diubahsuai oleh pengguna." +"Kekunci ini takrifkan tertib lajur didalam hasil gelintar. Kekunci ini tidak" +" patut diubahsuai oleh pengguna." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -754,12 +756,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -"Kekunci ini takrifkan lebar tetingkap, dan ia digunakan untuk mengingat saiz " -"alat gelintar diantara sesi. Penetapannya ke -1 akan menjadikan alat " +"Kekunci ini takrifkan lebar tetingkap, dan ia digunakan untuk mengingat saiz" +" alat gelintar diantara sesi. Penetapannya ke -1 akan menjadikan alat " "gelintar menggunakan lebar lalai." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -769,8 +771,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Kekunci ini takrifkan tinggi tetingkap, dan ia digunakan untuk mengingat " "saiz alat gelintar diantara sesi. Penetapannya ke -1 akan menjadikan alat " @@ -808,16 +810,16 @@ "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"Kekunci ini menentukan jika pilihan gelintar \"Tarikh diubahsuai kurang dari" -"\" dipilih bila alat gelintar dimulakan." +"Kekunci ini menentukan jika pilihan gelintar \"Tarikh diubahsuai kurang " +"dari\" dipilih bila alat gelintar dimulakan." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"Kekunci ini menentukan jika pilihan gelintar \"Tarikh diubahsuai lebih dari" -"\" dipilih bila alat gelintar dimulakan." +"Kekunci ini menentukan jika pilihan gelintar \"Tarikh diubahsuai lebih " +"dari\" dipilih bila alat gelintar dimulakan." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" @@ -853,8 +855,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Kekunci ini menentukan jika pilihan gelintar \"Dimiliki oleh kumpulan\" " "dipilih bila alat gelintar dimulakan." @@ -877,8 +879,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Kekunci ini menentukan jika pilihan gelintar \"Nama sepadan dengan ungkapan " "biasa\" dipilih bila alat gelintar dimulakan." @@ -907,62 +909,62 @@ "Kekunci ini menentukan jika pilihan gelintar \"Diasingkan dari sistem fail " "lain\" dipilih bila alat gelintar dimulakan." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Fail bukanlah fail .desktop yang sah" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Versi fail desktop '%s' tidak dikenali" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Memulakan %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Aplikasi tidak terima dokument pada baris perintah" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Pilihan lancar tidak dikenalpasti: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Tidak dapat luluskan URI dokumen ke masukan desktop 'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Bukan item boleh lancar" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Lumpuhkan sambungan dengan pengurus sesi" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Nyatakan fail mengandungi konfigurasi tersimpan" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FAIL" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Nyatakan ID pengurusan sesi" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Pilihan pengurusan sesi:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Tunjuk pilihan pengurusan sesi" @@ -1101,13 +1103,13 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "%'d Fail Ditemui" +msgstr[0] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "%'d fail ditemui" +msgstr[0] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1124,7 +1126,8 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"Isih fail mengikut salah satu berikut: nama, folder, saiz, jenis, atau tarikh" +"Isih fail mengikut salah satu berikut: nama, folder, saiz, jenis, atau " +"tarikh" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1334,14 +1337,14 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Anda pasti hendak membuka %d dokumen?" +msgstr[0] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Ini akan membuka %d tetingkap secara berasingan." +msgstr[0] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1365,7 +1368,7 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Anda pasti hendak membuka %d folder?" +msgstr[0] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1569,7 +1572,8 @@ msgid "View or monitor system log files" msgstr "Lihat atau pantau fail log sistem" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "MATE;pemantau;lihat;sistem;log;fail;pelihat log;" @@ -1580,11 +1584,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Menentukan fail log yang dipaparkan pada permulaan. Lalai sama ada /var.adm/" -"message atau /var/log/message, bergantung pada sistem operasi anda." +"Menentukan fail log yang dipaparkan pada permulaan. Lalai sama ada " +"/var.adm/message atau /var/log/message, bergantung pada sistem operasi anda." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1838,8 +1842,8 @@ #: logview/src/logview-window.c:778 msgid "View, monitor or analyze your system logs in a gradual manner." msgstr "" -"Lihat, pantau atau analisis log-log sistem anda dalam satu gambaran beransur-" -"ansur." +"Lihat, pantau atau analisis log-log sistem anda dalam satu gambaran " +"beransur-ansur." #: logview/src/logview-window.c:821 mate-dictionary/src/gdict-window.c:1258 msgid "_File" @@ -1992,7 +1996,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Semak takrif perkataan dan sebutan didalam kamus atas talian" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "MATE;kamus;aplet;tesaurus;ejaan;takrifan;dalam talian;" @@ -2004,12 +2009,12 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" -"Kamus MATE membolehkan anda cari perkataan melalui kamus-kamus dalam-talian. " -"Ia telah diprakonfigur dengan satu senarai pelayan Kamus (RFC 2229), yang " +"Kamus MATE membolehkan anda cari perkataan melalui kamus-kamus dalam-talian." +" Ia telah diprakonfigur dengan satu senarai pelayan Kamus (RFC 2229), yang " "mana anda boleh menambah sumber anda sendiri, anda juga boleh memilih " "pelayan-pelayan khusus untuk pertanyaan tertentu." @@ -2040,8 +2045,8 @@ "present in a dictionary source should be searched" msgstr "" "Nama bagi pengkalan data individu lalai atau meta-database yang digunakan " -"pada sumber kamus. Tanda seruan (\"!\") bermaksud semua pengkalan data hadir " -"didalam sumber kamus patut digelintar" +"pada sumber kamus. Tanda seruan (\"!\") bermaksud semua pengkalan data hadir" +" didalam sumber kamus patut digelintar" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2736,7 +2741,7 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "%d takrifan ditemui" +msgstr[0] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -3048,7 +3053,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Simpan imej desktop anda atau tetingkap secara individu" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "MATE;tangkap layar;petikan;desktop;tetingkap;imej;" @@ -3087,7 +3093,8 @@ #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:16 msgid "Include the window manager border along with the screenshot" -msgstr "Sertakan sempadan pengurus tetingkap bersama-sama dengan tangkap layar" +msgstr "" +"Sertakan sempadan pengurus tetingkap bersama-sama dengan tangkap layar" #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:20 msgid "Include Pointer" @@ -3106,8 +3113,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Kesan untuk ditambah diluar sempadan. Nilai yang mungkin adalah \"bebayang" -"\", \"tiada\", dan \"sempadan\"." +"Kesan untuk ditambah diluar sempadan. Nilai yang mungkin adalah " +"\"bebayang\", \"tiada\", dan \"sempadan\"." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3245,11 +3252,11 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" -"Pilihan berkonflik: --clipboard dan --interactive tidak patut digunakan pada " -"masa yang sama.\n" +"Pilihan berkonflik: --clipboard dan --interactive tidak patut digunakan pada" +" masa yang sama.\n" #: mate-screenshot/src/mate-screenshot.c:1363 msgid "" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/nb.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/nb.gmo differ diff -Nru mate-utils-1.26.0/po/nb.po mate-utils-1.26.1/po/nb.po --- mate-utils-1.26.0/po/nb.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/nb.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,28 +2,28 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Kenneth Jenssen , 2018 -# Kim Malmo , 2018 -# b84df44fb72862b85bae7a669218c6c2, 2019 -# heskjestad , 2021 +# b84df44fb72862b85bae7a669218c6c2, 2021 +# Kim Malmo , 2021 # Stefano Karapetsas , 2021 # Allan Nordhøy , 2021 -# +# Kenneth Jenssen , 2021 +# 87d96f43665dd9fb55eba4603e184cae, 2021 +# heskjestad , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Allan Nordhøy , 2021\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/mate/teams/13566/" -"nb/)\n" -"Language: nb\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: heskjestad , 2021\n" +"Language-Team: Norwegian Bokmål (https://app.transifex.com/mate/teams/13566/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -35,7 +35,8 @@ msgid "Check folder sizes and available disk space" msgstr "Sjekk mappestørrelser og tilgjengelig diskplass" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "MATE;sjekk;diskbruk;analyser;størrelse;ledig;" @@ -171,7 +172,7 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:10 msgid "Whether any change to the home directory should be monitored." -msgstr "Om endringer i hjemmekatalogen skal overvåkes." +msgstr "Om endringer i hjemmemappa skal overvåkes." #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:14 msgid "Excluded partitions URIs" @@ -219,8 +220,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" "Som navnet antyder er Diskbrukanalyse et grafisk verktøy som kan vise og " @@ -286,7 +287,7 @@ #: baobab/src/baobab.c:594 msgid "Changes to your home folder will not be monitored." -msgstr "Endringer i hjemmekatalogen vil ikke overvåkes." +msgstr "Endringer i hjemmemappa vil ikke overvåkes." #: baobab/src/baobab.c:913 msgid "Move to parent folder" @@ -318,11 +319,11 @@ #: baobab/src/baobab.c:1225 msgid "[DIRECTORY]" -msgstr "[KATALOG]" +msgstr "[MAPPE]" #: baobab/src/baobab.c:1257 msgid "Too many arguments. Only one directory can be specified." -msgstr "For mange argumenter. Du kan kun oppgi en katalog." +msgstr "For mange argumenter. Du kan kun oppgi ei mappe." #: baobab/src/baobab.c:1274 msgid "Could not detect any mount point." @@ -593,14 +594,14 @@ "more details." msgstr "" "Programmet distribueres i håp om at programmet er nyttig, men uten NOEN " -"GARANTI, ikke engang implisitt garanti om at det er SALGBART eller PASSER ET " -"BESTEMT FORMÅL. Se GNU General Public License for detaljer." +"GARANTI, ikke engang implisitt garanti om at det er SALGBART eller PASSER ET" +" BESTEMT FORMÅL. Se GNU General Public License for detaljer." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" "Du skal ha fått en kopi av GNU General Public License med dette programmet. " "Hvis ikke, se ." @@ -658,21 +659,22 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" "MATE Søkeverktøy er et enkelt, men funksjonsrikt verktøy som kan søke etter " "filer og mapper på alle monterte filsystem. Grensesnittet gir rask tilgang " -"til mange slags søkeparametre, slik som tekst i fil, eierskap, endringsdato, " -"filstørrelse, og ekskludering av mapper." +"til mange slags søkeparametre, slik som tekst i fil, eierskap, endringsdato," +" filstørrelse, og ekskludering av mapper." #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" "Finn dokumenter og mapper på denne datamaskinen etter navn eller innhold" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -700,8 +702,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"Denne nøkkelen bestemmer om søkeverktøyet deaktiverer bruken av «locate»-" -"kommandoen under enkle filnavnsøk." +"Denne nøkkelen bestemmer om søkeverktøyet deaktiverer bruken av " +"«locate»-kommandoen under enkle filnavnsøk." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -709,9 +711,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Denne nøkkelen definerer stiene som søkeverktøyet vil ekskludere i et raskt " "søk. Jokertegnene «*» og «?» er støttet. De forvalgte verdiene er /mnt/*, / " @@ -726,8 +728,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"Denne nøkkelen bestemmer om søkeverktøyet slår av bruken av «find»-" -"kommandoen etter å ha utført et raskt søk." +"Denne nøkkelen bestemmer om søkeverktøyet slår av bruken av " +"«find»-kommandoen etter å ha utført et raskt søk." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -738,12 +740,12 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Denne nøkkelen definerer stiene som søkeverktøyet vil ekskludere fra det " -"neste raske søket. Det neste søket bruker «find»-kommandoen til å søke etter " -"filer. Hensikten med det neste søket er å finne filer som ikke har blitt " +"neste raske søket. Det neste søket bruker «find»-kommandoen til å søke etter" +" filer. Hensikten med det neste søket er å finne filer som ikke har blitt " "indeksert. Jokertegnene «*» og «?» er støttet. Den forvalgte verdien er /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -764,9 +766,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Denne nøkkelen definerer bredden på vinduet, og den er brukt til å huske " "størrelsen på søkeverktøyet mellom økter. Ved å sette denne til -1, vil " @@ -779,8 +781,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Denne nøkkelen definerer høyden på vinduet, og den er brukt til å huske " "størrelsen på søkevertøyet mellom økter. Ved å sette den til -1, vil " @@ -861,8 +863,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Denne nøkkelen bestemmer om «Eies av gruppe» alternativet skal gjelde når " "søkeverktøyet starter." @@ -872,8 +874,8 @@ "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"Denne nøkkelen bestemmer om «Eier gjenkjennes ikke» alternativet skal gjelde " -"når søkeverktøyet starter." +"Denne nøkkelen bestemmer om «Eier gjenkjennes ikke» alternativet skal gjelde" +" når søkeverktøyet starter." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" @@ -885,8 +887,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Denne nøkkelen bestemmer om «Navn har treff på vanlig uttrykk» skal gjelde " "når søkeverktøyet starter." @@ -904,8 +906,8 @@ "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"Denne nøkkelen bestemmer om «Følg symbolske lenker» alternativet skal gjelde " -"når søkeverktøyet starter." +"Denne nøkkelen bestemmer om «Følg symbolske lenker» alternativet skal gjelde" +" når søkeverktøyet starter." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" @@ -915,62 +917,63 @@ "Denne nøkkelen bestemmer om «Ekskluder andre filsystemer» alternativet skal " "gjelde når søkeverktøyet starter." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Filen er ikke en gyldig .desktop-fil" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Kjenner ikke igjen versjon «%s» i desktop-fil" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Starter %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Programmet tar ikke dokumenter på kommandolinjen" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Kjenner ikke igjen oppstartsalternativ: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" -msgstr "Kan ikke gi URIer til dokumenter til en oppføring av type «Types=Link»" +msgstr "" +"Kan ikke gi URIer til dokumenter til en oppføring av type «Types=Link»" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Ikke en startbar oppføring" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Slå av tilkobling til øktbehandler" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Oppgi fil som inneholder lagret oppsett" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FIL" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Oppgi øktbehandlings-ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Alternativer for øktbehandling:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Vis alternativer for øktbehandling" @@ -1095,7 +1098,7 @@ #: gsearchtool/src/gsearchtool.c:994 gsearchtool/src/gsearchtool.c:1023 msgid "No files found" -msgstr "Ingen filer funnet" +msgstr "Fant ingen filer" #: gsearchtool/src/gsearchtool.c:1016 msgid "(stopped)" @@ -1103,7 +1106,7 @@ #: gsearchtool/src/gsearchtool.c:1022 msgid "No Files Found" -msgstr "Ingen filer funnet" +msgstr "Fant ingen filer" #: gsearchtool/src/gsearchtool.c:1027 #, c-format @@ -1172,8 +1175,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"Søkeresultatet kan være ugyldig. Det ble funnet feil under utføring av dette " -"søket." +"Søkeresultatet kan være ugyldig. Det ble funnet feil under utføring av dette" +" søket." #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1585,7 +1588,8 @@ msgid "View or monitor system log files" msgstr "Vis eller overvåk systemets loggfiler" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "MATE;overvåk;vis;systemlogg;filer;loggfiler;" @@ -1596,11 +1600,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Angir loggfilen som skal åpnes ved oppstart. Forvalg er enten /var/adm/" -"messages eller /var/log/messages, avhengig av ditt operativsystem." +"Angir loggfilen som skal åpnes ved oppstart. Forvalg er enten " +"/var/adm/messages eller /var/log/messages, avhengig av ditt operativsystem." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1696,7 +1700,7 @@ #: logview/src/logview-app.c:369 #, c-format msgid "Impossible to open the file %s" -msgstr "Kam ikke åpne filen %s" +msgstr "Kan ikke åpne filen %s" #: logview/src/logview-filter-manager.c:93 msgid "Filter name is empty!" @@ -1741,7 +1745,7 @@ #: logview/src/logview-findbar.c:187 msgid "Find previous occurrence of the search string" -msgstr "Finn forrige oppføring av søkestrengen" +msgstr "Finn forrige forekomst av søkestrengen" #: logview/src/logview-findbar.c:192 msgid "Find Next" @@ -1749,7 +1753,7 @@ #: logview/src/logview-findbar.c:195 msgid "Find next occurrence of the search string" -msgstr "Finn neste oppøring av søkestrengen" +msgstr "Finn neste forekomst av søkestrengen" #: logview/src/logview-findbar.c:202 msgid "Clear the search string" @@ -1838,7 +1842,7 @@ #: mate-dictionary/libgdict/gdict-defbox.c:1219 #: mate-dictionary/libgdict/gdict-defbox.c:1253 msgid "Not found" -msgstr "Ikke funnet" +msgstr "Fant ikke" #: logview/src/logview-window.c:773 msgid "About System Log Viewer" @@ -1902,7 +1906,7 @@ #: logview/src/logview-window.c:838 msgid "_Find..." -msgstr "_Finn …" +msgstr "_Finn…" #: logview/src/logview-window.c:838 msgid "Find a word or phrase in the log" @@ -1947,7 +1951,7 @@ #: logview/src/logview-window.c:853 mate-dictionary/src/gdict-applet.c:1176 #: mate-dictionary/src/gdict-window.c:1314 msgid "_About" -msgstr "Om" +msgstr "_Om" #: logview/src/logview-window.c:853 msgid "Show the about dialog for the log viewer" @@ -2007,7 +2011,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Sjekk orddefinisjoner og staving i en ordbok på nettet" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "MATE;ordbok,programtillegg;synonymordbok;stave;definisjon;nett;" @@ -2019,8 +2024,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" "MATE Ordbok kan slå opp i ordbøker på nettet. Programmet har en forvalgt " @@ -2134,8 +2139,7 @@ #: mate-dictionary/libgdict/gdict-client-context.c:1052 #, c-format msgid "Lookup failed for hostname '%s': no suitable resources found" -msgstr "" -"Oppslag mislyktes for vertsnavn «%s»: Ingen passende ressurser ble funnet" +msgstr "Oppslag mislyktes for vertsnavn «%s»: Fant ingen passende ressurser" #: mate-dictionary/libgdict/gdict-client-context.c:1083 #, c-format @@ -2145,7 +2149,7 @@ #: mate-dictionary/libgdict/gdict-client-context.c:1117 #, c-format msgid "Lookup failed for host '%s': host not found" -msgstr "Oppslag mislyktes for vert «%s»: vert ikke funnet" +msgstr "Oppslag mislyktes for vert «%s»: Fant ikke vert" #: mate-dictionary/libgdict/gdict-client-context.c:1169 #, c-format @@ -2168,7 +2172,7 @@ #: mate-dictionary/libgdict/gdict-client-context.c:1217 #, c-format msgid "No definitions found for '%s'" -msgstr "Ingen definisjoner funnet for «%s»" +msgstr "Fant ingen definisjoner for «%s»" #: mate-dictionary/libgdict/gdict-client-context.c:1232 #, c-format @@ -2193,12 +2197,12 @@ #: mate-dictionary/libgdict/gdict-client-context.c:1292 #, c-format msgid "No databases found on dictionary server at '%s'" -msgstr "Ingen databaser funnet på ordboktjener «%s»" +msgstr "Fant ingen databaser på ordboktjener «%s»" #: mate-dictionary/libgdict/gdict-client-context.c:1307 #, c-format msgid "No strategies found on dictionary server at '%s'" -msgstr "Ingen strategier funnet på ordboktjener «%s»" +msgstr "Fant ingen strategier på ordboktjener «%s»" #: mate-dictionary/libgdict/gdict-client-context.c:1732 #, c-format @@ -2353,7 +2357,7 @@ #: mate-dictionary/libgdict/gdict-source.c:436 #, c-format msgid "No '%s' group found inside the dictionary source definition" -msgstr "Ingen gruppe \"%s\" funnet i ordbokkildens definisjon" +msgstr "Fant ikke gruppa «%s» i kildedefinisjonen for ordbok" #: mate-dictionary/libgdict/gdict-source.c:452 #: mate-dictionary/libgdict/gdict-source.c:476 @@ -2361,13 +2365,13 @@ #: mate-dictionary/libgdict/gdict-source.c:525 #, c-format msgid "Unable to get the '%s' key inside the dictionary source definition: %s" -msgstr "Kunne ikke finne nøkkelen «%s» i kildedefinisjonen for ordbok: %s" +msgstr "Fant ikke nøkkelen «%s» i kildedefinisjonen for ordbok: %s" #: mate-dictionary/libgdict/gdict-source.c:550 #, c-format msgid "" "Unable to get the '%s' key inside the dictionary source definition file: %s" -msgstr "Kan ikke finne nøkkelen «%s» i definisjonsfilen for ordbokkilde: %s" +msgstr "Fant ikke nøkkelen «%s» i definisjonsfilen for ordbokkilde: %s" #: mate-dictionary/libgdict/gdict-source.c:736 msgid "Dictionary source does not have name" @@ -2396,7 +2400,7 @@ #: mate-dictionary/libgdict/gdict-source-loader.c:177 msgid "Dictionary sources found" -msgstr "Ordbokkilder funnet" +msgstr "Fant ordbokkilder" #: mate-dictionary/libgdict/gdict-speller.c:347 msgid "Clear the list of similar words" @@ -2476,8 +2480,8 @@ "\n" "%s\n" msgstr "" -"Definisjon av \"%s\"\n" -" Fra \"%s\":\n" +"Definisjon av «%s»\n" +" Fra «%s»:\n" "\n" "%s\n" @@ -2492,7 +2496,7 @@ #: mate-dictionary/src/gdict-app.c:260 msgid "Unable to find a suitable dictionary source" -msgstr "Kan ikke finne en passende ordbokkilde" +msgstr "Fant ikke en passende ordbokkilde" #: mate-dictionary/src/gdict-app.c:294 #, c-format @@ -2637,7 +2641,7 @@ #: mate-dictionary/src/gdict-applet.c:872 #: mate-dictionary/src/gdict-window.c:499 msgid "Unable to find dictionary source" -msgstr "Kan ikke finne ordbokkilde" +msgstr "Fant ikke ordbokkilde" #: mate-dictionary/src/gdict-applet.c:888 #: mate-dictionary/src/gdict-window.c:515 @@ -2750,7 +2754,7 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Fant én definisjon" +msgstr[0] "Fant %d definisjon" msgstr[1] "Fant %d definisjoner" #: mate-dictionary/src/gdict-window.c:578 @@ -2809,7 +2813,7 @@ #: mate-dictionary/src/gdict-window.c:1288 msgid "_Preferences" -msgstr "Innstillinger" +msgstr "Innstillin_ger" #: mate-dictionary/src/gdict-window.c:1292 msgid "_Previous Definition" @@ -3048,9 +3052,9 @@ "system clipboard or save them in Portable Network Graphics (.png) image " "format." msgstr "" -"MATE Skjermdump er en enkelt verktøy som kan ta skjermbilder av skrivebordet " -"eller programvinduer. Bildene kan kopieres til utklippstavla eller lagres i " -"bildeformatet PNG." +"MATE Skjermdump er en enkelt verktøy som kan ta skjermbilder av skrivebordet" +" eller programvinduer. Bildene kan kopieres til utklippstavla eller lagres i" +" bildeformatet PNG." #: mate-screenshot/data/mate-screenshot.desktop.in:3 #: mate-screenshot/src/mate-screenshot.c:519 @@ -3062,7 +3066,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Lagre bilder av ditt skrivebord eller individuelle vinduer" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "MATE;skjermbilde,utklippsverktøy;skrivebord;vindu;bilde;" @@ -3093,7 +3098,7 @@ #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:11 msgid "The directory the last screenshot was saved in." -msgstr "Katalog hvor forrige skjermdump ble lagret." +msgstr "Mappe hvor forrige skjermdump ble lagret." #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:15 msgid "Include Border" @@ -3120,8 +3125,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Effekt som skal legges til på utsiden av kanten. Mulige verdier er «shadow», " -"«none» og «border»." +"Effekt som skal legges til på utsiden av kanten. Mulige verdier er «shadow»," +" «none» og «border»." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3259,10 +3264,11 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" -"Motstridende valg: --clipboard og --interactive kan ikke brukes samtidig.\n" +"Konflikt mellom flagg: --clipboard og --interactive kan ikke brukes " +"samtidig.\n" #: mate-screenshot/src/mate-screenshot.c:1363 msgid "" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/nds.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/nds.gmo differ diff -Nru mate-utils-1.26.0/po/nds.po mate-utils-1.26.1/po/nds.po --- mate-utils-1.26.0/po/nds.po 2021-08-05 19:45:48.000000000 +0000 +++ mate-utils-1.26.1/po/nds.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2019 -# Benedikt Straub , 2020 -# +# Stefano Karapetsas , 2021 +# Benedikt Straub , 2023 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Benedikt Straub , 2020\n" -"Language-Team: Low German (https://www.transifex.com/mate/teams/13566/nds/)\n" -"Language: nds\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Benedikt Straub , 2023\n" +"Language-Team: Low German (https://app.transifex.com/mate/teams/13566/nds/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nds\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -50,7 +51,7 @@ #: baobab/data/baobab-dialog-scan-props.ui:48 logview/src/logview-window.c:829 #: mate-dictionary/src/gdict-window.c:1273 msgid "_Close" -msgstr "_Sluten" +msgstr "Di_chtmaken" #: baobab/data/baobab-dialog-scan-props.ui:81 msgid "Select _devices to include in filesystem scan:" @@ -214,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -579,8 +580,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -627,16 +628,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -670,9 +672,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -694,8 +696,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -714,9 +716,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -726,8 +728,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -791,8 +793,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -809,8 +811,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -831,62 +833,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Datei is keene valide .desktop Datei" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Dateiverschoon '%s' vu'm Schrievdisk nich erkannt" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Starte %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Unbekannte Startoption: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Keen startbares Element" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Deaktivert de Verbinnen to'm Törnoppasser" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Datei mit sekert Konfiguratioon angeven" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Törnoppassens ID ingeven" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Törnoppassensoptschoonen:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Törnoppassensoptschoonen opwiesen" @@ -1491,7 +1493,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1502,8 +1505,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1772,7 +1775,7 @@ #: logview/src/logview-window.c:831 msgid "_Quit" -msgstr "_Sluten" +msgstr "_Beennen" #: logview/src/logview-window.c:831 msgid "Quit the log viewer" @@ -1901,7 +1904,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1913,8 +1917,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2928,7 +2932,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3120,8 +3125,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ne.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ne.gmo differ diff -Nru mate-utils-1.26.0/po/ne.po mate-utils-1.26.1/po/ne.po --- mate-utils-1.26.0/po/ne.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/ne.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,24 +2,24 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Sven Keeter , 2018 -# chautari , 2018 # Stefano Karapetsas , 2021 -# +# Sven Keeter , 2021 +# chautari , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Nepali (https://www.transifex.com/mate/teams/13566/ne/)\n" -"Language: ne\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: chautari , 2021\n" +"Language-Team: Nepali (https://app.transifex.com/mate/teams/13566/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -31,7 +31,8 @@ msgid "Check folder sizes and available disk space" msgstr "फोल्डर साइज र उपलब्ध डिस्क खालीस्थान जाँच गर्नुहोस्" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -215,8 +216,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -477,8 +478,8 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"तपाईँको गृह फोल्डरको सामाग्री परिवर्तन गरिएको छ । डिस्क प्रयोग विवरण अद्यावधिक गर्न " -"फेरि स्क्यान गर्नुहोस् बटन चयन गर्नुहोस् ।" +"तपाईँको गृह फोल्डरको सामाग्री परिवर्तन गरिएको छ । डिस्क प्रयोग विवरण " +"अद्यावधिक गर्न फेरि स्क्यान गर्नुहोस् बटन चयन गर्नुहोस् ।" #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -582,8 +583,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -604,7 +605,8 @@ #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" msgstr "" -"pawan chitrakar ,Narayan Kumar Magar " +"pawan chitrakar ,Narayan Kumar Magar " +"" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -628,16 +630,18 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" -msgstr "यस कम्प्युटरमा नाम वा सामाग्री अनुरूप कागजात र फोल्डर स्थापना गर्नुहोस्" +msgstr "" +"यस कम्प्युटरमा नाम वा सामाग्री अनुरूप कागजात र फोल्डर स्थापना गर्नुहोस्" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -664,8 +668,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"यस कुञ्जीले सामान्य फाइलनाम खोजी सम्पादन गर्दाको स्थापना आदेशको प्रयोग खोजी उपकरणले " -"अक्षम पार्छ या पर्दैन निर्धारण गर्दछ ।" +"यस कुञ्जीले सामान्य फाइलनाम खोजी सम्पादन गर्दाको स्थापना आदेशको प्रयोग खोजी " +"उपकरणले अक्षम पार्छ या पर्दैन निर्धारण गर्दछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -673,13 +677,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"यस कुञ्जीले परिभाषित गर्ने बाटोहरू खोजी उपकरणले छिटो खोजीमा समाबेश गर्दैन । वाइल्डकार्ड " -"'*' र '?' समर्थित छन् । पूर्वनिर्धारित मानहरू /mnt/*, /media/*, /dev/*, /tmp/*, /" -"proc/*, र /var/* हुन् ।" +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"यस कुञ्जीले परिभाषित गर्ने बाटोहरू खोजी उपकरणले छिटो खोजीमा समाबेश गर्दैन । " +"वाइल्डकार्ड '*' र '?' समर्थित छन् । पूर्वनिर्धारित मानहरू /mnt/*, /media/*, " +"/dev/*, /tmp/*, /proc/*, र /var/* हुन् ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -690,8 +694,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"यस कुञ्जीले छरितो खोजी सम्पादन पछाडी फेला पार्ने आदेशको प्रयोग खोजी उपकरणले अक्षम पार्छ " -"या पार्दैन निर्धारण गर्दछ ।" +"यस कुञ्जीले छरितो खोजी सम्पादन पछाडी फेला पार्ने आदेशको प्रयोग खोजी उपकरणले " +"अक्षम पार्छ या पार्दैन निर्धारण गर्दछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -702,13 +706,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"यस कुञ्जीले बाटोहरू परिभाषित गर्दछ, छरितो खोजी सम्पादन गर्दा खोजी उपकरणलाई दोश्रो " -"स्क्यानबाट हटाइन्छ । दोश्रो स्क्यानले फाइलहरू खोजी कार्यमा खोजी आदेश प्रयोग गर्दछ । " -"दोश्रो स्क्यानको उद्देश्य अनुक्रमणिकामा नभएका फाइलको खोजी गर्नु हो । वाइल्डकार्ड '*' र " -"'?' समर्थित छैनन् । पूर्वनिर्धारित मान /. हो ।" +"यस कुञ्जीले बाटोहरू परिभाषित गर्दछ, छरितो खोजी सम्पादन गर्दा खोजी उपकरणलाई " +"दोश्रो स्क्यानबाट हटाइन्छ । दोश्रो स्क्यानले फाइलहरू खोजी कार्यमा खोजी आदेश " +"प्रयोग गर्दछ । दोश्रो स्क्यानको उद्देश्य अनुक्रमणिकामा नभएका फाइलको खोजी " +"गर्नु हो । वाइल्डकार्ड '*' र '?' समर्थित छैनन् । पूर्वनिर्धारित मान /. हो ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -719,8 +723,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"यस कुञ्जीले खोजी परिणाममा स्तम्भको क्रम परिभाषित गर्दछ । यो कुञ्जीलाई प्रयोगकर्ताद्वारा " -"परिमार्जित गरिएको हुनुहुदैँन ।" +"यस कुञ्जीले खोजी परिणाममा स्तम्भको क्रम परिभाषित गर्दछ । यो कुञ्जीलाई " +"प्रयोगकर्ताद्वारा परिमार्जित गरिएको हुनुहुदैँन ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -728,13 +732,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"यस कुञ्जीले सञ्झ्याल चौडाइ परिभाषित गर्दछ, र यसलाई सत्र बीचको खोजी उपकरणको साइज याद " -"गर्न प्रयोग गरिन्छ । यसलाई -१ मा सेटिङ गर्दा खोजी उपकरणलाई पूर्वनिर्धारित चौडाइको " -"बनाउछ ।" +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"यस कुञ्जीले सञ्झ्याल चौडाइ परिभाषित गर्दछ, र यसलाई सत्र बीचको खोजी उपकरणको " +"साइज याद गर्न प्रयोग गरिन्छ । यसलाई -१ मा सेटिङ गर्दा खोजी उपकरणलाई " +"पूर्वनिर्धारित चौडाइको बनाउछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -743,12 +747,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"यस कुञ्जीले सञ्झ्याल उचाइ परिभाषित गर्दछ, र यसलाई सत्र बीचको खोजी उपकरणको साइज याद " -"गर्न प्रयोग गरिन्छ । यसलाई -१ मा सेटिङ गर्दा खोजी उपकरणलाई पूर्वनिर्धारित उचाइको " -"बनाउछ ।" +"यस कुञ्जीले सञ्झ्याल उचाइ परिभाषित गर्दछ, र यसलाई सत्र बीचको खोजी उपकरणको " +"साइज याद गर्न प्रयोग गरिन्छ । यसलाई -१ मा सेटिङ गर्दा खोजी उपकरणलाई " +"पूर्वनिर्धारित उचाइको बनाउछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -757,7 +761,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:50 msgid "" "This key determines if the search tool window starts in a maximized state." -msgstr "यस कुञ्जीले खोजी उपकरण सञ्झ्याल अधिकतम स्थितिमा सुरु हुन्छ या हुदैन निर्धारण गर्दछ ।" +msgstr "" +"यस कुञ्जीले खोजी उपकरण सञ्झ्याल अधिकतम स्थितिमा सुरु हुन्छ या हुदैन निर्धारण" +" गर्दछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -772,104 +778,104 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"यस कुञ्जीले खोजी उपकरण सुरु गर्दा \"पाठ समाविष्ट\" खोजी विकल्प चयन गरिएको छ या छैन " -"निर्धारण गर्दछ ।" +"यस कुञ्जीले खोजी उपकरण सुरु गर्दा \"पाठ समाविष्ट\" खोजी विकल्प चयन गरिएको छ " +"या छैन निर्धारण गर्दछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"यसभन्दा थोरैमा परिमार्जित मिति\" खोजी विकल्प चयन " -"गरिएको छ या छैन निर्धारण गर्दछ ।" +"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"यसभन्दा थोरैमा परिमार्जित मिति\" खोजी " +"विकल्प चयन गरिएको छ या छैन निर्धारण गर्दछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"यसभन्दा धेरैमा परिमार्जित मिति\" खोजी विकल्प चयन " -"गरिएको छ या छैन निर्धारण गर्दछ ।" +"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"यसभन्दा धेरैमा परिमार्जित मिति\" खोजी " +"विकल्प चयन गरिएको छ या छैन निर्धारण गर्दछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"न्यूनतम साइज\" खोजी विकल्प चयन गरिएको छ या छैन " -"निर्धारण गर्दछ ।" +"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"न्यूनतम साइज\" खोजी विकल्प चयन गरिएको छ " +"या छैन निर्धारण गर्दछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"अधिकतम साइज\" खोजी विकल्प चयन गरिएको छ या छैन " -"निर्धारण गर्दछ ।" +"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"अधिकतम साइज\" खोजी विकल्प चयन गरिएको छ " +"या छैन निर्धारण गर्दछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"फाइल खाली छ\" खोजी विकल्प चयन गरिएको छ या छैन " -"निर्धारण गर्दछ ।" +"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"फाइल खाली छ\" खोजी विकल्प चयन गरिएको छ " +"या छैन निर्धारण गर्दछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"प्रयोगकर्ताद्वारा नियन्त्रित\" खोजी विकल्प चयन " -"गरिएको छ या छैन निर्धारण गर्दछ ।" +"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"प्रयोगकर्ताद्वारा नियन्त्रित\" खोजी " +"विकल्प चयन गरिएको छ या छैन निर्धारण गर्दछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"समूहद्वारा नियन्त्रित\" खोजी विकल्प चयन गरिएको छ या " -"छैन निर्धारण गर्दछ ।" +"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"समूहद्वारा नियन्त्रित\" खोजी विकल्प चयन " +"गरिएको छ या छैन निर्धारण गर्दछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"मालिक अपरिचित छ\" खोजी विकल्प चयन गरिएको छ या " -"छैन निर्धारण गर्दछ ।" +"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"मालिक अपरिचित छ\" खोजी विकल्प चयन गरिएको" +" छ या छैन निर्धारण गर्दछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"नाम समाविष्ट छैन\" खोजी विकल्प चयन गरिएको छ या छैन " -"निर्धारण गर्दछ ।" +"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"नाम समाविष्ट छैन\" खोजी विकल्प चयन " +"गरिएको छ या छैन निर्धारण गर्दछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"नाम नियमित अभिव्यक्तिसँग मिल्दछ\" खोजी विकल्प चयन " -"गरिएको छ या छैन निर्धारण गर्दछ ।" +"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"नाम नियमित अभिव्यक्तिसँग मिल्दछ\" खोजी " +"विकल्प चयन गरिएको छ या छैन निर्धारण गर्दछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"लुकेका फाइल र फोल्डर देखाउनुहोस्\" खोजी विकल्प चयन " -"गरिएको छ या छैन निर्धारण गर्दछ ।" +"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"लुकेका फाइल र फोल्डर देखाउनुहोस्\" खोजी " +"विकल्प चयन गरिएको छ या छैन निर्धारण गर्दछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"प्रतिकात्मक लिङ्क अनुगमन गर्नुहोस्\" खोजी विकल्प चयन " -"गरिएको छ या छैन निर्धारण गर्दछ ।" +"यस कुञ्जीले खोजी उपकरण सुरु हुदा, \"प्रतिकात्मक लिङ्क अनुगमन गर्नुहोस्\" " +"खोजी विकल्प चयन गरिएको छ या छैन निर्धारण गर्दछ ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" @@ -877,62 +883,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "फाइल मान्य .डेस्कटप फाइल होइन" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s सुरु गर्दै" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "अपरिचित सुरु विकल्प: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "एउटा सुरुआतयोग्य वस्तु होइन" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "सत्र प्रबन्धकमा जडान गर्न असक्षम" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "फाइल" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "सत्र प्रबन्धक आईडी निर्दिष्ट गर्नुहोस्" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "आईडी" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "सत्र प्रबन्ध विकल्प:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "सत्र प्रबन्ध विकल्प देखाउनुहोस्" @@ -1096,7 +1102,8 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"निम्न मध्ये कुनै एक अनुरूप फाइल क्रमबद्ध गर्नुहोस्: नाम, फोल्डर, साइज, प्रकार, वा मिति" +"निम्न मध्ये कुनै एक अनुरूप फाइल क्रमबद्ध गर्नुहोस्: नाम, फोल्डर, साइज, " +"प्रकार, वा मिति" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1143,8 +1150,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"खोजी परिणाम म्याद समाप्त भएको वा अमान्य हुनसक्छ । तपाईँ छिटो खोजी विशेषता अक्षम " -"पार्न चाहनुहुन्छ ?" +"खोजी परिणाम म्याद समाप्त भएको वा अमान्य हुनसक्छ । तपाईँ छिटो खोजी विशेषता " +"अक्षम पार्न चाहनुहुन्छ ?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1237,7 +1244,8 @@ #: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 msgid "Enter a filename or partial filename with or without wildcards." -msgstr "वाइल्डकार्ड भएको वा नभएको फाइलनाम वा आंशिक फाइलनाम प्रविष्टि गर्नुहोस् ।" +msgstr "" +"वाइल्डकार्ड भएको वा नभएको फाइलनाम वा आंशिक फाइलनाम प्रविष्टि गर्नुहोस् ।" #: gsearchtool/src/gsearchtool.c:2836 msgid "Name contains" @@ -1257,7 +1265,8 @@ #: gsearchtool/src/gsearchtool.c:2858 msgid "Select the folder or device from which you want to begin the search." -msgstr "तपाईँले खोजी सुरु गर्न चाहेको खोजीबाट फोल्डर वा यन्त्र चयन गर्नुहोस् ।" +msgstr "" +"तपाईँले खोजी सुरु गर्न चाहेको खोजीबाट फोल्डर वा यन्त्र चयन गर्नुहोस् ।" #: gsearchtool/src/gsearchtool.c:2876 msgid "Select more _options" @@ -1542,7 +1551,8 @@ msgid "View or monitor system log files" msgstr "प्रणाली लग फाइल हेर्नुहोस् वा अनुगमन गर्नुहोस्" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1553,11 +1563,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"सुरुआतमा प्रदर्शित गरिने कार्य फाइल निर्दिष्ट गर्दछ । पूर्वनिर्धारित तपाईँको सञ्चालन " -"प्रणालीमा निर्भर हुने, या /var/adm/messages वा /var/log/messages हुन्छ ।" +"सुरुआतमा प्रदर्शित गरिने कार्य फाइल निर्दिष्ट गर्दछ । पूर्वनिर्धारित तपाईँको" +" सञ्चालन प्रणालीमा निर्भर हुने, या /var/adm/messages वा /var/log/messages " +"हुन्छ ।" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1568,8 +1579,9 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"मुख्य ट्री दृश्यमा कार्य प्रदर्शन गर्न प्रयोग गरिने निश्चित चौडाइको फन्टको साइज निर्दिष्ट " -"गर्दछ । पूर्वनिर्धारितलाई पूर्वनिर्धारित टर्मिनल फन्ट साइजबाट लिइन्छ ।" +"मुख्य ट्री दृश्यमा कार्य प्रदर्शन गर्न प्रयोग गरिने निश्चित चौडाइको फन्टको " +"साइज निर्दिष्ट गर्दछ । पूर्वनिर्धारितलाई पूर्वनिर्धारित टर्मिनल फन्ट साइजबाट" +" लिइन्छ ।" #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1596,8 +1608,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"सुरुआतमा खोलिने कार्य फाइलको सुची निर्दिष्ट गर्दछ । पूर्वनिर्धारित सूची पढाई /etc/syslog." -"conf अनुरूप सिर्जना गरिन्छ ।" +"सुरुआतमा खोलिने कार्य फाइलको सुची निर्दिष्ट गर्दछ । पूर्वनिर्धारित सूची पढाई" +" /etc/syslog.conf अनुरूप सिर्जना गरिन्छ ।" #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1958,7 +1970,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "अनलाइन शब्दकोशमा शब्द परिभाषा र हिज्जे जाँच गर्नुहोस्" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1970,8 +1983,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2001,8 +2014,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"शब्दकोश स्रोतमा प्रयोग गरिने पूर्वनिर्धारित व्यक्तिगत डेटाबेस वा मेटा डेटाबेसको नाम । " -"विस्मय वोधक चिन्ह (\"!\") को अर्थ हाल शब्दकोशमा प्रस्तुत सबै डेटाबेस स्रोत खोज्नु पर्नेछ ।" +"शब्दकोश स्रोतमा प्रयोग गरिने पूर्वनिर्धारित व्यक्तिगत डेटाबेस वा मेटा " +"डेटाबेसको नाम । विस्मय वोधक चिन्ह (\"!\") को अर्थ हाल शब्दकोशमा प्रस्तुत सबै" +" डेटाबेस स्रोत खोज्नु पर्नेछ ।" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2013,8 +2027,8 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"उपलब्ध भएमा, शब्दकोश स्रोतमा प्रयोग गरिने पूर्वनिर्धारित खोजी रणनीतिको नाम । " -"पूर्वनिर्धारित रणनीति 'दुरुस्त' हो, जुन दुरुस्त शब्दसँग मिल्छ ।" +"उपलब्ध भएमा, शब्दकोश स्रोतमा प्रयोग गरिने पूर्वनिर्धारित खोजी रणनीतिको नाम ।" +" पूर्वनिर्धारित रणनीति 'दुरुस्त' हो, जुन दुरुस्त शब्दसँग मिल्छ ।" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2099,8 +2113,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"शब्दकोश सर्भरलाई '%s:%d' मा जडान गर्न असक्षम । सर्भरले सङ्केत %d भएको जवाफ प्रस्तुत " -"गर्यो (सर्भर डाउन)" +"शब्दकोश सर्भरलाई '%s:%d' मा जडान गर्न असक्षम । सर्भरले सङ्केत %d भएको जवाफ " +"प्रस्तुत गर्यो (सर्भर डाउन)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -3001,7 +3015,8 @@ msgid "Save images of your desktop or individual windows" msgstr "तपाईँको डेस्कटपको वा व्यक्तिगत सञ्झ्यालका छविहरू बचत गर्नुहोस्" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3059,8 +3074,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"किनाराको बाहिरपट्टी थपिने प्रभाव । सम्भावित मान \"छायाँ\", \"कुनै पनि होइन\", र " -"\"किनारा\" हुन् ।" +"किनाराको बाहिरपट्टी थपिने प्रभाव । सम्भावित मान \"छायाँ\", \"कुनै पनि " +"होइन\", र \"किनारा\" हुन् ।" #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3195,8 +3210,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3237,7 +3252,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"चाइल्ड बचत प्रक्रिया अनपेक्षित रूपमा बहिरियो । हामी डिस्कमा सक्रिनसट लेख्न असमर्थ छौ ।" +"चाइल्ड बचत प्रक्रिया अनपेक्षित रूपमा बहिरियो । हामी डिस्कमा सक्रिनसट लेख्न " +"असमर्थ छौ ।" #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/nl.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/nl.gmo differ diff -Nru mate-utils-1.26.0/po/nl.po mate-utils-1.26.1/po/nl.po --- mate-utils-1.26.0/po/nl.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/nl.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,31 +2,31 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Michael Steenbeek , 2018 -# Nathan Follens, 2018 -# Stef Pletinck , 2018 -# b9b0d258fa591da5350b6e67cf68cd68_9fecbb4 <28506b9ff23f99a34b566250ce31bbad_250479>, 2018 -# Erik Bent , 2018 -# 8c3c560621f92e66455793da7b85eff0_8989672 <0e181aafae430e5c919398b6a7bba462_109266>, 2018 -# dragnadh, 2018 +# Nathan Follens, 2021 +# b9b0d258fa591da5350b6e67cf68cd68_9fecbb4 <28506b9ff23f99a34b566250ce31bbad_250479>, 2021 +# Michael Steenbeek , 2021 +# Erik Bent , 2021 +# dragnadh, 2021 +# Kees Lijkendijk , 2021 +# Stef Pletinck , 2021 # Stefano Karapetsas , 2021 +# 8c3c560621f92e66455793da7b85eff0_8989672 <0e181aafae430e5c919398b6a7bba462_109266>, 2021 # Pjotr , 2021 -# Kees Lijkendijk , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Kees Lijkendijk , 2021\n" -"Language-Team: Dutch (https://www.transifex.com/mate/teams/13566/nl/)\n" -"Language: nl\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Pjotr , 2021\n" +"Language-Team: Dutch (https://app.transifex.com/mate/teams/13566/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -38,7 +38,8 @@ msgid "Check folder sizes and available disk space" msgstr "Bekijk mapgroottes en beschikbare schijfruimte" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "MATE;controleren;schijf;gebruik;analyseren;grootte;ruimte;" @@ -104,7 +105,7 @@ #: baobab/data/baobab-main-window.ui:101 logview/src/logview-window.c:823 #: mate-dictionary/src/gdict-window.c:1260 msgid "_View" -msgstr "Venster" +msgstr "_Tonen" #: baobab/data/baobab-main-window.ui:108 msgid "_Toolbar" @@ -225,8 +226,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" "Zoals zijn naam al aangeeft, is Schijfgebruikanalyse een grafisch " @@ -609,11 +610,12 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" -"U zou tezamen met dit programma een exemplaar moeten hebben ontvangen van de " -"GNU General Public License. Indien niet, zie ." +"U zou tezamen met dit programma een exemplaar moeten hebben ontvangen van de" +" GNU General Public License. Indien niet, zie " +"." #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" @@ -634,18 +636,7 @@ #: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" -msgstr "" -"Launchpad-bijdragers:\n" -" Daniël H. https://launchpad.net/~daan-is-here\n" -" Mark Cilissen https://launchpad.net/~pixlism\n" -" Peter van der Does https://launchpad.net/~pdoes\n" -" Tom Louwrier https://launchpad.net/~tom-louwrier\n" -" Twan Coenraad https://launchpad.net/~t.coenraad\n" -" cumulus007 https://launchpad.net/~cumulus-007\n" -" kactusrvm https://launchpad.net/~kactusrvm\n" -" kriekske https://launchpad.net/~kriekenbuik-gmail\n" -"Andere bijdragers:\n" -"Pjotr" +msgstr "Pjotr (pjotrvertaalt@gmail.com)" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -669,27 +660,27 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" "MATE Zoekgereedschap is een eenvoudig maar krachtig gereedschap waarmee u " "bestanden en mappen kunt zoeken in elk aangekoppeld bestandssysteem. Zijn " -"bedieningsschil geeft u direct toegang tot zeer veel soorten parameters voor " -"elke zoekopdracht, zoals tekst in een bestand, eigendom, datum van jongste " +"bedieningsschil geeft u direct toegang tot zeer veel soorten parameters voor" +" elke zoekopdracht, zoals tekst in een bestand, eigendom, datum van jongste " "wijziging, bestandsgrootte, mapuitsluiting, enz." #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Zoek documenten en mappen op deze computer op naam of inhoud" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" -"MATE;zoeken;bestanden;vinden;documenten;mappen;computer;naam;inhoud;" -"gereedschap;" +"MATE;zoeken;bestanden;vinden;documenten;mappen;computer;naam;inhoud;gereedschap;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -723,13 +714,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Deze sleutel bepaalt de paden die bij snelzoeken worden overgeslagen. De " -"jokers ‘*’ en ‘?’ mogen gebruikt worden. De standaardwaarden zijn /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/* en /var/*." +"jokers ‘*’ en ‘?’ mogen gebruikt worden. De standaardwaarden zijn /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/* en /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -740,8 +731,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"Deze sleutel bepaalt of het zoekprogramma het gebruik van de opdracht ‘find’ " -"uitschakelt na het uitvoeren van een snelzoekactie." +"Deze sleutel bepaalt of het zoekprogramma het gebruik van de opdracht ‘find’" +" uitschakelt na het uitvoeren van een snelzoekactie." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -752,14 +743,14 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Deze sleutel bepaalt de paden die bij snelzoeken voor een tweede onderzoek " "worden overgeslagen. Het tweede onderzoek gebruikt het programma ‘find’ om " "bestanden te zoeken. Het doel van het tweede onderzoek is om bestanden te " -"vinden die nog niet zijn geïndexeerd. De wildcards ‘*’ en ‘?’ mogen gebruikt " -"worden. De standaardwaarde is /." +"vinden die nog niet zijn geïndexeerd. De wildcards ‘*’ en ‘?’ mogen gebruikt" +" worden. De standaardwaarde is /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -779,9 +770,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Deze sleutel bepaalt de breedte van het venster. Het wordt gebruikt om de " "afmeting van het zoekvenster te onthouden. Met de waarde -1 zal het " @@ -794,8 +785,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Deze sleutel bepaalt de hoogte van het venster. Het wordt gebruikt om de " "afmetingen van het zoekvenster te onthouden. Met de waarde -1 zal het " @@ -879,8 +870,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Deze sleutel bepaalt of de zoekoptie ‘Eigendom van groep’ geselecteerd is " "bij het opstarten van het zoekprogramma." @@ -903,8 +894,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Deze sleutel bepaalt of de zoekoptie ‘Naam komt overeen met reguliere " "uitdrukking’ geselecteerd is bij het opstarten van het zoekprogramma." @@ -933,64 +924,62 @@ "Deze sleutel bepaalt of de zoekoptie ‘Andere bestandssystemen uitsluiten’ " "geselecteerd is bij het opstarten van het zoekprogramma." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Bestand is geen geldig bureaubladbestand (.desktop)" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Niet-herkende bureaubladbestandversie '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s starten..." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "De toepassing aanvaardt geen documenten via de opdrachtregel" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Niet-herkende startoptie: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" -msgstr "" -"Kan geen document-URI's doorsturen naar de werkomgeving via een ‘Type=Link’ " -"invoerregel" +msgstr "Kan geen document-URI's doorsturen naar een ‘Type=Link’ invoerregel" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Geen opstartbaar element" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Verbinding met de sessiebeheerder uitschakelen" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Geef het bestand op met de opgeslagen instellingen" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "BESTAND" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Sessiebeheer-ID opgeven" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opties voor sessiebeheer:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Toon opties voor sessiebeheer" @@ -1154,8 +1143,8 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"Bestanden sorteren op één van de volgende criteria: naam, map, grootte, type " -"of datum" +"Bestanden sorteren op één van de volgende criteria: naam, map, grootte, type" +" of datum" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1610,7 +1599,8 @@ msgid "View or monitor system log files" msgstr "Systeemlogboeken bekijken of bewaken" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "MATE;bewaken;bekijken;systeem;logboek;bestanden;logboekkijker;" @@ -1621,8 +1611,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "Geeft aan welk logboek bij het opstarten geopend moet worden. Standaard is " "dit /var/adm/messages of /var/log/messages, afhankelijk van uw " @@ -1648,7 +1638,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:16 msgid "Specifies the height of the log viewer main window in pixels." msgstr "" -"Geeft de hoogte aan van het hoofdvenster voor logboekweergave in beeldpunten." +"Geeft de hoogte aan van het hoofdvenster voor logboekweergave in " +"beeldpunten." #: logview/data/org.mate.system-log.gschema.xml.in:20 msgid "Width of the main window in pixels" @@ -1670,8 +1661,8 @@ "created by reading /etc/syslog.conf." msgstr "" "Geeft een lijst aan met logboeken die bij het opstarten moeten worden " -"geopend. Er wordt een standaardlijst aangemaakt met de gegevens in /etc/" -"syslog.conf." +"geopend. Er wordt een standaardlijst aangemaakt met de gegevens in " +"/etc/syslog.conf." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1929,7 +1920,7 @@ #: logview/src/logview-window.c:836 mate-dictionary/src/gdict-window.c:1279 msgid "Select _All" -msgstr "_Alles selecteren" +msgstr "_Alles kiezen" #: logview/src/logview-window.c:836 msgid "Select the entire log" @@ -1982,7 +1973,7 @@ #: logview/src/logview-window.c:853 mate-dictionary/src/gdict-applet.c:1176 #: mate-dictionary/src/gdict-window.c:1314 msgid "_About" -msgstr "_Info" +msgstr "_Over" #: logview/src/logview-window.c:853 msgid "Show the about dialog for the log viewer" @@ -2044,7 +2035,8 @@ "Zoek betekenissen en spelling van woorden op in een woordenboek op het " "internet" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "MATE;woordenboek;werkbalkhulpje;spelling;definities;internet;" @@ -2056,8 +2048,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" "Met MATE Woordenboek kunt u woorden opzoeken in internetwoordenboeken. " @@ -2114,7 +2106,8 @@ #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:17 msgid "The font to be used when printing a definition." -msgstr "Het lettertype dat gebruikt wordt bij het afdrukken van een betekenis." +msgstr "" +"Het lettertype dat gebruikt wordt bij het afdrukken van een betekenis." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:21 msgid "The name of the dictionary source used" @@ -2149,7 +2142,8 @@ #: mate-dictionary/libgdict/gdict-client-context.c:298 msgid "The hostname of the dictionary server to connect to" -msgstr "De computernaam van de woordenboekserver waarmee moet worden verbonden" +msgstr "" +"De computernaam van de woordenboekserver waarmee moet worden verbonden" #: mate-dictionary/libgdict/gdict-client-context.c:311 msgid "Port" @@ -2194,8 +2188,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"Kon niet verbinden met de woordenboekserver op ‘%s:%d’. De server antwoordde " -"met code %d (server ligt plat)" +"Kon niet verbinden met de woordenboekserver op ‘%s:%d’. De server antwoordde" +" met code %d (server ligt plat)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2799,7 +2793,7 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Er is een definitie gevonden" +msgstr[0] "Een definitie gevonden" msgstr[1] "%d definities gevonden" #: mate-dictionary/src/gdict-window.c:578 @@ -2858,7 +2852,7 @@ #: mate-dictionary/src/gdict-window.c:1288 msgid "_Preferences" -msgstr "Voorkeuren" +msgstr "_Voorkeuren" #: mate-dictionary/src/gdict-window.c:1292 msgid "_Previous Definition" @@ -2987,7 +2981,7 @@ #: mate-dictionary/data/mate-dictionary-preferences.ui:216 msgid "Print" -msgstr "Afdrukken" +msgstr "Print" #: mate-dictionary/data/mate-dictionary-source.ui:38 msgid "_Description:" @@ -3061,7 +3055,8 @@ #: mate-disk-image-mounter/src/main.c:178 #, c-format msgid "Error connecting to udisks daemon: %s (%s, %d)" -msgstr "Fout bij het verbindingen met de udisks-achtergronddienst: %s (%s, %d)" +msgstr "" +"Fout bij het verbindingen met de udisks-achtergronddienst: %s (%s, %d)" #: mate-disk-image-mounter/src/main.c:186 msgid "Attach and mount one or more disk image files." @@ -3098,9 +3093,9 @@ "format." msgstr "" "MATE Schermafdruk is een eenvoudig gereedschapje waarmee u schermafdrukken " -"kunt maken van uw bureaublad of toepassingsvensters. U kunt ervoor kiezen om " -"hen naar het systeemklembord te kopiëren of om hen op te slaan als Portable " -"Network Graphics (.png) bestanden." +"kunt maken van uw bureaublad of toepassingsvensters. U kunt ervoor kiezen om" +" hen naar het systeemklembord te kopiëren of om hen op te slaan als Portable" +" Network Graphics (.png) bestanden." #: mate-screenshot/data/mate-screenshot.desktop.in:3 #: mate-screenshot/src/mate-screenshot.c:519 @@ -3112,7 +3107,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Afbeeldingen opslaan van uw bureaublad of van individuele vensters" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "MATE;schermafdruk;foto;bureaublad;venster;afbeelding;" @@ -3170,8 +3166,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Effect dat aan de buitenkant van een vensterrand wordt toegevoegd. Mogelijke " -"waarden zijn ‘shadow’, ‘none’, en ‘border’." +"Effect dat aan de buitenkant van een vensterrand wordt toegevoegd. Mogelijke" +" waarden zijn ‘shadow’, ‘none’, en ‘border’." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3309,11 +3305,11 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" -"Conflicterende opties: --clipboard en --interactive mogen niet tezelfdertijd " -"worden gebruikt.\n" +"Conflicterende opties: --clipboard en --interactive mogen niet tezelfdertijd" +" worden gebruikt.\n" #: mate-screenshot/src/mate-screenshot.c:1363 msgid "" @@ -3331,8 +3327,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Tijdens het laden van het gebruikersschil-definitiebestand voor het " -"schermafdrukprogramma is er een fout opgetreden:\n" +"Tijdens het laden van het gebruikersschil-definitiebestand voor het schermafdrukprogramma is er een fout opgetreden:\n" "%s\n" "\n" "Controleer a.u.b. uw installatie van mate-utils." @@ -3366,7 +3361,8 @@ #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" -msgstr "Onbekende fout opgetreden bij het opslaan van schermafdruk naar schijf" +msgstr "" +"Onbekende fout opgetreden bij het opslaan van schermafdruk naar schijf" #: mate-screenshot/src/screenshot-xfer.c:74 msgid "File already exists" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/nn.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/nn.gmo differ diff -Nru mate-utils-1.26.0/po/nn.po mate-utils-1.26.1/po/nn.po --- mate-utils-1.26.0/po/nn.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/nn.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,25 +2,24 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Øystein Steffensen-Alværvik, 2019 -# Andrew Rabbitt , 2020 +# Andrew Rabbitt , 2021 # Stefano Karapetsas , 2021 -# +# Øystein Steffensen-Alværvik, 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Norwegian Nynorsk (https://www.transifex.com/mate/teams/13566/" -"nn/)\n" -"Language: nn\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Øystein Steffensen-Alværvik, 2021\n" +"Language-Team: Norwegian Nynorsk (https://app.transifex.com/mate/teams/13566/nn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -32,7 +31,8 @@ msgid "Check folder sizes and available disk space" msgstr "Sjekk mappestorleikar og tilgjengeleg diskplass" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -216,8 +216,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -583,8 +583,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -606,7 +606,8 @@ msgid "translator-credits" msgstr "" "Åsmund Skjæveland \n" -"Eskild Hustvedt " +"Eskild Hustvedt \n" +"Andrew J Rabbitt " #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -630,16 +631,18 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" -msgstr "Finn dokument og mapper på denne datamaskinen etter namn eller innhald" +msgstr "" +"Finn dokument og mapper på denne datamaskinen etter namn eller innhald" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -666,8 +669,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"Denne nøkkelen bestemmer om søkjeverktøyet deaktiverer bruken av «locate»-" -"kommandoen under enkle filnamnsøk." +"Denne nøkkelen bestemmer om søkjeverktøyet deaktiverer bruken av " +"«locate»-kommandoen under enkle filnamnsøk." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -675,9 +678,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Denne nøkkelen oppgir stigane som søkjeverktøyet vil ekskludere i eit snøgt " "søk. Jokerteikna «*» og «?» er støtta. Dei forvalgte verdiene er /mnt/*, / " @@ -692,8 +695,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"Denne nøkkelen bestemmer om søkjeverktøyet slår av bruken av «find»-" -"kommandoen etter å ha utført eit snøgt søk." +"Denne nøkkelen bestemmer om søkjeverktøyet slår av bruken av " +"«find»-kommandoen etter å ha utført eit snøgt søk." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -704,14 +707,14 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Denne nøkkelen oppgir stigane som søkjeverktøyet vil ekskludere frå det " "neste raske søkjet. Det neste søkjet brukar «find»-kommandoen til å søkja " "etter filer. Hensikten med det neste søkjet er å finna filer som ikkje har " -"blitt indeksert. Jokerteikna «*» og «?» er støtta. Den forvalgte verdien " -"er /." +"blitt indeksert. Jokerteikna «*» og «?» er støtta. Den forvalgte verdien er " +"/." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -731,9 +734,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Denne nøkkelen oppgir breidda på vindauget, og den er brukt til å huske " "storleiken på søkjeverktøyet mellom sesjonar. Ved å setja denne til -1, vil " @@ -746,8 +749,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Denne nøkkelen oppgir høyden på vindauget, og den er brukt til å huske " "storleiken på søkjevertøyet mellom sesjonenen. Ved å setja den til -1, vil " @@ -791,8 +794,8 @@ "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"Denne nøkkelen bestemmer om alternativet «Endringsdato meir enn» skal gjelde " -"når søkjeverktøyet startar." +"Denne nøkkelen bestemmer om alternativet «Endringsdato meir enn» skal gjelde" +" når søkjeverktøyet startar." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" @@ -828,8 +831,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Denne nøkkelen bestemmer om alternativet «Eies av gruppe» skal gjelde når " "søkjeverktøyet startar." @@ -852,8 +855,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Denne nøkkelen bestemmer om «Namn har treff på vanleg uttrykk» skal gjelde " "når søkjeverktøyet startar." @@ -880,63 +883,63 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Fila er ikkje ei gyldig .desktop-fil" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Kjende ikkje igjen versjonen til .desktop-fila «%s»" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Startar %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Programmet tek ikkje inn dokument via kommandolinja" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Ugjenkjent oppstartsval: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Kan ikkje senda dokument-URI-ar til ei skrivebordsoppføring med «Type=Link»" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Ikkje eit køyrbart element" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Bryt tilkopling til økthandsamaren" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Oppgje fil som inneheld lagra brukarval" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FIL" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Oppgje økthandsamings-ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Innstillingar til økthandsaming:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Vis innstillingar til økthandsaming" @@ -1552,7 +1555,8 @@ msgid "View or monitor system log files" msgstr "Vis eller overvak systemets loggfiler" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1563,11 +1567,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Vel loggfila som skal vert opna ved oppstart. Forval er anten /var/adm/" -"messages eller /var/log/messages, avhengig av ditt operativsystem." +"Vel loggfila som skal vert opna ved oppstart. Forval er anten " +"/var/adm/messages eller /var/log/messages, avhengig av ditt operativsystem." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1606,8 +1610,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"Vel ei liste av loggfiler som skal vert opna ved oppstart. Ein forvald liste " -"er oppretta ved lesing av /etc/syslog.conf." +"Vel ei liste av loggfiler som skal vert opna ved oppstart. Ein forvald liste" +" er oppretta ved lesing av /etc/syslog.conf." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1968,7 +1972,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Sjekk orddefinisjonar og staving i ei ordbok på nettet" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1980,8 +1985,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2011,9 +2016,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"Namn på standard einskilde database eller meta-database som skal brukast til " -"ein ordbok kjelde. Eit utropsteign («!») tyder at databasene i ei kjelde vil " -"bli brukt" +"Namn på standard einskilde database eller meta-database som skal brukast til" +" ein ordbok kjelde. Eit utropsteign («!») tyder at databasene i ei kjelde " +"vil bli brukt" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -3013,7 +3018,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Lagra bileta av ditt skrivebord eller individuelle vindauge" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3207,8 +3213,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/nso.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/nso.gmo differ diff -Nru mate-utils-1.26.0/po/nso.po mate-utils-1.26.1/po/nso.po --- mate-utils-1.26.0/po/nso.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/nso.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2019 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2019\n" -"Language-Team: Northern Sotho (https://www.transifex.com/mate/teams/13566/" -"nso/)\n" -"Language: nso\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Northern Sotho (https://app.transifex.com/mate/teams/13566/nso/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nso\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -579,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -626,16 +626,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -669,9 +670,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -693,8 +694,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -713,9 +714,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -725,8 +726,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -790,8 +791,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -808,8 +809,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -830,62 +831,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Go thoma %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Ga se selo se se ka tsebagatwago" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Palediša kgokagano e yago go molaodi wa lenaneo" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Bontšha boitsebišo bja taolo ya lenaneo" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "Boitsebišo" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1490,7 +1491,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1501,8 +1503,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1900,7 +1902,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1912,8 +1915,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2927,7 +2930,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3119,8 +3123,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/oc.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/oc.gmo differ diff -Nru mate-utils-1.26.0/po/oc.po mate-utils-1.26.1/po/oc.po --- mate-utils-1.26.0/po/oc.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/oc.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,26 +2,25 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# 48c2de07903ce5a77a8e90265f95c4c2_8909374 <837c8d0ab97b27e737893c19f79bd4de_348476>, 2018 -# Cédric Valmary , 2019 +# 48c2de07903ce5a77a8e90265f95c4c2_8909374 <837c8d0ab97b27e737893c19f79bd4de_348476>, 2021 # Stefano Karapetsas , 2021 -# Quentin PAGÈS, 2021 -# +# Cédric Valmary , 2021 +# Quentin PAGÈS, 2022 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Quentin PAGÈS, 2021\n" -"Language-Team: Occitan (post 1500) (https://www.transifex.com/mate/" -"teams/13566/oc/)\n" -"Language: oc\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Quentin PAGÈS, 2022\n" +"Language-Team: Occitan (post 1500) (https://app.transifex.com/mate/teams/13566/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -33,7 +32,8 @@ msgid "Check folder sizes and available disk space" msgstr "Verificar la talha dels dossièr e l’espaci disc liure" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "MATE;check;disk;usage;analyze;size;space;disc;analisi;" @@ -218,8 +218,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -420,7 +420,8 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." -msgstr "Connexion impossibla al servidor. Devètz picar un nom pel servidor." +msgstr "" +"Impossible de se connectar al servidor. Devètz picar un nom pel servidor." #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -432,7 +433,7 @@ #: baobab/src/baobab-remote-connect-dialog.c:455 msgid "_Server:" -msgstr "_Servidor :" +msgstr "_Servidor :" #: baobab/src/baobab-remote-connect-dialog.c:468 msgid "Optional information:" @@ -445,11 +446,11 @@ #: baobab/src/baobab-remote-connect-dialog.c:492 #: mate-dictionary/data/mate-dictionary-source.ui:121 msgid "_Port:" -msgstr "_Pòrt :" +msgstr "_Pòrt :" #: baobab/src/baobab-remote-connect-dialog.c:506 msgid "_Folder:" -msgstr "_Repertòri :" +msgstr "_Repertòri :" #: baobab/src/baobab-remote-connect-dialog.c:520 msgid "_User Name:" @@ -530,7 +531,7 @@ #: baobab/src/baobab-utils.c:349 gsearchtool/src/gsearchtool-callbacks.c:1330 msgid "Mo_ve to Trash" -msgstr "Des_plaçar dins la banasta" +msgstr "Des_plaçar a l'escobilièr" #: baobab/src/baobab-utils.c:378 #, c-format @@ -548,7 +549,7 @@ #: baobab/src/baobab-utils.c:456 msgid "Could not move file to the Trash" -msgstr "Desplaçament impossible del fichièr dins l'escobilièr." +msgstr "Impossible de desplaçar lo fichièr dins l'escobilièr" #: baobab/src/baobab-utils.c:458 #, c-format @@ -585,16 +586,16 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"Aqueste programa es distribuit en esperant que vos serà util mas SENS CAP DE " -"GARANTIDA ; sens tanpauc la garantida implicita de VALOR MERCANDA o " -"D'ADEQÜACION A UN BESONH PARTICULAR. Consultatz la licéncia publica generala " -"GNU per mai d'entresenhas." +"Aqueste programa es distribuit en esperant que vos serà util mas SENS CAP DE" +" GARANTIDA ; sens tanpauc la garantida implicita de VALOR MERCANDA o " +"D'ADEQÜACION A UN BESONH PARTICULAR. Consultatz la licéncia publica generala" +" GNU per mai d'entresenhas." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" "Deuriatz aver recebut una còpia de la « GNU General Public License » amb " "aqueste programa. S’es pas lo cas, vejatz ." @@ -619,8 +620,8 @@ #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" msgstr "" -"Yannig Marchegay (Kokoyaya) & Cédric Valmary (totenoc." -"eu) " +"Yannig Marchegay (Kokoyaya) , Cédric Valmary " +"(totenoc.eu) , Quentin Pagès" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -644,9 +645,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -655,13 +656,13 @@ "Localizar de documents e de repertòris sus aqueste ordenador per nom o per " "contengut" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" -"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" -"ordenador;ordinador;ordinator;contengut;fichièr;recèrca;nom;trobar;" +"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;ordenador;ordinador;ordinator;contengut;fichièr;recèrca;nom;trobar;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -691,9 +692,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -715,8 +716,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -735,9 +736,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -747,8 +748,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -812,8 +813,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -830,8 +831,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -852,64 +853,64 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Lo fichièr es pas un fichièr .desktop valid" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" -msgstr "La version \"%s\" del fichièr desktop es pas reconeguda" +msgstr "La version « %s » del fichièr desktop es pas reconeguda" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Aviada de %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "L'aplicacion accepta pas los documents en linha de comandas" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Opcion d'aviada pas reconeguda : %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Impossible de passar d'URI de document a un fichièr de burèu amb " "« Type=Link »" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "L'element es pas executable" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Desactivar la connexion al gestionari de sessions" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Indicar un fichièr que conten la configuracion enregistrada" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FICHIÈR" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Indicar l'ID de gestion de session" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "Identificador" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opcions de gestion de sessions :" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Afichar las opcions de gestion de sessions" @@ -967,7 +968,7 @@ #: gsearchtool/src/gsearchtool.c:98 msgid "Show hidden and backup files" -msgstr "" +msgstr "Visualizar los fichièrs amagats e de salvagarda" #: gsearchtool/src/gsearchtool.c:99 msgid "Follow symbolic links" @@ -988,7 +989,7 @@ #: gsearchtool/src/gsearchtool.c:160 msgid "PATH" -msgstr "CAMIN" +msgstr "EMPLAÇAMENT" #: gsearchtool/src/gsearchtool.c:161 msgid "VALUE" @@ -1233,11 +1234,11 @@ #: gsearchtool/src/gsearchtool.c:2876 msgid "Select more _options" -msgstr "" +msgstr "Seleccionar mai d’_opcions" #: gsearchtool/src/gsearchtool.c:2885 msgid "Select more options" -msgstr "" +msgstr "Seleccionar mai d’opcions" #: gsearchtool/src/gsearchtool.c:2885 msgid "Click to expand or collapse the list of available options." @@ -1261,7 +1262,7 @@ #: gsearchtool/src/gsearchtool.c:3061 msgid "- the MATE Search Tool" -msgstr "" +msgstr "- esplech de recèrca MATE " #: gsearchtool/src/gsearchtool.c:3072 #, c-format @@ -1276,16 +1277,16 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Volètz vertadièrament dobrir %d document ?" -msgstr[1] "Volètz vertadièrament dobrir %d documents ?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Dobrirà %d fenèstra separada." -msgstr[1] "Dobrirà %d fenèstras separadas." +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1309,8 +1310,8 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Volètz vertadièrament dobrir %d dossièr ?" -msgstr[1] "Volètz vertadièrament dobrir %d dossièrs ?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1363,7 +1364,7 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1299 msgid "Open Containing _Folder" -msgstr "_Dobrir lo dossièr contenidor" +msgstr "_Dobrir lo dossièr contenent" #: gsearchtool/src/gsearchtool-callbacks.c:1310 msgid "Copy _Path" @@ -1514,7 +1515,8 @@ msgid "View or monitor system log files" msgstr "Veire o susvelhar los fichièrs d’audit sistèma" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1526,13 +1528,13 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" -msgstr "Talha de la poliça utilizada per mostrar los audits" +msgstr "Talha de la polissa utilizada per mostrar los audits" #: logview/data/org.mate.system-log.gschema.xml.in:11 msgid "" @@ -1586,11 +1588,11 @@ #: logview/data/logview-filter.ui:91 #: mate-screenshot/data/mate-screenshot.ui:178 msgid "_Name:" -msgstr "_Nom :" +msgstr "_Nom :" #: logview/data/logview-filter.ui:108 msgid "_Regular Expression:" -msgstr "" +msgstr "_Expression regulara :" #: logview/data/logview-filter.ui:180 msgid "Highlight" @@ -1610,7 +1612,7 @@ #: logview/data/logview-filter.ui:296 msgid "Effect:" -msgstr "Efèit :" +msgstr "Efièch :" #: logview/src/logview-about.h:41 mate-dictionary/src/gdict-about.c:46 msgid "Sun GNOME Documentation Team " @@ -1631,12 +1633,12 @@ #: logview/src/logview-filter-manager.c:129 msgid "Regular expression is empty!" -msgstr "" +msgstr "L’expression regulara es voida !" #: logview/src/logview-filter-manager.c:145 #, c-format msgid "Regular expression is invalid: %s" -msgstr "" +msgstr "L’expression regulara es invalida : %s" #: logview/src/logview-filter-manager.c:207 msgid "Please specify either foreground or background color!" @@ -1676,15 +1678,17 @@ #: logview/src/logview-findbar.c:202 msgid "Clear the search string" -msgstr "" +msgstr "Escafar lo tèrme de recèrca" #: logview/src/logview-log.c:589 msgid "Error while uncompressing the GZipped log. The file might be corrupt." msgstr "" +"Error de descompression lo log Gzipat. Poiriá arribar que lo fichièr siá " +"corromput." #: logview/src/logview-log.c:635 msgid "You don't have enough permissions to read the file." -msgstr "" +msgstr "Avètz pas pro de permissions per legir lo fichièr." #: logview/src/logview-log.c:650 msgid "The file is not a regular file or is not a text file." @@ -1727,11 +1731,11 @@ #: logview/src/logview-main.c:107 msgid "Log Viewer" -msgstr "" +msgstr "Visionadora de jornals" #: logview/src/logview-window.c:41 logview/src/logview-window.c:771 msgid "System Log Viewer" -msgstr "" +msgstr "Visionadora de jornals sistèma" #: logview/src/logview-window.c:216 #, c-format @@ -1745,12 +1749,12 @@ #: logview/src/logview-window.c:325 msgid "Open Log" -msgstr "" +msgstr "Dobrir jornal" #: logview/src/logview-window.c:364 #, c-format msgid "There was an error displaying help: %s" -msgstr "I a agut una error al moment d'afichar l'ajuda : %s" +msgstr "I a agut una error al moment d'afichar l'ajuda : %s" #: logview/src/logview-window.c:478 msgid "Wrapped" @@ -1793,7 +1797,7 @@ #: logview/src/logview-window.c:827 msgid "Open a log from file" -msgstr "" +msgstr "Dobrir un jornal a partir d’un fichièr" #: logview/src/logview-window.c:829 msgid "Close this log" @@ -1805,7 +1809,7 @@ #: logview/src/logview-window.c:831 msgid "Quit the log viewer" -msgstr "" +msgstr "Quitar la visionadora de jornals" #: logview/src/logview-window.c:834 mate-dictionary/src/gdict-window.c:1277 msgid "_Copy" @@ -1833,11 +1837,11 @@ #: logview/src/logview-window.c:841 msgid "Zoom _In" -msgstr "Zo_om -" +msgstr "Zo_om +" #: logview/src/logview-window.c:841 msgid "Bigger text size" -msgstr "" +msgstr "Talha de tèxt mai granda" #: logview/src/logview-window.c:843 msgid "Zoom _Out" @@ -1845,7 +1849,7 @@ #: logview/src/logview-window.c:843 msgid "Smaller text size" -msgstr "" +msgstr "Talha de tèxt mai pichona" #: logview/src/logview-window.c:845 msgid "_Normal Size" @@ -1853,7 +1857,7 @@ #: logview/src/logview-window.c:845 msgid "Normal text size" -msgstr "" +msgstr "Talha de tèxt mai normala" #: logview/src/logview-window.c:848 msgid "Manage Filters" @@ -1865,7 +1869,7 @@ #: logview/src/logview-window.c:851 msgid "Open the help contents for the log viewer" -msgstr "" +msgstr "Dobrir lo contengut de l’ajuda de la visionadora de jornals" #: logview/src/logview-window.c:853 mate-dictionary/src/gdict-applet.c:1176 #: mate-dictionary/src/gdict-window.c:1314 @@ -1882,7 +1886,7 @@ #: logview/src/logview-window.c:858 msgid "Show Status Bar" -msgstr "" +msgstr "Mostrar la barra d’estat" #: logview/src/logview-window.c:860 msgid "Side _Pane" @@ -1890,11 +1894,11 @@ #: logview/src/logview-window.c:860 msgid "Show Side Pane" -msgstr "" +msgstr "Mostrar lo panèl lateral" #: logview/src/logview-window.c:862 msgid "Show matches only" -msgstr "" +msgstr "Mostrar las correspondéncias sonque" #: logview/src/logview-window.c:862 msgid "Only show lines that match one of the given filters" @@ -1931,7 +1935,8 @@ msgstr "" "Verificatz las definicions d’un mot e l’ortografia d’un diccionari en linha" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1943,8 +1948,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -1987,11 +1992,11 @@ #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" -msgstr "La poliça d’utilizar per l’impression" +msgstr "La polissa d’utilizar per l’impression" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:17 msgid "The font to be used when printing a definition." -msgstr "La poliça es utilizada per l’impression de definisson." +msgstr "La polissa es utilizada per l’impression de definisson." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:21 msgid "The name of the dictionary source used" @@ -2079,7 +2084,7 @@ #: mate-dictionary/libgdict/gdict-client-context.c:1217 #, c-format msgid "No definitions found for '%s'" -msgstr "Pas cap de definicion trobada per « %s »" +msgstr "Cap de definicion pas trobada per « %s »" #: mate-dictionary/libgdict/gdict-client-context.c:1232 #, c-format @@ -2646,7 +2651,7 @@ #: mate-dictionary/src/gdict-window.c:290 #, c-format msgid "Searching for '%s'..." -msgstr "" +msgstr "Recèrca de « %s »..." #: mate-dictionary/src/gdict-window.c:322 #: mate-dictionary/src/gdict-window.c:379 @@ -2657,8 +2662,8 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Una definicion trobada" -msgstr[1] "%d definicions trobadas" +msgstr[0] "" +msgstr[1] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -2684,7 +2689,7 @@ #: mate-dictionary/src/gdict-window.c:1269 msgid "P_review..." -msgstr "_Apercebut.." +msgstr "_Apercebut..." #: mate-dictionary/src/gdict-window.c:1270 msgid "Preview this document" @@ -2841,7 +2846,7 @@ #: mate-dictionary/data/mate-dictionary-preferences.ui:162 msgid "_Print font:" -msgstr "_Poliça d'impression :" +msgstr "_Polissa d'impression :" #: mate-dictionary/data/mate-dictionary-preferences.ui:216 msgid "Print" @@ -2849,7 +2854,7 @@ #: mate-dictionary/data/mate-dictionary-source.ui:38 msgid "_Description:" -msgstr "_Descripcion :" +msgstr "_Descripcion :" #: mate-dictionary/data/mate-dictionary-source.ui:53 msgid "Source Name" @@ -2964,7 +2969,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Enregistratz imatges del burèu o de fenèstras individualas" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "MATE;screenshot;snapshot;desktop;window;image;captura;ecran;imatge;" @@ -3016,15 +3022,15 @@ #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:25 msgid "Border Effect" -msgstr "Efèit al bòrd" +msgstr "Efièch al bòrd" #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:26 msgid "" "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Efèit d’apondre defòra de la bordadura. Valors possiblas : « Ombra " -"portada », « Pas cap » e « bordadura »" +"Efèit d’apondre defòra de la bordadura. Las valors possiblas son « Ombra " +"portada », « Pas cap » e « bordadura »." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3052,7 +3058,7 @@ #: mate-screenshot/src/mate-screenshot.c:377 msgid "Apply _effect:" -msgstr "Aplicar l'_efèit :" +msgstr "Aplicar l'_efièch :" #: mate-screenshot/src/mate-screenshot.c:437 msgid "Grab the whole _desktop" @@ -3162,8 +3168,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/or.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/or.gmo differ diff -Nru mate-utils-1.26.0/po/or.po mate-utils-1.26.1/po/or.po --- mate-utils-1.26.0/po/or.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/or.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Oriya (https://www.transifex.com/mate/teams/13566/or/)\n" -"Language: or\n" +"Language-Team: Odia (https://app.transifex.com/mate/teams/13566/or/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: or\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "ଫୋଲଡର ର ଆକାର ଏବଂ ଉପଲବ୍ଧ ଡିସ୍କ ସ୍ଥାନ ଯାଞ୍ଚ କରନ୍ତୁ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -54,7 +55,8 @@ #: baobab/data/baobab-dialog-scan-props.ui:81 msgid "Select _devices to include in filesystem scan:" msgstr "" -"ଫାଇଲତନ୍ତ୍ରର କ୍ରମବୀକ୍ଷଣ ସମୟରେ ଅନ୍ତର୍ଭୂକ୍ତ କରାଯିବାକୁ ଥିବା ଉପକରଣ ମାନଙ୍କୁ ଚୟନ କରନ୍ତୁ (_d):" +"ଫାଇଲତନ୍ତ୍ରର କ୍ରମବୀକ୍ଷଣ ସମୟରେ ଅନ୍ତର୍ଭୂକ୍ତ କରାଯିବାକୁ ଥିବା ଉପକରଣ ମାନଙ୍କୁ ଚୟନ " +"କରନ୍ତୁ (_d):" #: baobab/data/baobab-dialog-scan-props.ui:119 msgid "_Monitor changes to your home folder" @@ -166,7 +168,8 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:10 msgid "Whether any change to the home directory should be monitored." -msgstr "ମୂଳସ୍ଥାନ ପଞ୍ଜିକାରେ ଘଟିତ କୌଣସି ପରିବର୍ତ୍ତନ ଉପରେ ଦ୍ରୁଷ୍ଟି ରଖିବା ଉଚିତ କି ନୁହେଁ।" +msgstr "" +"ମୂଳସ୍ଥାନ ପଞ୍ଜିକାରେ ଘଟିତ କୌଣସି ପରିବର୍ତ୍ତନ ଉପରେ ଦ୍ରୁଷ୍ଟି ରଖିବା ଉଚିତ କି ନୁହେଁ।" #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:14 msgid "Excluded partitions URIs" @@ -214,8 +217,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -275,7 +278,8 @@ #: baobab/src/baobab.c:594 msgid "Changes to your home folder will not be monitored." -msgstr "ମୂଳସ୍ଥାନ ପଞ୍ଜିକାରେ ଘଟିତ କୌଣସି ପରିବର୍ତ୍ତନ ଉପରେ ଦ୍ରୁଷ୍ଟି ରଖିବା ଉଚିତ ନୁହେଁ।" +msgstr "" +"ମୂଳସ୍ଥାନ ପଞ୍ଜିକାରେ ଘଟିତ କୌଣସି ପରିବର୍ତ୍ତନ ଉପରେ ଦ୍ରୁଷ୍ଟି ରଖିବା ଉଚିତ ନୁହେଁ।" #: baobab/src/baobab.c:913 msgid "Move to parent folder" @@ -416,7 +420,9 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." -msgstr "ସେବକ ସହିତ ସଂଯୋଗ ସ୍ଥାପନ କରିହେବ ନାହିଁ। ସେବକ ପାଇଁ ଆପଣ ଗୋଟିଏ ନାମକୁ ଭରଣ କରିବା ଉଚିତ।" +msgstr "" +"ସେବକ ସହିତ ସଂଯୋଗ ସ୍ଥାପନ କରିହେବ ନାହିଁ। ସେବକ ପାଇଁ ଆପଣ ଗୋଟିଏ ନାମକୁ ଭରଣ କରିବା " +"ଉଚିତ।" #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -476,8 +482,9 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"ଆପଣଙ୍କ ମୂଳସ୍ଥାନ ପଞ୍ଜିକାର ସୂଚୀ ପତ୍ରଟି ପରିବର୍ତ୍ତିତ ହୋଇଅଛି। ବ୍ୟବହୃତ ଡିସ୍କରାଖାର ବୃତ୍ରୁତ ବିବରଣୀକୁ ଅଦ୍ଯତିତ " -"କରିବା ପିମ ବ୍ରୁକ୍ଷକୁ ପୁନକୁ ଚୟନ କରନ୍ତୁ।ରିବା ପାଇଁ ଚାହାଁନ୍ତି କି?" +"ଆପଣଙ୍କ ମୂଳସ୍ଥାନ ପଞ୍ଜିକାର ସୂଚୀ ପତ୍ରଟି ପରିବର୍ତ୍ତିତ ହୋଇଅଛି। ବ୍ୟବହୃତ ଡିସ୍କରାଖାର " +"ବୃତ୍ରୁତ ବିବରଣୀକୁ ଅଦ୍ଯତିତ କରିବା ପିମ ବ୍ରୁକ୍ଷକୁ ପୁନକୁ ଚୟନ କରନ୍ତୁ।ରିବା ପାଇଁ " +"ଚାହାଁନ୍ତି କି?" #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -589,8 +596,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -634,16 +641,19 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" -msgstr "ନାମ କିମ୍ବା ସୂଚୀ ଅନୁସାରେ ଏହି କମ୍ପୁଟରରେ ଦଲିଲ ଏବଂ ଫୋଲଡର୍ ମାନଙ୍କର ଅବସ୍ଥିତି ନିର୍ଣ୍ଣୟ କରନ୍ତୁ" +msgstr "" +"ନାମ କିମ୍ବା ସୂଚୀ ଅନୁସାରେ ଏହି କମ୍ପୁଟରରେ ଦଲିଲ ଏବଂ ଫୋଲଡର୍ ମାନଙ୍କର ଅବସ୍ଥିତି " +"ନିର୍ଣ୍ଣୟ କରନ୍ତୁ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -670,8 +680,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"ସାଧାରଣ ଫାଇଲ ନାମକୁ ଖୋଜୁଥିବା ସମୟରେ ସନ୍ଧାନ ଉପକରଣଟି locate ନିର୍ଦ୍ଦେଶର ବ୍ଯବହାରକୁ ନିଷ୍କ୍ରିୟ କରିବ " -"କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" +"ସାଧାରଣ ଫାଇଲ ନାମକୁ ଖୋଜୁଥିବା ସମୟରେ ସନ୍ଧାନ ଉପକରଣଟି locate ନିର୍ଦ୍ଦେଶର ବ୍ଯବହାରକୁ " +"ନିଷ୍କ୍ରିୟ କରିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -679,13 +689,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"ଏହି ଚାବି ଟି ଗୋଟିଏ ଶିଘ୍ର ଖୋଜିବା ରୁ ଖୋଜିବା ଉପକରଣକୁ କିପରି ବାଦ ଦେବ ତାହା ବ୍ୟାଖ୍ୟା କରେ। ୱାଇଲ୍ଡ " -"କାର୍ଡ '*' ଏବଂ '?' ଗୁଡିକ ସମର୍ଥିତ। ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ ମୂଲ୍ୟ ଗୁଡିକ /mnt/*, /media/*, /dev/*, /" -"tmp/*, /proc/*, and /var/* ଅଟେ।" +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"ଏହି ଚାବି ଟି ଗୋଟିଏ ଶିଘ୍ର ଖୋଜିବା ରୁ ଖୋଜିବା ଉପକରଣକୁ କିପରି ବାଦ ଦେବ ତାହା ବ୍ୟାଖ୍ୟା" +" କରେ। ୱାଇଲ୍ଡ କାର୍ଡ '*' ଏବଂ '?' ଗୁଡିକ ସମର୍ଥିତ। ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ ମୂଲ୍ୟ ଗୁଡିକ " +"/mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, and /var/* ଅଟେ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -696,8 +706,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"ଗୋଟିଏ ଶୀଘ୍ର ସନ୍ଧାନକୁ ସମ୍ପାଦିତ କରି ସାରିବା ପରେ ସନ୍ଧାନ ଉପକରଣଟି find ନିର୍ଦ୍ଦେଶର ବ୍ଯବହାରକୁ ନିଷ୍କ୍ରିୟ " -"କରିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" +"ଗୋଟିଏ ଶୀଘ୍ର ସନ୍ଧାନକୁ ସମ୍ପାଦିତ କରି ସାରିବା ପରେ ସନ୍ଧାନ ଉପକରଣଟି find ନିର୍ଦ୍ଦେଶର " +"ବ୍ଯବହାରକୁ ନିଷ୍କ୍ରିୟ କରିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -708,13 +718,14 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"ଏହି କି ଶିଘ୍ର ଖୋଜା ଚାଲୁଥିବା ସମୟରେ ଦ୍ୱିତୀୟ କ୍ରମବିକ୍ଷଣ ରୁ ଖୋଜା ସାଧନକୁ ବାଦ କରିବାର ଉପାୟ ଗୁଡିକୁ " -"ବ୍ୟାଖ୍ୟାକରେ। ଦ୍ୱିତୀୟ କ୍ରମବିକ୍ଷଣ ଫାଇଲଗୁଡିକୁ ଖୋଜିବା ପାଇଁ ଖୋଜନ୍ତୁ ନିର୍ଦ୍ଦେଶର ବ୍ୟବହାର କରିଥାଏ। ଦ୍ୱିତୀୟ " -"କ୍ରମବିକ୍ଷଣ ର ଲଖ୍ଯ ହେଲା ଅନୁକ୍ରମ ହୋଇନଥିବା ଫାଇଲଗୁଡିକୁ ଖୋଜିବା। ୱାଇଲ୍ଡ କାର୍ଡ '*' ଏବଂ '?' " -"ସମର୍ଥିତ। ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ ମୂଲ୍ୟଟି ହେଲା / ।" +"ଏହି କି ଶିଘ୍ର ଖୋଜା ଚାଲୁଥିବା ସମୟରେ ଦ୍ୱିତୀୟ କ୍ରମବିକ୍ଷଣ ରୁ ଖୋଜା ସାଧନକୁ ବାଦ " +"କରିବାର ଉପାୟ ଗୁଡିକୁ ବ୍ୟାଖ୍ୟାକରେ। ଦ୍ୱିତୀୟ କ୍ରମବିକ୍ଷଣ ଫାଇଲଗୁଡିକୁ ଖୋଜିବା ପାଇଁ " +"ଖୋଜନ୍ତୁ ନିର୍ଦ୍ଦେଶର ବ୍ୟବହାର କରିଥାଏ। ଦ୍ୱିତୀୟ କ୍ରମବିକ୍ଷଣ ର ଲଖ୍ଯ ହେଲା ଅନୁକ୍ରମ " +"ହୋଇନଥିବା ଫାଇଲଗୁଡିକୁ ଖୋଜିବା। ୱାଇଲ୍ଡ କାର୍ଡ '*' ଏବଂ '?' ସମର୍ଥିତ। ପୂର୍ବ " +"ନିର୍ଦ୍ଧାରିତ ମୂଲ୍ୟଟି ହେଲା / ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -725,8 +736,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"ଏହି ଚାବିଟି ଖୋଜିବା ଫଳାଫଳରେ ସ୍ତମ୍ଭମାନଙ୍କର କ୍ରମକୁ ବ୍ୟାଖ୍ୟା କରେ। ଏହି ଚାବି ଟି ଚାଳକ ଦ୍ୱାରା " -"ପରିବର୍ତ୍ତନ କରାଯିବା ଉଚିତ ନୁହଁ।" +"ଏହି ଚାବିଟି ଖୋଜିବା ଫଳାଫଳରେ ସ୍ତମ୍ଭମାନଙ୍କର କ୍ରମକୁ ବ୍ୟାଖ୍ୟା କରେ। ଏହି ଚାବି ଟି " +"ଚାଳକ ଦ୍ୱାରା ପରିବର୍ତ୍ତନ କରାଯିବା ଉଚିତ ନୁହଁ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -734,13 +745,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"ଏହି କି ଟି ୱିଣ୍ଡୋର ପ୍ରସ୍ତ ବ୍ୟାଖ୍ୟା କରେ ଏବଂ ଏହା ଅଧିବେଶନ ଗୁଡିକ ମଧ୍ଯରେ ଖୋଜା ସାଧନର ଆକାର " -"ମନେରଖିବା ପାଇଁ ବ୍ୟବହାର ହୋଇଥାଏ। ଏହାକୁ -1 ସେଟ କଲେ ଏହା ଖୋଜା ସାଧନ କୁ ପୂର୍ବନିର୍ଦ୍ଧାରିତ ପ୍ରସ୍ତ " -"ବ୍ୟବହାର କରାଇଥାଏ।" +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"ଏହି କି ଟି ୱିଣ୍ଡୋର ପ୍ରସ୍ତ ବ୍ୟାଖ୍ୟା କରେ ଏବଂ ଏହା ଅଧିବେଶନ ଗୁଡିକ ମଧ୍ଯରେ ଖୋଜା " +"ସାଧନର ଆକାର ମନେରଖିବା ପାଇଁ ବ୍ୟବହାର ହୋଇଥାଏ। ଏହାକୁ -1 ସେଟ କଲେ ଏହା ଖୋଜା ସାଧନ କୁ " +"ପୂର୍ବନିର୍ଦ୍ଧାରିତ ପ୍ରସ୍ତ ବ୍ୟବହାର କରାଇଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -749,12 +760,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"ଏହି କି ଟି ୱିଣ୍ଡୋର ଉଚ୍ଚତା ବ୍ୟାଖ୍ୟା କରେ ଏବଂ ଏହା ଅଧିବେଶନ ଗୁଡିକ ମଧ୍ଯରେ ଖୋଜା ସାଧନର ଆକାର " -"ମନେରଖିବା ପାଇଁ ବ୍ୟବହାର ହୋଇଥାଏ। ଏହାକୁ -1 ସେଟ କଲେ ଏହା ଖୋଜା ସାଧନ କୁ ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଉଚ୍ଚତା " -"ବ୍ୟବହାର କରାଇଥାଏ।" +"ଏହି କି ଟି ୱିଣ୍ଡୋର ଉଚ୍ଚତା ବ୍ୟାଖ୍ୟା କରେ ଏବଂ ଏହା ଅଧିବେଶନ ଗୁଡିକ ମଧ୍ଯରେ ଖୋଜା " +"ସାଧନର ଆକାର ମନେରଖିବା ପାଇଁ ବ୍ୟବହାର ହୋଇଥାଏ। ଏହାକୁ -1 ସେଟ କଲେ ଏହା ଖୋଜା ସାଧନ କୁ " +"ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଉଚ୍ଚତା ବ୍ୟବହାର କରାଇଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -764,7 +775,8 @@ msgid "" "This key determines if the search tool window starts in a maximized state." msgstr "" -"ସନ୍ଧାନ ୱିଣ୍ଡୋଟି ଗୋଟିଏ ବର୍ଦ୍ଧିତ ସ୍ଥିତିରେ ପ୍ରାରମ୍ଭିତ ହେବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" +"ସନ୍ଧାନ ୱିଣ୍ଡୋଟି ଗୋଟିଏ ବର୍ଦ୍ଧିତ ସ୍ଥିତିରେ ପ୍ରାରମ୍ଭିତ ହେବ କି ନାହିଁ, ଏହି ଚାବିଟି " +"ତାହା ସ୍ଥିର କରିଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -779,169 +791,169 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ପାଠ୍ଯ ଧାରଣ କରିଅଛି\" ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ କି ନାହିଁ, ଏହି " -"ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" +"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ପାଠ୍ଯ ଧାରଣ କରିଅଛି\" ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ" +" କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ତାରିଖ ରୂପାନ୍ତରିତ ଏହାଠାରୁ କମ\" ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ କି " -"ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" +"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ତାରିଖ ରୂପାନ୍ତରିତ ଏହାଠାରୁ କମ\" ବିକଲ୍ପକୁ " +"ଚୟନ କରାଯିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ତାରିଖ ରୂପାନ୍ତରିତ ଏହାଠାରୁ ବେଶି\" ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ କି " -"ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" +"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ତାରିଖ ରୂପାନ୍ତରିତ ଏହାଠାରୁ ବେଶି\" " +"ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ସର୍ବନିମ୍ନ ଆକର\" ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ କି ନାହିଁ, ଏହି ଚାବିଟି " -"ତାହା ସ୍ଥିର କରିଥାଏ।" +"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ସର୍ବନିମ୍ନ ଆକର\" ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ କି " +"ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ସର୍ବାଧିକ ଆକର\" ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ କି ନାହିଁ, ଏହି ଚାବିଟି " -"ତାହା ସ୍ଥିର କରିଥାଏ।" +"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ସର୍ବାଧିକ ଆକର\" ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ କି " +"ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ଫାଇଲଟି ଖାଲି ଅଛି\" ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ କି ନାହିଁ, ଏହି " -"ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" +"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ଫାଇଲଟି ଖାଲି ଅଛି\" ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ " +"କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ଚାଳକ ଦ୍ବାରା ଅଧିକ୍ରୁତ\" ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ କି ନାହିଁ, " -"ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" +"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ଚାଳକ ଦ୍ବାରା ଅଧିକ୍ରୁତ\" ବିକଲ୍ପକୁ ଚୟନ " +"କରାଯିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ସମୂହ ଦ୍ବାରା ଅଧିକ୍ରୁତ\" ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ କି ନାହିଁ, ଏହି " -"ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" +"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ସମୂହ ଦ୍ବାରା ଅଧିକ୍ରୁତ\" ବିକଲ୍ପକୁ ଚୟନ " +"କରାଯିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ମାଲିକଙ୍କୁ ଚିହ୍ନିହେଲା ନାହିଁ\" ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ କି ନାହିଁ, " -"ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" +"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ମାଲିକଙ୍କୁ ଚିହ୍ନିହେଲା ନାହିଁ\" ବିକଲ୍ପକୁ " +"ଚୟନ କରାଯିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ନାମଟି ଧାରଣ କରିନାହିଁ\" ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ କି ନାହିଁ, ଏହି " -"ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" +"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ନାମଟି ଧାରଣ କରିନାହିଁ\" ବିକଲ୍ପକୁ ଚୟନ " +"କରାଯିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ନାମଟି ନିୟମିତ ବାକ୍ଯାଂଶ ସହିତ ମିଶିଥାଏ\" ବିକଲ୍ପକୁ ଚୟନ " -"କରାଯିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" +"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ନାମଟି ନିୟମିତ ବାକ୍ଯାଂଶ ସହିତ ମିଶିଥାଏ\" " +"ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ଲୁକ୍କାୟିତ ଫାଇଲ ଏବଂ ଫୋଲଡର୍ ମାନଙ୍କୁ ଦେଖାନ୍ତୁ\" ବିକଲ୍ପକୁ " -"ଚୟନ କରାଯିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" +"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ଲୁକ୍କାୟିତ ଫାଇଲ ଏବଂ ଫୋଲଡର୍ ମାନଙ୍କୁ " +"ଦେଖାନ୍ତୁ\" ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ପ୍ରତୀକାତ୍ମକ ସମ୍ପର୍କକୁ ଅନୁସରଣ କରନ୍ତୁ\" ବିକଲ୍ପକୁ ଚୟନ " -"କରାଯିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" +"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ପ୍ରତୀକାତ୍ମକ ସମ୍ପର୍କକୁ ଅନୁସରଣ କରନ୍ତୁ\" " +"ବିକଲ୍ପକୁ ଚୟନ କରାଯିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ଅନ୍ଯ ଫାଇଲତନ୍ତ୍ର ମାନଙ୍କୁ ବାହାର କରନ୍ତୁ\" ବିକଳ୍ପକୁ ଚୟନ " -"କରାଯିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" +"ସନ୍ଧାନ ଉପକରଣଟି ପ୍ରାରମ୍ଭ ହେବା ସମୟରେ \"ଅନ୍ଯ ଫାଇଲତନ୍ତ୍ର ମାନଙ୍କୁ ବାହାର କରନ୍ତୁ\" " +"ବିକଳ୍ପକୁ ଚୟନ କରାଯିବ କି ନାହିଁ, ଏହି ଚାବିଟି ତାହା ସ୍ଥିର କରିଥାଏ।" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "ଫାଇଲଟି ଗୋଟିଏ ବୈଧ .desktop ଫାଇଲ ନୁହଁ" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "ଅଚିହ୍ନା ଡେସ୍କଟପ ଫାଇଲ ସଂସ୍କରଣ '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s କୁ ଆରମ୍ଭ କରୁଅଛି" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "ପ୍ରୟୋଗଟି ପାଠ୍ୟ ନିର୍ଦ୍ଦେଶରେ ଦଲିଲ ଗ୍ରହଣ କରେ ନାହିଁ" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "ଅଚିହ୍ନା ଆରମ୍ଭ ବିକଳ୍ପ: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "ଦଲିଲ URI ଗୁଡ଼ିକୁ 'ପ୍ରକାର=ସଂଯୋଗ' ଡେସ୍କଟପ ଭରଣକୁ ପଠାଯାଇପାରିବ ନାହିଁ" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "ଗୋଟିଏ ଆରମ୍ଭଯୋଗ୍ୟ ବସ୍ତୁ ନୁହଁ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "ଅଧିବେଶନ ପରିଚାଳକଙ୍କ ସହିତ ସଂଯୋଗକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "ସଂରକ୍ଷିତ ବିନ୍ୟାସକୁ ଧାରଣ କରିଥିବା ଫାଇଲ ଉଲ୍ଲେଖ କରନ୍ତୁ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "ଅଧିବେଶନ ପରିଚାଳକ ID ଉଲ୍ଲେଖ କରନ୍ତୁ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ପରିଚୟ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "ଅଧିବେଶନ ପରିଚାଳନା ବିକଳ୍ପଗୁଡ଼ିକ:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "ଅଧିବେଶନ ପରିଚାଳନା ବିକଳ୍ପଗୁଡ଼ିକୁ ଦର୍ଶାନ୍ତୁ" @@ -1105,13 +1117,15 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"ଫାଇଲ ମାନଙ୍କୁ ନିମ୍ନଲିଖିତ ପ୍ରକ୍ରିୟା ମାନଙ୍କ ମଧ୍ଯରୁ ଗୋଟିଏ ପ୍ରକ୍ରିୟାରେ ସଜାଡନ୍ତୁ: ନାମ ଅନୁସାରେ, ଫୋଲଡର " -"ଅନୁସାରେ, ଆକାର ଅନୁସାରେ, ପ୍ରକାର ଅନୁସାରେ, କିମ୍ବା ତାରିଖ ଅନୁସାରେ" +"ଫାଇଲ ମାନଙ୍କୁ ନିମ୍ନଲିଖିତ ପ୍ରକ୍ରିୟା ମାନଙ୍କ ମଧ୍ଯରୁ ଗୋଟିଏ ପ୍ରକ୍ରିୟାରେ ସଜାଡନ୍ତୁ: " +"ନାମ ଅନୁସାରେ, ଫୋଲଡର ଅନୁସାରେ, ଆକାର ଅନୁସାରେ, ପ୍ରକାର ଅନୁସାରେ, କିମ୍ବା ତାରିଖ " +"ଅନୁସାରେ" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" msgstr "" -"ସଜାଡିବା କ୍ରମକୁ 'ବଡ ରୁ ସାନ କ୍ରମରେ' ବିନ୍ଯାସ କରନ୍ତୁ, ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ କ୍ରମଟି 'ସାନ ରୁ ବଡ କ୍ରମ ଅଟେ'" +"ସଜାଡିବା କ୍ରମକୁ 'ବଡ ରୁ ସାନ କ୍ରମରେ' ବିନ୍ଯାସ କରନ୍ତୁ, ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ କ୍ରମଟି " +"'ସାନ ରୁ ବଡ କ୍ରମ ଅଟେ'" #: gsearchtool/src/gsearchtool.c:1329 msgid "Automatically start a search" @@ -1129,7 +1143,8 @@ #: gsearchtool/src/gsearchtool.c:1445 msgid "Invalid option passed to sortby command line argument." -msgstr "ପାଠ୍ଯ ନିର୍ଦ୍ଦେଶ ସ୍ବତନ୍ତ୍ରଚରେ ସଜାଡିବା ପାଇଁ ଅବୈଧ ବିକଲ୍ପ ପ୍ରେରିତ କରାଯାଇଛି" +msgstr "" +"ପାଠ୍ଯ ନିର୍ଦ୍ଦେଶ ସ୍ବତନ୍ତ୍ରଚରେ ସଜାଡିବା ପାଇଁ ଅବୈଧ ବିକଲ୍ପ ପ୍ରେରିତ କରାଯାଇଛି" #: gsearchtool/src/gsearchtool.c:1737 msgid "" @@ -1144,7 +1159,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"ସନ୍ଧାନ ଫଳାଫଳଟି ଅବୈଧ ହୋଇପାରେ। ଏହି ସନ୍ଧାନକୁ ସମ୍ପାଦନ କରିବା ସମୟରେ ଗୁଡାଏ ତ୍ରୁଟି ପରିଲିଖିତ ହୋଇଥିଲା।" +"ସନ୍ଧାନ ଫଳାଫଳଟି ଅବୈଧ ହୋଇପାରେ। ଏହି ସନ୍ଧାନକୁ ସମ୍ପାଦନ କରିବା ସମୟରେ ଗୁଡାଏ ତ୍ରୁଟି " +"ପରିଲିଖିତ ହୋଇଥିଲା।" #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1155,8 +1171,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"ସନ୍ଧାନ ଫଳାଫଳଟି ଅପ୍ରଚଳିତ କିମ୍ବା ଅବୈଧ ଅଟେ। ଆପଣ ଶୀଘ୍ର ସନ୍ଧାନ ଗୁଣକୁ ନିଷ୍କ୍ରିୟ କରିବା ପାଇଁ ଚାହାଁନ୍ତି " -"କି?" +"ସନ୍ଧାନ ଫଳାଫଳଟି ଅପ୍ରଚଳିତ କିମ୍ବା ଅବୈଧ ଅଟେ। ଆପଣ ଶୀଘ୍ର ସନ୍ଧାନ ଗୁଣକୁ ନିଷ୍କ୍ରିୟ " +"କରିବା ପାଇଁ ଚାହାଁନ୍ତି କି?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1212,7 +1228,8 @@ #: gsearchtool/src/gsearchtool.c:2219 msgid "Select a search option from the drop-down list." -msgstr "ତଳକୁ ଖସି ପ୍ରଦର୍ଶିତ ହେଉଥିବା ତାଲିକା ମଧ୍ଯରୁ ଗୋଟିଏ ସନ୍ଧାନ ବିକଲ୍ପକୁ ଚୟନ କରନ୍ତୁ।" +msgstr "" +"ତଳକୁ ଖସି ପ୍ରଦର୍ଶିତ ହେଉଥିବା ତାଲିକା ମଧ୍ଯରୁ ଗୋଟିଏ ସନ୍ଧାନ ବିକଲ୍ପକୁ ଚୟନ କରନ୍ତୁ।" #: gsearchtool/src/gsearchtool.c:2236 msgid "Add search option" @@ -1250,8 +1267,8 @@ #: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 msgid "Enter a filename or partial filename with or without wildcards." msgstr "" -"ଗୋଟିଏ ଫାଇଲ ନାମ କିମ୍ବା ଆଂଶିକ ଫାଇଲ ନାମକୁ ମିଶ୍ରତ ଅକ୍ଷରପ୍ରଭ୍ରୁତି ସହିତ କିମ୍ବା ମିଶ୍ରତ ଅକ୍ଷରପ୍ରଭ୍ରୁତି ବିନା " -"ଭରଣ କରନ୍ତୁ।" +"ଗୋଟିଏ ଫାଇଲ ନାମ କିମ୍ବା ଆଂଶିକ ଫାଇଲ ନାମକୁ ମିଶ୍ରତ ଅକ୍ଷରପ୍ରଭ୍ରୁତି ସହିତ କିମ୍ବା " +"ମିଶ୍ରତ ଅକ୍ଷରପ୍ରଭ୍ରୁତି ବିନା ଭରଣ କରନ୍ତୁ।" #: gsearchtool/src/gsearchtool.c:2836 msgid "Name contains" @@ -1272,7 +1289,8 @@ #: gsearchtool/src/gsearchtool.c:2858 msgid "Select the folder or device from which you want to begin the search." msgstr "" -"ଆପଣ ଯାହା ସହିତ ସନ୍ଧାନକୁ ପ୍ରାରମ୍ଭ କରିବା ପାଇଁ ଚାହୁଁଛନ୍ତି ସେହି ଫୋଲଡର କିମ୍ବା ଉପକରଣକୁ ଚୟନ କରନ୍ତୁ।" +"ଆପଣ ଯାହା ସହିତ ସନ୍ଧାନକୁ ପ୍ରାରମ୍ଭ କରିବା ପାଇଁ ଚାହୁଁଛନ୍ତି ସେହି ଫୋଲଡର କିମ୍ବା " +"ଉପକରଣକୁ ଚୟନ କରନ୍ତୁ।" #: gsearchtool/src/gsearchtool.c:2876 msgid "Select more _options" @@ -1284,7 +1302,9 @@ #: gsearchtool/src/gsearchtool.c:2885 msgid "Click to expand or collapse the list of available options." -msgstr "ଉପଲବ୍ଧ ବିକଲ୍ପ ମାନଙ୍କର ସୂଚୀକୁ ପ୍ରସାତିର କିମ୍ବା ଅବସନ୍ନ କରିବା ପାଇଁ ଏଠାରେ ଦବାନ୍ତୁ।" +msgstr "" +"ଉପଲବ୍ଧ ବିକଲ୍ପ ମାନଙ୍କର ସୂଚୀକୁ ପ୍ରସାତିର କିମ୍ବା ଅବସନ୍ନ କରିବା ପାଇଁ ଏଠାରେ " +"ଦବାନ୍ତୁ।" #: gsearchtool/src/gsearchtool.c:2916 msgid "Click to display the help manual." @@ -1557,7 +1577,8 @@ msgid "View or monitor system log files" msgstr "ତନ୍ତ୍ର ଲଗ ଫାଇଲ ମାନଙ୍କୁ ଦେଖାନ୍ତୁ କିମ୍ବା ସେଗୁଡିକ ଉପରେ ଦ୍ରୁଷ୍ଟି ରଖନ୍ତୁ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1568,11 +1589,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"ପ୍ରାରମ୍ଭରେ ପ୍ରଦର୍ଶିତ ଲଗ ଫାଇଲକୁ ନିର୍ଦ୍ଦିଷ୍ଟ କରିଥାଏ। ଆପଣଙ୍କ ପ୍ରଚାଳନ ତନ୍ତ୍ର ଉପରେ ନିର୍ଭର କରି, ପୂର୍ବ " -"ନର୍ଦ୍ଧାରିତଟି /var/adm/messages କିମ୍ବା /var/log/messages ମଧ୍ଯରୁ ଗୋଟିଏ ହୋଇଥାଏ।" +"ପ୍ରାରମ୍ଭରେ ପ୍ରଦର୍ଶିତ ଲଗ ଫାଇଲକୁ ନିର୍ଦ୍ଦିଷ୍ଟ କରିଥାଏ। ଆପଣଙ୍କ ପ୍ରଚାଳନ ତନ୍ତ୍ର " +"ଉପରେ ନିର୍ଭର କରି, ପୂର୍ବ ନର୍ଦ୍ଧାରିତଟି /var/adm/messages କିମ୍ବା " +"/var/log/messages ମଧ୍ଯରୁ ଗୋଟିଏ ହୋଇଥାଏ।" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1583,8 +1605,9 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"ପ୍ରମୂଖ ବ୍ରୁକ୍ଷ ଦ୍ରୁଶ୍ଯରେ ଲଗକୁ ପ୍ରଦର୍ଶନ କରିବା ପାଇଁ ବ୍ଯବହ୍ରୁତ ସ୍ଥିର-ଓସାର ବିଶିଷ୍ଟ ଅକ୍ଷରରୂପର ଆକାରକୁ " -"ନିର୍ଦ୍ଦିଷ୍ଟ କରନ୍ତୁ। ପୂର୍ବ ନିର୍ଦ୍ଧାରିତଟି ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ ଟର୍ମିନାଲ ଅକ୍ଷରରୂପର ଆକାରରୁ ନିଆଯାଏ।" +"ପ୍ରମୂଖ ବ୍ରୁକ୍ଷ ଦ୍ରୁଶ୍ଯରେ ଲଗକୁ ପ୍ରଦର୍ଶନ କରିବା ପାଇଁ ବ୍ଯବହ୍ରୁତ ସ୍ଥିର-ଓସାର " +"ବିଶିଷ୍ଟ ଅକ୍ଷରରୂପର ଆକାରକୁ ନିର୍ଦ୍ଦିଷ୍ଟ କରନ୍ତୁ। ପୂର୍ବ ନିର୍ଦ୍ଧାରିତଟି ପୂର୍ବ " +"ନିର୍ଦ୍ଧାରିତ ଟର୍ମିନାଲ ଅକ୍ଷରରୂପର ଆକାରରୁ ନିଆଯାଏ।" #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1611,8 +1634,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"ପ୍ରାରମ୍ଭରେ ଖୋଲାଯିବା ଲଗ ଫାଇଲ ମାନଙ୍କର ଗୋଟିଏ ତାଲିକାକୁ ଉଲ୍ଲେଖ କରନ୍ତୁ। /etc/syslog.conf କୁ " -"ପଢି ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ ତାଲିକାଟି ପ୍ରସ୍ତୁତ କରାଯାଏ।" +"ପ୍ରାରମ୍ଭରେ ଖୋଲାଯିବା ଲଗ ଫାଇଲ ମାନଙ୍କର ଗୋଟିଏ ତାଲିକାକୁ ଉଲ୍ଲେଖ କରନ୍ତୁ। " +"/etc/syslog.conf କୁ ପଢି ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ ତାଲିକାଟି ପ୍ରସ୍ତୁତ କରାଯାଏ।" #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1728,7 +1751,9 @@ #: logview/src/logview-log.c:589 msgid "Error while uncompressing the GZipped log. The file might be corrupt." -msgstr "GZipped ଲଗ ଫାଇଲର ସଙ୍କୋଚନକୁ ହଚାଇବା ସମୟରେ ତ୍ରୁଟି। ଫାଇଲଟି ତ୍ରୁଟିଯୁକ୍ତ ହୋଇଥାଇପାରେ।" +msgstr "" +"GZipped ଲଗ ଫାଇଲର ସଙ୍କୋଚନକୁ ହଚାଇବା ସମୟରେ ତ୍ରୁଟି। ଫାଇଲଟି ତ୍ରୁଟିଯୁକ୍ତ " +"ହୋଇଥାଇପାରେ।" #: logview/src/logview-log.c:635 msgid "You don't have enough permissions to read the file." @@ -1973,7 +1998,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "ଗୋଟିଏ ଅନ-ଲାଇନ ଅଭିଧାନରେ ଶବ୍ଦର ସୁନିର୍ଦ୍ଦିଷ୍ଟ ଅର୍ଥ ଏବଂ ବନାନକୁ ଦେଖନ୍ତୁ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1985,8 +2011,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2016,9 +2042,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"ଅଭିଧାନ ଉତ୍ସରେ ବ୍ୟବହାର ହେବାକୁ ଥିବା ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ ବ୍ୟକ୍ତିଗତ ତଥ୍ୟାଧାର କିମ୍ୱା ଅଧିତଥ୍ୟାଧାର ର " -"ନାମ। ଗୋଟିଏ ବିସ୍ମୟ ସୂଚକ ଚିହ୍ନ (\"!\") ମାନେ ଅଭିଧାନ ଉତ୍ସରେ ଥିବା ସମସ୍ତ ତଥ୍ୟାଧାର ଗୁଡିକୁ ଖୋଜିବା " -"ଆବଶ୍ୟକ " +"ଅଭିଧାନ ଉତ୍ସରେ ବ୍ୟବହାର ହେବାକୁ ଥିବା ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ ବ୍ୟକ୍ତିଗତ ତଥ୍ୟାଧାର " +"କିମ୍ୱା ଅଧିତଥ୍ୟାଧାର ର ନାମ। ଗୋଟିଏ ବିସ୍ମୟ ସୂଚକ ଚିହ୍ନ (\"!\") ମାନେ ଅଭିଧାନ ଉତ୍ସରେ" +" ଥିବା ସମସ୍ତ ତଥ୍ୟାଧାର ଗୁଡିକୁ ଖୋଜିବା ଆବଶ୍ୟକ " #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2029,8 +2055,9 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"ଯଦି ଉପଲବ୍ଧ ଅଛି, ଗୋଟିଏ ଅଭିଧାନ ଉତ୍ସରେ ବ୍ଯବହାର କରାଯିବା ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ ସନ୍ଧାନ କୌଶଳର ନାମ। ପୂର୍ବ " -"ନିର୍ଦ୍ଧାରିତ କୌଶଳଟି 'ଅବିକଳ' ଅଟେ, ଯାହାକି ଶବ୍ଦ ସହିତ ଅବିକଳ ଭାବରେ ମିଶିଯାଏ।" +"ଯଦି ଉପଲବ୍ଧ ଅଛି, ଗୋଟିଏ ଅଭିଧାନ ଉତ୍ସରେ ବ୍ଯବହାର କରାଯିବା ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ ସନ୍ଧାନ" +" କୌଶଳର ନାମ। ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ କୌଶଳଟି 'ଅବିକଳ' ଅଟେ, ଯାହାକି ଶବ୍ଦ ସହିତ ଅବିକଳ " +"ଭାବରେ ମିଶିଯାଏ।" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2115,8 +2142,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"'%s:%d' ରେ ଡିରେକ୍ଟୋରି ସେବକ ସହିତ ସମ୍ପର୍କ ସ୍ଥାପନ କରିପାରିଲା ନାହିଁ। ସେବକଟି %d ସଙ୍କେତ ସହିତ ଉତ୍ତର " -"ଦେଲା (ସେବକ ଅକାମି)" +"'%s:%d' ରେ ଡିରେକ୍ଟୋରି ସେବକ ସହିତ ସମ୍ପର୍କ ସ୍ଥାପନ କରିପାରିଲା ନାହିଁ। ସେବକଟି %d " +"ସଙ୍କେତ ସହିତ ଉତ୍ତର ଦେଲା (ସେବକ ଅକାମି)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -3017,7 +3044,8 @@ msgid "Save images of your desktop or individual windows" msgstr "ଆପଣଙ୍କ ଡେସ୍କଟପ୍ କିମ୍ବା ବ୍ଯକ୍ତିଗତ ୱିଣ୍ଡୋର ପ୍ରତିଛବିକୁ ସଂରକ୍ଷଣ କରନ୍ତୁ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3075,8 +3103,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"ଗୋଟିଏ ଧାରର ବାହାରେ ଯୋଗ କରିବାର ପ୍ରଭାବ। ସମ୍ଭାବ୍ଯ ମୂଲ୍ଯ ଗୁଡିକ \"ଛାୟା\", \"କିଛି ନୁହେଁ\", ଏବଂ " -"\"ଧାର\" ଅଟନ୍ତି।" +"ଗୋଟିଏ ଧାରର ବାହାରେ ଯୋଗ କରିବାର ପ୍ରଭାବ। ସମ୍ଭାବ୍ଯ ମୂଲ୍ଯ ଗୁଡିକ \"ଛାୟା\", \"କିଛି " +"ନୁହେଁ\", ଏବଂ \"ଧାର\" ଅଟନ୍ତି।" #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3214,15 +3242,17 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 msgid "" "Conflicting options: --window and --area should not be used at the same " "time.\n" -msgstr "ଦ୍ୱନ୍ଦମୟ ବିକଳ୍ପଗୁଡ଼ିକ: --window ଏବଂ --କ୍ଷେତ୍ରକୁ ଏକ ସମୟରେ ବ୍ୟବହାର କରିବା ଉଚିତ ନୁହଁ। \n" +msgstr "" +"ଦ୍ୱନ୍ଦମୟ ବିକଳ୍ପଗୁଡ଼ିକ: --window ଏବଂ --କ୍ଷେତ୍ରକୁ ଏକ ସମୟରେ ବ୍ୟବହାର କରିବା ଉଚିତ " +"ନୁହଁ। \n" #: mate-screenshot/src/screenshot-dialog.c:210 #, c-format @@ -3256,8 +3286,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"ନିର୍ଭରକ ସଂରକ୍ଷଣ ପ୍ରକ୍ରିୟାଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ବାହାରି ଗଲା। ଆମେ ଆଶୁଚିତ୍ରକୁ ଡିସ୍କରେ ଲେଖିବାରେ " -"ଅସମର୍ଥ।" +"ନିର୍ଭରକ ସଂରକ୍ଷଣ ପ୍ରକ୍ରିୟାଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ବାହାରି ଗଲା। ଆମେ ଆଶୁଚିତ୍ରକୁ " +"ଡିସ୍କରେ ଲେଖିବାରେ ଅସମର୍ଥ।" #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/pa.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/pa.gmo differ diff -Nru mate-utils-1.26.0/po/pa.po mate-utils-1.26.1/po/pa.po --- mate-utils-1.26.0/po/pa.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/pa.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: +# clefebvre , 2021 # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Panjabi (Punjabi) (https://www.transifex.com/mate/teams/13566/" -"pa/)\n" -"Language: pa\n" +"Language-Team: Panjabi (Punjabi) (https://app.transifex.com/mate/teams/13566/pa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "ਫੋਲਡਰ ਸਾਇਜ਼ ਅਤੇ ਉਪਲੱਬਧ ਡਿਸਕ ਥਾਂ ਚੈੱਕ ਕਰੋ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -416,7 +417,8 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." -msgstr "ਸਰਵਰ ਨਾਲ ਕੁਨੈਕਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ। ਤੁਹਾਨੂੰ ਸਰਵਰ ਲਈ ਇੱਕ ਨਾਂ ਦੇਣਾ ਪਵੇਗਾ।" +msgstr "" +"ਸਰਵਰ ਨਾਲ ਕੁਨੈਕਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ। ਤੁਹਾਨੂੰ ਸਰਵਰ ਲਈ ਇੱਕ ਨਾਂ ਦੇਣਾ ਪਵੇਗਾ।" #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -476,7 +478,8 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"ਤੁਹਾਡੀ ਘਰ ਡਾਇਰੈਕਟਰੀ ਦੇ ਭਾਗ ਬਦਲੇ ਗਏ ਹਨ। ਡਿਸਕ ਵਰਤੋਂ ਵੇਰਵੇ ਨੂੰ ਅੱਪਡੇਟ ਕਰਨ ਲਈ ਮੁੜ-ਜਾਂਚ ਚੁਣੋ।" +"ਤੁਹਾਡੀ ਘਰ ਡਾਇਰੈਕਟਰੀ ਦੇ ਭਾਗ ਬਦਲੇ ਗਏ ਹਨ। ਡਿਸਕ ਵਰਤੋਂ ਵੇਰਵੇ ਨੂੰ ਅੱਪਡੇਟ ਕਰਨ ਲਈ " +"ਮੁੜ-ਜਾਂਚ ਚੁਣੋ।" #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -567,9 +570,9 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"ਇਹ ਪਰੋਗਰਾਮ ਇੱਕ ਮੁਫਤ ਸਾਫਟਵੇਅਰ ਹੈ, ਜਿਸ ਨੂੰ ਤੁਸੀਂ ਗਨੂ ਜਰਨਲ ਪਬਲਿਕ ਲਾਈਸੈਂਸ,ਜਿਸ ਨੂੰ ਫਰੀ ਸਾਫਟਵੇਅਰ " -"ਫਾਊਨਡੇਸ਼ਨ ਨੇ ਤਿਆਰ ਕੀਤਾ ਹੈ, ਦੇ ਵਰਜਨ ੨ ਜਾਂ ਨਵੇਂ ਦੀਆਂਸ਼ਰਤਾਂ (ਉਹ ਤੁਹਾਡੀ ਆਪਣੀ ਮਰਜ਼ੀ ਹੈ) ਅਧੀਨ ਵੰਡ " -"ਅਤੇ/ਜਾਂ ਸੋਧ ਸਕਦੇ ਹੋ।" +"ਇਹ ਪਰੋਗਰਾਮ ਇੱਕ ਮੁਫਤ ਸਾਫਟਵੇਅਰ ਹੈ, ਜਿਸ ਨੂੰ ਤੁਸੀਂ ਗਨੂ ਜਰਨਲ ਪਬਲਿਕ ਲਾਈਸੈਂਸ,ਜਿਸ " +"ਨੂੰ ਫਰੀ ਸਾਫਟਵੇਅਰ ਫਾਊਨਡੇਸ਼ਨ ਨੇ ਤਿਆਰ ਕੀਤਾ ਹੈ, ਦੇ ਵਰਜਨ ੨ ਜਾਂ ਨਵੇਂ ਦੀਆਂਸ਼ਰਤਾਂ " +"(ਉਹ ਤੁਹਾਡੀ ਆਪਣੀ ਮਰਜ਼ੀ ਹੈ) ਅਧੀਨ ਵੰਡ ਅਤੇ/ਜਾਂ ਸੋਧ ਸਕਦੇ ਹੋ।" #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -579,15 +582,15 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"ਇਹ ਪਰੋਗਰਾਮ ਨੂੰ ਇਹ ਮੰਨ ਕੇ ਵੰਡਿਆ ਜਾ ਰਿਹਾ ਹੈ ਕਿ ਇਹ ਫਾਇਦੇਮੰਦ ਰਹੇਗਾ,ਪਰ ਇਸ ਦੀ ਕੋਈ ਵਾਰੰਟੀ ਨਹੀਂ " -"ਲਈ ਜਾ ਰਹੀ ਹੈ, ਕਿਸੇ ਖਾਸ ਕੰਮ ਲਈ ਅਨੁਕੂਲ ਹੋਣ ਜਾਂਠੀਕ ਤਰ੍ਹਾਂ ਕੰਮ ਕਰਨ ਦੀ ਵੀ ਕੋਈ ਗਾਰੰਟੀ ਨਹੀਂ ਹੈ। " -"ਹੋਰ ਵੇਰਵੇ ਲਈ ਗਨੂ ਜਰਨਲਪਬਲਿਕ ਲਾਇਸੈਂਸ ਨੂੰ ਪੜ੍ਹੋ।" +"ਇਹ ਪਰੋਗਰਾਮ ਨੂੰ ਇਹ ਮੰਨ ਕੇ ਵੰਡਿਆ ਜਾ ਰਿਹਾ ਹੈ ਕਿ ਇਹ ਫਾਇਦੇਮੰਦ ਰਹੇਗਾ,ਪਰ ਇਸ ਦੀ ਕੋਈ " +"ਵਾਰੰਟੀ ਨਹੀਂ ਲਈ ਜਾ ਰਹੀ ਹੈ, ਕਿਸੇ ਖਾਸ ਕੰਮ ਲਈ ਅਨੁਕੂਲ ਹੋਣ ਜਾਂਠੀਕ ਤਰ੍ਹਾਂ ਕੰਮ ਕਰਨ " +"ਦੀ ਵੀ ਕੋਈ ਗਾਰੰਟੀ ਨਹੀਂ ਹੈ। ਹੋਰ ਵੇਰਵੇ ਲਈ ਗਨੂ ਜਰਨਲਪਬਲਿਕ ਲਾਇਸੈਂਸ ਨੂੰ ਪੜ੍ਹੋ।" #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -635,16 +638,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "ਇਹ ਕੰਪਿਊਟਰ ਉੱਤੇ ਦਸਤਾਵੇਜ਼ ਅਤੇ ਫੋਲਡਰਾਂ ਨੂੰ ਨਾਂ ਜਾਂ ਪਰਸੰਗ ਮੁਤਾਬਕ ਲੱਭੋ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -671,8 +675,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਸਧਾਰਨ ਫਾਇਲ ਨਾਂ ਦੀ ਖੋਜ ਲਈ ਟਿਕਾਣਾ ਕਮਾਂਡ ਦੀ ਵਰਤੋਂ ਵਿੱਚੋਂ ਖੋਜ " -"ਸੰਦ ਨੂੰ ਆਯੋਗ ਕਰਨਾ ਹੈ ਜਾਂ ਨਹੀਂ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਸਧਾਰਨ ਫਾਇਲ ਨਾਂ ਦੀ ਖੋਜ ਲਈ ਟਿਕਾਣਾ ਕਮਾਂਡ ਦੀ " +"ਵਰਤੋਂ ਵਿੱਚੋਂ ਖੋਜ ਸੰਦ ਨੂੰ ਆਯੋਗ ਕਰਨਾ ਹੈ ਜਾਂ ਨਹੀਂ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -680,12 +684,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"ਇਹ ਕੁੰਜੀ ਤੇਜ਼ ਖੋਜ ਦੌਰਾਨ ਵੱਖ ਰੱਖਣ ਵਾਲੇ ਮਾਰਗਾਂ ਖੋਜ ਸੰਦ ਵਿੱਚ ਪਛਾਣਦੀ ਹੈ। ਵਾਇਲਡ ਕਾਰਡ '*' ਅਤੇ '?' " -"ਸਹਿਯੋਗੀ ਹਨ। ਮੂਲ ਮੁੱਲ਼ ਹਨ /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, ਅਤੇ /var/*" +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"ਇਹ ਕੁੰਜੀ ਤੇਜ਼ ਖੋਜ ਦੌਰਾਨ ਵੱਖ ਰੱਖਣ ਵਾਲੇ ਮਾਰਗਾਂ ਖੋਜ ਸੰਦ ਵਿੱਚ ਪਛਾਣਦੀ ਹੈ। ਵਾਇਲਡ " +"ਕਾਰਡ '*' ਅਤੇ '?' ਸਹਿਯੋਗੀ ਹਨ। ਮੂਲ ਮੁੱਲ਼ ਹਨ /mnt/*, /media/*, /dev/*, /tmp/*, " +"/proc/*, ਅਤੇ /var/*" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -696,7 +701,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਜੇ ਖੋਜ ਸੰਦ ਤੇਜ਼ ਖੋਜ ਉਪਰੰਤ ਕਮਾਂਡ ਦੀ ਵਰਤੋਂ ਆਯੋਗ ਕਰੇ ਜਾਂ ਨਾ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਜੇ ਖੋਜ ਸੰਦ ਤੇਜ਼ ਖੋਜ ਉਪਰੰਤ ਕਮਾਂਡ ਦੀ ਵਰਤੋਂ ਆਯੋਗ " +"ਕਰੇ ਜਾਂ ਨਾ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -707,12 +713,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਤੇਜ ਖੋਜ ਸਮੇਂ ਦੂਜੀ ਵਾਰ ਪੜਤਾਲ ਨੂੰ ਖੋਜ ਸੰਦ ਤੋਂ ਵੱਖ ਕਰ ਦਿੱਤਾ ਜਾਵੇ। " -"ਦੂਜੀ ਖੋਜ find ਕਮਾਂਡ ਨੂੰ ਫਾਇਲਾਂ ਵਿੱਚ ਖੋਜਣ ਲਈ ਇਸਤੇਮਾਲ ਕਰਦੀ ਹੈ। ਦੂਜੀ ਵਾਰ ਖੋਜ ਕਰਨ ਦਾ ਅਰਥ ਹੈ " -"ਕਿ ਤਤਕਰਾ ਬਿਨਾਂ ਫਾਇਲਾਂ ਦੀ ਖੋਜ ਕਰਨਾ ਹੈ। ਵਾਇਲਡ ਕਾਰਡ '*' ਅਤੇ '?' ਸਹਿਯੋਗੀ ਹਨ। ਮੂਲ ਮੁੱਲ / ਹੈ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਤੇਜ ਖੋਜ ਸਮੇਂ ਦੂਜੀ ਵਾਰ ਪੜਤਾਲ ਨੂੰ ਖੋਜ ਸੰਦ ਤੋਂ " +"ਵੱਖ ਕਰ ਦਿੱਤਾ ਜਾਵੇ। ਦੂਜੀ ਖੋਜ find ਕਮਾਂਡ ਨੂੰ ਫਾਇਲਾਂ ਵਿੱਚ ਖੋਜਣ ਲਈ ਇਸਤੇਮਾਲ ਕਰਦੀ " +"ਹੈ। ਦੂਜੀ ਵਾਰ ਖੋਜ ਕਰਨ ਦਾ ਅਰਥ ਹੈ ਕਿ ਤਤਕਰਾ ਬਿਨਾਂ ਫਾਇਲਾਂ ਦੀ ਖੋਜ ਕਰਨਾ ਹੈ। ਵਾਇਲਡ " +"ਕਾਰਡ '*' ਅਤੇ '?' ਸਹਿਯੋਗੀ ਹਨ। ਮੂਲ ਮੁੱਲ / ਹੈ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -723,8 +730,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"ਇਹ ਕੁੰਜੀ ਖੋਜ ਨਤੀਜਿਆਂ ਵਿੱਚ ਕਾਲਮਾਂ ਦਾ ਕਰਮ ਵੇਖਾਉਦੀ ਹੈ। ਇਹ ਕੁੰਜੀ ਨੂੰ ਉਪਭੋਗੀ ਵਲੋਂ ਸੋਧਿਆ ਨਹੀਂ ਜਾ " -"ਸਕਦਾ ਹੈ।" +"ਇਹ ਕੁੰਜੀ ਖੋਜ ਨਤੀਜਿਆਂ ਵਿੱਚ ਕਾਲਮਾਂ ਦਾ ਕਰਮ ਵੇਖਾਉਦੀ ਹੈ। ਇਹ ਕੁੰਜੀ ਨੂੰ ਉਪਭੋਗੀ ਵਲੋਂ" +" ਸੋਧਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਹੈ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -732,12 +739,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -"ਇਹ ਕੁੰਜੀ ਝਰੋਖੇ ਦੀ ਚੌੜਾਈ ਦੱਸਦੀ ਹੈ ਅਤੇ ਸ਼ੈਸ਼ਨਾਂ ਵਿੱਚ ਖੋਜ ਸੰਦ ਦਾ ਅਕਾਰ ਯਾਦ ਰੱਖਦੀ ਹੈ। ਇਸ ਨੂੰ -1 ਰੱਖਣ " -"ਨਾਲ ਖੋਜ ਸੰਦ ਮੂਲ ਚੌੜਾਈ ਵਰਤੇਗਾ।" +"ਇਹ ਕੁੰਜੀ ਝਰੋਖੇ ਦੀ ਚੌੜਾਈ ਦੱਸਦੀ ਹੈ ਅਤੇ ਸ਼ੈਸ਼ਨਾਂ ਵਿੱਚ ਖੋਜ ਸੰਦ ਦਾ ਅਕਾਰ ਯਾਦ ਰੱਖਦੀ" +" ਹੈ। ਇਸ ਨੂੰ -1 ਰੱਖਣ ਨਾਲ ਖੋਜ ਸੰਦ ਮੂਲ ਚੌੜਾਈ ਵਰਤੇਗਾ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -746,11 +753,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"ਇਹ ਕੁੰਜੀ ਝਰੋਖੇ ਦੀ ਉਚਾਈ ਦੱਸਦੀ ਹੈ ਅਤੇ ਸ਼ੈਸ਼ਨਾਂ ਵਿੱਚ ਖੋਜ ਸੰਦ ਦਾ ਅਕਾਰ ਯਾਦ ਰੱਖਦੀ ਹੈ। ਇਸ ਨੂੰ -1 ਰੱਖਣ " -"ਨਾਲ ਖੋਜ ਸੰਦ ਮੂਲ ਉਚਾਈ ਵਰਤੇਗਾ।" +"ਇਹ ਕੁੰਜੀ ਝਰੋਖੇ ਦੀ ਉਚਾਈ ਦੱਸਦੀ ਹੈ ਅਤੇ ਸ਼ੈਸ਼ਨਾਂ ਵਿੱਚ ਖੋਜ ਸੰਦ ਦਾ ਅਕਾਰ ਯਾਦ ਰੱਖਦੀ " +"ਹੈ। ਇਸ ਨੂੰ -1 ਰੱਖਣ ਨਾਲ ਖੋਜ ਸੰਦ ਮੂਲ ਉਚਾਈ ਵਰਤੇਗਾ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -759,7 +766,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:50 msgid "" "This key determines if the search tool window starts in a maximized state." -msgstr "ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਕੀ ਖੋਜ ਸੰਦ ਝਰੋਖੇ ਨੂੰ ਵੱਡੇ ਅਕਾਰ ਮੁਤਾਬਕ ਖੋਲਿਆ ਜਾਵੇ।" +msgstr "" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਕੀ ਖੋਜ ਸੰਦ ਝਰੋਖੇ ਨੂੰ ਵੱਡੇ ਅਕਾਰ ਮੁਤਾਬਕ ਖੋਲਿਆ " +"ਜਾਵੇ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -774,167 +783,169 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਪਾਠ ਰੱਖਦਾ ਹੈ\" ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਪਾਠ ਰੱਖਦਾ ਹੈ\" ਖੋਜ " +"ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਸੋਧ ਮਿਤੀ ਘੱਟ ਹੈ\" ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ " -"ਨਾ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਸੋਧ ਮਿਤੀ ਘੱਟ ਹੈ\" ਖੋਜ" +" ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਸੋਧ ਮਿਤੀ ਵੱਧ ਹੈ\" ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ " -"ਨਾ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਸੋਧ ਮਿਤੀ ਵੱਧ ਹੈ\" ਖੋਜ" +" ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਅਕਾਰ ਘੱਟੋ-ਘੱਟ ਹੋਵੇ\" ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ " -"ਨਾ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਅਕਾਰ ਘੱਟੋ-ਘੱਟ ਹੋਵੇ\" " +"ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਅਧਿਕਤਮ ਅਕਾਰ\" ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ " -"ਨਾ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਅਧਿਕਤਮ ਅਕਾਰ\" ਖੋਜ ਚੋਣ" +" ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਫਾਇਲ ਖਾਲੀ ਹੈ\" ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ " -"ਨਾ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਫਾਇਲ ਖਾਲੀ ਹੈ\" ਖੋਜ " +"ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਉਪਭੋਗੀ ਮਲਕੀਅਤ\" ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ " -"ਨਾ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਉਪਭੋਗੀ ਮਲਕੀਅਤ\" ਖੋਜ " +"ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਸਮੂਹ ਮਲਕੀਅਤ\" ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਸਮੂਹ ਮਲਕੀਅਤ\" ਖੋਜ ਚੋਣ" +" ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਉਪਭੋਗੀ ਅਣਜਾਣ ਹੈ\" ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ " -"ਨਾ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਉਪਭੋਗੀ ਅਣਜਾਣ ਹੈ\" ਖੋਜ" +" ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਨਾਂ ਨਹੀਂ ਰੱਖਦਾ ਹੈ\" ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ " -"ਨਾ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਨਾਂ ਨਹੀਂ ਰੱਖਦਾ ਹੈ\" " +"ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਨਾਂ ਨਿਯਮਤ ਸਮੀਕਰਨ ਨਾਲ ਮਿਲਦਾ ਹੈ\" " -"ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਨਾਂ ਨਿਯਮਤ ਸਮੀਕਰਨ ਨਾਲ " +"ਮਿਲਦਾ ਹੈ\" ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਲੁਕਵੀਆਂ ਫਾਇਲਾਂ ਤੇ ਫੋਲਡਰ ਵੇਖਾਓ\" ਖੋਜ ਚੋਣ " -"ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਲੁਕਵੀਆਂ ਫਾਇਲਾਂ ਤੇ " +"ਫੋਲਡਰ ਵੇਖਾਓ\" ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਨਿਸ਼ਾਨ ਸਬੰਧ ਖੋਜ\" ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ " -"ਨਾ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਸੰਦ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਨਿਸ਼ਾਨ ਸਬੰਧ ਖੋਜ\" ਖੋਜ " +"ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਟੂਲ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਹੋਰ ਫਾਇਲ ਸਿਸਟਮ ਅੱਡ ਰੱਖੋ\" ਖੋਜ ਚੋਣ ਚੁਣੀ " -"ਹੋਵੇ ਜਾਂ ਨਾ।" +"ਇਹ ਕੁੰਜੀ ਇਹ ਨਿਰਧਾਰਤ ਕਰਦੀ ਹੈ ਕਿ ਖੋਜ ਟੂਲ ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ \"ਹੋਰ ਫਾਇਲ ਸਿਸਟਮ ਅੱਡ " +"ਰੱਖੋ\" ਖੋਜ ਚੋਣ ਚੁਣੀ ਹੋਵੇ ਜਾਂ ਨਾ।" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "ਫਾਇਲ ਇੱਕ ਢੁੱਕਵੀਂ .desktop ਫਾਇਲ ਨਹੀਂ ਹੈ" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "ਬੇਪਛਾਣ ਡੈਸਕਟਾਪ ਫਾਇਲ ਵਰਜਨ '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s ਸ਼ੁਰੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "ਐਪਲੀਕੇਸ਼ਨ ਕਮਾਂਡ ਲਾਈਨ ਉੱਤੇ ਡੌਕੂਮੈਂਟ ਮਨਜ਼ੂਰ ਨਹੀਂ ਕਰਦੀ ਹੈ" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "ਬੇਪਛਾਣ ਚਲਾਉਣ ਚੋਣ: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "ਡੌਕੂਮੈਂਟ URIs 'Type=Link' ਡੈਸਕਟਾਪ ਐਂਟਰੀ ਨੂੰ ਦਿੱਤਾ ਨਹੀਂ ਜਾ ਸਕਦਾ" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "ਚਲਾਉਣਯੋਗ ਆਈਟਮ ਨਹੀਂ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "ਸ਼ੈਸ਼ਨ ਮੈਨੇਜਰ ਨਾਲ ਕੁਨੈਕਸ਼ਨ ਬੰਦ ਕਰੋ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "ਸੰਭਾਲੀ ਸੰਰਚਨਾ ਦੇਣ ਵਾਲੀ ਫਾਇਲ ਦਿਓ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ਫਾਇਲ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "ਸ਼ੈਸ਼ਨ ਪਰਬੰਧ ID ਦਿਓ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "ਸ਼ੈਸ਼ਨ ਪਰਬੰਧ ਚੋਣਾਂ:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "ਸ਼ੈਸ਼ਨ ਪਰਬੰਧ ਚੋਣਾਂ ਵੇਖੋ" @@ -1143,7 +1154,9 @@ msgid "" "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" -msgstr "ਖੋਜ ਨਤੀਜੇ ਪੁਰਾਣੇ ਜਾਂ ਗਲਤ ਵੀ ਹੋ ਸਕਦੇ ਹਨ, ਕੀ ਤੁਸੀਂ ਤੇਜ਼ ਖੋਜ ਫੀਚਰ ਨੂੰ ਆਯੋਗ ਕਰਨਾ ਚਾਹੋਗੇ?" +msgstr "" +"ਖੋਜ ਨਤੀਜੇ ਪੁਰਾਣੇ ਜਾਂ ਗਲਤ ਵੀ ਹੋ ਸਕਦੇ ਹਨ, ਕੀ ਤੁਸੀਂ ਤੇਜ਼ ਖੋਜ ਫੀਚਰ ਨੂੰ ਆਯੋਗ ਕਰਨਾ " +"ਚਾਹੋਗੇ?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1420,11 +1433,15 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1815 #, c-format msgid "The document \"%s\" already exists. Would you like to replace it?" -msgstr "ਡੌਕੂਮੈਂਟ \"%s\" ਪਹਿਲਾਂ ਹੀ ਸੰਭਾਲਿਆ ਜਾ ਸਕਿਆ ਹੈ, ਕੀ ਤੁਸੀ ਉਸ ਨੂੰ ਤਬਦੀਲ ਕਰਨਾ ਚਾਹੋਗੇ?" +msgstr "" +"ਡੌਕੂਮੈਂਟ \"%s\" ਪਹਿਲਾਂ ਹੀ ਸੰਭਾਲਿਆ ਜਾ ਸਕਿਆ ਹੈ, ਕੀ ਤੁਸੀ ਉਸ ਨੂੰ ਤਬਦੀਲ ਕਰਨਾ " +"ਚਾਹੋਗੇ?" #: gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "If you replace an existing file, its contents will be overwritten." -msgstr "ਜੇਕਰ ਤੁਸੀ ਮੌਜੂਦ ਫਾਇਲ ਨੂੰ ਤਬਦੀਲ ਕਰ ਦਿੱਤਾ, ਤਾਂ ਸਾਰੇ ਹਿੱਸੇ ਨਵੇ ਸਿਰੇ ਤੋ ਲਿਖ ਦਿੱਤੇ ਜਾਣਗੇ।" +msgstr "" +"ਜੇਕਰ ਤੁਸੀ ਮੌਜੂਦ ਫਾਇਲ ਨੂੰ ਤਬਦੀਲ ਕਰ ਦਿੱਤਾ, ਤਾਂ ਸਾਰੇ ਹਿੱਸੇ ਨਵੇ ਸਿਰੇ ਤੋ ਲਿਖ " +"ਦਿੱਤੇ ਜਾਣਗੇ।" #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 @@ -1541,7 +1558,8 @@ msgid "View or monitor system log files" msgstr "ਸਿਸਟਮ ਲਾਗ ਫਾਇਲਾਂ ਵੇਖੋ ਜਾਂ ਨਿਗਰਾਨੀ ਕਰੋ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1552,11 +1570,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ ਖੋਲੀ ਜਾਣ ਵਾਲੀ ਲਾਗ ਫਾਇਲ ਦੀ ਚੋਣ ਕਰੋ। ਤੁਹਾਡੇ ਓਪਰੇਟਿੰਗ ਸਿਸਟਮ ਦੇ ਅਧਾਰ ਉੱਤੇ ਇਹ /" -"var/adm/messages ਜਾਂ /var/log/messages ਹੋ ਸਕਦੀ ਹੈ।" +"ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ ਖੋਲੀ ਜਾਣ ਵਾਲੀ ਲਾਗ ਫਾਇਲ ਦੀ ਚੋਣ ਕਰੋ। ਤੁਹਾਡੇ ਓਪਰੇਟਿੰਗ ਸਿਸਟਮ ਦੇ " +"ਅਧਾਰ ਉੱਤੇ ਇਹ /var/adm/messages ਜਾਂ /var/log/messages ਹੋ ਸਕਦੀ ਹੈ।" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1567,8 +1585,8 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"ਲਾਗ ਵਿੱਚ ਮੁੱਖ ਲੜੀ ਝਲਕ ਵਿੱਚ ਸਥਿਰ-ਚੌੜਾਈ ਫੋਂਟ ਦਾ ਅਕਾਰ ਦਿਓ। ਮੂਲ ਰੂਪ ਵਿੱਚ ਟਰਮੀਨਲ ਦੇ ਫੋਂਟਾਂ ਦਾ " -"ਅਕਾਰ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ।" +"ਲਾਗ ਵਿੱਚ ਮੁੱਖ ਲੜੀ ਝਲਕ ਵਿੱਚ ਸਥਿਰ-ਚੌੜਾਈ ਫੋਂਟ ਦਾ ਅਕਾਰ ਦਿਓ। ਮੂਲ ਰੂਪ ਵਿੱਚ ਟਰਮੀਨਲ " +"ਦੇ ਫੋਂਟਾਂ ਦਾ ਅਕਾਰ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ।" #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1595,8 +1613,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ ਖੋਲੀ ਜਾਣ ਵਾਲੀ ਲਾਗ ਫਾਇਲ ਦੀ ਚੋਣ ਕਰੋ। ਮੂਲ ਰੂਪ ਵਿੱਚ /etc/syslog.conf ਨੂੰ ਪੜ੍ਹਿਆ " -"ਜਾਵੇਗਾ।" +"ਸ਼ੁਰੂ ਹੋਣ ਸਮੇਂ ਖੋਲੀ ਜਾਣ ਵਾਲੀ ਲਾਗ ਫਾਇਲ ਦੀ ਚੋਣ ਕਰੋ। ਮੂਲ ਰੂਪ ਵਿੱਚ " +"/etc/syslog.conf ਨੂੰ ਪੜ੍ਹਿਆ ਜਾਵੇਗਾ।" #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1957,7 +1975,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "ਇੱਕ ਆਨਲਾਈਨ ਡਿਕਸ਼ਨਰੀ ਵਿੱਚ ਸ਼ਬਦ ਪ੍ਰੀਭਾਸ਼ਾ ਅਤੇ ਸ਼ਬਦ-ਜੋੜ ਵੇਖੋ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1969,8 +1988,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2000,8 +2019,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"ਇੱਕ ਡਿਕਸ਼ਨਰੀ ਸਰੋਤ ਦੇ ਲਈ ਵਰਤਣ ਲਈ ਮੂਲ ਇੱਕਲਾ ਡਾਟਾਬੇਸ ਜਾਂ ਮੈਟਾ-ਡਾਟਾਬੇਸ ਦਾ ਨਾਂ ਹੈ। ਹੈਰਾਨੀਵਾਚਕ " -"ਨਿਸ਼ਾਨ (\"!\") ਦਾ ਮਤਲਬ ਹੈ ਕਿ ਸਰੋਤ ਉੱਤੇ ਮੌਜੂਦ ਹਰੇਕ ਡਾਟਾਬੇਸ ਵਿੱਚ ਖੋਜਿਆ ਜਾਵੇਗਾ।" +"ਇੱਕ ਡਿਕਸ਼ਨਰੀ ਸਰੋਤ ਦੇ ਲਈ ਵਰਤਣ ਲਈ ਮੂਲ ਇੱਕਲਾ ਡਾਟਾਬੇਸ ਜਾਂ ਮੈਟਾ-ਡਾਟਾਬੇਸ ਦਾ ਨਾਂ " +"ਹੈ। ਹੈਰਾਨੀਵਾਚਕ ਨਿਸ਼ਾਨ (\"!\") ਦਾ ਮਤਲਬ ਹੈ ਕਿ ਸਰੋਤ ਉੱਤੇ ਮੌਜੂਦ ਹਰੇਕ ਡਾਟਾਬੇਸ " +"ਵਿੱਚ ਖੋਜਿਆ ਜਾਵੇਗਾ।" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2012,8 +2032,8 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"ਇੱਕ ਡਿਕਸ਼ਨਰੀ ਉੱਤੇ ਵਰਤਣ ਲਈ ਮੂਲ ਖੋਜ ਨੀਤੀ ਦਾ ਨਾਂ, ਜੇਕਰ ਕੋਈ ਹੈ। ਮੂਲ ਨੀਤੀ 'exact' ਹੈ, ਇਹ ਨੀਤੀ " -"ਪੂਰਾ ਸ਼ਬਦ ਮਿਲਾਉਦੀ ਹੈ।" +"ਇੱਕ ਡਿਕਸ਼ਨਰੀ ਉੱਤੇ ਵਰਤਣ ਲਈ ਮੂਲ ਖੋਜ ਨੀਤੀ ਦਾ ਨਾਂ, ਜੇਕਰ ਕੋਈ ਹੈ। ਮੂਲ ਨੀਤੀ 'exact'" +" ਹੈ, ਇਹ ਨੀਤੀ ਪੂਰਾ ਸ਼ਬਦ ਮਿਲਾਉਦੀ ਹੈ।" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2030,7 +2050,8 @@ #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22 msgid "" "The name of the dictionary source used to retrieve the definitions of words." -msgstr "ਸ਼ਬਦਾਂ ਦੀ ਪਰਿਭਾਸ਼ਾ ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ ਵਰਤੇ ਜਾਣ ਵਾਲੇ ਡਿਕਸ਼ਨਰੀ ਦੇ ਸਰੋਤ ਦਾ ਨਾਂ ਹੈ।" +msgstr "" +"ਸ਼ਬਦਾਂ ਦੀ ਪਰਿਭਾਸ਼ਾ ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ ਵਰਤੇ ਜਾਣ ਵਾਲੇ ਡਿਕਸ਼ਨਰੀ ਦੇ ਸਰੋਤ ਦਾ ਨਾਂ ਹੈ।" #: mate-dictionary/data/thai.desktop.in:3 msgid "Thai" @@ -2098,8 +2119,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"'%s:%d' ਉੱਤੇ ਡਿਕਸ਼ਨਰੀ ਸਰਵਰ ਨਾ ਜੁੜਨ ਲਈ ਅਸਮਰੱਥ ਹੈ। ਸਰਵਰ ਦਾ ਕੋਡ (%d) ਨਾਲ ਜਵਾਬ (ਸਰਵਰ ਬੰਦ " -"ਹੈ)" +"'%s:%d' ਉੱਤੇ ਡਿਕਸ਼ਨਰੀ ਸਰਵਰ ਨਾ ਜੁੜਨ ਲਈ ਅਸਮਰੱਥ ਹੈ। ਸਰਵਰ ਦਾ ਕੋਡ (%d) ਨਾਲ ਜਵਾਬ " +"(ਸਰਵਰ ਬੰਦ ਹੈ)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -3000,7 +3021,8 @@ msgid "Save images of your desktop or individual windows" msgstr "ਆਪਣੇ ਡੈਸਕਟਾ ਜਾਂ ਅੱਡ-ਅੱਡ ਵਿੰਡੋਜ਼ ਲਈ ਸੰਭਾਲੋ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3057,8 +3079,7 @@ msgid "" "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." -msgstr "" -"ਬਾਰਡਰ ਦੇ ਬਾਹਰੀ ਪਰਭਾਵ ਸ਼ਾਮਲ ਕਰੋ। ਸੰਭਵ ਮੁੱਲ ਹਨ \"shadow\", \"none\", ਅਤੇ \"border\"" +msgstr "ਬਾਰਡਰ ਦੇ ਬਾਹਰੀ ਪਰਭਾਵ ਸ਼ਾਮਲ ਕਰੋ। ਸੰਭਵ ਮੁੱਲ ਹਨ \"shadow\", \"none\", ਅਤੇ \"border\"" #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3196,8 +3217,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3238,7 +3259,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"ਅਧੀਨ ਕਾਰਜ ਅਸਧਾਰਨ ਢੰਗ ਨਾਲ ਬੰਦ ਹੋ ਗਿਆ ਹੈ। ਅਸੀ ਡਿਸਕ ਉੱਤੇ ਸਕਰੀਨ-ਸ਼ਾਟ ਲਿਖਣ ਤੋਂ ਅਸਫਲ ਹਾਂ।" +"ਅਧੀਨ ਕਾਰਜ ਅਸਧਾਰਨ ਢੰਗ ਨਾਲ ਬੰਦ ਹੋ ਗਿਆ ਹੈ। ਅਸੀ ਡਿਸਕ ਉੱਤੇ ਸਕਰੀਨ-ਸ਼ਾਟ ਲਿਖਣ ਤੋਂ " +"ਅਸਫਲ ਹਾਂ।" #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/pl.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/pl.gmo differ diff -Nru mate-utils-1.26.0/po/pl.po mate-utils-1.26.1/po/pl.po --- mate-utils-1.26.0/po/pl.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/pl.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,41 +2,41 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Krzysztof Kokot , 2018 -# Jan Bońkowski , 2018 -# Bogusław B. , 2018 -# Daniel Krawczyk , 2018 -# emariusek , 2018 -# Paweł Bandura , 2018 -# Marcin Kralka , 2018 -# Kajetan Rosiak , 2018 -# Wiktor Jezioro , 2018 -# Piotr Drąg , 2018 -# pietrasagh , 2019 -# Przemek P , 2019 -# Pawel Pavroo , 2019 -# Dominik Adrian Grzywak, 2020 -# No Ne, 2021 +# Bogusław B. , 2021 +# clefebvre , 2021 +# Daniel Krawczyk , 2021 +# Pawel Pavroo , 2021 +# Kajetan Rosiak , 2021 +# Jan Bońkowski , 2021 +# pietrasagh , 2021 +# Piotr Drąg , 2021 # Piotr Strębski , 2021 # Stefano Karapetsas , 2021 -# +# Marcin Kralka , 2021 +# Dominik Adrian Grzywak, 2021 +# emariusek , 2021 +# Paweł Bandura , 2021 +# Krzysztof Kokot , 2021 +# Wiktor Jezioro , 2021 +# Przemek P , 2021 +# Daniel Tokarzewski , 2021 +# Marek Adamski, 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Polish (https://www.transifex.com/mate/teams/13566/pl/)\n" -"Language: pl\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Marek Adamski, 2021\n" +"Language-Team: Polish (https://app.transifex.com/mate/teams/13566/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -47,7 +47,8 @@ msgid "Check folder sizes and available disk space" msgstr "Wyświetlanie rozmiaru katalogów i dostępnego miejsca na dysku" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "MATE;sprawdzanie;dysk;użycie;analiza;rozmiar;miejsce;" @@ -62,7 +63,7 @@ #: mate-dictionary/src/gdict-window.c:1262 #: mate-screenshot/data/mate-screenshot.ui:41 msgid "_Help" -msgstr "P_omoc" +msgstr "_Pomoc" #: baobab/data/baobab-dialog-scan-props.ui:48 logview/src/logview-window.c:829 #: mate-dictionary/src/gdict-window.c:1273 @@ -233,8 +234,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" "Jak nazwa sugeruje, Analizator wykorzystania dysku jest graficznym " @@ -598,8 +599,8 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"Niniejszy program jest wolnym oprogramowaniem; można go rozprowadzać dalej i/" -"lub modyfikować na warunkach Powszechnej Licencji Publicznej GNU, wydanej " +"Niniejszy program jest wolnym oprogramowaniem; można go rozprowadzać dalej " +"i/lub modyfikować na warunkach Powszechnej Licencji Publicznej GNU, wydanej " "przez Fundację Wolnego Oprogramowania - według wersji drugiej tej Licencji " "lub którejś z późniejszych wersji." @@ -611,16 +612,17 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"Niniejszy program rozpowszechniany jest z nadzieją, iż będzie on użyteczny - " -"jednak BEZ JAKIEJKOLWIEK GWARANCJI, nawet domyślnej gwarancji PRZYDATNOŚCI " +"Niniejszy program rozpowszechniany jest z nadzieją, iż będzie on użyteczny -" +" jednak BEZ JAKIEJKOLWIEK GWARANCJI, nawet domyślnej gwarancji PRZYDATNOŚCI " "HANDLOWEJ albo PRZYDATNOŚCI DO OKREŚLONYCH ZASTOSOWAŃ. W celu uzyskania " -"bliższych informacji należy zapoznać się z Powszechną Licencją Publiczną GNU." +"bliższych informacji należy zapoznać się z Powszechną Licencją Publiczną " +"GNU." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" "Z pewnością wraz z niniejszym programem dostarczono także egzemplarz " "Powszechnej Licencji Publicznej GNU (GNU General Public License); jeśli nie " @@ -646,7 +648,7 @@ #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" msgstr "" -"Tłumacze środowiska MATE, 2014-2018\n" +"Tłumacze środowiska MATE, 2014-2020\n" "\n" "Zbigniew Chyla, 2002-2003\n" "Artur Flinta, 2003-2005\n" @@ -654,7 +656,8 @@ "Tomasz Dominikowski, 2008-2009\n" "Joanna Mazgaj, 2009\n" "Piotr Drąg, 2010\n" -"Aviary.pl, 2007-2010" +"Aviary.pl, 2007-2010\n" +"Daniel Tokarzewski, 2020" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -678,9 +681,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" "Narzędzie wyszukiwania MATE jest prostym, aczkolwiek potężnym programem " "pozwalającym na wyszukiwanie plików i folderów na każdym podłączonym " @@ -693,13 +696,13 @@ msgid "Locate documents and folders on this computer by name or content" msgstr "Wyszukuje dokumenty i katalogi na komputerze po nazwie lub treści" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" -"MATE;wyszukiwanie;pliki;lokalizować;dokumenty;katalogi;komputer;nazwa;" -"zawartość;znajdź;narzędzie;" +"MATE;wyszukiwanie;pliki;lokalizować;dokumenty;katalogi;komputer;nazwa;zawartość;znajdź;narzędzie;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -731,9 +734,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Klucz ten definiuje ścieżki, które nie będą brane pod uwagę przy szybkim " "wyszukiwaniu. Obsługiwane są znaki specjalne \"*\" i \"?\". Domyślne " @@ -760,14 +763,14 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Klucz ten definiuje ścieżki, które nie będą brane pod uwagę przy drugim " "przebiegu szybkiego wyszukiwania. Drugi przebieg używa do wyszukiwania " -"plików polecenia find. Zadaniem drugiego przebiegu jest odnalezienie plików, " -"które nie zostały zindeksowane. Obsługiwane są znaki specjalne \"*\" i \"?" -"\". Domyślną wartością jest /." +"plików polecenia find. Zadaniem drugiego przebiegu jest odnalezienie plików," +" które nie zostały zindeksowane. Obsługiwane są znaki specjalne \"*\" i " +"\"?\". Domyślną wartością jest /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -787,12 +790,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -"Klucz ten określa szerokość okna i jest wykorzystywany do przechowywania tej " -"wartości pomiędzy sesjami. Wartość -1 oznacza domyślną szerokość okna." +"Klucz ten określa szerokość okna i jest wykorzystywany do przechowywania tej" +" wartości pomiędzy sesjami. Wartość -1 oznacza domyślną szerokość okna." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -801,8 +804,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Klucz ten określa wysokość okna i jest wykorzystywany do przechowywania tej " "wartości pomiędzy sesjami. Wartość -1 oznacza domyślną wysokość okna." @@ -824,8 +827,7 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 msgid "This key defines the default value of the \"Look in Folder\" widget." -msgstr "" -"Ten klucz określa domyślną wartość widgetu \"Wyszukiwanie w katalogu\"." +msgstr "Ten klucz określa domyślną wartość widgetu \"Wyszukiwanie w katalogu\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 msgid "" @@ -840,24 +842,24 @@ "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"Klucz ten określa, czy wybrana jest opcja wyszukiwania \"Czas od modyfikacji " -"nie przekracza\" podczas uruchamiania narzędzia wyszukiwania." +"Klucz ten określa, czy wybrana jest opcja wyszukiwania \"Czas od modyfikacji" +" nie przekracza\" podczas uruchamiania narzędzia wyszukiwania." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"Klucz ten określa, czy wybrana jest opcja wyszukiwania \"Czas od modyfikacji " -"przekracza\" podczas uruchamiania narzędzia wyszukiwania." +"Klucz ten określa, czy wybrana jest opcja wyszukiwania \"Czas od modyfikacji" +" przekracza\" podczas uruchamiania narzędzia wyszukiwania." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"Klucz ten określa, czy wybrana jest opcja wyszukiwania \"Rozmiar przynajmniej" -"\" podczas uruchamiania narzędzia wyszukiwania." +"Klucz ten określa, czy wybrana jest opcja wyszukiwania \"Rozmiar " +"przynajmniej\" podczas uruchamiania narzędzia wyszukiwania." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" @@ -885,8 +887,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Klucz ten określa, czy wybrana jest opcja wyszukiwania \"Należy do grupy\" " "podczas uruchamiania narzędzia wyszukiwania." @@ -904,13 +906,13 @@ "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"Klucz ten określa, czy wybrana jest opcja wyszukiwania \"Nazwa nie zawiera\" " -"podczas uruchamiania narzędzia wyszukiwania." +"Klucz ten określa, czy wybrana jest opcja wyszukiwania \"Nazwa nie zawiera\"" +" podczas uruchamiania narzędzia wyszukiwania." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Klucz ten określa, czy wybrana jest opcja wyszukiwania \"Nazwa pasuje do " "wyrażenia regularnego\" podczas uruchamiania narzędzia wyszukiwania." @@ -936,66 +938,66 @@ "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"Klucz ten określa, czy wybrana jest opcja wyszukiwania \"Bez innych systemów " -"plików\" podczas uruchamiania narzędzia wyszukiwania." +"Klucz ten określa, czy wybrana jest opcja wyszukiwania \"Bez innych systemów" +" plików\" podczas uruchamiania narzędzia wyszukiwania." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Plik nie jest prawidłowym plikiem .desktop" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Nierozpoznany plik .desktop w wersji \"%s\"" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Uruchamianie %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Program nie akceptuje dokumentów w wierszu poleceń" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Nierozpoznana opcja startowa: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Nie można przekazać adresów URI dokumentów do wpisu .desktop \"Type=Link\"" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Nie można uruchomić elementu" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Rozłącza połączenie z menedżerem sesji" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Określa plik zawierający zapisaną konfigurację" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "PLIK" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Określa identyfikator zarządzania sesją" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opcje zarządzania sesją:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Wyświetla opcje zarządzania sesją" @@ -1331,7 +1333,8 @@ #: gsearchtool/src/gsearchtool.c:2858 msgid "Select the folder or device from which you want to begin the search." -msgstr "Proszę wybrać katalog lub urządzenie, w którym rozpocząć wyszukiwanie." +msgstr "" +"Proszę wybrać katalog lub urządzenie, w którym rozpocząć wyszukiwanie." #: gsearchtool/src/gsearchtool.c:2876 msgid "Select more _options" @@ -1378,10 +1381,10 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Na pewno otworzyć %d dokument?" -msgstr[1] "Na pewno otworzyć %d dokumenty?" -msgstr[2] "Na pewno otworzyć %d dokumentów?" -msgstr[3] "Na pewno otworzyć %d dokumentów?" +msgstr[0] "Czy na pewno otworzyć %d dokument?" +msgstr[1] "Czy na pewno otworzyć %d dokumenty?" +msgstr[2] "Czy na pewno otworzyć %d dokumentów?" +msgstr[3] "Czy na pewno otworzyć %d dokumentów?" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 @@ -1417,10 +1420,10 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Na pewno otworzyć %d katalog?" -msgstr[1] "Na pewno otworzyć %d katalogi?" -msgstr[2] "Na pewno otworzyć %d katalogów?" -msgstr[3] "Na pewno otworzyć %d katalogów?" +msgstr[0] "Czy na pewno otworzyć %d katalog?" +msgstr[1] "Czy na pewno otworzyć %d katalogi?" +msgstr[2] "Czy na pewno otworzyć %d katalogów?" +msgstr[3] "Czy na pewno otworzyć %d katalogów?" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1624,7 +1627,8 @@ msgid "View or monitor system log files" msgstr "Wyświetlanie plików dzienników systemowych" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1636,8 +1640,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "Określa plik dziennika, otwierany podczas uruchamiania. Domyślnym plikiem " "jest /var/adm/messages lub /var/log/messages, zależnie od używanej " @@ -1652,8 +1656,8 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"Określa rozmiar czcionki o stałej szerokości wykorzystywanej do wyświetlania " -"dziennika w głównym drzewie. Wartość domyślna pobierana jest z ustawień " +"Określa rozmiar czcionki o stałej szerokości wykorzystywanej do wyświetlania" +" dziennika w głównym drzewie. Wartość domyślna pobierana jest z ustawień " "terminalu." #: logview/data/org.mate.system-log.gschema.xml.in:15 @@ -1732,7 +1736,7 @@ #: logview/src/logview-about.h:41 mate-dictionary/src/gdict-about.c:46 msgid "Sun GNOME Documentation Team " -msgstr "Zespół Dokumentacji Sun GNOME " +msgstr "Zespół dokumentacji Sun GNOME " #: logview/src/logview-app.c:369 #, c-format @@ -2055,10 +2059,11 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Wyświetlanie definicji i pisowni słów w słowniku sieciowym" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" -msgstr "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" +msgstr "MATE;słownik;aplet;tezaurus;pisownia;definicje;online;" #: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 msgid "A dictionary for MATE Desktop" @@ -2067,8 +2072,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" "Słownik MATE umożliwia sprawdzenie słów w słownikach online. Jest " @@ -2115,8 +2120,8 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"Nazwa domyślnej strategii wyszukiwania w słowniku (jeśli dostępna). Domyślna " -"strategia to \"exact\", która dokładnie dopasowuje słowa." +"Nazwa domyślnej strategii wyszukiwania w słowniku (jeśli dostępna). Domyślna" +" strategia to \"exact\", która dokładnie dopasowuje słowa." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2137,7 +2142,7 @@ #: mate-dictionary/data/thai.desktop.in:3 msgid "Thai" -msgstr "Tajski" +msgstr "tajskie" #: mate-dictionary/data/thai.desktop.in:4 msgid "Longdo Thai-English Dictionaries" @@ -2803,7 +2808,7 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Odnaleziono definicję" +msgstr[0] "Odnaleziono %d definicję" msgstr[1] "Odnaleziono %d definicje" msgstr[2] "Odnaleziono %d definicji" msgstr[3] "Odnaleziono %d definicji" @@ -2864,7 +2869,7 @@ #: mate-dictionary/src/gdict-window.c:1288 msgid "_Preferences" -msgstr "P_referencje" +msgstr "_Preferencje" #: mate-dictionary/src/gdict-window.c:1292 msgid "_Previous Definition" @@ -2993,7 +2998,7 @@ #: mate-dictionary/data/mate-dictionary-preferences.ui:216 msgid "Print" -msgstr "Wydrukuj" +msgstr "Print" #: mate-dictionary/data/mate-dictionary-source.ui:38 msgid "_Description:" @@ -3105,8 +3110,8 @@ msgstr "" "Zrzut ekranu MATE jest prostym narzędziem, które pozwala na przechwytywanie " "zrzutów ekranu pulpitu lub okna aplikacji. Możesz wybrać, aby skopiować je " -"do schowka systemowego lub zapisać je w formacie graficznym Portable Network " -"Graphics (.png)." +"do schowka systemowego lub zapisać je w formacie graficznym Portable Network" +" Graphics (.png)." #: mate-screenshot/data/mate-screenshot.desktop.in:3 #: mate-screenshot/src/mate-screenshot.c:519 @@ -3118,7 +3123,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Zapisanie obrazu pulpitu lub poszczególnych okien" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "MATE;zrzut;ekran;migawka;pulpit;okno;obraz;" @@ -3226,7 +3232,7 @@ #: mate-screenshot/src/mate-screenshot.c:500 #: mate-screenshot/src/mate-screenshot.c:1320 msgid "seconds" -msgstr "sekund" +msgstr "sekund(y)" #: mate-screenshot/src/mate-screenshot.c:528 msgid "Effects" @@ -3315,8 +3321,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Sprzeczne opcje: --clipboard oraz --interactive nie mogą być używane w tym " "samym czasie.\n" @@ -3337,8 +3343,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Błąd podczas wczytywania pliku definicji interfejsu użytkownika dla " -"programu:\n" +"Błąd podczas wczytywania pliku definicji interfejsu użytkownika dla programu:\n" "%s\n" "\n" "Proszę sprawdzić, czy mate-utils jest zainstalowane poprawnie." Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/pms.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/pms.gmo differ diff -Nru mate-utils-1.26.0/po/pms.po mate-utils-1.26.1/po/pms.po --- mate-utils-1.26.0/po/pms.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/pms.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Randy Ichinose , 2019 -# +# Randy Ichinose , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Randy Ichinose , 2019\n" -"Language-Team: Piemontese (https://www.transifex.com/mate/teams/13566/pms/)\n" -"Language: pms\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Randy Ichinose , 2021\n" +"Language-Team: Piemontese (https://app.transifex.com/mate/teams/13566/pms/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pms\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -623,16 +624,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -666,9 +668,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -690,8 +692,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -710,9 +712,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -722,8 +724,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -787,8 +789,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -805,8 +807,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -827,62 +829,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1487,7 +1489,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1498,8 +1501,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1897,7 +1900,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1909,8 +1913,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2924,7 +2928,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3116,8 +3121,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 diff -Nru mate-utils-1.26.0/po/POTFILES.skip mate-utils-1.26.1/po/POTFILES.skip --- mate-utils-1.26.0/po/POTFILES.skip 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/po/POTFILES.skip 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,6 @@ +# List of source files that should *not* be translated. +# Please keep this file sorted alphabetically. +baobab/data/mate-disk-usage-analyzer.desktop.in +logview/data/mate-system-log.desktop.in +mate-dictionary/data/mate-dictionary.desktop.in + Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ps.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ps.gmo differ diff -Nru mate-utils-1.26.0/po/ps.po mate-utils-1.26.1/po/ps.po --- mate-utils-1.26.0/po/ps.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/ps.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Pushto (https://www.transifex.com/mate/teams/13566/ps/)\n" -"Language: ps\n" +"Language-Team: Pashto (https://app.transifex.com/mate/teams/13566/ps/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ps\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "د پوښۍ کچونه او شته ټيکلی تشه وګورﺉ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -600,8 +601,8 @@ #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" msgstr "" -"Saif Khan Pathanisation project " +"Saif Khan Pathanisation project " +"" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -625,16 +626,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "په دې سولګر کښې لاسوندونه او پوښۍ په نوم يا منځپانګې وځاييزوﺉ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -668,9 +670,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -692,8 +694,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -712,9 +714,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -724,8 +726,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -789,8 +791,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -807,8 +809,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -829,62 +831,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "دوتنه نه ده .desktop دوتنه سمه" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "'%s' ‎د سرپاڼه دوتنې ناپېژندلې نسخه" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "پېلېږي ‎%s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "کاريال په بولۍ ليکه کې لاسوندونه نه مني" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "%d ‎:ناپېژندلی پېل غوراوی" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "پېلېدونکی توکی نه دی" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "د ناسته سمبالګر سره نښلېدنه ناتوانول" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "هغه دوتنه چې ساتل شوې سازونه لري ويې ټاکئ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "دوتنه" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "د ناستې سمبالونې پېژند وټاکئ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "پېژند" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "د ناستې سمبالونې غوراوي ښودل" @@ -1490,7 +1492,8 @@ msgid "View or monitor system log files" msgstr "غونډال خبرال دوتنې کتل يا څارل" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1501,8 +1504,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1900,7 +1903,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1912,8 +1916,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2927,7 +2931,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3119,8 +3124,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/pt_BR.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/pt_BR.gmo differ diff -Nru mate-utils-1.26.0/po/pt_BR.po mate-utils-1.26.1/po/pt_BR.po --- mate-utils-1.26.0/po/pt_BR.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/pt_BR.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,44 +2,47 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Herick Vinicius , 2018 -# Gilberto José Souza Coutinho , 2018 -# Matheus Macabu , 2018 -# Enrico Nicoletto , 2018 -# 65f2af3cfa184c075942a0418b98d2de_d688669, 2018 -# Victor Gonçalves , 2018 -# Samuel Henrique , 2018 -# Willian Nunes de Oliveira , 2018 -# 642cf48d39bca7f9ad9d185d4bcea8c8, 2018 -# Allan Richardson , 2018 -# Aldo Oliveira , 2018 -# Lucas Dias , 2018 -# jose, 2018 -# 18ab4449a00621534598e84a949423ea, 2018 -# b36c7cf4cf669a51ae00d04c19629819, 2019 -# George Silva , 2019 -# Rodrigo Piñero , 2019 -# Marcelo Ghelman , 2020 -# LemFre, 2021 +# Victor Gonçalves , 2021 +# Lucas Dias , 2021 +# George Silva , 2021 +# Matheus Macabu , 2021 +# Enrico Nicoletto , 2021 +# clefebvre , 2021 +# Samuel Henrique , 2021 +# Willian Nunes de Oliveira , 2021 +# Rodrigo Piñero , 2021 +# Herick Vinicius , 2021 +# b36c7cf4cf669a51ae00d04c19629819, 2021 +# Josué Teodoro Moreira , 2021 +# Gilberto José Souza Coutinho , 2021 +# jose, 2021 +# 18ab4449a00621534598e84a949423ea, 2021 +# Allan Richardson , 2021 +# gustavo s, 2021 +# 808007d4a0e569ece8fbccc32b57c592_b53d1a5, 2021 # Stefano Karapetsas , 2021 +# Aldo Oliveira , 2021 +# Marcelo Ghelman , 2021 +# 65f2af3cfa184c075942a0418b98d2de_d688669, 2021 +# Wolfgang Ulbrich , 2021 # Roger Araújo , 2021 -# +# Luciano Luck, 2022 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Roger Araújo , 2021\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mate/" -"teams/13566/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Luciano Luck, 2022\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/mate/teams/13566/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -50,10 +53,11 @@ msgid "Check folder sizes and available disk space" msgstr "Verifique o tamanho das pastas e o espaço disponível em disco" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" -msgstr "" +msgstr "MATE;verificar;disco;uso;analisar;tamanho;espaço;" #: baobab/data/baobab-dialog-scan-props.ui:18 msgid "Disk Usage Analyzer Preferences" @@ -121,7 +125,7 @@ #: baobab/data/baobab-main-window.ui:108 msgid "_Toolbar" -msgstr "Barra de _ferramentas" +msgstr "_Barra de Ferramentas" #: baobab/data/baobab-main-window.ui:115 msgid "St_atusbar" @@ -240,10 +244,14 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" +"Como o próprio nome indica, o Disk Usage Analyzer é um utilitário \n" +"gráfico que você pode usar para visualizar e monitorar o uso do disco e a\n" +" estrutura de pastas. Ele exibe informações resumidas em gráficos de \n" +"anel ou de mapa de árvore." #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 msgid "" @@ -251,6 +259,10 @@ "local or remote. There is also an option to constantly monitor any external " "changes to the home directory and warn the user if a file is added/removed." msgstr "" +"Você pode executar scans em a sistema de arquivo, o teu nome. casa ou " +"qualquer pasta de trabalho - local ou remoto. Há também Opção Para Monitor " +"de controle Quais as externas alterações ao casa um e avise o usuário Se a " +"arquivo do arquivo é adicionado / removido." #: baobab/src/baobab.c:141 baobab/src/baobab.c:358 msgid "Scanning..." @@ -292,8 +304,9 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d item" -msgstr[1] "%5d itens" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -504,8 +517,8 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"O conteúdo da sua pasta pessoal foi alterado. Selecione \"Varrer novamente\" " -"para atualizar os detalhes de uso do disco." +"O conteúdo da sua pasta pessoal foi alterado. Selecione \"Varrer novamente\"" +" para atualizar os detalhes de uso do disco." #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -517,7 +530,7 @@ #: baobab/src/baobab-treeview.c:244 msgid "Usage" -msgstr "Utilização" +msgstr "Uso" #: baobab/src/baobab-treeview.c:258 gsearchtool/src/gsearchtool.c:2466 msgid "Size" @@ -596,10 +609,10 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"Este programa é um software livre; você pode redistribuí-lo e/ou modificá-lo " -"sob os termos da Licença Pública Geral GNU como publicada pela Free Software " -"Foundation (FSF); na versão 2 da Licença, ou (na sua opinião) qualquer " -"versão." +"Este programa é um software livre; você pode redistribuí-lo e/ou modificá-lo" +" sob os termos da Licença Pública Geral GNU como publicada pela Free " +"Software Foundation (FSF); na versão 2 da Licença, ou (na sua opinião) " +"qualquer versão." #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -610,16 +623,18 @@ "more details." msgstr "" "Este programa é distribuído na esperança de que seja útil, mas SEM NENHUMA " -"GARANTIA; sem mesmo implicar garantias de COMERCIABILIDADE ou ADAPTAÇÃO A UM " -"PROPÓSITO PARTICULAR. Veja a Licença Pública Geral GNU (GPL) para mais " +"GARANTIA; sem mesmo implicar garantias de COMERCIABILIDADE ou ADAPTAÇÃO A UM" +" PROPÓSITO PARTICULAR. Veja a Licença Pública Geral GNU (GPL) para mais " "detalhes. " #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" +"Você deve ter recebido uma cópia da Licença Pública Geral GNU junto com este\n" +" programa. Caso contrário, consulte https://www.gnu.org/licenses/." #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" @@ -627,21 +642,22 @@ #: baobab/src/callbacks.c:106 msgid "Analyze your disk usage through a graphical tool." -msgstr "" +msgstr "Analise o uso do disco por meio de uma ferramenta gráfica." #: baobab/src/callbacks.c:107 msgid "" "Copyright © 2005-2010 Fabio Marzocca\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Copyright © 2005-2010 Fabio Marzocca\n" +"Copyright © 2011-2021 desenvolvedores MATE" #: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" msgstr "" "Equipe de tradução no Transifex:\n" -"Fabrizzio Alphonsus Soares https://www.transifex.com/accounts/profile/" -"fabrizzio\n" +"Fabrizzio Alphonsus Soares https://www.transifex.com/accounts/profile/fabrizzio\n" "Alberto Federman Neto https://www.transifex.com/accounts/profile/albfneto\n" "Appes https://www.transifex.com/accounts/profile/apps\n" "arm332 https://www.transifex.com/accounts/profile/arm332\n" @@ -650,21 +666,20 @@ "Enrico Nicoletto https://www.transifex.com/accounts/profile/EnricoNicoletto\n" "everton_seib https://www.transifex.com/accounts/profile/everton_seib\n" "Felipe Rozelio https://www.transifex.com/accounts/profile/feliperozelio\n" -"João Paulo da Silva Júnior https://www.transifex.com/accounts/profile/" -"jpsilvaj\n" +"João Paulo da Silva Júnior https://www.transifex.com/accounts/profile/jpsilvaj\n" "Juliana Paula Felix https://www.transifex.com/accounts/profile/jufelix\n" -"Lucas Cenir Friederich https://www.transifex.com/user/profile/" -"lucasalvarokedrines\n" +"Lucas Cenir Friederich https://www.transifex.com/user/profile/lucasalvarokedrines\n" "Marcelo Ghelman https://www.transifex.com/accounts/profile/marcelo.ghelman\n" "Marcio Andre Padula https://www.transifex.com/accounts/profile/Padula\n" -"Marcus Vinícius Marques https://www.transifex.com/accounts/profile/" -"Pygmalion\n" +"Marcus Vinícius Marques https://www.transifex.com/accounts/profile/Pygmalion\n" "Matheus Macabu https://www.transifex.com/accounts/profile/mkbu95\n" "Matheus Martins https://www.transifex.com/accounts/profile/Matheus_Martins\n" -"Michele dos Santos da Silva https://www.transifex.com/accounts/profile/" -"mchelem\n" +"Michele dos Santos da Silva https://www.transifex.com/accounts/profile/mchelem\n" "Thiago Cangussu https://www.transifex.com/accounts/profile/cangussu.thg\n" -"vitorgatti https://www.transifex.com/accounts/profile/vitorgatti" +"vitorgatti https://www.transifex.com/accounts/profile/vitorgatti\n" +"Ítalo Rangel Penaforte https://www.transifex.com/accounts/profile/italo.penaforte\n" +"George Salu da Silva https://www.transifex.com/user/profile/George_salu_da_silva/\n" +"Josué Teodoro Moreira https://www.transifex.com/user/profile/J0sueTM/" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -688,20 +703,28 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." -msgstr "" +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." +msgstr "" +"O MATE Search Tool é um utilitário simples, mas poderoso, que permite \n" +"pesquisar arquivos e pastas em qualquer sistema de arquivos montado. Sua\n" +" interface oferece acesso instantâneo a uma ampla variedade de \n" +"parâmetros para cada pesquisa, como texto contido em um arquivo, \n" +"propriedade, data de modificação, tamanho do arquivo, exclusão de \n" +"pastas, etc." #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Localizar documentos e pastas neste computador por nome ou conteúdo" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" +"MATE;pesquisar;arquivos;localizar;documentos;pastas;computador;nome;conteúdo;localizar;ferramenta;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -733,12 +756,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" -"Esta chave define os caminhos que a ferramenta de busca irá excluir da busca " -"rápida. Os caracteres curinga \"*\" e \"?\" são válidos. Os valores padrão " +"Esta chave define os caminhos que a ferramenta de busca irá excluir da busca" +" rápida. Os caracteres curinga \"*\" e \"?\" são válidos. Os valores padrão " "são /mnt/*, /media/*, /dev/*, /tmp/*, /proc/* e /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -762,14 +785,14 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Esta chave define os caminhos que a ferramenta de busca irá excluir de uma " "segunda varredura ao realizar uma busca rápida. A segunda varredura usa o " -"comando \"find\" para localizar os arquivos. O objetivo da segunda varredura " -"é localizar arquivos que não tenham sido indexados. Os caracteres curinga \"*" -"\" e \"?\" são válidos. O valor padrão é /." +"comando \"find\" para localizar os arquivos. O objetivo da segunda varredura" +" é localizar arquivos que não tenham sido indexados. Os caracteres curinga " +"\"*\" e \"?\" são válidos. O valor padrão é /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -789,12 +812,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -"Essa chave define a largura da janela, e é usada para preservar o tamanho da " -"ferramenta de busca entre sessões. Defini-la como -1 fará a ferramenta de " +"Essa chave define a largura da janela, e é usada para preservar o tamanho da" +" ferramenta de busca entre sessões. Defini-la como -1 fará a ferramenta de " "busca usar a largura padrão." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -804,8 +827,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Essa chave define a altura da janela, e é usada para preservar o tamanho da " "ferramenta de busca entre sessões. Defini-la como -1 fará a ferramenta de " @@ -859,16 +882,16 @@ "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"Esta chave determina se a opção \"Tamanho mínimo\" estará selecionada quando " -"a ferramenta de busca for iniciada." +"Esta chave determina se a opção \"Tamanho mínimo\" estará selecionada quando" +" a ferramenta de busca for iniciada." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"Esta chave determina se a opção \"Tamanho máximo\" estará selecionada quando " -"a ferramenta de busca for iniciada." +"Esta chave determina se a opção \"Tamanho máximo\" estará selecionada quando" +" a ferramenta de busca for iniciada." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" @@ -888,8 +911,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Esta chave determina se a opção \"Pertence ao grupo\" estará selecionada " "quando a ferramenta de busca for iniciada." @@ -912,8 +935,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Esta chave determina se a opção \"Nome corresponde a expressão regular\" " "estará selecionada quando a ferramenta de busca for iniciada." @@ -942,64 +965,64 @@ "Esta chave determina se a opção \"Excluir outros sistemas de arquivos\" " "estará selecionada quando a ferramenta de busca for iniciada." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "O arquivo não é um arquivo .desktop válido" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Versão '%s' do arquivo .desktop não reconhecida" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Iniciando %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "O aplicativo não aceita documentos na linha de comando" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Opção de inicialização desconhecida: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Não é possível passar URIs de documentos para um item de desktop " "caracterizado por 'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "O item não é executável" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Desabilita a conexão com o gerenciador de sessões" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Especifique o arquivo contendo a configuração salva" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ARQUIVO" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Especifica o ID de gerenciamento de sessão" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opções de gerenciamento de sessão:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Exibe as opções de gerenciamento de sessão" @@ -1140,15 +1163,17 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "%'d Arquivo Localizado" -msgstr[1] "%'d Arquivos Localizados" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "%'d arquivo localizado" -msgstr[1] "%'d arquivos localizados" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1171,7 +1196,8 @@ #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" msgstr "" -"Define o sentido da ordenação como decrescente. O sentido padrão é crescente." +"Define o sentido da ordenação como decrescente. O sentido padrão é " +"crescente." #: gsearchtool/src/gsearchtool.c:1329 msgid "Automatically start a search" @@ -1189,8 +1215,7 @@ #: gsearchtool/src/gsearchtool.c:1445 msgid "Invalid option passed to sortby command line argument." -msgstr "" -"Opção inválida passada para o argumento de linha de comando \"sortby\"." +msgstr "Opção inválida passada para o argumento de linha de comando \"sortby\"." #: gsearchtool/src/gsearchtool.c:1737 msgid "" @@ -1381,16 +1406,18 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Você tem certeza de que deseja abrir %d documento?" -msgstr[1] "Você tem certeza de que deseja abrir %d documentos?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Isso abrirá %d janela distinta." -msgstr[1] "Isso abrirá %d janelas distintas." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1414,8 +1441,9 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Tem certeza de que deseja abrir %d pasta?" -msgstr[1] "Tem certeza de que deseja abrir %d pastas?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1473,7 +1501,7 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1310 msgid "Copy _Path" -msgstr "" +msgstr "Copiar _Caminho" #: gsearchtool/src/gsearchtool-callbacks.c:1344 msgid "_Save Results As..." @@ -1621,10 +1649,11 @@ msgid "View or monitor system log files" msgstr "Ver ou monitorar arquivos de log do sistema" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" -msgstr "" +msgstr "MATE;monitor;exibir;sistema;log;arquivos;visualizador de log;" #: logview/data/org.mate.system-log.gschema.xml.in:5 msgid "Log file to open up on startup" @@ -1632,11 +1661,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Especifica o arquivo de log exibido ao iniciar. O padrão é /var/adm/messages " -"ou /var/log/messages, a depender do seu sistema operacional." +"Especifica o arquivo de log exibido ao iniciar. O padrão é /var/adm/messages" +" ou /var/log/messages, a depender do seu sistema operacional." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1648,8 +1677,8 @@ "main tree view. The default is taken from the default terminal font size." msgstr "" "Especifica o tamanho da fonte de largura fixa usada para exibir o log na " -"visão em árvore principal. O padrão é derivado do tamanho da fonte padrão do " -"terminal." +"visão em árvore principal. O padrão é derivado do tamanho da fonte padrão do" +" terminal." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1827,6 +1856,9 @@ "Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n" "Copyright (C) 2011-2021 MATE developers.\n" msgstr "" +"%s - Versão %s\n" +"Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi e outros.\n" +"Copyright (C) 2011-2021 desenvolvedores MATE.\n" #: logview/src/logview-main.c:64 msgid "Show the application's version" @@ -1880,17 +1912,20 @@ #: logview/src/logview-window.c:773 msgid "About System Log Viewer" -msgstr "" +msgstr "Sobre o Visualizador de Log do Sistema" #: logview/src/logview-window.c:774 msgid "" "Copyright © 1998-2008 Free Software Foundation, Inc.\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Copyright © 1998-2008 Free Software Foundation, Inc.\n" +"Copyright © 2011-2021 desenvolvedores MATE" #: logview/src/logview-window.c:778 msgid "View, monitor or analyze your system logs in a gradual manner." msgstr "" +"Visualize, monitore ou analise os logs do seu sistema de forma gradual." #: logview/src/logview-window.c:821 mate-dictionary/src/gdict-window.c:1258 msgid "_File" @@ -2011,7 +2046,8 @@ #: logview/src/logview-window.c:862 msgid "Only show lines that match one of the given filters" -msgstr "Mostrar somente linhas que correspondam a algum dos filtros fornecidos" +msgstr "" +"Mostrar somente linhas que correspondam a algum dos filtros fornecidos" #: logview/src/logview-window.c:994 #, c-format @@ -2041,12 +2077,14 @@ #: mate-dictionary/data/mate-dictionary.desktop.in.in:4 msgid "Check word definitions and spellings in an online dictionary" -msgstr "Consultar definições e ortografia de palavras em um dicionário on-line" +msgstr "" +"Consultar definições e ortografia de palavras em um dicionário on-line" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" -msgstr "" +msgstr "MATE;dicionário;applet;thesaurus;ortografia;definições;online;" #: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 msgid "A dictionary for MATE Desktop" @@ -2055,10 +2093,14 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" +"O Dicionário MATE permite que você procure palavras em dicionários \n" +"online. Ele vem pré-configurado com uma lista de servidores Dict (RFC \n" +"2229), aos quais você pode adicionar suas próprias fontes, enquanto pode\n" +" selecionar servidores específicos para uma consulta específica." #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 msgid "Dictionary Applet Factory" @@ -2120,7 +2162,8 @@ msgid "" "The name of the dictionary source used to retrieve the definitions of words." msgstr "" -"O nome da fonte de dicionário usada para recuperar as definições de palavras." +"O nome da fonte de dicionário usada para recuperar as definições de " +"palavras." #: mate-dictionary/data/thai.desktop.in:3 msgid "Thai" @@ -2190,8 +2233,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"Não foi possível conectar ao servidor de dicionário em \"%s:%d\". O servidor " -"respondeu com o código %d (servidor fora do ar)" +"Não foi possível conectar ao servidor de dicionário em \"%s:%d\". O servidor" +" respondeu com o código %d (servidor fora do ar)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2485,7 +2528,7 @@ #: mate-dictionary/src/gdict-about.c:54 msgid "Look up words or terms in a dictionary source." -msgstr "" +msgstr "Procure palavras ou termos em uma fonte de dicionário." #: mate-dictionary/src/gdict-about.c:82 mate-dictionary/src/gdict-app.c:363 #: mate-dictionary/src/gdict-window.c:580 @@ -2495,13 +2538,15 @@ #: mate-dictionary/src/gdict-about.c:84 msgid "About Dictionary" -msgstr "" +msgstr "Sobre Dicionário" #: mate-dictionary/src/gdict-about.c:85 msgid "" "Copyright © 2005-2006 Emmanuele Bassi\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Copyright © 2005-2006 Emmanuele Bassi\n" +"Copyright © 2011-2021 desenvolvedores MATE" #. Translators: the first is the word found, the second is the #. * database name and the last is the definition's text; please @@ -2788,8 +2833,9 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Uma definição localizada" -msgstr[1] "%d definições localizadas" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -3005,11 +3051,11 @@ #: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:3 #: mate-disk-image-mounter/src/main.c:62 msgid "MATE Disk Image Mounter" -msgstr "" +msgstr "Analisador de Uso do Disco MATE" #: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:4 msgid "Attach and mount one or more disk image files" -msgstr "" +msgstr "Anexe e monte um ou mais arquivos de imagem de disco." #: mate-disk-image-mounter/src/main.c:60 msgid "An error occurred" @@ -3029,7 +3075,7 @@ #: mate-disk-image-mounter/src/main.c:121 msgid "Select Disk Image(s) to Mount" -msgstr "Selecione a Imagem de Disco a ser Montada" +msgstr "Selecionar a Imagem de Disco a ser Montada" #: mate-disk-image-mounter/src/main.c:125 msgid "_Mount" @@ -3037,27 +3083,29 @@ #: mate-disk-image-mounter/src/main.c:131 msgid "Set up _read-only mount" -msgstr "" +msgstr "Configurar montagem _somente leitura" #: mate-disk-image-mounter/src/main.c:132 msgid "" "If checked, the mount will be read-only. This is useful if you don't want " "the underlying disk image to be modified" msgstr "" +"Se marcado, a montagem será somente leitura. Isso é útil se você não quiser " +"que a imagem de disco subjacente seja modificada" #: mate-disk-image-mounter/src/main.c:178 #, c-format msgid "Error connecting to udisks daemon: %s (%s, %d)" -msgstr "" +msgstr "Erro ao conectar-se ao daemon udisks: %s (%s, %d)" #: mate-disk-image-mounter/src/main.c:186 msgid "Attach and mount one or more disk image files." -msgstr "" +msgstr "Anexe e monte um ou mais arquivos de imagem de disco." #: mate-disk-image-mounter/src/main.c:234 #, c-format msgid "Cannot open `%s' - maybe the volume isn't mounted?" -msgstr "" +msgstr "Não é possível abrir `%s' - talvez o volume não esteja montado?" #: mate-disk-image-mounter/src/main.c:241 #, c-format @@ -3071,7 +3119,7 @@ #: mate-screenshot/data/mate-screenshot.appdata.xml.in:7 msgid "MATE Screenshot" -msgstr "Captura de tela do MATE" +msgstr "Captura de Tela do MATE" #: mate-screenshot/data/mate-screenshot.appdata.xml.in:8 msgid "A screenshot utility for MATE Desktop" @@ -3084,6 +3132,10 @@ "system clipboard or save them in Portable Network Graphics (.png) image " "format." msgstr "" +"MATE Screenshot é um utilitário simples que permite capturar screenshots\n" +" de sua área de trabalho ou de janelas de aplicativos. Você pode optar \n" +"por copiá-los para a área de transferência do sistema ou salvá-los no \n" +"formato de imagem Portable Network Graphics (.png)." #: mate-screenshot/data/mate-screenshot.desktop.in:3 #: mate-screenshot/src/mate-screenshot.c:519 @@ -3095,10 +3147,11 @@ msgid "Save images of your desktop or individual windows" msgstr "Salvar imagens da sua área de trabalho ou de janelas individuais" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" -msgstr "" +msgstr "MATE;captura de tela;instantâneo;área de trabalho;janela;imagem;" #: mate-screenshot/data/mate-screenshot.ui:24 msgid "Save Screenshot" @@ -3292,8 +3345,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Conflito de opções: --clipboard e --interactive não devem ser usados ao " "mesmo tempo.\n" @@ -3303,7 +3356,8 @@ "Conflicting options: --window and --area should not be used at the same " "time.\n" msgstr "" -"Opções conflitantes: --window e --area não devem ser usadas ao mesmo tempo.\n" +"Opções conflitantes: --window e --area não devem ser usadas ao mesmo " +"tempo.\n" #: mate-screenshot/src/screenshot-dialog.c:210 #, c-format @@ -3313,8 +3367,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Erro ao carregar arquivo de definição da interface do usuário para o " -"programa de captura de tela:\n" +"Erro ao carregar arquivo de definição da interface do usuário para o programa de captura de tela:\n" "%s\n" "\n" "Verifique a instalação do mate-utils." Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/pt.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/pt.gmo differ diff -Nru mate-utils-1.26.0/po/pt.po mate-utils-1.26.1/po/pt.po --- mate-utils-1.26.0/po/pt.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/pt.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,35 +2,36 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Luis Filipe Teixeira , 2018 -# Manel Tinoco , 2018 -# Sérgio Marques , 2018 -# fc2d9c36d73e741383fbbf46a4aac49f_013445b, 2018 -# ogalho Carlos Dias Martins , 2018 -# Diogo Oliveira , 2018 -# Hugo Carvalho , 2019 -# Stefano Karapetsas , 2019 -# Manuela Silva , 2019 -# Guilherme Campos , 2020 -# Carlos Moreira, 2021 +# Luis Filipe Teixeira , 2021 +# Guilherme Campos , 2021 +# clefebvre , 2021 +# Hugo Carvalho , 2021 +# Stefano Karapetsas , 2021 +# ogalho Carlos Dias Martins , 2021 +# Diogo Oliveira , 2021 # Rui , 2021 -# José Vieira , 2021 -# +# Manuela Silva , 2021 +# Sérgio Marques , 2021 +# Carlos Moreira, 2021 +# fc2d9c36d73e741383fbbf46a4aac49f_013445b, 2021 +# Manel Tinoco , 2021 +# José Vieira , 2022 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: José Vieira , 2021\n" -"Language-Team: Portuguese (https://www.transifex.com/mate/teams/13566/pt/)\n" -"Language: pt\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: José Vieira , 2022\n" +"Language-Team: Portuguese (https://app.transifex.com/mate/teams/13566/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: pt\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -41,10 +42,11 @@ msgid "Check folder sizes and available disk space" msgstr "Analisar tamanho das pastas e espaço disponível em disco" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" -msgstr "" +msgstr "MATE;verificar;disco;utilização;analisar;tamanho;espaço;" #: baobab/data/baobab-dialog-scan-props.ui:18 msgid "Disk Usage Analyzer Preferences" @@ -56,7 +58,7 @@ #: mate-dictionary/src/gdict-window.c:1262 #: mate-screenshot/data/mate-screenshot.ui:41 msgid "_Help" -msgstr "A_juda" +msgstr "_Ajuda" #: baobab/data/baobab-dialog-scan-props.ui:48 logview/src/logview-window.c:829 #: mate-dictionary/src/gdict-window.c:1273 @@ -65,7 +67,8 @@ #: baobab/data/baobab-dialog-scan-props.ui:81 msgid "Select _devices to include in filesystem scan:" -msgstr "Selecionar _dispositivos a incluir na análise do sistema de ficheiros:" +msgstr "" +"Selecionar _dispositivos a incluir na análise do sistema de ficheiros:" #: baobab/data/baobab-dialog-scan-props.ui:119 msgid "_Monitor changes to your home folder" @@ -218,7 +221,7 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:37 msgid "Which type of chart should be displayed." -msgstr "Qual o tipo de gráfico queres que seja exibido?" +msgstr "Qual o tipo de gráfico a ser exibido?" #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:8 msgid "A disk usage analyzing tool for MATE Desktop" @@ -228,10 +231,14 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" +"Tal como o nome indica, o Analisador de Utilização do Disco é um utilitário " +"gráfico que pode ser usado para ver e monitorizar a utilização do disco e a " +"estrutura de pastas. Mostra informação sumária em gráficos anelares ou em " +"árvore." #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 msgid "" @@ -239,6 +246,10 @@ "local or remote. There is also an option to constantly monitor any external " "changes to the home directory and warn the user if a file is added/removed." msgstr "" +"Podem ser feitas análises de sistemas de ficheiros, da pasta pessoal ou de " +"qualquer outra pasta - local ou remota. Também há uma opção para monitorizar" +" em permanência quaisquer alterações ao directório de pastas pessoais e " +"avisar o utilizador quando é adicionado ou removido um ficheiro." #: baobab/src/baobab.c:141 baobab/src/baobab.c:358 msgid "Scanning..." @@ -258,7 +269,7 @@ #: baobab/src/baobab.c:243 baobab/src/baobab.c:300 baobab/src/callbacks.c:268 msgid "Calculating percentage bars..." -msgstr "Calcular barras de percentagem..." +msgstr "Calculando barras de percentagem..." #: baobab/src/baobab.c:254 baobab/src/baobab.c:1300 baobab/src/callbacks.c:272 msgid "Ready" @@ -281,7 +292,8 @@ msgid "%5d item" msgid_plural "%5d items" msgstr[0] "%5d item" -msgstr[1] "%5d items" +msgstr[1] "%5d itens" +msgstr[2] "%5d itens" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -325,7 +337,7 @@ #: baobab/src/baobab.c:1257 msgid "Too many arguments. Only one directory can be specified." -msgstr "Demasiados argumentos. Só pode especificar um diretório." +msgstr "Demasiados argumentos. Só pode ser especificado um diretório." #: baobab/src/baobab.c:1274 msgid "Could not detect any mount point." @@ -365,7 +377,7 @@ #: baobab/src/baobab-chart.c:1723 msgid "Save Snapshot" -msgstr "Gravar captura de ecrã" +msgstr "Gravar a captura" #: baobab/src/baobab-chart.c:1750 msgid "_Image type:" @@ -398,7 +410,7 @@ #: baobab/src/baobab-remote-connect-dialog.c:70 #, c-format msgid "Cannot scan location \"%s\"" -msgstr "Incapaz de analisar %s" +msgstr "Incapaz de analisar \"%s\"" #: baobab/src/baobab-remote-connect-dialog.c:168 msgid "Custom Location" @@ -545,7 +557,7 @@ #: baobab/src/baobab-utils.c:378 #, c-format msgid "Could not open folder \"%s\"" -msgstr "Incapaz de abrir a pasta %s" +msgstr "Incapaz de abrir a pasta \"%s\"" #: baobab/src/baobab-utils.c:381 msgid "There is no installed viewer capable of displaying the folder." @@ -554,7 +566,7 @@ #: baobab/src/baobab-utils.c:448 #, c-format msgid "Could not move \"%s\" to the Trash" -msgstr "Incapaz de mover %s para o lixo." +msgstr "Incapaz de mover \"%s\" para o lixo." #: baobab/src/baobab-utils.c:456 msgid "Could not move file to the Trash" @@ -582,8 +594,8 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"Este programa é uma aplicação grátis; pode redistribuí-la e/ou alterá-la nos " -"termos da Licença Pública Genérica GNU, tal como publicada pela Free " +"Este programa é uma aplicação grátis; pode redistribuí-la e/ou alterá-la nos" +" termos da Licença Pública Genérica GNU, tal como publicada pela Free " "Software Foundation; ou a versão 2 da licença, ou (por opção) qualquer " "versão posterior." @@ -603,28 +615,35 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" +"Deve ter sido recebida uma cópia da Licença Pública Geral GNU (GNU General " +"Public License) juntamente com este programa. Em caso contrário, ver " +"." #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" -msgstr "" +msgstr "Sobre o Analisador de utilização do disco" #: baobab/src/callbacks.c:106 msgid "Analyze your disk usage through a graphical tool." -msgstr "" +msgstr "Analisar a utilização do disco por meio de uma ferramenta gráfica." #: baobab/src/callbacks.c:107 msgid "" "Copyright © 2005-2010 Fabio Marzocca\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Direitos de autor © 2005-2010 Fabio Marzocca\n" +"Direitos de autor © 2011-2021 Desenvolvedores do MATE" #: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" -msgstr "Hugo Carvalho " +msgstr "" +"Hugo Carvalho , 2018\n" +"José Vieira , 2021" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -648,20 +667,28 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." -msgstr "" +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." +msgstr "" +"A ferramenta de pesquisa do MATE é um utilitário simples mas poderoso que " +"permite buscar ficheiros e pastas em qualquer sistema de ficheiros que " +"esteja montado. A interface dá acesso instantâneo a uma larga variedade de " +"parâmetros para cada busca, tais como texto existente num ficheiro, " +"propriedade (quem detém o ficheiro), data de modificação, tamanho do " +"ficheiro, exclusão de pastas, etc." #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Localizar documentos e pastas neste computador por nome ou conteúdo" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" +"MATE;pesquisar;ficheiro;localizar;documentos;pastas;computador;nome;conteúdo;buscar;ferramenta;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -693,13 +720,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"Esta chave define os caminhos a excluir quando a ferramenta de busca faz uma " -"procura rápida. Os caracteres '*' e '?' são aceites. Os valores predefinidos " -"são /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, e /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"Esta chave define os caminhos a excluir quando a ferramenta de busca faz uma" +" procura rápida. Os caracteres '*' e '?' são aceites. Os valores " +"predefinidos são /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, e /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -722,8 +749,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Esta chave determina quais caminhos da ferramenta de busca serão excluídos " "num segundo rastreio ao fazer uma procura rápida. O segundo rastreio usa o " @@ -733,15 +760,15 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" -msgstr "Ordem das Colunas nos Resultados de Busca" +msgstr "Ordem das Colunas nos Resultados de Procuras" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:35 msgid "" "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"Esta chave determina a ordem das colunas nos resultados de busca. Esta chave " -"não deve ser modificada pelo utilizador." +"Esta chave determina a ordem das colunas nos resultados de procuras. Esta " +"chave não deve ser modificada pelo utilizador." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -749,9 +776,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Esta chave define a largura da janela, e é usada para recordar a largura da " "janela da ferramenta de busca entre sessões. Defini-la como -1 irá fazer a " @@ -764,8 +791,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Esta chave define a altura da janela, e é usada para recordar a altura da " "janela da ferramenta de busca entre sessões. Defini-la como -1 irá fazer a " @@ -788,24 +815,23 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 msgid "This key defines the default value of the \"Look in Folder\" widget." -msgstr "" -"Esta chave determina o valor predefinido do widget \"Procurar na Pasta\"." +msgstr "Esta chave determina o valor predefinido do widget \"Procurar na Pasta\"." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 msgid "" "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"Esta chave determina se a opção de busca \"Contém o texto\" está selecionada " -"quando a ferramenta de busca é iniciada." +"Esta chave determina se a opção de busca \"Contém o texto\" está selecionada" +" quando a ferramenta de busca é iniciada." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"Esta chave determina se a opção de busca \"Data alterada há menos de\" está " -"selecionada quando a ferramenta de busca é iniciada." +"Esta chave determina se a opção de procurar \"Data alterada há menos de\" " +"está selecionada quando a ferramenta de busca é iniciada." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" @@ -849,8 +875,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Esta chave determina se a opção de busca \"Propriedade de grupo\" está " "selecionada quando a ferramenta de busca é iniciada." @@ -873,8 +899,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Esta chave determina se a opção de busca \"Nome coincide com a expressão " "regular\" está selecionada quando a ferramenta de busca é iniciada." @@ -884,16 +910,16 @@ "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"Esta chave determina se a opção de busca \"Mostrar ficheiros e pastas ocultas" -"\" está selecionada quando a ferramenta de busca é iniciada." +"Esta chave determina se a opção de busca \"Mostrar ficheiros e pastas " +"ocultas\" está selecionada quando a ferramenta de busca é iniciada." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"Esta chave determina se a opção de busca \"Seguir ligações simbólicas\" está " -"selecionada quando a ferramenta de busca é iniciada." +"Esta chave determina se a opção de busca \"Seguir ligações simbólicas\" está" +" selecionada quando a ferramenta de busca é iniciada." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" @@ -903,64 +929,64 @@ "Esta chave determina se a opção de busca \"Excluir outros sistemas de " "ficheiros\" está selecionada quando a ferramenta de busca é iniciada." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "O ficheiro não é um ficheiro .desktop válido" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" -msgstr "Versão de ficheiro .desktop \"%s\" não reconhecida" +msgstr "Versão de ficheiro .desktop '%s' não reconhecida" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "A iniciar %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "A aplicação não aceita documentos na linha de comando" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Opção de arranque desconhecida: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Não pode enviar URIs de documento para uma entrada da área de trabalho " "'Tipo=Hiperligação'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Não é um item de iniciação" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Desativar a ligação ao gestor de sessões" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Especifique o ficheiro que contém a configuração guardada" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FICHEIRO" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Especifique a ID de gestão de sessão" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID." -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opções do gestor de sessão:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Mostrar as opções de gestão de sessões" @@ -1099,15 +1125,17 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "%'d Ficheiro Encontrado" -msgstr[1] "%'d Ficheiros Encontrados" +msgstr[0] "Encontrado %'d Ficheiro" +msgstr[1] "Encontrados %'d Ficheiros" +msgstr[2] "Encontrados %'d Ficheiros" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "%'d ficheiro encontrado" -msgstr[1] "%'d ficheiros encontrados" +msgstr[0] "Encontrado %'d ficheiro" +msgstr[1] "Encontrados %'d ficheiros" +msgstr[2] "Encontrados %'d ficheiros" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1173,8 +1201,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"Os resultados da busca poderão ser inválidos ou estar desatualizados. Deseja " -"desativar a função de busca rápida?" +"Os resultados da busca poderão ser inválidos ou estar desatualizados. Deseja" +" desativar a função de busca rápida?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1335,16 +1363,18 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Tem a certeza que que abrir %d documento?" -msgstr[1] "Tem a certeza que quer abrir %d documentos?" +msgstr[0] "Abrir, efectivamente, %d documento?" +msgstr[1] "Abrir, efectivamente, %d documentos?" +msgstr[2] "Abrir, efectivamente, %d documentos?" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Isto irá abrir %d janela separada." -msgstr[1] "Isto irá abrir %d janelas separadas." +msgstr[0] "Será aberta %d janela separada." +msgstr[1] "Será aberta %d janelas separadas." +msgstr[2] "Será aberta %d janelas separadas." #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1358,18 +1388,20 @@ #: gsearchtool/src/gsearchtool-callbacks.c:430 msgid "The caja file manager is not running." -msgstr "O gestor de ficheiros caja não está a funcionar." +msgstr "O gestor de ficheiros caja não está em execussão." #: gsearchtool/src/gsearchtool-callbacks.c:521 msgid "There is no installed viewer capable of displaying the document." -msgstr "Não existe um visualizador instalado capaz de mostrar o documento." +msgstr "" +"Não existe nenhum visualizador instalado capaz de mostrar o documento." #: gsearchtool/src/gsearchtool-callbacks.c:543 #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Tem a certeza que quer abrir %d pasta?" -msgstr[1] "Tem a certeza que quer abrir %d pastas?" +msgstr[0] "Abrir, efectivamente, %d pasta?" +msgstr[1] "Abrir, efectivamente, %d pastas?" +msgstr[2] "Abrir, efectivamente, %d pastas?" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1422,11 +1454,11 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1299 msgid "Open Containing _Folder" -msgstr "Abrir _Pasta Contida" +msgstr "Abrir _Pasta de origem" #: gsearchtool/src/gsearchtool-callbacks.c:1310 msgid "Copy _Path" -msgstr "" +msgstr "Copiar _Caminho" #: gsearchtool/src/gsearchtool-callbacks.c:1344 msgid "_Save Results As..." @@ -1434,7 +1466,7 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1722 msgid "Save Search Results As..." -msgstr "Guardar Resultados de Busca Como..." +msgstr "Guardar Resultados de Procura Como..." #: gsearchtool/src/gsearchtool-callbacks.c:1751 msgid "Could not save document." @@ -1573,10 +1605,12 @@ msgid "View or monitor system log files" msgstr "Ver ou monitorizar ficheiros de registo do sistema" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" +"MATE;monitor;vista;ver;sistema;registo;ficheiros;visualizador de registos;" #: logview/data/org.mate.system-log.gschema.xml.in:5 msgid "Log file to open up on startup" @@ -1584,11 +1618,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Especifica o ficheiro de registo mostrado no arranque. Por defeito é /var/" -"adm/messages ou /var/log/messages, dependendo do seu sistema operativo." +"Especifica o ficheiro de registo mostrado no arranque. Por defeito é " +"/var/adm/messages ou /var/log/messages, dependendo do seu sistema operativo." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1600,7 +1634,8 @@ "main tree view. The default is taken from the default terminal font size." msgstr "" "Especifica o tamanho da letra de largura fixa, usada para mostrar o registo " -"na vista principal em árvore. Por defeito, é o tamanho das letras da consola." +"na vista principal em árvore. Por defeito, é o tamanho das letras da " +"consola." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1631,8 +1666,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"Especifica uma lista de ficheiro de registo a abrir ao iniciar. É criada uma " -"lista padrão ao ler /etc/syslog.conf." +"Especifica uma lista de ficheiro de registo a abrir ao iniciar. É criada uma" +" lista padrão ao ler /etc/syslog.conf." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1748,7 +1783,8 @@ #: logview/src/logview-log.c:589 msgid "Error while uncompressing the GZipped log. The file might be corrupt." -msgstr "Erro ao descomprimir o registo GZip. O ficheiro pode estar corrompido." +msgstr "" +"Erro ao descomprimir o registo GZip. O ficheiro pode estar corrompido." #: logview/src/logview-log.c:635 msgid "You don't have enough permissions to read the file." @@ -1764,7 +1800,7 @@ #: logview/src/logview-loglist.c:103 msgid "%A, %e %b" -msgstr "%A%e %b" +msgstr "%A, %e %b" #: logview/src/logview-loglist.c:314 msgid "Loading..." @@ -1777,6 +1813,9 @@ "Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n" "Copyright (C) 2011-2021 MATE developers.\n" msgstr "" +"%s - Versão %s\n" +"Direitos de autor (C) 2004-2008 Vincent Noel, Cosimo Cecchi e outros.\n" +"Direitos de autor (C) 2011-2021 Desenvolvedores do MATE.\n" #: logview/src/logview-main.c:64 msgid "Show the application's version" @@ -1830,17 +1869,19 @@ #: logview/src/logview-window.c:773 msgid "About System Log Viewer" -msgstr "" +msgstr "Sobre o Visualizador de Registos do Sistema" #: logview/src/logview-window.c:774 msgid "" "Copyright © 1998-2008 Free Software Foundation, Inc.\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Direitos de autor © 1998-2008 Free Software Foundation, Inc.\n" +"Direitos de autor © 2011-2021 Desenvolvedores do MATE" #: logview/src/logview-window.c:778 msgid "View, monitor or analyze your system logs in a gradual manner." -msgstr "" +msgstr "Ver, monitorizar ou analisar os registos do sistema de modo gradual." #: logview/src/logview-window.c:821 mate-dictionary/src/gdict-window.c:1258 msgid "_File" @@ -1933,7 +1974,7 @@ #: logview/src/logview-window.c:853 mate-dictionary/src/gdict-applet.c:1176 #: mate-dictionary/src/gdict-window.c:1314 msgid "_About" -msgstr "_Sobre" +msgstr "_Acerca" #: logview/src/logview-window.c:853 msgid "Show the about dialog for the log viewer" @@ -1993,10 +2034,13 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Procurar definição e ortografia de palavras num dicionário web" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" +"MATE;dicionário;applet;mini-aplicação;dicionário de " +"sinónimos;grafia;definições;online;em linha;" #: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 msgid "A dictionary for MATE Desktop" @@ -2005,10 +2049,14 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" +"O dicionário do MATE permite procurar palavra em dicionários em linha. Vem " +"pré-configurado com uma lista de servidores de dicionários - Dict servers " +"(RFC 2229) - à qual podem ser adicionadas outras origens, podendo ser " +"seleccionados servidores específicos para consultas específicas." #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 msgid "Dictionary Applet Factory" @@ -2020,7 +2068,7 @@ #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:9 msgid "Dictionary Look up" -msgstr "Busca no Dicionário" +msgstr "Procurar no Dicionário" #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:10 msgid "Look up words in a dictionary" @@ -2037,8 +2085,8 @@ "present in a dictionary source should be searched" msgstr "" "O nome da base de dados padrão individual, ou metabase de dados a usar numa " -"fonte de dicionários. Um ponto de exclamação (\"!\") significa que devem ser " -"procuradas todas as bases de dados numa fonte de dicionários" +"fonte de dicionários. Um ponto de exclamação (\"!\") significa que devem ser" +" procuradas todas as bases de dados numa fonte de dicionários" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2050,8 +2098,8 @@ "available. The default strategy is 'exact', that is match exact words." msgstr "" "O nome da estratégia padrão de procura a usar numa fonte de dicionários, se " -"disponível. A estratégia padrão é \"exata\", isto é, corresponder a palavras " -"exatas." +"disponível. A estratégia padrão é \"exata\", isto é, corresponder a palavras" +" exatas." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2140,8 +2188,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"Incapaz de ligar ao servidor de dicionários em '%s:%d'. O servidor respondeu " -"com o código %d (servidor em baixo)" +"Incapaz de ligar ao servidor de dicionários em '%s:%d'. O servidor respondeu" +" com o código %d (servidor em baixo)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2350,7 +2398,8 @@ #, c-format msgid "Unable to get the '%s' key inside the dictionary source definition: %s" msgstr "" -"Incapaz de obter a chave '%s' dentro da definição da fonte de dicionários: %s" +"Incapaz de obter a chave '%s' dentro da definição da fonte de dicionários: " +"%s" #: mate-dictionary/libgdict/gdict-source.c:550 #, c-format @@ -2436,7 +2485,7 @@ #: mate-dictionary/src/gdict-about.c:54 msgid "Look up words or terms in a dictionary source." -msgstr "" +msgstr "Procurar palavras ou termos numa origem de dicionários." #: mate-dictionary/src/gdict-about.c:82 mate-dictionary/src/gdict-app.c:363 #: mate-dictionary/src/gdict-window.c:580 @@ -2446,13 +2495,15 @@ #: mate-dictionary/src/gdict-about.c:84 msgid "About Dictionary" -msgstr "" +msgstr "Sobre o Dicionário" #: mate-dictionary/src/gdict-about.c:85 msgid "" "Copyright © 2005-2006 Emmanuele Bassi\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Direitos de autor © 2005-2006 Emmanuele Bassi\n" +"Direitos de autor © 2011-2021 Desenvolvedores do MATE" #. Translators: the first is the word found, the second is the #. * database name and the last is the definition's text; please @@ -2739,8 +2790,9 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Definição encontrada" -msgstr[1] "%d definições encontradas" +msgstr[0] "Encontrada uma definição" +msgstr[1] "Encontradas %d definições" +msgstr[2] "Encontradas %d definições" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -2758,7 +2810,7 @@ #: mate-dictionary/src/gdict-window.c:1266 msgid "New look up" -msgstr "Nova busca" +msgstr "Nova procura" #: mate-dictionary/src/gdict-window.c:1267 msgid "_Save a Copy..." @@ -2838,7 +2890,7 @@ #: mate-dictionary/src/gdict-window.c:1304 msgid "Dictionary Sources" -msgstr "Fontes de Dicionários" +msgstr "Fontes do Dictionary" #: mate-dictionary/src/gdict-window.c:1306 msgid "Available _Databases" @@ -2956,11 +3008,11 @@ #: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:3 #: mate-disk-image-mounter/src/main.c:62 msgid "MATE Disk Image Mounter" -msgstr "" +msgstr "Montador de Imagens de Disco do MATE" #: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:4 msgid "Attach and mount one or more disk image files" -msgstr "" +msgstr "Juntar e montar um ou mais ficheiros de imagem de disco" #: mate-disk-image-mounter/src/main.c:60 msgid "An error occurred" @@ -2968,7 +3020,7 @@ #: mate-disk-image-mounter/src/main.c:81 msgid "Allow writing to the image" -msgstr "" +msgstr "Permitir modificar a imagem (escrever/gravar)" #: mate-disk-image-mounter/src/main.c:101 msgid "All Files" @@ -2976,11 +3028,11 @@ #: mate-disk-image-mounter/src/main.c:105 msgid "Disk Images (*.img, *.iso)" -msgstr "" +msgstr "Imagens de Disco (*.img, *.iso)" #: mate-disk-image-mounter/src/main.c:121 msgid "Select Disk Image(s) to Mount" -msgstr "" +msgstr "Seleccionar as imagens de disco a montar" #: mate-disk-image-mounter/src/main.c:125 msgid "_Mount" @@ -2988,41 +3040,43 @@ #: mate-disk-image-mounter/src/main.c:131 msgid "Set up _read-only mount" -msgstr "" +msgstr "Definir como montagem _só de leitura" #: mate-disk-image-mounter/src/main.c:132 msgid "" "If checked, the mount will be read-only. This is useful if you don't want " "the underlying disk image to be modified" msgstr "" +"Se marcado, a montagem será apenas de leitura. Útil para o caso de se " +"pretender que a imagem usada não seja modificada" #: mate-disk-image-mounter/src/main.c:178 #, c-format msgid "Error connecting to udisks daemon: %s (%s, %d)" -msgstr "" +msgstr "Erro ao conectar com o daemon udisks: %s (%s, %d)" #: mate-disk-image-mounter/src/main.c:186 msgid "Attach and mount one or more disk image files." -msgstr "" +msgstr "Juntar e montar um ou mais ficheiros de imagem de disco." #: mate-disk-image-mounter/src/main.c:234 #, c-format msgid "Cannot open `%s' - maybe the volume isn't mounted?" -msgstr "" +msgstr "Não é possível abrir `%s' - o volume está montado?" #: mate-disk-image-mounter/src/main.c:241 #, c-format msgid "Error opening `%s': %m" -msgstr "" +msgstr "Erro ao abrir `%s': %m" #: mate-disk-image-mounter/src/main.c:262 #, c-format msgid "Error attaching disk image: %s (%s, %d)" -msgstr "" +msgstr "Erro ao juntar a imagem de disco: %s (%s, %d)" #: mate-screenshot/data/mate-screenshot.appdata.xml.in:7 msgid "MATE Screenshot" -msgstr "" +msgstr "Captura de ecrã do MATE" #: mate-screenshot/data/mate-screenshot.appdata.xml.in:8 msgid "A screenshot utility for MATE Desktop" @@ -3035,25 +3089,32 @@ "system clipboard or save them in Portable Network Graphics (.png) image " "format." msgstr "" +"O Captura de ecrã do MATE é um utilitário simples que permite capturar " +"imagens da área da trabalho ou de janelas de aplicações. Pode-se optar por " +"copiar para a área da transferência do sistema ou por guardar no formato " +".png (Portable Network Graphics)." #: mate-screenshot/data/mate-screenshot.desktop.in:3 #: mate-screenshot/src/mate-screenshot.c:519 #: mate-screenshot/src/mate-screenshot.c:527 msgid "Take Screenshot" -msgstr "Captura de ecrã" +msgstr "Efectuar Captura de ecrã" #: mate-screenshot/data/mate-screenshot.desktop.in:4 msgid "Save images of your desktop or individual windows" -msgstr "Gravar imagens do seu ambiente de trabalho ou janelas individuais" +msgstr "Guardar imagens da área de trabalho ou de janelas individuais" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" +"MATE;captura de ecrã;captura;área de trabalho;ambiente de " +"trabalho;janela;imagem;" #: mate-screenshot/data/mate-screenshot.ui:24 msgid "Save Screenshot" -msgstr "Gravar captura de ecrã" +msgstr "Guardar Captura de ecrã" #: mate-screenshot/data/mate-screenshot.ui:74 msgid "C_opy to Clipboard" @@ -3061,11 +3122,11 @@ #: mate-screenshot/data/mate-screenshot.ui:192 msgid "Save in _folder:" -msgstr "Gravar na _pasta:" +msgstr "Guardar na _pasta:" #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:5 msgid "Screenshot delay" -msgstr "Atraso na captura de ecrã" +msgstr "Atraso na captura" #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:6 msgid "The number of seconds to wait before taking the screenshot." @@ -3243,8 +3304,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Opções em conflito: --clipboard e --interactive não devem ser utilizados ao " "mesmo tempo.\n" @@ -3264,8 +3325,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Erro ao carregar a definição UI do ficheiro para o programa de captura de " -"ecrã:\n" +"Erro ao carregar a definição UI do ficheiro para o programa de captura de ecrã:\n" "%s\n" "Por favor verifica a instalação do mate-utils." diff -Nru mate-utils-1.26.0/po/quot.sed mate-utils-1.26.1/po/quot.sed --- mate-utils-1.26.0/po/quot.sed 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/po/quot.sed 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -s/"\([^"]*\)"/“\1”/g -s/`\([^`']*\)'/‘\1’/g -s/ '\([^`']*\)' / ‘\1’ /g -s/ '\([^`']*\)'$/ ‘\1’/g -s/^'\([^`']*\)' /‘\1’ /g -s/“”/""/g diff -Nru mate-utils-1.26.0/po/remove-potcdate.sin mate-utils-1.26.1/po/remove-potcdate.sin --- mate-utils-1.26.0/po/remove-potcdate.sin 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/po/remove-potcdate.sin 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -# Sed script that removes the POT-Creation-Date line in the header entry -# from a POT file. -# -# Copyright (C) 2002 Free Software Foundation, Inc. -# 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. -# -# The distinction between the first and the following occurrences of the -# pattern is achieved by looking at the hold space. -/^"POT-Creation-Date: .*"$/{ -x -# Test if the hold space is empty. -s/P/P/ -ta -# Yes it was empty. First occurrence. Remove the line. -g -d -bb -:a -# The hold space was nonempty. Following occurrences. Do nothing. -x -:b -} Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ro.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ro.gmo differ diff -Nru mate-utils-1.26.0/po/ro.po mate-utils-1.26.1/po/ro.po --- mate-utils-1.26.0/po/ro.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/ro.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,28 +2,29 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# corneliu.e , 2018 -# Inpresentia I., 2019 +# Adrian Seni , 2021 +# Laurentiu Archip, 2021 +# Inpresentia I., 2021 +# sidro , 2021 # Stefano Karapetsas , 2021 +# 3d5ab56b1b83fefceeab671c39a98a6d_999ae54, 2021 # Daniel , 2021 -# Laurentiu Archip, 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Laurentiu Archip, 2021\n" -"Language-Team: Romanian (https://www.transifex.com/mate/teams/13566/ro/)\n" -"Language: ro\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Daniel , 2021\n" +"Language-Team: Romanian (https://app.transifex.com/mate/teams/13566/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -34,7 +35,8 @@ msgid "Check folder sizes and available disk space" msgstr "Verifică dimensiunea dosarului și spațiul disponibil pe disc" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -187,7 +189,8 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:22 msgid "Whether the toolbar should be visible in main window." -msgstr "Dacă bara cu unelte ar trebui sa fie vizibilă în fereastra principală." +msgstr "" +"Dacă bara cu unelte ar trebui sa fie vizibilă în fereastra principală." #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:26 msgid "Statusbar is Visible" @@ -220,8 +223,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -567,7 +570,7 @@ #: baobab/src/callbacks.c:74 logview/src/logview-about.h:44 #: mate-dictionary/src/gdict-about.c:49 msgid "MATE Documentation Team" -msgstr "" +msgstr "Echipa de documentare MATE" #: baobab/src/callbacks.c:79 logview/src/logview-about.h:49 #: mate-dictionary/src/gdict-about.c:57 @@ -597,8 +600,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -642,16 +645,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Găsiți documente și dosare pe acest calculator după nume sau conținut" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -687,12 +691,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" -"Această cheie definește căile pe care utilitarul de căutare le va exclude de " -"la o căutare rapidă. Metacaracterele „*” și „?” sunt suportate. Valorile " +"Această cheie definește căile pe care utilitarul de căutare le va exclude de" +" la o căutare rapidă. Metacaracterele „*” și „?” sunt suportate. Valorile " "implicite sunt /mnt/* , /media/*, /dev/*, /tmp/*, /proc/*, și /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -716,11 +720,11 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"Această cheie definește căile pe care utilitarul de căutare le va exclude de " -"la o a doua scanare în tmpul unei căutari rapidă. A doua scanare folosește " +"Această cheie definește căile pe care utilitarul de căutare le va exclude de" +" la o a doua scanare în tmpul unei căutari rapidă. A doua scanare folosește " "comanda find pentru a căuta fișierele. Scopul celei de-a doua scanări este " "de a găsi fișierele ce nu au fost indexate. Metacaracterele „*” și „?” sunt " "suportate. Valorile implicite /." @@ -734,8 +738,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"Această cheie definește ordinea coloanelor din rezultatele căutării. Această " -"cheie nu ar trebui să fie modificată de către utilizator." +"Această cheie definește ordinea coloanelor din rezultatele căutării. Această" +" cheie nu ar trebui să fie modificată de către utilizator." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -743,9 +747,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Această cheie definește lățimea ferestrei, și este folosită pentru a memora " "dimensiunea aplicației de căutare între sesiuni. Setând-o la -1 veți " @@ -758,8 +762,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Această cheie definește înălțimea ferestrei, și este folosită pentru a " "memora dimensiunea aplicației de căutare între sesiuni. Setând-o la -1 veți " @@ -772,7 +776,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:50 msgid "" "This key determines if the search tool window starts in a maximized state." -msgstr "Această cheie determină dacă utilitarul de căutare va porni maximizat." +msgstr "" +"Această cheie determină dacă utilitarul de căutare va porni maximizat." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -813,8 +818,8 @@ "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"Această cheie determină dacă opțiunea de căutare „Mărimea de cel puțin” este " -"selectată la pornirea utilitarului de căutare." +"Această cheie determină dacă opțiunea de căutare „Mărimea de cel puțin” este" +" selectată la pornirea utilitarului de căutare." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" @@ -842,8 +847,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Această cheie determină dacă opțiunea de căutare „Deținut de grupul” este " "selectată la pornirea utilitarului de căutare." @@ -866,8 +871,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Această cheie determină dacă opțiunea de căutare „Numele se potrivește " "expresiei regulate” este selectată la pornirea utilitarului de căutare." @@ -896,62 +901,62 @@ "Această cheie determină dacă opțiunea de căutare „Exclude alte sisteme de " "fișiere” este selectată la pornirea utilitarului de căutare." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Fișierul nu este un fișier .desktop valid" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Versiune fișier desktop nerecunoscută „%s”" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Se pornește %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Aplicația nu acceptă documente în linia de comandă" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Opțiune de lansare nerecunoscută: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Nu se pot pasa URI-uri document către o intrare desktop de tip link" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Nu este un element lansabil" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Dezactivează conexiunea la administratorul de sesiune" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Specifică fișierul ce conține configurația salvată" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FIȘIER" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Specifică ID-ul administratorului de sesiune" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opțiuni administrator de sesiune:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Afișează opțiunile administratorului de sesiune" @@ -1117,8 +1122,8 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"Sortează fișierele după una dintre următoarele: nume, dosar, mărime, tip sau " -"dată" +"Sortează fișierele după una dintre următoarele: nume, dosar, mărime, tip sau" +" dată" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1156,20 +1161,20 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"Rezultatele căutării ar putea fi nevalide. Au fost întâlnite erori în timpul " -"acestei căutări." +"Rezultatele căutării ar putea fi nevalide. Au fost întâlnite erori în timpul" +" acestei căutări." #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" -msgstr "Arată mai multe _detailii" +msgstr "Arată mai multe _detalii" #: gsearchtool/src/gsearchtool.c:1793 msgid "" "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"Rezultatele căutării ar putea fi nevalide. Doriți să dezactivați opțiunea de " -"căutare rapidă?" +"Rezultatele căutării ar putea fi nevalide. Doriți să dezactivați opțiunea de" +" căutare rapidă?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1283,7 +1288,8 @@ #: gsearchtool/src/gsearchtool.c:2858 msgid "Select the folder or device from which you want to begin the search." -msgstr "Selectați dosarul sau dispozitivul în care doriți să porniți căutarea." +msgstr "" +"Selectați dosarul sau dispozitivul în care doriți să porniți căutarea." #: gsearchtool/src/gsearchtool.c:2876 msgid "Select more _options" @@ -1572,7 +1578,8 @@ msgid "View or monitor system log files" msgstr "Vizualizează sau monitorizează fișierele cu înregistrările de sistem" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1583,12 +1590,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Specifică fișierul de înregistrare deschis la pornire. Cel implicit este " -"fie /var/adm/messages sau /var/log/messages, depinzând de sistemul de " -"operare." +"Specifică fișierul de înregistrare deschis la pornire. Cel implicit este fie" +" /var/adm/messages sau /var/log/messages, depinzând de sistemul de operare." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1996,7 +2002,8 @@ msgstr "" "Verifică definițiile și ortografia unui cuvânt într-un dicționar online" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -2008,8 +2015,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2054,8 +2061,8 @@ "available. The default strategy is 'exact', that is match exact words." msgstr "" "Numele strategiei implicite pentru căutare de folosit pe o sursă de " -"dicționare, dacă este disponibilă. Strategia implicită este „exact”, adică o " -"potrivire exactă pentru cuvinte." +"dicționare, dacă este disponibilă. Strategia implicită este „exact”, adică o" +" potrivire exactă pentru cuvinte." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2207,7 +2214,8 @@ #, c-format msgid "Connection timeout for the dictionary server at '%s:%d'" msgstr "" -"Limită de timp depășită pentru conexiunea la servitorul de dicționare „%s:%d”" +"Limită de timp depășită pentru conexiunea la servitorul de dicționare " +"„%s:%d”" #: mate-dictionary/libgdict/gdict-client-context.c:1878 msgid "No hostname defined for the dictionary server" @@ -2784,7 +2792,7 @@ #: mate-dictionary/src/gdict-window.c:1281 msgid "_Find" -msgstr "" +msgstr "_Caută…" #: mate-dictionary/src/gdict-window.c:1282 msgid "Find a word or phrase in the document" @@ -3049,7 +3057,8 @@ msgstr "" "Salvează imagini ale spațiului de lucru sau ale unor ferestre individuale" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3245,8 +3254,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3263,8 +3272,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Erroare la încărcarea fișierului de definirea a interfeței pentru programul " -"de captură de ecran: \n" +"Erroare la încărcarea fișierului de definirea a interfeței pentru programul de captură de ecran: \n" "%s\n" "\n" "Verificați instalarea mate-utils." Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ru.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ru.gmo differ diff -Nru mate-utils-1.26.0/po/Rules-quot mate-utils-1.26.1/po/Rules-quot --- mate-utils-1.26.0/po/Rules-quot 2021-08-05 19:45:15.000000000 +0000 +++ mate-utils-1.26.1/po/Rules-quot 1970-01-01 00:00:00.000000000 +0000 @@ -1,62 +0,0 @@ -# Special Makefile rules for English message catalogs with quotation marks. -# -# Copyright (C) 2001-2017 Free Software Foundation, Inc. -# This file, Rules-quot, and its auxiliary files (listed under -# DISTFILES.common.extra1) are free software; the Free Software Foundation -# gives unlimited permission to use, copy, distribute, and modify them. - -DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot - -.SUFFIXES: .insert-header .po-update-en - -en@quot.po-create: - $(MAKE) en@quot.po-update -en@boldquot.po-create: - $(MAKE) en@boldquot.po-update - -en@quot.po-update: en@quot.po-update-en -en@boldquot.po-update: en@boldquot.po-update-en - -.insert-header.po-update-en: - @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ - if test "$(PACKAGE)" = "gettext-tools" && test "$(CROSS_COMPILING)" != "yes"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ - tmpdir=`pwd`; \ - echo "$$lang:"; \ - ll=`echo $$lang | sed -e 's/@.*//'`; \ - LC_ALL=C; export LC_ALL; \ - cd $(srcdir); \ - if $(MSGINIT) $(MSGINIT_OPTIONS) -i $(DOMAIN).pot --no-translator -l $$lang -o - 2>/dev/null \ - | $(SED) -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | \ - { case `$(MSGFILTER) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ - '' | 0.[0-9] | 0.[0-9].* | 0.1[0-8] | 0.1[0-8].*) \ - $(MSGFILTER) $(SED) -f `echo $$lang | sed -e 's/.*@//'`.sed \ - ;; \ - *) \ - $(MSGFILTER) `echo $$lang | sed -e 's/.*@//'` \ - ;; \ - esac } 2>/dev/null > $$tmpdir/$$lang.new.po \ - ; then \ - if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ - rm -f $$tmpdir/$$lang.new.po; \ - else \ - if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ - :; \ - else \ - echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ - exit 1; \ - fi; \ - fi; \ - else \ - echo "creation of $$lang.po failed!" 1>&2; \ - rm -f $$tmpdir/$$lang.new.po; \ - fi - -en@quot.insert-header: insert-header.sin - sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header - -en@boldquot.insert-header: insert-header.sin - sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header - -mostlyclean: mostlyclean-quot -mostlyclean-quot: - rm -f *.insert-header diff -Nru mate-utils-1.26.0/po/ru.po mate-utils-1.26.1/po/ru.po --- mate-utils-1.26.0/po/ru.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/ru.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,7 +2,7 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Дмитрий Михирев, 2018 # monsta , 2018 @@ -19,22 +19,20 @@ # Anna Vyalkova , 2020 # Stefano Karapetsas , 2021 # AlexL , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" "PO-Revision-Date: 2018-03-12 09:18+0000\n" "Last-Translator: AlexL , 2021\n" "Language-Team: Russian (https://www.transifex.com/mate/teams/13566/ru/)\n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -45,12 +43,12 @@ msgid "Check folder sizes and available disk space" msgstr "Изучение размера папок и свободного места на дисках" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" -"MATE;check;disk;usage;analyze;size;space;проверка;диск;использование;" -"анализировать;размер;пространство;" +"MATE;check;disk;usage;analyze;size;space;проверка;диск;использование;анализировать;размер;пространство;" #: baobab/data/baobab-dialog-scan-props.ui:18 msgid "Disk Usage Analyzer Preferences" @@ -242,8 +240,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" "Как следует из названия, анализатор использования дисков — это графическое " @@ -622,14 +620,14 @@ msgstr "" "Данная программа распространяется в надежде на то, что приложение будет " "полезно, но БЕЗ ВСЯКИХ ГАРАНТИЙ; не гарантируется даже ПРИГОДНОСТЬ или " -"СООТВЕТСТВИЕ КАКИМ-ЛИБО ТРЕБОВАНИЯМ. Для получения дополнительной информации " -"ознакомьтесь с GNU General Public License." +"СООТВЕТСТВИЕ КАКИМ-ЛИБО ТРЕБОВАНИЯМ. Для получения дополнительной информации" +" ознакомьтесь с GNU General Public License." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -705,27 +703,28 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" -"Поиск файлов MATE — это простая, но функциональная утилита для поиска файлов " -"и папок на всех подключённых файловых системах. Интерфейс предоставляет " +"Поиск файлов MATE — это простая, но функциональная утилита для поиска файлов" +" и папок на всех подключённых файловых системах. Интерфейс предоставляет " "доступ к различным параметрам поиска: поиск по содержимому файла, владельцу " "файла, дате модификации, размеру файла, поиск с исключением выбранных папок " "и так далее." #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" -msgstr "Искать документы и папки на этом компьютере по имени или по содержанию" +msgstr "" +"Искать документы и папки на этом компьютере по имени или по содержанию" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" -"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" -"поиск;файлы;найти;документы;папки;компьютер;имя;содержимое;поиск;утилита;" +"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;поиск;файлы;найти;документы;папки;компьютер;имя;содержимое;поиск;утилита;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -757,13 +756,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Этот ключ определяет пути, которые будут исключены из быстрого поиска. " -"Поддерживаются шаблоны «*» и «?». Значения по умолчанию: /mnt/*, /media/*, /" -"dev/*, /tmp/*, /proc/* и /var/*." +"Поддерживаются шаблоны «*» и «?». Значения по умолчанию: /mnt/*, /media/*, " +"/dev/*, /tmp/*, /proc/* и /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -774,8 +773,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"Этот ключ определяет, отключено ли использование команды find после быстрого " -"поиска." +"Этот ключ определяет, отключено ли использование команды find после быстрого" +" поиска." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -786,14 +785,14 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Этот ключ определяет пути, которые средство поиска будет исключать при " "втором проходе быстрого поиска. Второй проход использует команду «find» для " "поиска файлов. Цель второго прохода — найти файлы, которые не были " -"проиндексированы. Поддерживаются шаблоны «*» и «?». Значение по умолчанию " -"— /." +"проиндексированы. Поддерживаются шаблоны «*» и «?». Значение по умолчанию — " +"/." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -813,13 +812,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Этот ключ определяет ширину окна и используется для сохранения размера " -"средства поиска между сеансами. Если установить ключ в значение -1, то будет " -"использоваться ширина по умолчанию." +"средства поиска между сеансами. Если установить ключ в значение -1, то будет" +" использоваться ширина по умолчанию." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -828,12 +827,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Этот ключ определяет высоту окна и используется для сохранения размера " -"средства поиска между сеансами. Если установить ключ в значение -1, то будет " -"использоваться высота по умолчанию." +"средства поиска между сеансами. Если установить ключ в значение -1, то будет" +" использоваться высота по умолчанию." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -913,8 +912,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Этот ключ определяет, будет ли установлен параметр «Принадлежит группе» при " "запуске средства поиска." @@ -937,8 +936,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Этот ключ определяет, будет ли установлен параметр «Имя совпадает с " "регулярным выражением» при запуске средства поиска." @@ -948,8 +947,8 @@ "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"Этот ключ определяет, должен ли быть установлен параметр «Показывать скрытые " -"файлы и папки» при запуске средства поиска." +"Этот ключ определяет, должен ли быть установлен параметр «Показывать скрытые" +" файлы и папки» при запуске средства поиска." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" @@ -967,63 +966,63 @@ "Этот ключ определяет, будет ли установлен параметр «Исключить другие " "файловые системы» при запуске средства поиска." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Файл не является корректным файлом .desktop" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Неизвестная версия файла .desktop «%s»" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Запускается %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Программа не принимает объекты через командную строку" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Неизвестный параметр запуска: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Невозможно передать адреса документов записи «Type=Link» файла .desktop" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Незапускаемый объект" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Запретить соединение с менеджером сеансов" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Указать файл, содержащий сохранённую конфигурацию" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ФАЙЛ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Указать ID сеанса" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Параметры управления сеансом:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Показать параметры управления сеансом" @@ -1191,12 +1190,13 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"Упорядочивать файлы по одному из критериев: «name», «folder», «size», «type» " -"или «date»" +"Упорядочивать файлы по одному из критериев: «name», «folder», «size», «type»" +" или «date»" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" -msgstr "Сменить порядок сортировки на убывающий (по умолчанию он возрастающий)" +msgstr "" +"Сменить порядок сортировки на убывающий (по умолчанию он возрастающий)" #: gsearchtool/src/gsearchtool.c:1329 msgid "Automatically start a search" @@ -1240,7 +1240,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"Результат поиска может быть устаревшим или неверным. Отключить быстрый поиск?" +"Результат поиска может быть устаревшим или неверным. Отключить быстрый " +"поиск?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1249,8 +1250,7 @@ #: gsearchtool/src/gsearchtool.c:1845 #, c-format msgid "Failed to set process group id of child %d: %s.\n" -msgstr "" -"Не удалось установить идентификатор группы дочернего процесса %d: %s.\n" +msgstr "Не удалось установить идентификатор группы дочернего процесса %d: %s.\n" #: gsearchtool/src/gsearchtool.c:1870 msgid "Error parsing the search command." @@ -1645,12 +1645,12 @@ msgid "View or monitor system log files" msgstr "Просмотр и наблюдение за системными журналами" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" -"MATE;monitor;view;system;log;files;logviewer;отслеживание;просмотр;система;" -"журнал;файлы;просмотрщик;" +"MATE;monitor;view;system;log;files;logviewer;отслеживание;просмотр;система;журнал;файлы;просмотрщик;" #: logview/data/org.mate.system-log.gschema.xml.in:5 msgid "Log file to open up on startup" @@ -1658,8 +1658,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "Определяет файл журнала, отображаемый при запуске. Значение по умолчанию — " "либо /var/adm/messages, либо /var/log/messages, в зависимости от " @@ -1836,7 +1836,8 @@ #: logview/src/logview-log.c:743 msgid "This version of System Log does not support GZipped logs." msgstr "" -"Эта версия программы просмотра журналов не поддерживает журналы, сжатые gzip." +"Эта версия программы просмотра журналов не поддерживает журналы, сжатые " +"gzip." #: logview/src/logview-loglist.c:103 msgid "%A, %e %b" @@ -2069,12 +2070,12 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Проверить определение и правописание слова в онлайн-словаре" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" -"MATE;dictionary;applet;thesaurus;spelling;definitions;online;словарь;апплет;" -"тезаурус;орфография;определения;онлайн;" +"MATE;dictionary;applet;thesaurus;spelling;definitions;online;словарь;апплет;тезаурус;орфография;определения;онлайн;" #: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 msgid "A dictionary for MATE Desktop" @@ -2083,13 +2084,13 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" "Словарь MATE позволяет просматривать слова в онлайн-словарях. Он " -"поставляется с предустановленным списком серверов Dict (RFC 2229), в который " -"можно добавлять свои источники; имеется возможность выбирать определённые " +"поставляется с предустановленным списком серверов Dict (RFC 2229), в который" +" можно добавлять свои источники; имеется возможность выбирать определённые " "серверы для конкретных запросов." #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 @@ -2436,7 +2437,8 @@ msgid "" "Unable to get the '%s' key inside the dictionary source definition file: %s" msgstr "" -"Не удалось получить ключ «%s» внутри файла определения источника словарей: %s" +"Не удалось получить ключ «%s» внутри файла определения источника словарей: " +"%s" #: mate-dictionary/libgdict/gdict-source.c:736 msgid "Dictionary source does not have name" @@ -3117,9 +3119,9 @@ "system clipboard or save them in Portable Network Graphics (.png) image " "format." msgstr "" -"Снимки экрана MATE — это простое приложение, которое позволяет делать снимки " -"всего экрана или окон приложений. Можно скопировать снимки в системный буфер " -"обмена или сохранить их в формате Portable Network Graphics (.png)." +"Снимки экрана MATE — это простое приложение, которое позволяет делать снимки" +" всего экрана или окон приложений. Можно скопировать снимки в системный " +"буфер обмена или сохранить их в формате Portable Network Graphics (.png)." #: mate-screenshot/data/mate-screenshot.desktop.in:3 #: mate-screenshot/src/mate-screenshot.c:519 @@ -3131,12 +3133,12 @@ msgid "Save images of your desktop or individual windows" msgstr "Сохранить изображения рабочего стола или отдельных окон" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" -"MATE;screenshot;snapshot;desktop;window;image;снимок;экран;рабочий;стол;окно;" -"изображение;" +"MATE;screenshot;snapshot;desktop;window;image;снимок;экран;рабочий;стол;окно;изображение;" #: mate-screenshot/data/mate-screenshot.ui:24 msgid "Save Screenshot" @@ -3330,8 +3332,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Несовместимые параметры: --clipboard и --interactive не могут быть " "использованы одновременно.\n" @@ -3352,8 +3354,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Ошибка при загрузке файла с описанием UI для приложения создания снимков " -"экрана:\n" +"Ошибка при загрузке файла с описанием UI для приложения создания снимков экрана:\n" "%s\n" "\n" "Пожалуйста, проверьте корректность установки mate-utils." Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/rw.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/rw.gmo differ diff -Nru mate-utils-1.26.0/po/rw.po mate-utils-1.26.1/po/rw.po --- mate-utils-1.26.0/po/rw.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/rw.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2019 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2019\n" -"Language-Team: Kinyarwanda (https://www.transifex.com/mate/teams/13566/rw/)\n" -"Language: rw\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Kinyarwanda (https://app.transifex.com/mate/teams/13566/rw/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: rw\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -623,16 +624,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -666,9 +668,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -690,8 +692,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -710,9 +712,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -722,8 +724,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -787,8 +789,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -805,8 +807,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -827,62 +829,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1487,7 +1489,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1498,8 +1501,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1897,7 +1900,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1909,8 +1913,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2924,7 +2928,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3116,8 +3121,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/sc.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/sc.gmo differ diff -Nru mate-utils-1.26.0/po/sc.po mate-utils-1.26.1/po/sc.po --- mate-utils-1.26.0/po/sc.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/sc.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Fabrizio Pedes , 2019 -# +# Fabrizio Pedes , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Fabrizio Pedes , 2019\n" -"Language-Team: Sardinian (https://www.transifex.com/mate/teams/13566/sc/)\n" -"Language: sc\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Fabrizio Pedes , 2021\n" +"Language-Team: Sardinian (https://app.transifex.com/mate/teams/13566/sc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -626,16 +627,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -669,9 +671,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -693,8 +695,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -713,9 +715,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -725,8 +727,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -790,8 +792,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -808,8 +810,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -830,64 +832,64 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Su file no balet comente file .desktop" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Versione '%s' de su file desktop disconnota" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Incarreramentu de %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "S'aplicatzione no atzetat documentos in sa lìnia de cumandu" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Preferèntzia de comintzu disconnota: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Non si podent colare sos URIs de su documentu a un'intrada desktop " "'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "No est un'ogetu de incarrerare" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Imbàlida sa cunnessione cun su manigiadore de sessione" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Pretzisa su file chi cuntenet sa cunfiguratzione allogada" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Pretzisa su ID de manigiadura de sessione" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Preferèntzias de manigiadura de sessione:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Mustra sas preferèntzias de manigiadura de sessione" @@ -1492,7 +1494,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1503,8 +1506,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1902,7 +1905,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1914,8 +1918,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2929,7 +2933,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3121,8 +3126,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/si.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/si.gmo differ diff -Nru mate-utils-1.26.0/po/si.po mate-utils-1.26.1/po/si.po --- mate-utils-1.26.0/po/si.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/si.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Sinhala (https://www.transifex.com/mate/teams/13566/si/)\n" -"Language: si\n" +"Language-Team: Sinhala (https://app.transifex.com/mate/teams/13566/si/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -623,16 +624,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "නමින් හෝ අන්තර්ගතයෙන් ලේඛන හෝ බහලුම් පිහිටුම් සොයාගන්න" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -666,9 +668,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -690,8 +692,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -710,9 +712,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -722,8 +724,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -748,80 +750,85 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"‍‍‍‍\" පෙළෙහි ඇතුලත් \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. සෙවීමේ මෙවලම ආරම්භයි." +"‍‍‍‍\" පෙළෙහි ඇතුලත් \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. සෙවීමේ" +" මෙවලම ආරම්භයි." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"‍‍‍‍\" වෙනස්කල දිනය අඩුයි \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. සෙවීමේ මෙවලම " -"ආරම්භයි." +"‍‍‍‍\" වෙනස්කල දිනය අඩුයි \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. " +"සෙවීමේ මෙවලම ආරම්භයි." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"‍‍‍‍\" වෙනස්කල දිනය වැඩියි\" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. සෙවීමේ මෙවලම " -"ආරම්භයි." +"‍‍‍‍\" වෙනස්කල දිනය වැඩියි\" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. " +"සෙවීමේ මෙවලම ආරම්භයි." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"‍‍‍‍\" ප්‍රමාණයෙන් අඩුමලෙස \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. සෙවීමේ මෙවලම " -"ආරම්භයි." +"‍‍‍‍\" ප්‍රමාණයෙන් අඩුමලෙස \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. " +"සෙවීමේ මෙවලම ආරම්භයි." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"‍‍‍‍\" ප්‍රමාණයෙන් වැඩිමලෙස \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. සෙවීමේ මෙවලම " -"ආරම්භයි." +"‍‍‍‍\" ප්‍රමාණයෙන් වැඩිමලෙස \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත." +" සෙවීමේ මෙවලම ආරම්භයි." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." -msgstr "‍‍‍‍\" හිස් ගොනු \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. සෙවීමේ මෙවලම ආරම්භයි." +msgstr "" +"‍‍‍‍\" හිස් ගොනු \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. සෙවීමේ " +"මෙවලම ආරම්භයි." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"‍‍‍‍\" හිමිකාරීත්වය පරිශීලක සතු \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. සෙවීමේ මෙවලම " -"ආරම්භයි." +"‍‍‍‍\" හිමිකාරීත්වය පරිශීලක සතු \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර" +" ඇත. සෙවීමේ මෙවලම ආරම්භයි." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"‍‍‍‍\" හිමිකාරීත්වය සමූහය සතු \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. සෙවීමේ මෙවලම " -"ආරම්භයි." +"‍‍‍‍\" හිමිකාරීත්වය සමූහය සතු \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර " +"ඇත. සෙවීමේ මෙවලම ආරම්භයි." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"‍‍‍‍\" හිමිකරු නොහදුනන \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. සෙවීමේ මෙවලම ආරම්භයි." +"‍‍‍‍\" හිමිකරු නොහදුනන \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. " +"සෙවීමේ මෙවලම ආරම්භයි." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"‍‍‍‍\" නම අඩංගු නොවන \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. සෙවීමේ මෙවලම ආරම්භයි." +"‍‍‍‍\" නම අඩංගු නොවන \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. සෙවීමේ" +" මෙවලම ආරම්භයි." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -829,16 +836,16 @@ "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"‍‍‍‍\" සගවා ඇති ගොනු සහ බහාළුම් පෙන්වන්න \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. " -"සෙවීමේ මෙවලම ආරම්භයි." +"‍‍‍‍\" සගවා ඇති ගොනු සහ බහාළුම් පෙන්වන්න \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර" +" තීරණය කර ඇත. සෙවීමේ මෙවලම ආරම්භයි." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"‍‍‍‍\" සංකේතාත්මක සබැදිය අනුගමනය කරන්න \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර තීරණය කර ඇත. " -"සෙවීමේ මෙවලම ආරම්භයි." +"‍‍‍‍\" සංකේතාත්මක සබැදිය අනුගමනය කරන්න \" සෙවීමේ විකල්පය තේරීමෙන් මෙම යතුර " +"තීරණය කර ඇත. සෙවීමේ මෙවලම ආරම්භයි." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" @@ -846,62 +853,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "ආරම්භවෙමින් %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "ඇරඹීය හැකි අයිතමයක් නොවේ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1508,7 +1515,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1519,8 +1527,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1918,7 +1926,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "වදන් අර්ථදැක්වීම් සහ අක්ෂරවින්‍යාසය සබැදි ශබ්දකෝෂයෙන් පරීක්ෂා කරන්න" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1930,8 +1939,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2055,8 +2064,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -" '%s:%d' හි ශබ්දකෝෂ සේවාදායකයට සම්බන්ධවිය නොහැක. සේවාදායකයේ පිළිතුරු කේතය %d " -"(සේවාදායකය වසා ඇත)" +" '%s:%d' හි ශබ්දකෝෂ සේවාදායකයට සම්බන්ධවිය නොහැක. සේවාදායකයේ පිළිතුරු කේතය %d" +" (සේවාදායකය වසා ඇත)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2269,7 +2278,8 @@ #, c-format msgid "" "Unable to get the '%s' key inside the dictionary source definition file: %s" -msgstr "%s වන අභ්‍යන්තර ශබ්දකෝෂ මූල අර්ථදැක්වීමේ ගොනුවේ '%s' වන යතුර ලබාගත ෙනාහැක :" +msgstr "" +"%s වන අභ්‍යන්තර ශබ්දකෝෂ මූල අර්ථදැක්වීමේ ගොනුවේ '%s' වන යතුර ලබාගත ෙනාහැක :" #: mate-dictionary/libgdict/gdict-source.c:736 msgid "Dictionary source does not have name" @@ -2957,7 +2967,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3149,8 +3160,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/sk.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/sk.gmo differ diff -Nru mate-utils-1.26.0/po/sk.po mate-utils-1.26.1/po/sk.po --- mate-utils-1.26.0/po/sk.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/sk.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,32 +2,31 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# 32442f8bc5cc500b59f161d95078a28a_525ed04, 2018 -# Pavol Šimo , 2018 -# Erik Bročko , 2018 -# Vendelín Slezák , 2019 -# peter, 2019 -# Tibor Kaputa , 2019 -# Ján Ďanovský , 2020 +# Vendelín Slezák , 2021 +# 32442f8bc5cc500b59f161d95078a28a_525ed04, 2021 +# Erik Bročko , 2021 +# Pavol Šimo , 2021 +# Ján Ďanovský , 2021 # Dušan Kazik , 2021 # Stefano Karapetsas , 2021 -# +# Tibor Kaputa , 2021 +# peter, 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Slovak (https://www.transifex.com/mate/teams/13566/sk/)\n" -"Language: sk\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: peter, 2021\n" +"Language-Team: Slovak (https://app.transifex.com/mate/teams/13566/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n " -">= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -38,7 +37,8 @@ msgid "Check folder sizes and available disk space" msgstr "Skontrolovať veľkosti priečinkov a dostupné miesto na disku" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -63,7 +63,8 @@ #: baobab/data/baobab-dialog-scan-props.ui:81 msgid "Select _devices to include in filesystem scan:" msgstr "" -"Vyberte _zariadenia, ktoré budú zahrnuté do prehľadávania súborového systému:" +"Vyberte _zariadenia, ktoré budú zahrnuté do prehľadávania súborového " +"systému:" #: baobab/data/baobab-dialog-scan-props.ui:119 msgid "_Monitor changes to your home folder" @@ -225,8 +226,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -277,10 +278,10 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d položka" -msgstr[1] "%5d položky" -msgstr[2] "%5d položky" -msgstr[3] "%5d položiek" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -583,9 +584,10 @@ "any later version." msgstr "" "Tento program je slobodný softvér; môžete ho ďalej šíriť a/alebo upravovať " -"podľa ustanovení GNU General Public License (Všeobecná verejná licencia GNU) " -"tak, ako bola vydaná organizáciou Free Software Foundation, a to buď verzie " -"2 tejto licencie, alebo (podľa vášho uváženia) ktorejkoľvek neskoršej verzie." +"podľa ustanovení GNU General Public License (Všeobecná verejná licencia GNU)" +" tak, ako bola vydaná organizáciou Free Software Foundation, a to buď verzie" +" 2 tejto licencie, alebo (podľa vášho uváženia) ktorejkoľvek neskoršej " +"verzie." #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -602,8 +604,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -652,9 +654,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -662,7 +664,8 @@ msgstr "" "Vyhľadať dokumenty a priečinky na tomto počítači podľa názvu alebo obsahu" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -689,8 +692,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"Tento kľúč určuje, či nástroj na hľadanie zakáže použitie príkazu locate pri " -"jednoduchom hľadaní mien súborov." +"Tento kľúč určuje, či nástroj na hľadanie zakáže použitie príkazu locate pri" +" jednoduchom hľadaní mien súborov." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -698,13 +701,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Tento kľúč definuje cesty, ktoré nástroj na hľadanie vynechá z rýchleho " -"hľadania. Sú podporované zástupné znaky „*“ a „?“. Predvolené hodnoty sú /" -"mnt/*, /media/*, /dev/*, /tmp/*, /proc/* a /var/*." +"hľadania. Sú podporované zástupné znaky „*“ a „?“. Predvolené hodnoty sú " +"/mnt/*, /media/*, /dev/*, /tmp/*, /proc/* a /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -727,11 +730,11 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"Tento kľúč definuje cesty, ktoré nástroj na hľadanie vynechá z druhého cyklu " -"pri rýchlom hľadaní. Druhý cyklus používa príkaz find na hľadanie súborov. " +"Tento kľúč definuje cesty, ktoré nástroj na hľadanie vynechá z druhého cyklu" +" pri rýchlom hľadaní. Druhý cyklus používa príkaz find na hľadanie súborov. " "Účelom druhého cyklu je nájsť súbory, ktoré neboli indexované. Sú " "podporované zástupné znaky „*“ a „?“. Predvolená hodnota je /." @@ -753,12 +756,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -"Tento kľúč definuje šírku okna a je použitý na zapamätanie veľkosti nástroja " -"na hľadanie medzi reláciami. Nastavenie na -1 spôsobí, že nástroj na " +"Tento kľúč definuje šírku okna a je použitý na zapamätanie veľkosti nástroja" +" na hľadanie medzi reláciami. Nastavenie na -1 spôsobí, že nástroj na " "hľadanie použije predvolenú šírku." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -768,11 +771,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"Tento kľúč definuje výšku okna a je použitý na zapamätanie veľkosti nástroja " -"na hľadanie medzi reláciami. Nastavenie na -1 spôsobí, že nástroj na " +"Tento kľúč definuje výšku okna a je použitý na zapamätanie veľkosti nástroja" +" na hľadanie medzi reláciami. Nastavenie na -1 spôsobí, že nástroj na " "hľadanie použije predvolenú výšku." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -852,8 +855,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Tento kľúč určuje, či je možnosť hľadania „Vlastní skupina“ vybratá pri " "spustení nástroja na hľadanie." @@ -876,8 +879,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Tento kľúč určuje, či je možnosť hľadania „Názov vyhovuje regulárnemu " "výrazu“ vybratá pri spustení nástroja na hľadanie." @@ -906,63 +909,63 @@ "Tento kľúč určuje, či je možnosť hľadania „Vynechať iné súborové systémy“ " "vybratá pri spustení nástroja na hľadanie." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Súbor nie je platným .desktop súborom" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Nerozpoznaná verzia súboru plochy „%s“" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Spúšťa sa %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Program neprijíma dokumenty z príkazového riadka" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Nerozpoznaný spúšťací argument: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Položke pracovnej plochy typu Odkaz nie je možné odovzdať URI dokumentov" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Nie je spustiteľnou položkou" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Zakázať spojenie k správcovi relácií" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Určte súbor obsahujúci uložené nastavenia" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "SÚBOR" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Zadať identifikátor správy relácií" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Možnosti správy relácií:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Zobraziť možnosti správy relácie" @@ -1101,19 +1104,19 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "%'d nájdený súbor" -msgstr[1] "%'d nájdené súbory" -msgstr[2] "%'d nájdených súborov" -msgstr[3] "%'d nájdených súborov" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "%'d nájdený súbor" -msgstr[1] "%'d nájdené súbory" -msgstr[2] "%'d nájdených súborov" -msgstr[3] "%'d nájdených súborov" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1339,20 +1342,20 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Naozaj chcete otvoriť %d dokument?" -msgstr[1] "Naozaj chcete otvoriť %d dokumenty?" -msgstr[2] "Naozaj chcete otvoriť %d dokumentu?" -msgstr[3] "Naozaj chcete otvoriť %d dokumentov?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Otvorí sa %d samostatné okno." -msgstr[1] "Otvorí sa %d samostatné okná." -msgstr[2] "Otvorí sa %d samostatných okien." -msgstr[3] "Otvorí sa %d samostatných okien." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1370,16 +1373,17 @@ #: gsearchtool/src/gsearchtool-callbacks.c:521 msgid "There is no installed viewer capable of displaying the document." -msgstr "Nemáte nainštalovaný prehliadač, ktorý dokáže zobraziť tento dokument." +msgstr "" +"Nemáte nainštalovaný prehliadač, ktorý dokáže zobraziť tento dokument." #: gsearchtool/src/gsearchtool-callbacks.c:543 #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Naozaj chcete otvoriť %d priečinok?" -msgstr[1] "Naozaj chcete otvoriť %d priečinky?" -msgstr[2] "Naozaj chcete otvoriť %d priečinkov?" -msgstr[3] "Naozaj chcete otvoriť %d priečinkov?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1583,7 +1587,8 @@ msgid "View or monitor system log files" msgstr "Zobrazuje, alebo sleduje súbory systémových záznamov" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1594,11 +1599,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Určuje súbor so záznamom otvorený po spustení. Predvoleným je /var/adm/" -"messages alebo /var/log/messages v závislosti od vášho systému." +"Určuje súbor so záznamom otvorený po spustení. Predvoleným je " +"/var/adm/messages alebo /var/log/messages v závislosti od vášho systému." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -2002,7 +2007,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Skontrolovať definície alebo pravopis slov v online slovníku" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -2014,8 +2020,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2058,8 +2064,8 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"Názov predvoleného postupu vyhľadávania, ktorý sa použije na zdroj slovníka, " -"ak je dostupný. Predvolený postup je „exact“, a tak hľadá presne " +"Názov predvoleného postupu vyhľadávania, ktorý sa použije na zdroj slovníka," +" ak je dostupný. Predvolený postup je „exact“, a tak hľadá presne " "zodpovedajúce slová." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 @@ -2145,8 +2151,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"Nepodarilo sa pripojiť k serveru slovníka na „%s:%d“. Server odpovedal kódom " -"%d (server je nedostupný)" +"Nepodarilo sa pripojiť k serveru slovníka na „%s:%d“. Server odpovedal kódom" +" %d (server je nedostupný)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2740,10 +2746,10 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Nájdená definícia" -msgstr[1] "Nájdené %d definície" -msgstr[2] "Nájdených %d definícií" -msgstr[3] "Nájdených %d definícií" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -3049,7 +3055,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Uložiť obrázky vašej pracovnej plochy alebo samostatných okien" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3227,8 +3234,8 @@ #: mate-screenshot/src/mate-screenshot.c:1321 msgid "Effect to add to the border (shadow, border or none)" msgstr "" -"Efekt, ktorý sa má pridať k okraju (shadow - tieň, border - okraj alebo none " -"- žiadny)" +"Efekt, ktorý sa má pridať k okraju (shadow - tieň, border - okraj alebo none" +" - žiadny)" #: mate-screenshot/src/mate-screenshot.c:1321 msgid "effect" @@ -3248,17 +3255,15 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" -msgstr "" -"Konfliktné možnosti: --window a --area by nemali byť používané spolu.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" +msgstr "Konfliktné možnosti: --window a --area by nemali byť používané spolu.\n" #: mate-screenshot/src/mate-screenshot.c:1363 msgid "" "Conflicting options: --window and --area should not be used at the same " "time.\n" -msgstr "" -"Konfliktné možnosti: --window a --area by nemali byť používané spolu.\n" +msgstr "Konfliktné možnosti: --window a --area by nemali byť používané spolu.\n" #: mate-screenshot/src/screenshot-dialog.c:210 #, c-format Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/sl.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/sl.gmo differ diff -Nru mate-utils-1.26.0/po/sl.po mate-utils-1.26.1/po/sl.po --- mate-utils-1.26.0/po/sl.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/sl.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,30 +2,30 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Damir Mevkić , 2018 -# jetomit , 2018 -# worm , 2018 -# Damir Jerovšek , 2019 -# Arnold Marko , 2019 +# Arnold Marko , 2021 # Stefano Karapetsas , 2021 +# Damir Jerovšek , 2021 +# worm , 2021 +# Damir Mevkić 52K , 2021 # Helena S , 2021 -# +# jetomit , 2021 +# Martin Srebotnjak , 2022 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Helena S , 2021\n" -"Language-Team: Slovenian (https://www.transifex.com/mate/teams/13566/sl/)\n" -"Language: sl\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Martin Srebotnjak , 2022\n" +"Language-Team: Slovenian (https://app.transifex.com/mate/teams/13566/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -36,10 +36,11 @@ msgid "Check folder sizes and available disk space" msgstr "Preveri velikosti map in razpoložljiv prostor na disku" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" -msgstr "" +msgstr "MATE;preveri;disk;raba;uporaba;analiza;velikost;prostor;" #: baobab/data/baobab-dialog-scan-props.ui:18 msgid "Disk Usage Analyzer Preferences" @@ -102,7 +103,7 @@ #: baobab/data/baobab-main-window.ui:101 logview/src/logview-window.c:823 #: mate-dictionary/src/gdict-window.c:1260 msgid "_View" -msgstr "_Pogled" +msgstr "_Prikaz" #: baobab/data/baobab-main-window.ui:108 msgid "_Toolbar" @@ -119,7 +120,7 @@ #: baobab/data/baobab-main-window.ui:136 logview/src/logview-window.c:851 #: mate-dictionary/src/gdict-window.c:1312 msgid "_Contents" -msgstr "_Vsebina" +msgstr "_Vsebine" #: baobab/data/baobab-main-window.ui:183 baobab/src/baobab.c:1237 #: baobab/src/callbacks.c:103 @@ -220,8 +221,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -484,8 +485,8 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"Vsebina vaše domače mape se je spremenila. S ponovno preiskavo se posodobijo " -"podatki o zasedenosti map." +"Vsebina vaše domače mape se je spremenila. S ponovno preiskavo se posodobijo" +" podatki o zasedenosti map." #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -591,15 +592,18 @@ msgstr "" "Ta program je na voljo v upanju, da bo uporaben, vendar je BREZ VSAKRŠNEGA " "JAMSTVA; tudi brez jamstva o USTREZNOSTI ZA PRODAJO ali PRIMERNOSTI ZA " -"UPORABO. Za več podrobnosti si oglejte besedilo Splošnega javnega dovoljenja " -"(GNU GPL)." +"UPORABO. Za več podrobnosti si oglejte besedilo Splošnega javnega dovoljenja" +" (GNU GPL)." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" +"Skupaj s programom bi morali prejeti izvod splošnega dovoljenja GNU General " +"Public License. V kolikor ga niste, si dovoljenje oglejte na spletni strani " +"." #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" @@ -607,13 +611,15 @@ #: baobab/src/callbacks.c:106 msgid "Analyze your disk usage through a graphical tool." -msgstr "" +msgstr "Analizirajte svojo rabo diska z grafičnim orodjem." #: baobab/src/callbacks.c:107 msgid "" "Copyright © 2005-2010 Fabio Marzocca\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Avtorske pravice © 2005-2010 Fabio Marzocca\n" +"Avtorske pravice © 2011-2021 razvijalci MATE" #: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 #: mate-dictionary/src/gdict-about.c:53 @@ -642,20 +648,22 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Krajevno iskanje dokumentov in map po imenu ali vsebini" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" +"MATE;iskanje;poišči;najdi;datoteke;lociraj;dokumenti;mape;računalnik;ime;vsebina;išči;orodje;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -687,13 +695,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Ključ določa poti, ki jih bo orodje za iskanje izločilo iz hitrega iskanja. " -"Podprta sta nadomestna znaka '*' in '?'. Privzete vrednosti so /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/* in /var/*." +"Podprta sta nadomestna znaka '*' in '?'. Privzete vrednosti so /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/* in /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -716,8 +724,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Ključ določa poti, ki jih bo orodje za iskanje izločilo iz drugega " "preiskovanja pri opravljanju hitrega iskanja. Drugo preiskovanje uporablja " @@ -742,9 +750,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Ključ določa širino okna in se uporablja, da ostane velikost orodja za " "iskanje enaka med sejami. Če jo nastavite na -1, bo orodje za iskanje " @@ -757,8 +765,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Ključ določa višino okna in se uporablja, da ostane velikost orodja za " "iskanje enaka med sejami. Če jo nastavite na -1, bo orodje za iskanje " @@ -795,8 +803,8 @@ "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"Ključ določa, ali naj bo vključena možnost iskanja \"Datum spremembe, mlajši " -"kot\", ko je zagnano orodje za iskanje." +"Ključ določa, ali naj bo vključena možnost iskanja \"Datum spremembe, mlajši" +" kot\", ko je zagnano orodje za iskanje." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" @@ -835,13 +843,13 @@ "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"Ključ določa, ali naj bo vključena možnost iskanja \"Lastnik je uporabnik\", " -"ko je zagnano orodje za iskanje." +"Ključ določa, ali naj bo vključena možnost iskanja \"Lastnik je uporabnik\"," +" ko je zagnano orodje za iskanje." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Ključ določa, ali naj bo vključena možnost iskanja \"Lastnik je skupina\", " "ko je zagnano orodje za iskanje." @@ -851,21 +859,21 @@ "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"Ključ določa, ali naj bo vključena možnost iskanja \"Lastnik ni prepoznan\", " -"ko je zagnano orodje za iskanje." +"Ključ določa, ali naj bo vključena možnost iskanja \"Lastnik ni prepoznan\"," +" ko je zagnano orodje za iskanje." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"Ključ določa, ali naj bo vključena možnost iskanja \"Ime ne vsebuje\", ko je " -"zagnano orodje za iskanje." +"Ključ določa, ali naj bo vključena možnost iskanja \"Ime ne vsebuje\", ko je" +" zagnano orodje za iskanje." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Ključ določa, ali naj bo vključena možnost iskanja \"Ime ustreza logičnemu " "izrazu\", ko je zagnano orodje za iskanje." @@ -894,63 +902,63 @@ "Ključ določa, ali naj bo omogočena možnost iskanja \"Izključi druge " "datotečne sisteme\", ko je zagnano orodje za iskanje." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Datoteka ni veljavna .datoteka namizja" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Neprepoznana različica datoteke namizja '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Začenjanje %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Program ne sprejme dokumentov v ukazni vrstici" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Neprepoznana možnost zagona: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" "Ni mogoče poslati naslovov URI dokumenta na vnos namizja 'Vrsta=Povezava'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Predmet ni izvedljiv" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Onemogoči povezavo z upravljalnikom seje" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Navaja datoteko s shranjenimi nastavitvami" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "DATOTEKA" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Določi ID upravljanja seje" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Možnosti upravljanja seje:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Pokaži možnosti upravljanja seje" @@ -1332,20 +1340,20 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Ali ste prepričani, da želite odpreti %d dokument?" +msgstr[1] "Ali ste prepričani, da želite odpreti %d dokumenta?" +msgstr[2] "Ali ste prepričani, da želite odpreti %d dokumente?" +msgstr[3] "Ali ste prepričani, da želite odpreti %d dokumentov?" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "To bo odprlo %d ločeno okno." +msgstr[1] "To bo odprlo %d ločeni okni." +msgstr[2] "To bo odprlo %d ločena okna." +msgstr[3] "To bo odprlo %d ločenih oken." #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1369,10 +1377,10 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Ali ste prepričani, da želite odpreti %d mapo?" +msgstr[1] "Ali ste prepričani, da želite odpreti %d mapi?" +msgstr[2] "Ali ste prepričani, da želite odpreti %d mape?" +msgstr[3] "Ali ste prepričani, da želite odpreti %d map?" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1429,7 +1437,7 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1310 msgid "Copy _Path" -msgstr "" +msgstr "Kopiraj _pot" #: gsearchtool/src/gsearchtool-callbacks.c:1344 msgid "_Save Results As..." @@ -1576,7 +1584,8 @@ msgid "View or monitor system log files" msgstr "Pregledovanje ali nadzor sistemskih dnevniških datotek" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1587,11 +1596,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Določa dnevniško datoteko, ki se odpre ob zagonu. Privzeto je ali /var/adm/" -"messages ali /var/log/messages, odvisno od vašega operacijskega sistema." +"Določa dnevniško datoteko, ki se odpre ob zagonu. Privzeto je ali " +"/var/adm/messages ali /var/log/messages, odvisno od vašega operacijskega " +"sistema." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1766,7 +1776,7 @@ #: logview/src/logview-loglist.c:103 msgid "%A, %e %b" -msgstr "" +msgstr "%A, %e %b" #: logview/src/logview-loglist.c:314 msgid "Loading..." @@ -1779,6 +1789,9 @@ "Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n" "Copyright (C) 2011-2021 MATE developers.\n" msgstr "" +"%s – različica %s\n" +"Avtorske pravice (C) 2004-2008 Vincent Noel, Cosimo Cecchi in drugi.\n" +"Avtorske pravice (C) 2011-2021 razvijalci MATE.\n" #: logview/src/logview-main.c:64 msgid "Show the application's version" @@ -1839,6 +1852,8 @@ "Copyright © 1998-2008 Free Software Foundation, Inc.\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Avtorske pravice © 1998-2008 Free Software Foundation, Inc.\n" +"Avtorske pravice © 2011-2021 razvijalci MATE" #: logview/src/logview-window.c:778 msgid "View, monitor or analyze your system logs in a gradual manner." @@ -1995,10 +2010,12 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Preverite razlago in črkovanje besede v spletnem slovarju" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" +"MATE;slovar;aplet;tezaver;črkovanje;definicije;razlage;gesla;spletni;splet;sopomenke;" #: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 msgid "A dictionary for MATE Desktop" @@ -2007,18 +2024,18 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 msgid "Dictionary Applet Factory" -msgstr "" +msgstr "Tovarna apleta slovarja" #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:6 msgid "Factory for the dictionary applet" -msgstr "" +msgstr "Tovarna slovarskega apleta" #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:9 msgid "Dictionary Look up" @@ -2353,7 +2370,8 @@ #, c-format msgid "" "Unable to get the '%s' key inside the dictionary source definition file: %s" -msgstr "Ni mogoče najti ključa '%s' znotraj datoteke razlage vira slovarja: %s" +msgstr "" +"Ni mogoče najti ključa '%s' znotraj datoteke razlage vira slovarja: %s" #: mate-dictionary/libgdict/gdict-source.c:736 msgid "Dictionary source does not have name" @@ -2431,7 +2449,7 @@ #: mate-dictionary/src/gdict-about.c:54 msgid "Look up words or terms in a dictionary source." -msgstr "" +msgstr "Poiščite besede v slovarskem viru." #: mate-dictionary/src/gdict-about.c:82 mate-dictionary/src/gdict-app.c:363 #: mate-dictionary/src/gdict-window.c:580 @@ -2441,13 +2459,15 @@ #: mate-dictionary/src/gdict-about.c:84 msgid "About Dictionary" -msgstr "" +msgstr "O programu Slovar" #: mate-dictionary/src/gdict-about.c:85 msgid "" "Copyright © 2005-2006 Emmanuele Bassi\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Avtorske pravice © 2005-2006 Emmanuele Bassi\n" +"Avtorske pravice © 2011-2021 razvijalci MATE" #. Translators: the first is the word found, the second is the #. * database name and the last is the definition's text; please @@ -2953,11 +2973,11 @@ #: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:3 #: mate-disk-image-mounter/src/main.c:62 msgid "MATE Disk Image Mounter" -msgstr "" +msgstr "Priklopnik slik diska MATE" #: mate-disk-image-mounter/data/mate-disk-image-mounter.desktop.in:4 msgid "Attach and mount one or more disk image files" -msgstr "" +msgstr "Pripnite in priklopite eno ali več slik diskov" #: mate-disk-image-mounter/src/main.c:60 msgid "An error occurred" @@ -2965,7 +2985,7 @@ #: mate-disk-image-mounter/src/main.c:81 msgid "Allow writing to the image" -msgstr "" +msgstr "Dovoli pisanje na sliko" #: mate-disk-image-mounter/src/main.c:101 msgid "All Files" @@ -2973,11 +2993,11 @@ #: mate-disk-image-mounter/src/main.c:105 msgid "Disk Images (*.img, *.iso)" -msgstr "" +msgstr "Slike diska (*.img, *.iso)" #: mate-disk-image-mounter/src/main.c:121 msgid "Select Disk Image(s) to Mount" -msgstr "" +msgstr "Izberite slike diskov za priklop" #: mate-disk-image-mounter/src/main.c:125 msgid "_Mount" @@ -2985,7 +3005,7 @@ #: mate-disk-image-mounter/src/main.c:131 msgid "Set up _read-only mount" -msgstr "" +msgstr "Nastavi priklop samo za b_ranje" #: mate-disk-image-mounter/src/main.c:132 msgid "" @@ -3000,26 +3020,26 @@ #: mate-disk-image-mounter/src/main.c:186 msgid "Attach and mount one or more disk image files." -msgstr "" +msgstr "Pripnite in priklopite eno ali več datotek slik diskov." #: mate-disk-image-mounter/src/main.c:234 #, c-format msgid "Cannot open `%s' - maybe the volume isn't mounted?" -msgstr "" +msgstr "Ni mogoče odpreti »%s« - morda logična enota ni priklopljena?" #: mate-disk-image-mounter/src/main.c:241 #, c-format msgid "Error opening `%s': %m" -msgstr "" +msgstr "Napaka pri odpiranju »%s«: %m" #: mate-disk-image-mounter/src/main.c:262 #, c-format msgid "Error attaching disk image: %s (%s, %d)" -msgstr "" +msgstr "Napaka pri pripenjanju slike diska: %s (%s, %d)" #: mate-screenshot/data/mate-screenshot.appdata.xml.in:7 msgid "MATE Screenshot" -msgstr "" +msgstr "Zajem slik MATE" #: mate-screenshot/data/mate-screenshot.appdata.xml.in:8 msgid "A screenshot utility for MATE Desktop" @@ -3032,6 +3052,10 @@ "system clipboard or save them in Portable Network Graphics (.png) image " "format." msgstr "" +"Zajem slik MATE (angl. MATE Screenshot) je enostavno orodje za zajem " +"zaslonskih slik vašega namizja oz. programskih oken. Izberete lahko, da jih " +"kopirate na odložišče sistema ali jih shranite v zapisu slik Portable " +"Network Graphics (.png)." #: mate-screenshot/data/mate-screenshot.desktop.in:3 #: mate-screenshot/src/mate-screenshot.c:519 @@ -3043,7 +3067,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Shranite slike namizja ali posameznih oken" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3240,9 +3265,11 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" +"Možnosti v sporu: zastavic --clipboard in --interactive ni mogoče " +"uporabljati sočasno.\n" #: mate-screenshot/src/mate-screenshot.c:1363 msgid "" @@ -3260,6 +3287,10 @@ "\n" "Please check your installation of mate-utils." msgstr "" +"Napaka pri nalaganju datoteke z določilom uporabniškega vmesnika za program zajemanja zaslonske slike:\n" +"%s\n" +"\n" +"Preverite namestitev mate-utils." #: mate-screenshot/src/screenshot-dialog.c:233 msgid "Select a folder" @@ -3284,8 +3315,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"Podrejeno opravilo shranjevanja se je nepričakovano končalo. Zaslonske slike " -"ni mogoče zapisati na disk." +"Podrejeno opravilo shranjevanja se je nepričakovano končalo. Zaslonske slike" +" ni mogoče zapisati na disk." #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/sq.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/sq.gmo differ diff -Nru mate-utils-1.26.0/po/sq.po mate-utils-1.26.1/po/sq.po --- mate-utils-1.26.0/po/sq.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/sq.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,26 +2,26 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Alban , 2018 -# Indrit Bashkimi , 2018 -# Ardit Dani , 2019 -# Stefano Karapetsas , 2019 -# oltjano , 2019 -# +# oltjano , 2021 +# Stefano Karapetsas , 2021 +# Alban , 2021 +# Ardit Dani , 2021 +# Indrit Bashkimi , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: oltjano , 2019\n" -"Language-Team: Albanian (https://www.transifex.com/mate/teams/13566/sq/)\n" -"Language: sq\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Indrit Bashkimi , 2021\n" +"Language-Team: Albanian (https://app.transifex.com/mate/teams/13566/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -33,7 +33,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -217,8 +218,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -569,8 +570,8 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"Ky program është software i lirë; mund ta rishpërndani apo/dhe ndryshoni nën " -"kushtet e Liçencës Publike të Përgjithshme GNU sikurse publikuar nga " +"Ky program është software i lirë; mund ta rishpërndani apo/dhe ndryshoni nën" +" kushtet e Liçencës Publike të Përgjithshme GNU sikurse publikuar nga " "Fondacioni Free Software; duke zgjedhur midis versionit 2 të Liçencës, ose " "(sipas dëshirës suaj) çdo versioni tjetër të mëvonshëm. " @@ -590,8 +591,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -612,6 +613,7 @@ #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" msgstr "" +"Ardit Dani \n" "Elian Myftiu \n" "Indrit Bashkimi \n" "Laurent Dhima " @@ -638,9 +640,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -648,7 +650,8 @@ msgstr "" "Gjej dokumenta dhe dosje në këtë kompjuter me anë të emrit apo përmbajtjes" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -684,9 +687,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Ky kyç përcakton pozicionet që instrumenti i kërkimit do të përjashtojë nga " "kërkimi i shpejtë. Fjalëkyçet '*' dhe '?' suportohen. Vlerat e prezgjedhura " @@ -713,8 +716,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Ky kyç përcakton pozicionet që instrumenti i kërkimit do të përjashtojë nga " "kërkimi i dytë kur kryhet një kërkim i shpejtë. Skanimi i dytë përdor " @@ -738,9 +741,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -750,8 +753,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -800,16 +803,16 @@ "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"Ky kyç përcakton nëse duhet zgjedhur opcioni i kërkimit \"Madhësia të paktën" -"\" kur niset instrumenti i kërkimit." +"Ky kyç përcakton nëse duhet zgjedhur opcioni i kërkimit \"Madhësia të " +"paktën\" kur niset instrumenti i kërkimit." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"Ky kyç përcakton nëse duhet zgjedhur opcioni i kërkimit \"Madhësia maksimum" -"\" kur niset instrumenti i kërkimit." +"Ky kyç përcakton nëse duhet zgjedhur opcioni i kërkimit \"Madhësia " +"maksimum\" kur niset instrumenti i kërkimit." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" @@ -824,13 +827,13 @@ "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"Ky kyç përcakton nëse duhet zgjedhur opcioni i kërkimit \"I takon përdoruesit" -"\" kur niset instrumenti i kërkimit." +"Ky kyç përcakton nëse duhet zgjedhur opcioni i kërkimit \"I takon " +"përdoruesit\" kur niset instrumenti i kërkimit." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Ky kyç përcakton nëse duhet zgjedhur opcioni i kërkimit \"I takon grupit\" " "kur niset instrumenti i kërkimit." @@ -840,21 +843,21 @@ "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"Ky kyç përcakton nëse duhet zgjedhur opcioni i kërkimit \"Pronari nuk njihet" -"\" kur niset instrumenti i kërkimit." +"Ky kyç përcakton nëse duhet zgjedhur opcioni i kërkimit \"Pronari nuk " +"njihet\" kur niset instrumenti i kërkimit." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"Ky kyç përcakton nëse duhet zgjedhur opcioni i kërkimit \"Emri nuk përmban\" " -"kur niset instrumenti i kërkimit." +"Ky kyç përcakton nëse duhet zgjedhur opcioni i kërkimit \"Emri nuk përmban\"" +" kur niset instrumenti i kërkimit." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Ky kyç përcakton nëse duhet zgjedhur opcioni i kërkimit \"Emri korrispondon " "me shprehjen e rregullt\" kur niset instrumenti i kërkimit." @@ -881,62 +884,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Skedari nuk është një skedar .desktop i vlefshëm" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Version i pasaktë file desktop '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Fillo %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Aplikacioni nuk pranon dokumente në rreshtin e komandës" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Opsion i pasaktë nisje: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Nuk mund t'i kalohen URL-të e dokumenteve hyres desktopi 'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Nuk është një element i ekzekutueshëm" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Çaktivizo lidhjen me menaxhuesin e seancës" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Specifikon dokumentin që përmban konfiurimin e ruajtur" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "SKEDAR" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Specifiko ID e menaxhuesit të seancës" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opsionet e menaxhimit të seancës:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Shfaq opsionet e menaxhimit të seancës" @@ -1277,7 +1280,8 @@ #: gsearchtool/src/gsearchtool.c:2885 msgid "Click to expand or collapse the list of available options." -msgstr "Kliko për të shpalosur apo mbledhur listën me opcionet në dispozicion." +msgstr "" +"Kliko për të shpalosur apo mbledhur listën me opcionet në dispozicion." #: gsearchtool/src/gsearchtool.c:2916 msgid "Click to display the help manual." @@ -1552,7 +1556,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1563,8 +1568,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1962,7 +1967,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1974,8 +1980,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2601,7 +2607,7 @@ #: mate-dictionary/src/gdict-applet.c:1170 msgid "Preferences" -msgstr "Parapëlqimet" +msgstr "Preferencë" #: mate-dictionary/src/gdict-common.c:77 #, c-format @@ -2989,7 +2995,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3181,8 +3188,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/sr.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/sr.gmo differ Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/sr@latin.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/sr@latin.gmo differ diff -Nru mate-utils-1.26.0/po/sr@latin.po mate-utils-1.26.1/po/sr@latin.po --- mate-utils-1.26.0/po/sr@latin.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/sr@latin.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,26 +2,24 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Ivan Pejić , 2018 +# Ivan Pejić , 2021 # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/mate/teams/13566/" -"sr@latin/)\n" -"Language: sr@latin\n" +"Language-Team: Serbian (Latin) (https://app.transifex.com/mate/teams/13566/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -32,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "Proveri veličine direktorijuma i slobodni prostor na disku" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -216,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -322,7 +321,8 @@ #: baobab/src/baobab.c:1276 msgid "Without mount points disk usage cannot be analyzed." -msgstr "Bez mesta kačenja, zauzeće prostora na disku ne može biti analizirano." +msgstr "" +"Bez mesta kačenja, zauzeće prostora na disku ne može biti analizirano." #: baobab/src/baobab-chart.c:204 msgid "Maximum depth" @@ -573,8 +573,8 @@ msgstr "" "Ovaj program je slobodan; možete ga raspodeljivati i/ili menjati pod " "uslovima GNU Opšte Javne Licence (GNU GPL) kako je objavljuje Zadužbina za " -"Slobodni Softver (FSF); bilo verzije 2 te Licence, bilo (po vašem nahođenju) " -"bilo koje novije verzije." +"Slobodni Softver (FSF); bilo verzije 2 te Licence, bilo (po vašem nahođenju)" +" bilo koje novije verzije." #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -591,8 +591,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -639,9 +639,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -649,7 +649,8 @@ msgstr "" "Pronaći dokumente ili direktorijume na računaru pomiću imena ili sadržaja" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -685,13 +686,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Ovaj ključ određuje putanje koje će alat za pretragu izbaciti iz brze " -"pretrage. Zamene „*“ i „?“ su podržane. Podrazumevane vrednosti su /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, i /var/*." +"pretrage. Zamene „*“ i „?“ su podržane. Podrazumevane vrednosti su /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, i /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -714,8 +715,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Ovaj ključ određuje putanje koje će alat za pretragu izbaciti iz drugog " "pregleda brze pretrage. Drugi pregled koristi naredbu „find“ za traženje, i " @@ -740,9 +741,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Ovaj ključ određuje širinu prozora i koristi se za pamćenje veličine alata " "za pretragu između sesija. Postavljanjem vrednosti na „-1“ znači da alat za " @@ -755,8 +756,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Ovaj ključ određuje visinu prozora i koristi se za pamćenje veličine alata " "za pretragu između sesija. Postavljanjem vrednosti na „-1“ znači da alat za " @@ -779,7 +780,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 msgid "This key defines the default value of the \"Look in Folder\" widget." -msgstr "Ovaj ključ određuje podrazumevanu vrednost elementa „traži u fascikli“" +msgstr "" +"Ovaj ključ određuje podrazumevanu vrednost elementa „traži u fascikli“" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 msgid "" @@ -794,8 +796,8 @@ "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"Ovaj ključ određuj da li je pravilo „Datum izmene je manje od“ izabrano kada " -"se pokrene alat za pretragu." +"Ovaj ključ određuj da li je pravilo „Datum izmene je manje od“ izabrano kada" +" se pokrene alat za pretragu." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" @@ -839,11 +841,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"Ovaj ključ određuj da li je pravilo „U vlasništvu je grupe“ izabrano kada se " -"pokrene alat za pretragu." +"Ovaj ključ određuj da li je pravilo „U vlasništvu je grupe“ izabrano kada se" +" pokrene alat za pretragu." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" @@ -858,13 +860,13 @@ "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"Ovaj ključ određuj da li je pravilo „Ime ne sadrži“ izabrano kada se pokrene " -"alat za pretragu." +"Ovaj ključ određuj da li je pravilo „Ime ne sadrži“ izabrano kada se pokrene" +" alat za pretragu." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Ovaj ključ određuj da li je pravilo „Ime odgovara regularnom izrazu“ " "izabrano kada se pokrene alat za pretragu." @@ -882,8 +884,8 @@ "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"Ovaj ključ određuj da li je pravilo „Prati simboličke veze“ izabrano kada se " -"pokrene alat za pretragu." +"Ovaj ključ određuj da li je pravilo „Prati simboličke veze“ izabrano kada se" +" pokrene alat za pretragu." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" @@ -893,62 +895,62 @@ "Ovaj ključ određuj da li je pravilo „Iskljiči ostale sisteme datoteka“ " "izabrano kada se pokrene alat za pretragu." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Nije ispravna .desktop datoteka" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Nepoznato izdanje desktop datoteke „%s“" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Pokreće se %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Program ne prihvata dokumente iz komandne linije" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Nepoznata opcija pri pokretanju: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Ne mogu da prosledim adresu dokumenta u unos „Type=Adresa“" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Ovaj tip je nemoguće pokrenuti" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Onemogući vezu sa upravniko sesije" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Odredite datoteku koja sadrži sačuvana podešavanja" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "DATOTEKA" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Odredite IB upravnika sesijom" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "IB" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Opcije upravnika sesijom:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Prikaži opcije upravnika sesijom" @@ -1449,7 +1451,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "If you replace an existing file, its contents will be overwritten." -msgstr "Ukoliko zamenite postojeću datoteku, njen sadržaj će biti presnimljen." +msgstr "" +"Ukoliko zamenite postojeću datoteku, njen sadržaj će biti presnimljen." #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 @@ -1566,7 +1569,8 @@ msgid "View or monitor system log files" msgstr "Razgleda ili pratiti sistemske dnevike" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1577,12 +1581,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Određuje datoteku dnevnika koja se otvara prilikom pokretanja. Podrazumevana " -"je ili /var/adm/messages ili /var/log/messages, zavisno od vašeg operativnog " -"sistema." +"Određuje datoteku dnevnika koja se otvara prilikom pokretanja. Podrazumevana" +" je ili /var/adm/messages ili /var/log/messages, zavisno od vašeg " +"operativnog sistema." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1610,7 +1614,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:21 msgid "Specifies the width of the log viewer main window in pixels." -msgstr "Zadaje širinu glavnog prozora preglednika dnevnika izraženu u tačkama." +msgstr "" +"Zadaje širinu glavnog prozora preglednika dnevnika izraženu u tačkama." #: logview/data/org.mate.system-log.gschema.xml.in:25 msgid "Log files to open up on startup" @@ -1738,7 +1743,8 @@ #: logview/src/logview-log.c:589 msgid "Error while uncompressing the GZipped log. The file might be corrupt." -msgstr "Greška prilikom otpakovanja Gzip dnevnika. Možda je oštećena datoteka." +msgstr "" +"Greška prilikom otpakovanja Gzip dnevnika. Možda je oštećena datoteka." #: logview/src/logview-log.c:635 msgid "You don't have enough permissions to read the file." @@ -1983,7 +1989,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Proverite značenje reči i spelovanje u rečniku na internetu" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1995,8 +2002,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2866,7 +2873,8 @@ #: mate-dictionary/src/gdict-window.c:1484 msgid "Double-click on the matching strategy to use" -msgstr "Dvaput kliknite na strategiju koja se poklapa i želite da je koristite" +msgstr "" +"Dvaput kliknite na strategiju koja se poklapa i želite da je koristite" #: mate-dictionary/src/gdict-window.c:1489 msgid "Double-click on the source to use" @@ -3030,7 +3038,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Sačuvaj slike desktopa ili pojedinačnih prozora" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3088,8 +3097,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Efekat koji se dodaje sa spoljne strane ivice. Moguće je izabrati \"senka\", " -"\"ništa\", i \"ivica\"." +"Efekat koji se dodaje sa spoljne strane ivice. Moguće je izabrati \"senka\"," +" \"ništa\", i \"ivica\"." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3227,8 +3236,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 diff -Nru mate-utils-1.26.0/po/sr.po mate-utils-1.26.1/po/sr.po --- mate-utils-1.26.0/po/sr.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/sr.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,26 +2,25 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Alert Aleksandar, 2018 -# Stefano Karapetsas , 2019 +# Stefano Karapetsas , 2021 +# Alert Aleksandar, 2021 # Мирослав Николић , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Мирослав Николић , 2021\n" -"Language-Team: Serbian (https://www.transifex.com/mate/teams/13566/sr/)\n" -"Language: sr\n" +"Language-Team: Serbian (https://app.transifex.com/mate/teams/13566/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -32,7 +31,8 @@ msgid "Check folder sizes and available disk space" msgstr "Проверите величине фасцикли и слободан простор на диску" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "Мејт;провери;диск;коришћење;анализирај;величина;простор;" @@ -85,7 +85,7 @@ #: baobab/data/baobab-main-window.ui:74 logview/src/logview-window.c:822 #: mate-dictionary/src/gdict-window.c:1259 msgid "_Edit" -msgstr "_Уреди" +msgstr "_Уређивање" #: baobab/data/baobab-main-window.ui:80 msgid "_Expand All" @@ -216,8 +216,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" "Као што његов назив говори, Испитивач искоришћености диска је графичко " @@ -294,11 +294,11 @@ #: baobab/src/baobab.c:917 msgid "Zoom in" -msgstr "Увећава" +msgstr "Увећајте" #: baobab/src/baobab.c:921 msgid "Zoom out" -msgstr "Умањује" +msgstr "Умањите" #: baobab/src/baobab.c:925 msgid "Save screenshot" @@ -306,11 +306,11 @@ #: baobab/src/baobab.c:1111 msgid "View as Rings Chart" -msgstr "Приказује прстенове" +msgstr "Прикажи прстенове" #: baobab/src/baobab.c:1113 msgid "View as Treemap Chart" -msgstr "Приказује стабло" +msgstr "Прикажи графиконе" #: baobab/src/baobab.c:1224 msgid "Show version" @@ -501,7 +501,7 @@ #: baobab/src/baobab-treeview.c:244 msgid "Usage" -msgstr "Употреба" +msgstr "Коришћење" #: baobab/src/baobab-treeview.c:258 gsearchtool/src/gsearchtool.c:2466 msgid "Size" @@ -570,7 +570,7 @@ #: baobab/src/callbacks.c:74 logview/src/logview-about.h:44 #: mate-dictionary/src/gdict-about.c:49 msgid "MATE Documentation Team" -msgstr "Тим документације Гнома" +msgstr "Тим Мејтове документације" #: baobab/src/callbacks.c:79 logview/src/logview-about.h:49 #: mate-dictionary/src/gdict-about.c:57 @@ -601,11 +601,11 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" -"Требали сте да примите примерак Гнуове опште јавне лиценце уз овај програм. " -"Ако нисте, погледајте ." +"Требали сте да примите примерак Гнуове опште јавне лиценце уз овај програм." +" Ако нисте, погледајте ." #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" @@ -626,7 +626,10 @@ #: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" -msgstr "Мирослав Николић " +msgstr "" +"Мирослав Николић ; 2012—2021.\n" +"\n" +"http://prevod.org — превод на српски језик." #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -650,9 +653,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" "Мејтов алат претраге је једноставан али једноставан програмчић који вам " "омогућава да тражите датотеке и фасцикле на сваком прикаченом систему " @@ -665,13 +668,13 @@ msgstr "" "Пронађите документа и фасцикле на овом рачунару према називу или садржају" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" -"Мејт;тражи;датотеке;лоцирај;документа;фасцикле;рачунар;назив;садржај;нађи;" -"алат;" +"Мејт;тражи;датотеке;лоцирај;документа;фасцикле;рачунар;назив;садржај;нађи;алат;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -683,11 +686,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:10 msgid "Show Additional Options" -msgstr "Приказује додатне могућности" +msgstr "Приказивање додатних опција" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:14 msgid "Disable Quick Search" -msgstr "Искључује брзу претрагу" +msgstr "Искључивање брзе претраге" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:15 msgid "" @@ -699,21 +702,21 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" -msgstr "Искључене путање из брзе претраге" +msgstr "Искључивање путања из брзе претраге" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Овај кључ одређује путање које ће алат за претрагу избацити из брзе " -"претраге. Замене „*“ и „?“ су подржане. Основне вредности су „/mnt/*“, „/" -"media/*“, „/dev/*“, „/tmp/*“, „/proc/*“, и „/var/*“." +"претраге. Замене „*“ и „?“ су подржане. Основне вредности су „/mnt/*“, " +"„/media/*“, „/dev/*“, „/tmp/*“, „/proc/*“, и „/var/*“." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" -msgstr "Искључује други преглед брзе претраге" +msgstr "Искључивање другог прегледа брзе претраге" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:25 msgid "" @@ -725,15 +728,15 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" -msgstr "Искључене путање из другог прегледа брзе претраге" +msgstr "Искључивање путања из другог прегледа брзе претраге" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:30 msgid "" "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Овај кључ одређује путање које ће алат за претрагу избацити из другог " "прегледа брзе претраге. Други преглед користи наредбу „find“ за тражење, и " @@ -758,9 +761,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Овај кључ одређује ширину прозора и користи се за памћење величине алата за " "претрагу између сесија. Постављањем вредности на „-1“ значи да алат за " @@ -773,8 +776,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Овај кључ одређује висину прозора и користи се за памћење величине алата за " "претрагу између сесија. Постављањем вредности на „-1“ значи да алат за " @@ -852,13 +855,13 @@ "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"Овај кључ одређуј да ли је правило „У власништву корисника“ изабрано када се " -"покрене алат за претрагу." +"Овај кључ одређуј да ли је правило „У власништву корисника“ изабрано када се" +" покрене алат за претрагу." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Овај кључ одређуј да ли је правило „У власништву групе“ изабрано када се " "покрене алат за претрагу." @@ -881,8 +884,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Овај кључ одређуј да ли је правило „Назив одговара регуларном изразу“ " "изабрано када се покрене алат за претрагу." @@ -911,64 +914,64 @@ "Овај кључ одређуј да ли је правило „Искљичи остале системе датотека“ " "изабрано када се покрене алат за претрагу." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Ово није исправна „.desktop“ датотека" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Непозната датотека радне површи издање „%s“" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Покрећем „%s“" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" -msgstr "Програм не прихвата документе из линије наредби" +msgstr "Програм не прихвата документа из линије наредби" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Непозната опција покретања: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Не могу да проследим адресе докумената на „Type=Link“ унос" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Није ставка за покретање" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Искључује везу са управником сесије" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Наводи датотеку која садржи сачувана подешавања" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ДАТОТЕКА" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Наводи ИБ управника сесије" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ИБ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" -msgstr "Могућности управљања сесијом:" +msgstr "Опције управљања сесијом:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" -msgstr "Приказује могућности управљања сесијом" +msgstr "Приказује опције управљања сесијом" #: gsearchtool/src/gsearchtool.c:82 msgid "Contains the _text" @@ -984,7 +987,7 @@ #: gsearchtool/src/gsearchtool.c:85 msgid "Date modified more than" -msgstr "Измењено пре више од" +msgstr "Измењене пре више од" #: gsearchtool/src/gsearchtool.c:87 msgid "S_ize at least" @@ -1105,17 +1108,17 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "Нашао сам %'d датотеку" -msgstr[1] "Нашао сам %'d датотеке" -msgstr[2] "Нашао сам %'d датотека" +msgstr[0] "Нађох %'d датотеку" +msgstr[1] "Нађох %'d датотеке" +msgstr[2] "Нађох %'d датотека" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "нашао сам %'d датотеку" -msgstr[1] "нашао сам %'d датотеке" -msgstr[2] "нашао сам %'d датотека" +msgstr[0] "Нашао сам %'d датотеку" +msgstr[1] "Нашао сам %'d датотеке" +msgstr[2] "Нашао сам %'d датотека" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1343,9 +1346,9 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Сигурно желите да отворите %d документ?" -msgstr[1] "Сигурно желите да отворите %d документа?" -msgstr[2] "Сигурно желите да отворите %d докумената?" +msgstr[0] "Да ли сигурно желите да отворите %d документ?" +msgstr[1] "Да ли сигурно желите да отворите %d документа?" +msgstr[2] "Да ли сигурно желите да отворите %d докумената?" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 @@ -1378,9 +1381,9 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Сигурно желите да отворите %d фасциклу?" -msgstr[1] "Сигурно желите да отворите %d фасцикле?" -msgstr[2] "Сигурно желите да отворите %d фасцикли?" +msgstr[0] "Да ли сигурно желите да отворите %d фасциклу?" +msgstr[1] "Да ли сигурно желите да отворите %d фасцикле?" +msgstr[2] "Да ли сигурно желите да отворите %d фасцикли?" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1584,7 +1587,8 @@ msgid "View or monitor system log files" msgstr "Разгледајте или пратите системске дневике" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "Мејт;монитор;преглед;систем;дневник;датотеке;прегледач дневника;" @@ -1595,8 +1599,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "Одређује датотеку дневника коју треба отворити приликом покретања. Основна " "је или „/var/adm/messages“ или „/var/log/messages“, зависно од вашег " @@ -1756,7 +1760,8 @@ #: logview/src/logview-log.c:589 msgid "Error while uncompressing the GZipped log. The file might be corrupt." -msgstr "Грешка приликом распакивања Гзип дневника. Можда је оштећена датотека." +msgstr "" +"Грешка приликом распакивања Гзип дневника. Можда је оштећена датотека." #: logview/src/logview-log.c:635 msgid "You don't have enough permissions to read the file." @@ -1768,7 +1773,8 @@ #: logview/src/logview-log.c:743 msgid "This version of System Log does not support GZipped logs." -msgstr "Ово издање системског дневника не подржава дневнике запаковане Гзипом." +msgstr "" +"Ово издање системског дневника не подржава дневнике запаковане Гзипом." #: logview/src/logview-loglist.c:103 msgid "%A, %e %b" @@ -2008,7 +2014,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Проверите значење речи и срицање у речнику на интернету" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "Мејт;речник;програмче;фонд;срицање;одреднице;на мрежи;" @@ -2020,8 +2027,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" "Мејтов речник вам омогућава тражење речи у речницима на мрежи. Долази " @@ -2055,9 +2062,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"Назив појединачне или мета базе података која се користи на серверу речника. " -"Узвичник „!“ означава да би требало претражити све базе података садржане у " -"извору речи." +"Назив појединачне или мета базе података која се користи на серверу речника." +" Узвичник „!“ означава да би требало претражити све базе података садржане у" +" извору речи." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2157,8 +2164,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"Не могу да се повежем на сервер речника „%s:%d“. Одговор сервера је " -"„%d“ (сервер је оборен)" +"Не могу да се повежем на сервер речника „%s:%d“. Одговор сервера је „%d“ " +"(сервер је оборен)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2371,7 +2378,8 @@ #, c-format msgid "" "Unable to get the '%s' key inside the dictionary source definition file: %s" -msgstr "Не могу да добавим кључ „%s“ унутар датотеке одреднице извора речи: %s" +msgstr "" +"Не могу да добавим кључ „%s“ унутар датотеке одреднице извора речи: %s" #: mate-dictionary/libgdict/gdict-source.c:736 msgid "Dictionary source does not have name" @@ -3011,8 +3019,8 @@ "If checked, the mount will be read-only. This is useful if you don't want " "the underlying disk image to be modified" msgstr "" -"Ако је изабрано, качење ће бити само за читање. Ово је корисно ако не желите " -"да основни одраз диска буде измењен" +"Ако је изабрано, качење ће бити само за читање. Ово је корисно ако не желите" +" да основни одраз диска буде измењен" #: mate-disk-image-mounter/src/main.c:178 #, c-format @@ -3054,9 +3062,9 @@ "format." msgstr "" "Мејтов Снимач екрана је једноставно помагало које вам омогућава прављење " -"снимака екрана ваше радне површи или прозора програма. Можете изабрати да их " -"умножите у системску оставу или да их сачувате у запис слике Преносне мрежне " -"графике (.png) ." +"снимака екрана ваше радне површи или прозора програма. Можете изабрати да их" +" умножите у системску оставу или да их сачувате у запис слике Преносне " +"мрежне графике (.png) ." #: mate-screenshot/data/mate-screenshot.desktop.in:3 #: mate-screenshot/src/mate-screenshot.c:519 @@ -3068,7 +3076,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Сачувајте слике радне површи или појединачних прозора" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "Мејт;снимак екрана;радна површ;прозор;слика;" @@ -3126,8 +3135,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Дејство које се додаје са спољне стране ивице. Могуће вредности су " -"„shadow“ (сенка), „none“ (ништа), и „border“ (ивица)." +"Дејство које се додаје са спољне стране ивице. Могуће вредности су „shadow“ " +"(сенка), „none“ (ништа), и „border“ (ивица)." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3265,8 +3274,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Сукобљене опције: „--clipboard“ и „--interactive“ се не могу користити у " "исто време.\n" @@ -3286,15 +3295,14 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Грешка учитавања датотеке одреднице корисничког сучеља за програм снимка " -"екрана: \n" +"Грешка учитавања датотеке одреднице корисничког сучеља за програм снимка екрана: \n" "%s\n" "\n" "Проверите инсталацију пакета „mate-utils“." #: mate-screenshot/src/screenshot-dialog.c:233 msgid "Select a folder" -msgstr "Изабери фасциклу" +msgstr "Изаберите фасциклу" #: mate-screenshot/src/screenshot-dialog.c:328 #: mate-screenshot/src/screenshot-save.c:202 diff -Nru mate-utils-1.26.0/po/stamp-po mate-utils-1.26.1/po/stamp-po --- mate-utils-1.26.0/po/stamp-po 2021-08-05 19:45:54.000000000 +0000 +++ mate-utils-1.26.1/po/stamp-po 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -timestamp Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/sv.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/sv.gmo differ diff -Nru mate-utils-1.26.0/po/sv.po mate-utils-1.26.1/po/sv.po --- mate-utils-1.26.0/po/sv.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/sv.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,35 +2,35 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# 6a42dd6e7ca9a813693714b0d9aa1ad8, 2018 -# Patrik Nilsson , 2018 -# Daniel Gullbransen, 2018 -# Claes-Göran Nydahl , 2018 -# Henrik Mattsson-Mårn , 2018 -# cb445fb3dfd1fe3c2b9f58ac5638f478, 2018 -# efef6ec5b435a041fce803c7f8af77d2_2341d43, 2018 -# Kristoffer Grundström , 2018 -# Philip Andersen , 2018 -# 8385e6e60a22e18cd347a1f6e4685fb9, 2019 -# eckeman , 2020 +# Henrik Mattsson-Mårn , 2021 +# eckeman , 2021 +# cb445fb3dfd1fe3c2b9f58ac5638f478, 2021 # Luna Jernberg , 2021 +# Claes-Göran Nydahl , 2021 +# Philip Andersen , 2021 +# Kristoffer Grundström , 2021 +# 6a42dd6e7ca9a813693714b0d9aa1ad8, 2021 # Stefano Karapetsas , 2021 +# Patrik Nilsson , 2021 +# Daniel Gullbransen, 2021 +# efef6ec5b435a041fce803c7f8af77d2_2341d43, 2021 +# 8385e6e60a22e18cd347a1f6e4685fb9, 2021 # Tobias Lekare , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Tobias Lekare , 2021\n" -"Language-Team: Swedish (https://www.transifex.com/mate/teams/13566/sv/)\n" -"Language: sv\n" +"Language-Team: Swedish (https://app.transifex.com/mate/teams/13566/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -42,7 +42,8 @@ msgid "Check folder sizes and available disk space" msgstr "Kontrollera mappstorlekar och tillgängligt diskutrymme" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -227,8 +228,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -279,8 +280,8 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d objekt" -msgstr[1] "%5d objekt" +msgstr[0] "" +msgstr[1] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -581,8 +582,8 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"Detta program är fri programvara. Du kan distribuera det och/eller modifiera " -"det under villkoren i GNU General Public License, publicerad av Free " +"Detta program är fri programvara. Du kan distribuera det och/eller modifiera" +" det under villkoren i GNU General Public License, publicerad av Free " "Software Foundation, antingen version 2 eller (om du så vill) någon senare " "version." @@ -595,15 +596,15 @@ "more details." msgstr "" "Detta program distribueras i hopp om att det ska vara användbart, men UTAN " -"NÅGON SOM HELST GARANTI, även utan underförstådd garanti om SÄLJBARHET eller " -"LÄMPLIGHET FÖR NÅGOT SPECIELLT ÄNDAMÅL. Se GNU General Public License för " +"NÅGON SOM HELST GARANTI, även utan underförstådd garanti om SÄLJBARHET eller" +" LÄMPLIGHET FÖR NÅGOT SPECIELLT ÄNDAMÅL. Se GNU General Public License för " "ytterligare information." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -625,7 +626,7 @@ #: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" -msgstr "Kristoffer Grundström " +msgstr "Kristoffer Grundström " #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -649,9 +650,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -659,7 +660,8 @@ msgstr "" "Lokalisera dokument och mappar på denna dator efter namn eller innehåll" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -695,13 +697,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Denna nyckel anger de sökvägar som sökverktyget kommer att undanta från en " -"snabbsökning. Jokertecknen \"*\" och \"?\" stöds. Standardvärdena är /mnt/" -"*, /media/*, /dev/*, /tmp/*, /proc/* och /var/*." +"snabbsökning. Jokertecknen \"*\" och \"?\" stöds. Standardvärdena är /mnt/*," +" /media/*, /dev/*, /tmp/*, /proc/* och /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -724,14 +726,14 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Denna nyckel anger de sökvägar som sökverktyget kommer att undanta från en " "andra genomsökning då en snabbsökning genomförs. Den andra genomsökningen " "använder find-kommandot för att söka efter filer. Syftet med den andra " -"genomsökningen är att hitta filer som inte har indexerats. Jokertecknen \"*" -"\" och \"?\" stöds. Standardvärdet är /." +"genomsökningen är att hitta filer som inte har indexerats. Jokertecknen " +"\"*\" och \"?\" stöds. Standardvärdet är /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -751,9 +753,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Denna nyckel definierar fönstrets bredd och den används för att komma ihåg " "storleken på sökverktyget mellan sessioner. Ställa in det till -1 gör att " @@ -766,8 +768,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Denna nyckel definierar fönstrets höjd och den används för att komma ihåg " "storleken på sökverktyget mellan sessioner. Ställa in det till -1 gör att " @@ -849,8 +851,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Denna nyckel avgör om sökalternativet \"Ägs av gruppen\" är markerat då " "sökverktyget startas." @@ -868,13 +870,13 @@ "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"Denna nyckel avgör om sökalternativet \"Namnet innehåller inte\" är markerat " -"då sökverktyget startas." +"Denna nyckel avgör om sökalternativet \"Namnet innehåller inte\" är markerat" +" då sökverktyget startas." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Denna nyckel avgör om sökalternativet \"Namnet matchar reguljärt uttryck\" " "är markerat då sökverktyget startas." @@ -892,8 +894,8 @@ "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"Denna nyckel avgör om sökalternativet \"Följ symboliska länkar\" är markerat " -"då sökverktyget startas." +"Denna nyckel avgör om sökalternativet \"Följ symboliska länkar\" är markerat" +" då sökverktyget startas." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" @@ -903,63 +905,62 @@ "Denna nyckel avgör om sökalternativet \"Exkludera andra filsystem\" är " "markerat då sökverktyget startas." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Filen är inte en giltig .desktop-fil" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Okänd Version \"%s\" i skrivbordsfil" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Startar %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Programmet tar inte emot några dokument på kommandoraden" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Okänd startflagga: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" -msgstr "" -"Kan inte skicka dokument-URI:er till ett \"Type=Link\"-skrivbordsobjekt" +msgstr "Kan inte skicka dokument-URI:er till ett \"Type=Link\"-skrivbordsobjekt" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Inte ett körbart objekt" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Inaktivera anslutning till sessionshanterare" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Ange fil som innehåller sparad konfiguration" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FIL" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Ange id för sessionshantering" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Flaggor för sessionshantering:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Visa flaggor för sessionshantering" @@ -1098,15 +1099,15 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "%'d fil hittades" -msgstr[1] "%'d filer hittades" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "%'d fil hittades" -msgstr[1] "%'d filer hittades" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1161,8 +1162,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"Sökresultaten kan vara felaktiga. Det inträffade fel vid utförandet av denna " -"sökning." +"Sökresultaten kan vara felaktiga. Det inträffade fel vid utförandet av denna" +" sökning." #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1336,16 +1337,16 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Är du säker att du vill öppna %d dokument?" -msgstr[1] "Är du säker att du vill öppna %d dokument?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Detta kommer att öppna %d separat fönster." -msgstr[1] "Detta kommer att öppna %d separata fönster." +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1369,8 +1370,8 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Är du säker att du vill öppna %d mapp?" -msgstr[1] "Är du säker att du vill öppna %d mappar?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1459,7 +1460,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "If you replace an existing file, its contents will be overwritten." -msgstr "Om du ersätter en befintlig fil kommer dess innehåll att skrivas över." +msgstr "" +"Om du ersätter en befintlig fil kommer dess innehåll att skrivas över." #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 @@ -1576,7 +1578,8 @@ msgid "View or monitor system log files" msgstr "Visa eller övervaka systemloggfiler" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1587,11 +1590,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Anger den loggfil som visas vid uppstart. Standard är antingen /var/adm/" -"messages eller /var/log/messages, beroende på ditt operativsystem." +"Anger den loggfil som visas vid uppstart. Standard är antingen " +"/var/adm/messages eller /var/log/messages, beroende på ditt operativsystem." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1631,8 +1634,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"Anger en lista på loggfiler som öppnas vid uppstart. En standardlista skapas " -"genom att läsa /etc/syslog.conf." +"Anger en lista på loggfiler som öppnas vid uppstart. En standardlista skapas" +" genom att läsa /etc/syslog.conf." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1998,7 +2001,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Kontrollera definitioner av ord och stavningar i en onlineordbok" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -2010,8 +2014,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2072,7 +2076,8 @@ #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22 msgid "" "The name of the dictionary source used to retrieve the definitions of words." -msgstr "Namnet på ordbokskällan som används för att hämta definitioner av ord." +msgstr "" +"Namnet på ordbokskällan som används för att hämta definitioner av ord." #: mate-dictionary/data/thai.desktop.in:3 msgid "Thai" @@ -2142,8 +2147,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"Kunde inte ansluta till ordboksservern på \"%s:%d\". Servern svarade med kod " -"%d (servern är nere)" +"Kunde inte ansluta till ordboksservern på \"%s:%d\". Servern svarade med kod" +" %d (servern är nere)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2739,8 +2744,8 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "En definition hittades" -msgstr[1] "%d definitioner hittades" +msgstr[0] "" +msgstr[1] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -3046,7 +3051,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Spara bilder av ditt skrivbord eller individuella fönster" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3104,8 +3110,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Effekt att lägga till utsidan på ramen. Möjliga värden är \"shadow\", \"none" -"\" och \"border\"." +"Effekt att lägga till utsidan på ramen. Möjliga värden är \"shadow\", " +"\"none\" och \"border\"." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3243,8 +3249,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Flaggor i konflikt: --clipboard och --interactive bör inte användas " "samtidigt.\n" @@ -3263,8 +3269,7 @@ "\n" "Please check your installation of mate-utils." msgstr "" -"Fel vid laddning av definitionsfilen för användargränssnittet för " -"skärmbildsprogrammet: \n" +"Fel vid laddning av definitionsfilen för användargränssnittet för skärmbildsprogrammet: \n" "%s\n" "\n" "Vänligen kontrollera din installation av mate-utils." Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ta.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ta.gmo differ diff -Nru mate-utils-1.26.0/po/ta.po mate-utils-1.26.1/po/ta.po --- mate-utils-1.26.0/po/ta.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/ta.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,24 +2,24 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Mooglie , 2018 -# Kamala Kannan, 2018 +# Kamala Kannan, 2021 # Stefano Karapetsas , 2021 -# +# Mooglie , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Tamil (https://www.transifex.com/mate/teams/13566/ta/)\n" -"Language: ta\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Mooglie , 2021\n" +"Language-Team: Tamil (https://app.transifex.com/mate/teams/13566/ta/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -31,7 +31,8 @@ msgid "Check folder sizes and available disk space" msgstr "அடைவு அளவு மற்றும் கிடைக்கக்கூடிய வட்டு இடைவெளி ஆகியவற்றை சரிபார் " -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -199,7 +200,8 @@ #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:32 msgid "Whether the subfolder tooltips of the selected folder are drawn." -msgstr "தேர்ந்தெடுத்த அடைவின் துணை அடைவு கருவி உதவி எந்த இடத்தில் தெரியவேண்டும்" +msgstr "" +"தேர்ந்தெடுத்த அடைவின் துணை அடைவு கருவி உதவி எந்த இடத்தில் தெரியவேண்டும்" #: baobab/data/org.mate.disk-usage-analyzer.gschema.xml.in:36 msgid "Active Chart" @@ -215,8 +217,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -418,7 +420,8 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." msgstr "" -"சேவையகத்துடன் இணைக்க முடியவில்லை. நீங்கள் சேவையகத்துக்கு ஒரு பெயரை உள்ளிட வேண்டும்." +"சேவையகத்துடன் இணைக்க முடியவில்லை. நீங்கள் சேவையகத்துக்கு ஒரு பெயரை உள்ளிட " +"வேண்டும்." #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -478,8 +481,8 @@ "The content of your home folder has changed. Select rescan to update the " "disk usage details." msgstr "" -"உங்கள் இல்ல அடைவின் உள்ளடக்கங்கள் மாற்றப்பட்டன. வட்டு பயன்பாடு விவரங்களை அறிய மறு வருடலை " -"தேர்ந்தெடுக்கவும்." +"உங்கள் இல்ல அடைவின் உள்ளடக்கங்கள் மாற்றப்பட்டன. வட்டு பயன்பாடு விவரங்களை " +"அறிய மறு வருடலை தேர்ந்தெடுக்கவும்." #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -570,9 +573,10 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"இந்த நிரல் இலவச மென் பொருளாகும். நீங்கள் இலவச மென் பொருள் அமைப்பினால் வெளியிடப்பட்ட " -"ஜிஎன்யு பொது அனுமதிக்கான இந்த 2ம் பதிப்பு அல்லது அடுத்த பதிப்புகள் விதிகளின் படி நீங்கள் " -"(விருப்பப்படி) மாற்றலாம். அல்லது மீண்டும் பறிமாறலாம்" +"இந்த நிரல் இலவச மென் பொருளாகும். நீங்கள் இலவச மென் பொருள் அமைப்பினால் " +"வெளியிடப்பட்ட ஜிஎன்யு பொது அனுமதிக்கான இந்த 2ம் பதிப்பு அல்லது அடுத்த " +"பதிப்புகள் விதிகளின் படி நீங்கள் (விருப்பப்படி) மாற்றலாம். அல்லது மீண்டும் " +"பறிமாறலாம்" #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -582,15 +586,16 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"இந்த நிரல் உபயோகப்படும் என்ற எதிர்பார்ப்புடன் வெளியிடப்படுகிறது. ஆனால் விற்க தகுதி," -"குறிப்பிட்ட செயலுக்கான தகுதி உள்பட எந்த உத்திரவாதமும் அளிக்கப்படவில்லை. மேற் கொண்டு " -"விவரங்களுக்கு ஜிஎன்யு பொது அனுமதிக்கான விதிகளை பார்க்கவும்" +"இந்த நிரல் உபயோகப்படும் என்ற எதிர்பார்ப்புடன் வெளியிடப்படுகிறது. ஆனால் விற்க" +" தகுதி,குறிப்பிட்ட செயலுக்கான தகுதி உள்பட எந்த உத்திரவாதமும் " +"அளிக்கப்படவில்லை. மேற் கொண்டு விவரங்களுக்கு ஜிஎன்யு பொது அனுமதிக்கான விதிகளை" +" பார்க்கவும்" #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -637,17 +642,19 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -"இந்த கணினியில் உள்ள ஆவணங்கள் அல்லது அடைவுகளை பெயராலோ உள்ளடக்கத்தாலோ கண்டுபிடிக்கவும்" +"இந்த கணினியில் உள்ள ஆவணங்கள் அல்லது அடைவுகளை பெயராலோ உள்ளடக்கத்தாலோ " +"கண்டுபிடிக்கவும்" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -674,8 +681,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"இந்த விசை தேடல் கருவி இடத்தை கண்டுபிடி கட்டளையை எளிய கோப்பு தேடல்கள் முடிந்ததும் " -"செயலிழக்கச்செய்யுமா என நிர்ணயிக்கிறது." +"இந்த விசை தேடல் கருவி இடத்தை கண்டுபிடி கட்டளையை எளிய கோப்பு தேடல்கள் " +"முடிந்ததும் செயலிழக்கச்செய்யுமா என நிர்ணயிக்கிறது." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -683,13 +690,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"இந்த விசை தேடல் கருவி விரைவு தேடலுக்கு தவிர்க்கும் பாதைகளை நிர்ணயிக்கிறது. குறியில் " -"குறியும், '?' உம் ஆதரிக்கப்படும். முன்னிருப்பு மதிப்புகள் /mnt/*, /media/*, /dev/*, /" -"tmp/*, /proc/*, மற்றும் /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"இந்த விசை தேடல் கருவி விரைவு தேடலுக்கு தவிர்க்கும் பாதைகளை நிர்ணயிக்கிறது. " +"குறியில் குறியும், '?' உம் ஆதரிக்கப்படும். முன்னிருப்பு மதிப்புகள் /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, மற்றும் /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -700,8 +707,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"இந்த விசை தேடல் கருவி தேடு கட்டளையை விரைவு தேடல் முடிந்ததும் செயலிழக்கச்செய்யுமா என " -"நிர்ணயிக்கிறது." +"இந்த விசை தேடல் கருவி தேடு கட்டளையை விரைவு தேடல் முடிந்ததும் " +"செயலிழக்கச்செய்யுமா என நிர்ணயிக்கிறது." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -712,13 +719,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"இந்த விசை தேடல் கருவி விரைவு தேடலுக்கு இரண்டாவது வருடலுக்கு தவிர்க்கும் பாதைகளை " -"நிர்ணயிக்கிறது. இரண்டாவது வருடல் கண்டுபிடி கட்டளையை கோப்புகளை தேட பயன்படுத்துகிறது. " -"இதன் நோக்கம் இதுவரை பட்டியலிடாத கோப்புகளை தேடுவது. குறியில் குறியும், '?' உம் " -"ஆதரிக்கப்படும். முன்னிருப்பு மதிப்பு /." +"இந்த விசை தேடல் கருவி விரைவு தேடலுக்கு இரண்டாவது வருடலுக்கு தவிர்க்கும் " +"பாதைகளை நிர்ணயிக்கிறது. இரண்டாவது வருடல் கண்டுபிடி கட்டளையை கோப்புகளை தேட " +"பயன்படுத்துகிறது. இதன் நோக்கம் இதுவரை பட்டியலிடாத கோப்புகளை தேடுவது. " +"குறியில் குறியும், '?' உம் ஆதரிக்கப்படும். முன்னிருப்பு மதிப்பு /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -729,8 +736,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"இந்த விசை தேடல் விடைகளில் உள்ள நெடுவரிசைகள் வரிசையை நிர்ணயிக்கிறது. இந்த விசை பயனரால் " -"மாற்றப்படக்கூடாது." +"இந்த விசை தேடல் விடைகளில் உள்ள நெடுவரிசைகள் வரிசையை நிர்ணயிக்கிறது. இந்த " +"விசை பயனரால் மாற்றப்படக்கூடாது." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -738,13 +745,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"இந்த விசை சாளரத்தின் அகலத்தை நிர்ணயிக்கிறது மற்றும் அமர்வுகளுக்கு இடையில் தேடல் கருவியின் " -"அளவை நினைவு கொள்ள பயன்படுகிறது. அதை -1 என அமைத்தால் தேடல் கருவியை முன்னிருப்பு " -"அகலத்தை பயன்படுத்தச்செய்யும்." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"இந்த விசை சாளரத்தின் அகலத்தை நிர்ணயிக்கிறது மற்றும் அமர்வுகளுக்கு இடையில் " +"தேடல் கருவியின் அளவை நினைவு கொள்ள பயன்படுகிறது. அதை -1 என அமைத்தால் தேடல் " +"கருவியை முன்னிருப்பு அகலத்தை பயன்படுத்தச்செய்யும்." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -753,12 +760,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"இந்த விசை சாளரத்தின் உயரத்தை நிர்ணயிக்கிறது மற்றும் அமர்வுகளுக்கு இடையில் தேடல் கருவியின் " -"அளவை நினைவு கொள்ள பயன்படுகிறது. அதை -1 என அமைத்தால் தேடல் கருவியை முன்னிருப்பு " -"உயரத்தை பயன்படுத்தச்செய்யும்." +"இந்த விசை சாளரத்தின் உயரத்தை நிர்ணயிக்கிறது மற்றும் அமர்வுகளுக்கு இடையில் " +"தேடல் கருவியின் அளவை நினைவு கொள்ள பயன்படுகிறது. அதை -1 என அமைத்தால் தேடல் " +"கருவியை முன்னிருப்பு உயரத்தை பயன்படுத்தச்செய்யும்." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -767,7 +774,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:50 msgid "" "This key determines if the search tool window starts in a maximized state." -msgstr "இந்த விசை தேடல் கருவி சாளரம் பெரிதாக்கிய நிலையில் துவங்குமா என நிர்ணயிக்கிறது." +msgstr "" +"இந்த விசை தேடல் கருவி சாளரம் பெரிதாக்கிய நிலையில் துவங்குமா என " +"நிர்ணயிக்கிறது." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -775,7 +784,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 msgid "This key defines the default value of the \"Look in Folder\" widget." -msgstr "இந்த விசை \"அடைவில் காண்க\" விட்செட்டின் முன்னிருப்பு மதிப்பை வரையறுக்கிறது " +msgstr "" +"இந்த விசை \"அடைவில் காண்க\" விட்செட்டின் முன்னிருப்பு மதிப்பை வரையறுக்கிறது" +" " #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 msgid "" @@ -790,16 +801,16 @@ "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"இந்த விசை தேடல் கருவி துவங்கும் போது \"தேதி மாற்றப்பட்டது இதை விட குறைந்தது\" தேடல் " -"விருப்பம் தேர்ந்தெடுக்கப்படுமா என நிர்ணயிக்கிறது." +"இந்த விசை தேடல் கருவி துவங்கும் போது \"தேதி மாற்றப்பட்டது இதை விட " +"குறைந்தது\" தேடல் விருப்பம் தேர்ந்தெடுக்கப்படுமா என நிர்ணயிக்கிறது." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"இந்த விசை தேடல் கருவி துவங்கும் போது \"தேதி மாற்றப்பட்டது இதை விட அதிகம்\" தேடல் " -"விருப்பம் தேர்ந்தெடுக்கப்படுமா என நிர்ணயிக்கிறது." +"இந்த விசை தேடல் கருவி துவங்கும் போது \"தேதி மாற்றப்பட்டது இதை விட அதிகம்\" " +"தேடல் விருப்பம் தேர்ந்தெடுக்கப்படுமா என நிர்ணயிக்கிறது." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" @@ -835,8 +846,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "இந்த விசை தேடல் கருவி துவங்கும் போது \"குழுக்கு சொந்தம்\" தேடல் விருப்பம் " "தேர்ந்தெடுக்கப்படுமா என நிர்ணயிக்கிறது. " @@ -846,8 +857,8 @@ "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"இந்த விசை தேடல் கருவி துவங்கும் போது \"பயனர் அடையாளம் தெரியாது\" தேடல் விருப்பம் " -"தேர்ந்தெடுக்கப்படுமா என நிர்ணயிக்கிறது. " +"இந்த விசை தேடல் கருவி துவங்கும் போது \"பயனர் அடையாளம் தெரியாது\" தேடல் " +"விருப்பம் தேர்ந்தெடுக்கப்படுமா என நிர்ணயிக்கிறது. " #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" @@ -859,92 +870,92 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"இந்த விசை தேடல் கருவி துவங்கும் போது \"பெயர் வழக்கமான தொடருக்கு பொருந்தம்\" தேடல் " -"விருப்பம் தேர்ந்தெடுக்கப்படுமா என நிர்ணயிக்கிறது." +"இந்த விசை தேடல் கருவி துவங்கும் போது \"பெயர் வழக்கமான தொடருக்கு பொருந்தம்\" " +"தேடல் விருப்பம் தேர்ந்தெடுக்கப்படுமா என நிர்ணயிக்கிறது." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"இந்த விசை தேடல் கருவி துவங்கும் போது \"மறைந்த கோப்புகள் மற்றும் கோப்புகளை காட்டு\" " -"தேடல் விருப்பம் தேர்ந்தெடுக்கப்படுமா என நிர்ணயிக்கிறது. " +"இந்த விசை தேடல் கருவி துவங்கும் போது \"மறைந்த கோப்புகள் மற்றும் கோப்புகளை " +"காட்டு\" தேடல் விருப்பம் தேர்ந்தெடுக்கப்படுமா என நிர்ணயிக்கிறது. " #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"இந்த விசை தேடல் கருவி துவங்கும் போது \"சிம் இணைப்புகளை தொடர்\" தேடல் விருப்பம் " -"தேர்ந்தெடுக்கப்படுமா என நிர்ணயிக்கிறது." +"இந்த விசை தேடல் கருவி துவங்கும் போது \"சிம் இணைப்புகளை தொடர்\" தேடல் " +"விருப்பம் தேர்ந்தெடுக்கப்படுமா என நிர்ணயிக்கிறது." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"இந்த விசை தேடல் கருவி துவங்கும் போது \"மற்ற கோப்பு அமைப்புகளை விலக்கு\" தேடல் விருப்பம் " -"தேர்ந்தெடுக்கப்படுமா என நிர்ணயிக்கிறது." +"இந்த விசை தேடல் கருவி துவங்கும் போது \"மற்ற கோப்பு அமைப்புகளை விலக்கு\" " +"தேடல் விருப்பம் தேர்ந்தெடுக்கப்படுமா என நிர்ணயிக்கிறது." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "கோப்பு சரியான .desktop கோப்பில்லை" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "அங்கீகரிக்கப்படாத பணிமேடை கோப்பு பதிப்பு '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%sஐ துவக்குகிறது" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "பயன்பாடு ஆவணங்களை கட்டளைவரியில் ஏற்காது" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "அங்கீகரிக்கப்படாத ஏற்ற விருப்பம்: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "'Type=Link' மேல்மேசை உள்ளீடுக்கு ஆவண யூஆர்ஐ ஐ கொடுக்க இயலாது" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "ஏற்றக்கூடிய உருப்படி இல்லை" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "அமர்வு மேலாளருக்கு இணைப்பை செயல்நீக்கு" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "சேமிக்கப்பட்ட கட்டமைப்பை கொண்ட கோப்பினை குறிப்பிடு" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "அமர்வு மேலாண்மை IDஐ குறிப்பிடு" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "எண்" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "அமர்வு மேலாண்மை விருப்பங்கள்:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "அமர்வு மேலாண்மை விருப்பங்களை காட்டு" @@ -1107,7 +1118,8 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" -msgstr "கோப்புகளை கீழ்கண்டவைகளின் படி அடுக்கவும்:பெயர்,அடைவு, அளவு,வகை அல்லது தேதி" +msgstr "" +"கோப்புகளை கீழ்கண்டவைகளின் படி அடுக்கவும்:பெயர்,அடைவு, அளவு,வகை அல்லது தேதி" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1154,8 +1166,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"தேடல் விடைகள் காலம் கடந்தவை அல்லது செல்லாது. வேக தேடல் வசதியை செயல்நீக்கம் செய்ய " -"விருப்பமா?" +"தேடல் விடைகள் காலம் கடந்தவை அல்லது செல்லாது. வேக தேடல் வசதியை செயல்நீக்கம் " +"செய்ய விருப்பமா?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1249,8 +1261,8 @@ #: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 msgid "Enter a filename or partial filename with or without wildcards." msgstr "" -"குறியில் குறியுடனோ அல்லது அது இல்லாமலோ ஒரு கோப்புப் பெயர் அல்லது கோப்புப் பெயரில் " -"ஓரளவோ உள்ளிடுக" +"குறியில் குறியுடனோ அல்லது அது இல்லாமலோ ஒரு கோப்புப் பெயர் அல்லது கோப்புப் " +"பெயரில் ஓரளவோ உள்ளிடுக" #: gsearchtool/src/gsearchtool.c:2836 msgid "Name contains" @@ -1282,7 +1294,8 @@ #: gsearchtool/src/gsearchtool.c:2885 msgid "Click to expand or collapse the list of available options." -msgstr "இருக்கும் விருப்பங்களின் பட்டியைலை விரிவாக்க அல்லது குறுக்க சொடுக்கவும்" +msgstr "" +"இருக்கும் விருப்பங்களின் பட்டியைலை விரிவாக்க அல்லது குறுக்க சொடுக்கவும்" #: gsearchtool/src/gsearchtool.c:2916 msgid "Click to display the help manual." @@ -1438,7 +1451,8 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "If you replace an existing file, its contents will be overwritten." -msgstr "ஏற்கெனவே உள்ள கோப்பை நீங்கள் மாற்றினால் இதன் உள்ளடக்கங்கள் மேலெழுதப்படும்" +msgstr "" +"ஏற்கெனவே உள்ள கோப்பை நீங்கள் மாற்றினால் இதன் உள்ளடக்கங்கள் மேலெழுதப்படும்" #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 @@ -1555,7 +1569,8 @@ msgid "View or monitor system log files" msgstr "கணினி பதிவு கோப்புகளை பார்வையிடு அல்லது கண்காணி" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1566,11 +1581,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"துவக்கத்தில் திறக்க வேண்டிய பதிவு கோப்புகளை குறிக்கிறது. முன்னிருப்பு /var/adm/" -"messages அல்லது /var/log/messages, உங்கள் இயக்கத்தளத்தைப் பொருத்து இருக்கலாம்." +"துவக்கத்தில் திறக்க வேண்டிய பதிவு கோப்புகளை குறிக்கிறது. முன்னிருப்பு " +"/var/adm/messages அல்லது /var/log/messages, உங்கள் இயக்கத்தளத்தைப் பொருத்து " +"இருக்கலாம்." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1581,8 +1597,8 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"முதன்மை கிளை காட்சியில் பதிவேட்டை காட்ட பயன்படும் நிலை அகல எழுத்துருவின் அளவை " -"குறிப்பிடுகிறது. முன்னிருப்பு முனைய எழுத்துரு அளவு." +"முதன்மை கிளை காட்சியில் பதிவேட்டை காட்ட பயன்படும் நிலை அகல எழுத்துருவின் " +"அளவை குறிப்பிடுகிறது. முன்னிருப்பு முனைய எழுத்துரு அளவு." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1609,8 +1625,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"துவக்கத்தில் திறக்க வேண்டிய பதிவு கோப்புகளை குறிக்கிறது. முன்னிருப்பு பட்டியல் /etc/" -"syslog.conf ஏ படிப்பது மூலம் உருவாக்கப்பட்டிருக்கும்." +"துவக்கத்தில் திறக்க வேண்டிய பதிவு கோப்புகளை குறிக்கிறது. முன்னிருப்பு " +"பட்டியல் /etc/syslog.conf ஏ படிப்பது மூலம் உருவாக்கப்பட்டிருக்கும்." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1971,7 +1987,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "ஒரு இணைய அகராதியில் சொற்களை தேடவும்" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1983,8 +2000,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2014,9 +2031,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"அகராதி மூலத்தில் பயன்படுத்த வேண்டிய முன்னிருப்பு தரவுத்தளத்தின் அல்லது மெடா தரவுத்தளத்தின் " -"பட்டியல். வியப்புக்குறி (\"!\") என்பது அகராதி மூலத்தில் உள்ள அனைத்து தரவுத்தளங்களையும் " -"தேட வேண்டும் எனக்குறிக்கிறது." +"அகராதி மூலத்தில் பயன்படுத்த வேண்டிய முன்னிருப்பு தரவுத்தளத்தின் அல்லது மெடா " +"தரவுத்தளத்தின் பட்டியல். வியப்புக்குறி (\"!\") என்பது அகராதி மூலத்தில் உள்ள " +"அனைத்து தரவுத்தளங்களையும் தேட வேண்டும் எனக்குறிக்கிறது." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2027,8 +2044,8 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"இருப்பில் இருந்தால் அகராதி மூலத்துக்கு முுன்னிருப்ப தேடல் திட்டம். ு முன்னிருப்பு'சரியான' " -"அதாவது பொருத்ம் மிகச் சரியாக இருக்க வேண்டும்.." +"இருப்பில் இருந்தால் அகராதி மூலத்துக்கு முுன்னிருப்ப தேடல் திட்டம். ு " +"முன்னிருப்பு'சரியான' அதாவது பொருத்ம் மிகச் சரியாக இருக்க வேண்டும்.." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2113,8 +2130,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"அகராதி சேவையகத்துடன் ('%s:%d'. இல்) இணைக்க முடியவில்லை. சேவையகம் குறி %d என பதில் " -"தந்தது. (சேவயகம் செய்லில் இல்லை)" +"அகராதி சேவையகத்துடன் ('%s:%d'. இல்) இணைக்க முடியவில்லை. சேவையகம் குறி %d " +"என பதில் தந்தது. (சேவயகம் செய்லில் இல்லை)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2327,7 +2344,8 @@ #, c-format msgid "" "Unable to get the '%s' key inside the dictionary source definition file: %s" -msgstr "அகராதி மூலம் வரையரை கோப்பில் இருக்கும் '%s' விசையை பெற இயலவில்லை: %s" +msgstr "" +"அகராதி மூலம் வரையரை கோப்பில் இருக்கும் '%s' விசையை பெற இயலவில்லை: %s" #: mate-dictionary/libgdict/gdict-source.c:736 msgid "Dictionary source does not have name" @@ -3015,7 +3033,8 @@ msgid "Save images of your desktop or individual windows" msgstr "உங்கள் பணிமேடையின் படங்களை அல்லது தனித்தனி சாளரங்களை சேமிக்கவும்" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3073,8 +3092,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"ஒரு விளிம்புக்கு அப்பால் சேர்க்க வேண்டிய விளைவு. இருக்கக்கூடிய மதிப்புகள் \"நிழல்\", " -"\"எதுவும் இல்லை\", மற்றும் \"விளிம்பு\". " +"ஒரு விளிம்புக்கு அப்பால் சேர்க்க வேண்டிய விளைவு. இருக்கக்கூடிய மதிப்புகள் " +"\"நிழல்\", \"எதுவும் இல்லை\", மற்றும் \"விளிம்பு\". " #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3212,8 +3231,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3221,7 +3240,8 @@ "Conflicting options: --window and --area should not be used at the same " "time.\n" msgstr "" -"முரண்படும் விருப்பங்கள்: --window மற்றும் --area ஒரே நேரத்தில் பயன்படுத்தப்பட கூடாது.\n" +"முரண்படும் விருப்பங்கள்: --window மற்றும் --area ஒரே நேரத்தில் " +"பயன்படுத்தப்பட கூடாது.\n" #: mate-screenshot/src/screenshot-dialog.c:210 #, c-format @@ -3254,7 +3274,9 @@ msgid "" "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." -msgstr "சேய் சேமி செயல் எதிர்பாராது வெளியேறியது. திரைவெட்டை வட்டுக்கு எழுத இயலவில்லை." +msgstr "" +"சேய் சேமி செயல் எதிர்பாராது வெளியேறியது. திரைவெட்டை வட்டுக்கு எழுத " +"இயலவில்லை." #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/te.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/te.gmo differ diff -Nru mate-utils-1.26.0/po/te.po mate-utils-1.26.1/po/te.po --- mate-utils-1.26.0/po/te.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/te.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,24 +2,24 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# parijathakumar , 2018 -# ప్రవీణ్ ఇళ్ళ , 2019 +# parijathakumar , 2021 +# ప్రవీణ్ ఇళ్ళ , 2021 # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Telugu (https://www.transifex.com/mate/teams/13566/te/)\n" -"Language: te\n" +"Language-Team: Telugu (https://app.transifex.com/mate/teams/13566/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -31,7 +31,8 @@ msgid "Check folder sizes and available disk space" msgstr "ఖని ఖాళీ లభ్యత మరియు సంచయము ఖాళీ లభ్యతలను తనిఖీచేయుము" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -215,8 +216,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -417,7 +418,8 @@ #: baobab/src/baobab-remote-connect-dialog.c:242 msgid "Cannot Connect to Server. You must enter a name for the server." -msgstr "సేవికకు అనుసంధానము కాలేము. మీరు సేవిక కొరకు వొక నామమును ప్రవేశపెట్టాలి." +msgstr "" +"సేవికకు అనుసంధానము కాలేము. మీరు సేవిక కొరకు వొక నామమును ప్రవేశపెట్టాలి." #: baobab/src/baobab-remote-connect-dialog.c:245 msgid "Please enter a name and try again." @@ -476,7 +478,9 @@ msgid "" "The content of your home folder has changed. Select rescan to update the " "disk usage details." -msgstr "మీ యొక్క నివాస సంచయ సారము మార్చబడినది. ఖని వినిమయ వివరములు మరలా సంశోధన ఎంచుకొనుము." +msgstr "" +"మీ యొక్క నివాస సంచయ సారము మార్చబడినది. ఖని వినిమయ వివరములు మరలా సంశోధన " +"ఎంచుకొనుము." #: baobab/src/baobab-treeview.c:85 msgid "_Rescan" @@ -567,9 +571,9 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"ఈ ప్రోగ్రామ్ ఉచిత సాఫ్టువేరు; మీరు దానిని ఉచిత సాఫ్టువేరు సంస్థ ద్వారా ప్రచురించబడిన GNU జనరల్ పబ్లిక్ " -"లైసెన్సు వర్షన్ 2, లేదా (మీ ఐచ్చికము వద్ద) దాని తర్వాతి వర్షన్‌కు లోబడి పునఃపంపిణి చేయవచ్చును మరియు/లేదా " -"సవరించవచ్చును;" +"ఈ ప్రోగ్రామ్ ఉచిత సాఫ్టువేరు; మీరు దానిని ఉచిత సాఫ్టువేరు సంస్థ ద్వారా " +"ప్రచురించబడిన GNU జనరల్ పబ్లిక్ లైసెన్సు వర్షన్ 2, లేదా (మీ ఐచ్చికము వద్ద) " +"దాని తర్వాతి వర్షన్‌కు లోబడి పునఃపంపిణి చేయవచ్చును మరియు/లేదా సవరించవచ్చును;" #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -579,15 +583,15 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"ఈ ప్రోగ్రామ్ అది వుపయోగపడుతుంది అనే వుద్దేశ్యముతో పంపిణి చేయబడింది, అయితే ఎటువంటి హామి లేదు; కనీసం " -"వ్యాపారపరంగా లేదా ఫలానా ప్రయోజనం కొరకు ప్రత్యేకించి అనికూడా లేదు. మరింత సమాచారము కొరకు GNU జనరల్ " -"పబ్లిక్ లైసెన్సును చూడండి." +"ఈ ప్రోగ్రామ్ అది వుపయోగపడుతుంది అనే వుద్దేశ్యముతో పంపిణి చేయబడింది, అయితే " +"ఎటువంటి హామి లేదు; కనీసం వ్యాపారపరంగా లేదా ఫలానా ప్రయోజనం కొరకు ప్రత్యేకించి" +" అనికూడా లేదు. మరింత సమాచారము కొరకు GNU జనరల్ పబ్లిక్ లైసెన్సును చూడండి." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -631,16 +635,18 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" -msgstr "నామము లేదా సారముల ద్వారా పత్రములను మరియు సంచయాలను ఈ కంప్యూటర్ లో గుర్తించండి" +msgstr "" +"నామము లేదా సారముల ద్వారా పత్రములను మరియు సంచయాలను ఈ కంప్యూటర్ లో గుర్తించండి" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -667,8 +673,8 @@ "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." msgstr "" -"సులభమైన దస్త్రనామ శోధన చేసినప్పుడు శోధన సాధనం గుర్తించు ఆదేశం ఉపయోగంను అచేతనం చేస్తే ఈ మీట " -"నిశ్చయించబడుతుంది." +"సులభమైన దస్త్రనామ శోధన చేసినప్పుడు శోధన సాధనం గుర్తించు ఆదేశం ఉపయోగంను " +"అచేతనం చేస్తే ఈ మీట నిశ్చయించబడుతుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -676,12 +682,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"ఈ కీ శోధన సాధనం త్వరిత శోధన నుండి బహిష్కరించు త్రోవలను నిర్వచిస్తుంది. wildcards '*' మరియు '?' " -"మద్దతునిస్తాయి.అప్రమేయ విలువలు /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"ఈ కీ శోధన సాధనం త్వరిత శోధన నుండి బహిష్కరించు త్రోవలను నిర్వచిస్తుంది. " +"wildcards '*' మరియు '?' మద్దతునిస్తాయి.అప్రమేయ విలువలు /mnt/*, /media/*, " +"/dev/*, /tmp/*, /proc/*, and /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -692,7 +699,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"త్వరిత శోధన జరిపినతర్వాత శోధన సాధనం వెతుకు ఆదేశం ఉపయోగాన్ని అచేతనం చేస్తే ఈ మీట నిశ్చయించబడుతుంది." +"త్వరిత శోధన జరిపినతర్వాత శోధన సాధనం వెతుకు ఆదేశం ఉపయోగాన్ని అచేతనం చేస్తే ఈ " +"మీట నిశ్చయించబడుతుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -703,13 +711,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"శోధన సాధనం త్వరిత శోధనను చేస్తున్నప్పుడు రెండవ సంశోధన నుండి బహిష్కరించు త్రోవలను ఈ మీట " -"నిర్వచిస్తుంది.దస్త్రములను శోధించుటకు రెండవ సంశోధన వెతుకు ఆదేశాన్ని ఉపయోగిస్తుంది.రెండవ సంశోధన యొక్క " -"ఉపయోగార్ధం విషయసూచిక చేయబడనటువంటి దస్త్రంలను వెతుకుట.wildcards '*' మరియు '?' మద్దుతునిస్తాయి." -"అప్రమేయ విలువ /." +"శోధన సాధనం త్వరిత శోధనను చేస్తున్నప్పుడు రెండవ సంశోధన నుండి బహిష్కరించు " +"త్రోవలను ఈ మీట నిర్వచిస్తుంది.దస్త్రములను శోధించుటకు రెండవ సంశోధన వెతుకు " +"ఆదేశాన్ని ఉపయోగిస్తుంది.రెండవ సంశోధన యొక్క ఉపయోగార్ధం విషయసూచిక చేయబడనటువంటి" +" దస్త్రంలను వెతుకుట.wildcards '*' మరియు '?' మద్దుతునిస్తాయి.అప్రమేయ విలువ /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -720,7 +728,8 @@ "This key defines the order of the columns in the search results. This key " "should not be modified by the user." msgstr "" -"ఈ కీ శోధించిన ఫలితాలలోని నిలువువరుసల క్రమాన్ని నిర్వచిస్తుంది.ఈ కీ వినియోగదారుని చేత మార్చబడకూడదు." +"ఈ కీ శోధించిన ఫలితాలలోని నిలువువరుసల క్రమాన్ని నిర్వచిస్తుంది.ఈ కీ " +"వినియోగదారుని చేత మార్చబడకూడదు." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -728,13 +737,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"ఈ మీట గవాక్షం వెడల్పును నిర్వచిస్తుంది మరియు సెషన్సు మద్య శోధన సాధనం యొక్క పరిమాణం ను " -"గుర్తుంచుకొనుటకు ఉపయోగించబడుతుంది.-1 కు అమర్చుట శోధన సాధనంను అప్రమేయ వెడల్పును " -"ఉపయోగించుకొనునట్లు చేస్తుంది." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "" +"ఈ మీట గవాక్షం వెడల్పును నిర్వచిస్తుంది మరియు సెషన్సు మద్య శోధన సాధనం యొక్క " +"పరిమాణం ను గుర్తుంచుకొనుటకు ఉపయోగించబడుతుంది.-1 కు అమర్చుట శోధన సాధనంను " +"అప్రమేయ వెడల్పును ఉపయోగించుకొనునట్లు చేస్తుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -743,12 +752,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"ఈ మీట గవాక్షం ఎత్తును నిర్వచిస్తుంది మరియు సెషన్సు మద్య శోధన సాధనం యొక్క పరిమాణం ను " -"గుర్తుంచుకొనుటకు ఉపయోగించబడుతుంది.-1 కు అమర్చుట శోధన సాధనంను అప్రమేయ ఎత్తును " -"ఉపయోగించుకొనునట్లు చేస్తుంది." +"ఈ మీట గవాక్షం ఎత్తును నిర్వచిస్తుంది మరియు సెషన్సు మద్య శోధన సాధనం యొక్క " +"పరిమాణం ను గుర్తుంచుకొనుటకు ఉపయోగించబడుతుంది.-1 కు అమర్చుట శోధన సాధనంను " +"అప్రమేయ ఎత్తును ఉపయోగించుకొనునట్లు చేస్తుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -757,7 +766,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:50 msgid "" "This key determines if the search tool window starts in a maximized state." -msgstr "శోధన సాధనం గవాక్షం పెద్దదైన స్థితి లో ప్రారంభించబడితే ఈ మీట నిశ్చయించబడుతుంది." +msgstr "" +"శోధన సాధనం గవాక్షం పెద్దదైన స్థితి లో ప్రారంభించబడితే ఈ మీట " +"నిశ్చయించబడుతుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:54 msgid "Look in Folder" @@ -772,169 +783,169 @@ "This key determines if the \"Contains the text\" search option is selected " "when the search tool is started." msgstr "" -"శోధన సాధనం ప్రారంభించబడినప్పుడు \"పాఠము కలిగిఉన్న\" శోధన ఇచ్ఛాపూర్వకం ఎంపికకాబడి‌వుంటే ఈ మీట " -"నిశ్చయించబడుతుంది." +"శోధన సాధనం ప్రారంభించబడినప్పుడు \"పాఠము కలిగిఉన్న\" శోధన ఇచ్ఛాపూర్వకం " +"ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:66 msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"శోధన సాధనం ప్రారంభించబడినప్పుడు \"దీనికి తక్కువగా మార్చబడిన తారీఖు\" శోధన ఇచ్ఛాపూర్వకం " -"ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." +"శోధన సాధనం ప్రారంభించబడినప్పుడు \"దీనికి తక్కువగా మార్చబడిన తారీఖు\" శోధన " +"ఇచ్ఛాపూర్వకం ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"శోధన సాధనం ప్రారంభించబడినప్పుడు \"దీనికి ఎక్కువగా మార్చబడిన తారీఖు\" శోధన ఇచ్ఛాపూర్వకం " -"ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." +"శోధన సాధనం ప్రారంభించబడినప్పుడు \"దీనికి ఎక్కువగా మార్చబడిన తారీఖు\" శోధన " +"ఇచ్ఛాపూర్వకం ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" "This key determines if the \"Size at least\" search option is selected when " "the search tool is started." msgstr "" -"శోధన సాధనం ప్రారంభించబడినప్పుడు \"తక్కువలో ఉన్న పరిమాణం\" శోధన ఇచ్ఛాపూర్వకం ఎంపికకాబడి‌వుంటే ఈ మీట " -"నిశ్చయించబడుతుంది." +"శోధన సాధనం ప్రారంభించబడినప్పుడు \"తక్కువలో ఉన్న పరిమాణం\" శోధన ఇచ్ఛాపూర్వకం " +"ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:78 msgid "" "This key determines if the \"Size at most\" search option is selected when " "the search tool is started." msgstr "" -"శోధన సాధనం ప్రారంభించబడినప్పుడు \"ఎక్కువలో ఉన్న పరిమాణం\" శోధన ఇచ్ఛాపూర్వకం ఎంపికకాబడి‌వుంటే ఈ మీట " -"నిశ్చయించబడుతుంది." +"శోధన సాధనం ప్రారంభించబడినప్పుడు \"ఎక్కువలో ఉన్న పరిమాణం\" శోధన ఇచ్ఛాపూర్వకం " +"ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:82 msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." msgstr "" -"శోధన సాధనం ప్రారంభించబడినప్పుడు \"దస్త్రం ఖాళీగా ఉంది\" శోధన ఇచ్ఛాపూర్వకం ఎంపికకాబడి‌వుంటే ఈ మీట " -"నిశ్చయించబడుతుంది." +"శోధన సాధనం ప్రారంభించబడినప్పుడు \"దస్త్రం ఖాళీగా ఉంది\" శోధన ఇచ్ఛాపూర్వకం " +"ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"శోధన సాధనం ప్రారంభించబడినప్పుడు \"ఈ వినియోగదారునికి స్వకీయమైన\" శోధన ఇచ్ఛాపూర్వకం ఎంపికకాబడి‌వుంటే ఈ " -"మీట నిశ్చయించబడుతుంది." +"శోధన సాధనం ప్రారంభించబడినప్పుడు \"ఈ వినియోగదారునికి స్వకీయమైన\" శోధన " +"ఇచ్ఛాపూర్వకం ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" -"శోధన సాధనం ప్రారంభించబడినప్పుడు \"ఈ సమూహానికి స్వకీయమైన \" శోధన ఇచ్ఛాపూర్వకం ఎంపికకాబడి‌వుంటే ఈ మీట " -"నిశ్చయించబడుతుంది." +"శోధన సాధనం ప్రారంభించబడినప్పుడు \"ఈ సమూహానికి స్వకీయమైన \" శోధన ఇచ్ఛాపూర్వకం" +" ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 msgid "" "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"శోధన సాధనం ప్రారంభించబడినప్పుడు \"యజమాని గుర్తించబడుటలేదు\" శోధన ఇచ్ఛాపూర్వకం ఎంపికకాబడి‌వుంటే ఈ " -"మీట నిశ్చయించబడుతుంది." +"శోధన సాధనం ప్రారంభించబడినప్పుడు \"యజమాని గుర్తించబడుటలేదు\" శోధన " +"ఇచ్ఛాపూర్వకం ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" "This key determines if the \"Name does not contain\" search option is " "selected when the search tool is started." msgstr "" -"శోధన సాధనం ప్రారంభించబడినప్పుడు \"ఇది కలిగిలేని నామము\" శోధన ఇచ్ఛాపూర్వకం ఎంపికకాబడి‌వుంటే ఈ మీట " -"నిశ్చయించబడుతుంది." +"శోధన సాధనం ప్రారంభించబడినప్పుడు \"ఇది కలిగిలేని నామము\" శోధన ఇచ్ఛాపూర్వకం " +"ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" -"శోధన సాధనం ప్రారంభించబడినప్పుడు \"ఈ సాదారణ ఎక్సప్రెషన్ కు సరితూగిన నామము\" శోధన ఇచ్ఛాపూర్వకం " -"ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." +"శోధన సాధనం ప్రారంభించబడినప్పుడు \"ఈ సాదారణ ఎక్సప్రెషన్ కు సరితూగిన నామము\" " +"శోధన ఇచ్ఛాపూర్వకం ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." msgstr "" -"శోధన సాధనం ప్రారంభించబడినప్పుడు \"దాచబడిన దస్త్రములను మరియు సంచయాలను చూపుము\" శోధన " -"ఇచ్ఛాపూర్వకం ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." +"శోధన సాధనం ప్రారంభించబడినప్పుడు \"దాచబడిన దస్త్రములను మరియు సంచయాలను " +"చూపుము\" శోధన ఇచ్ఛాపూర్వకం ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"శోధన సాధనం ప్రారంభించబడినప్పుడు \"చిహ్నపూరిత జోడీలను అనుసరించు\" శోధన ఇచ్ఛాపూర్వకం " -"ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." +"శోధన సాధనం ప్రారంభించబడినప్పుడు \"చిహ్నపూరిత జోడీలను అనుసరించు\" శోధన " +"ఇచ్ఛాపూర్వకం ఎంపికకాబడి‌వుంటే ఈ మీట నిశ్చయించబడుతుంది." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." msgstr "" -"శోధన సాధనం ప్రారంభించబడినప్పుడు \"ఇతర దస్త్రసిస్టమ్సును తీసివేయి\" శోధన ఇచ్ఛాపూర్వకం ఎంపికకాబడాలేమో ఈ " -"మీట నిశ్చయించుతుంది." +"శోధన సాధనం ప్రారంభించబడినప్పుడు \"ఇతర దస్త్రసిస్టమ్సును తీసివేయి\" శోధన " +"ఇచ్ఛాపూర్వకం ఎంపికకాబడాలేమో ఈ మీట నిశ్చయించుతుంది." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "దస్త్రము చెల్లునటువంటి .desktop దస్త్రము కాదు" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "గుర్తించని డెస్కుటాపు దస్త్రము వర్షన్ '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s ను ప్రారంభించుచున్నాము" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "అనువర్తనము ఆదేశ వరుసనందు పత్రములను ఆమోదించదు" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "గుర్తించని ప్రారంభ ఐచ్చికము: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "పత్రము URIలను Type=Link' desktop entry కు పంపలేదు." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "ఆరంభించదగిన అంశముకాదు" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "సెషన్ నిర్వాహకునికి అనుసంధానమును అచేతనము చేయుము" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "దాయబడిన ఆకృతీకరణను కలిగివున్న ఫైలును తెలుపుము" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "సెషన్ నిర్వహణ IDను తెలుపుము" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ఐడి" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "సెషన్ నిర్వహణా ఐచ్చికములు:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "సెషన్ నిర్వహణా ఐచ్చికములను చూపుము" @@ -1098,7 +1109,8 @@ #: gsearchtool/src/gsearchtool.c:1327 msgid "Sort files by one of the following: name, folder, size, type, or date" msgstr "" -"క్రింది ఇవ్వబడిన ఒక దాని ద్వారా దస్త్రములు చక్కదిద్దు: నామము, సంచయము, పరిమాణం, రకము, లేదా తేది" +"క్రింది ఇవ్వబడిన ఒక దాని ద్వారా దస్త్రములు చక్కదిద్దు: నామము, సంచయము, " +"పరిమాణం, రకము, లేదా తేది" #: gsearchtool/src/gsearchtool.c:1328 msgid "Set sort order to descending, the default is ascending" @@ -1120,7 +1132,8 @@ #: gsearchtool/src/gsearchtool.c:1445 msgid "Invalid option passed to sortby command line argument." -msgstr "చక్కదిద్దు ఆదేశ వాక్య క్రమానుగత సంకేతం కు నిస్సారమైన ఇఛ్ఛాపూర్వకం పంపబడినది." +msgstr "" +"చక్కదిద్దు ఆదేశ వాక్య క్రమానుగత సంకేతం కు నిస్సారమైన ఇఛ్ఛాపూర్వకం పంపబడినది." #: gsearchtool/src/gsearchtool.c:1737 msgid "" @@ -1134,7 +1147,9 @@ msgid "" "The search results may be invalid. There were errors while performing this " "search." -msgstr "వెతికిన ఫలితం నిస్సారమై ఉండవచ్చు. చేస్తున్నపుడు అక్కడ దోషములు ఏర్పడినవి వెతుకు." +msgstr "" +"వెతికిన ఫలితం నిస్సారమై ఉండవచ్చు. చేస్తున్నపుడు అక్కడ దోషములు ఏర్పడినవి " +"వెతుకు." #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1145,8 +1160,8 @@ "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" msgstr "" -"శోధించ ఫలితాలు తారీఖు మించిపోయినవి లేదా విలువైనవికావు. మీరు త్వరిత శోధన ప్రయోజనాన్ని అచేతనం " -"చేయాలనుకుంటున్నారా?" +"శోధించ ఫలితాలు తారీఖు మించిపోయినవి లేదా విలువైనవికావు. మీరు త్వరిత శోధన " +"ప్రయోజనాన్ని అచేతనం చేయాలనుకుంటున్నారా?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1239,7 +1254,9 @@ #: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 msgid "Enter a filename or partial filename with or without wildcards." -msgstr "wildcards తోగాని లేకుండాగాని దస్త్రనామాన్ని లేదా పాక్షిక దస్త్రనామాన్ని ప్రవేశపెట్టండి." +msgstr "" +"wildcards తోగాని లేకుండాగాని దస్త్రనామాన్ని లేదా పాక్షిక దస్త్రనామాన్ని " +"ప్రవేశపెట్టండి." #: gsearchtool/src/gsearchtool.c:2836 msgid "Name contains" @@ -1260,7 +1277,8 @@ #: gsearchtool/src/gsearchtool.c:2858 msgid "Select the folder or device from which you want to begin the search." msgstr "" -"దేనినుండైతే మీరు శోధన ప్రారంభించాలని అనుకుంటున్నారో ఆ దస్త్రాన్ని కాని లేదా పరికరాన్ని కాని ఎంపకచేసుకొనండి." +"దేనినుండైతే మీరు శోధన ప్రారంభించాలని అనుకుంటున్నారో ఆ దస్త్రాన్ని కాని లేదా " +"పరికరాన్ని కాని ఎంపకచేసుకొనండి." #: gsearchtool/src/gsearchtool.c:2876 msgid "Select more _options" @@ -1272,7 +1290,9 @@ #: gsearchtool/src/gsearchtool.c:2885 msgid "Click to expand or collapse the list of available options." -msgstr "లభ్యత కల్గిన ఇఛ్ఛాపూర్వకముల యొక్క జాబితాను పొడగించుటకు లేదా నాశనము చేయుటకు నొక్కుము." +msgstr "" +"లభ్యత కల్గిన ఇఛ్ఛాపూర్వకముల యొక్క జాబితాను పొడగించుటకు లేదా నాశనము చేయుటకు " +"నొక్కుము." #: gsearchtool/src/gsearchtool.c:2916 msgid "Click to display the help manual." @@ -1424,11 +1444,15 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1815 #, c-format msgid "The document \"%s\" already exists. Would you like to replace it?" -msgstr "పత్రం \"%s\" ఇదివరకే కలిగివున్నది. మీరు దాన్ని పునఃస్థాపించుటకు ఇష్టపడుతున్నారా?" +msgstr "" +"పత్రం \"%s\" ఇదివరకే కలిగివున్నది. మీరు దాన్ని పునఃస్థాపించుటకు " +"ఇష్టపడుతున్నారా?" #: gsearchtool/src/gsearchtool-callbacks.c:1819 msgid "If you replace an existing file, its contents will be overwritten." -msgstr "మీరు కలిగివున్న దస్త్రంను పునఃస్థాపించినట్టయితే, దాని సారములు చెరిపిరాయబడును." +msgstr "" +"మీరు కలిగివున్న దస్త్రంను పునఃస్థాపించినట్టయితే, దాని సారములు " +"చెరిపిరాయబడును." #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 @@ -1545,7 +1569,8 @@ msgid "View or monitor system log files" msgstr "దర్శించు లేదా దర్శిని వ్యవస్థ log దస్త్రములు" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1556,11 +1581,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"ప్రారంభంనందు ప్రదర్శితమయ్యే లాగ్ దస్త్రాన్ని తెలియజేస్తుంది.అప్రమేయమనునది మీ ఆపరేటింగ్ సిస్టమ్ పై ఆధారపడి, /" -"var/adm/messages కాని లేదా /var/log/messages కాని అవుతుంది." +"ప్రారంభంనందు ప్రదర్శితమయ్యే లాగ్ దస్త్రాన్ని తెలియజేస్తుంది.అప్రమేయమనునది మీ" +" ఆపరేటింగ్ సిస్టమ్ పై ఆధారపడి, /var/adm/messages కాని లేదా /var/log/messages" +" కాని అవుతుంది." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1571,8 +1597,9 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"లాగ్ ను ప్రధాన ట్రీ దర్శిని లో ప్రదర్శించుటకు ఉపయోగించు నిర్దేశిత-వెడల్పు ఫాంటు యొక్క పరిమాణంను " -"తెలియజేస్తుంది.అప్రమేయం అప్రమేయ టెర్మినల్ ఫాంటు పరిమాణంనుండి తీసుకోబడుతుంది." +"లాగ్ ను ప్రధాన ట్రీ దర్శిని లో ప్రదర్శించుటకు ఉపయోగించు నిర్దేశిత-వెడల్పు " +"ఫాంటు యొక్క పరిమాణంను తెలియజేస్తుంది.అప్రమేయం అప్రమేయ టెర్మినల్ ఫాంటు " +"పరిమాణంనుండి తీసుకోబడుతుంది." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1599,8 +1626,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"ప్రారంభం నందు తెరువుటకు లాగ్ దస్త్రముల జాబితాను తెలియపరచండి.అప్రమేయ జాబితా /etc/syslog.conf " -"చదువుట ద్వారా సృష్టించబడుతుంది." +"ప్రారంభం నందు తెరువుటకు లాగ్ దస్త్రముల జాబితాను తెలియపరచండి.అప్రమేయ జాబితా " +"/etc/syslog.conf చదువుట ద్వారా సృష్టించబడుతుంది." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1716,7 +1743,9 @@ #: logview/src/logview-log.c:589 msgid "Error while uncompressing the GZipped log. The file might be corrupt." -msgstr "GZipped లాగ్‌ను విడమర్చుతుంటే(అన్‌కంప్రెస్) దోషము. బహుశా దస్త్రము పాడైవుంటుంది." +msgstr "" +"GZipped లాగ్‌ను విడమర్చుతుంటే(అన్‌కంప్రెస్) దోషము. బహుశా దస్త్రము " +"పాడైవుంటుంది." #: logview/src/logview-log.c:635 msgid "You don't have enough permissions to read the file." @@ -1959,9 +1988,11 @@ #: mate-dictionary/data/mate-dictionary.desktop.in.in:4 msgid "Check word definitions and spellings in an online dictionary" -msgstr "లైను వెలుపల నిఘంటువులో పదము నిర్వచనములను మరియు వర్ణక్రమములను తనిఖీచేయుము" +msgstr "" +"లైను వెలుపల నిఘంటువులో పదము నిర్వచనములను మరియు వర్ణక్రమములను తనిఖీచేయుము" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1973,8 +2004,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2004,8 +2035,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"నిఘంటువు వనరు లో వాడుటకు అప్రమేయ స్వతంత్ర దత్తాంశస్థానం లేదా మెటా-దత్తాంశస్థానం యొక్క నామము." -"ఆశ్చర్యార్ధంకం (\"!\") అర్ధం నిఘంటువు వనరు లో ఇవ్వబడినటువంటి అన్ని దత్తాంశస్థానములు శోధించబడాలి." +"నిఘంటువు వనరు లో వాడుటకు అప్రమేయ స్వతంత్ర దత్తాంశస్థానం లేదా " +"మెటా-దత్తాంశస్థానం యొక్క నామము.ఆశ్చర్యార్ధంకం (\"!\") అర్ధం నిఘంటువు వనరు లో" +" ఇవ్వబడినటువంటి అన్ని దత్తాంశస్థానములు శోధించబడాలి." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2016,8 +2048,8 @@ "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." msgstr "" -"నిఘంటువు వనరులో ఉపయోగించుటకు అప్రమేయ శోధనా ఎత్తుగడ నామము, అందుబాటులో ఉంటే. అప్రమేయ ఎత్తుగడ " -"'ఖచ్చితం', అంటే ఖచ్చితమైన పదాలను సరిపోల్చాలి." +"నిఘంటువు వనరులో ఉపయోగించుటకు అప్రమేయ శోధనా ఎత్తుగడ నామము, అందుబాటులో ఉంటే. " +"అప్రమేయ ఎత్తుగడ 'ఖచ్చితం', అంటే ఖచ్చితమైన పదాలను సరిపోల్చాలి." #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2034,7 +2066,8 @@ #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:22 msgid "" "The name of the dictionary source used to retrieve the definitions of words." -msgstr "పదముల యొక్క నిర్వచనములు వెలికితీయుటకు నిఘంటువు వనరు యొక్క నామము వాడబడినది." +msgstr "" +"పదముల యొక్క నిర్వచనములు వెలికితీయుటకు నిఘంటువు వనరు యొక్క నామము వాడబడినది." #: mate-dictionary/data/thai.desktop.in:3 msgid "Thai" @@ -2102,8 +2135,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"'%s:%d' సేవిక వద్ద నిఘంటువు కు అనుసంధానము కుదరలేదు. సేవిక బదులిచ్చింది %d సంకేతంతో (సేవిక " -"కిందికి)" +"'%s:%d' సేవిక వద్ద నిఘంటువు కు అనుసంధానము కుదరలేదు. సేవిక బదులిచ్చింది %d " +"సంకేతంతో (సేవిక కిందికి)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -3004,7 +3037,8 @@ msgid "Save images of your desktop or individual windows" msgstr "మీ యొక్క రంగస్థలం లేదా వ్యక్తిగత గవాక్షాల ప్రతిరూపాలను దాచుము" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3027,7 +3061,8 @@ #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:6 msgid "The number of seconds to wait before taking the screenshot." -msgstr "తెరపట్టు(స్క్రీన్‌షాట్) తీసుకొనుటకు ముందుగా వేచివుండవలసిన సమయం సెకనులలో." +msgstr "" +"తెరపట్టు(స్క్రీన్‌షాట్) తీసుకొనుటకు ముందుగా వేచివుండవలసిన సమయం సెకనులలో." #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:10 msgid "Screenshot directory" @@ -3062,8 +3097,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"బయటఉన్న సరిహద్దుకు కలుపవలిసిన పర్యావసానం.సాధ్యమగు విలువలు \"గవాక్షం\", \"ఏదీకాదు\", మరియు " -"\"సరిహద్దు\"." +"బయటఉన్న సరిహద్దుకు కలుపవలిసిన పర్యావసానం.సాధ్యమగు విలువలు \"గవాక్షం\", " +"\"ఏదీకాదు\", మరియు \"సరిహద్దు\"." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3201,15 +3236,16 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 msgid "" "Conflicting options: --window and --area should not be used at the same " "time.\n" -msgstr "విభేదించుచున్న ఐచ్చికములు: --window మరియు --area వొకేసారి వుపయోగించకూడదు.\n" +msgstr "" +"విభేదించుచున్న ఐచ్చికములు: --window మరియు --area వొకేసారి వుపయోగించకూడదు.\n" #: mate-screenshot/src/screenshot-dialog.c:210 #, c-format @@ -3243,7 +3279,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"శిశువును భద్రపరచు క్రమణం అనుకోకుండా ప్రభావితం అయినది. మేము ఛాయాచిత్రంను డిస్కునకు వ్రాయలేము." +"శిశువును భద్రపరచు క్రమణం అనుకోకుండా ప్రభావితం అయినది. మేము ఛాయాచిత్రంను " +"డిస్కునకు వ్రాయలేము." #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" @@ -3256,7 +3293,9 @@ #: mate-screenshot/src/screenshot-xfer.c:77 #, c-format msgid "The file \"%s\" already exists. Would you like to replace it?" -msgstr "దస్త్రం \"%s\" ఇదివరకే కలిగివుంది. నీవు దాన్నిపునఃస్థాపించుటకు ఇష్టపడుతున్నావా?" +msgstr "" +"దస్త్రం \"%s\" ఇదివరకే కలిగివుంది. నీవు దాన్నిపునఃస్థాపించుటకు " +"ఇష్టపడుతున్నావా?" #: mate-screenshot/src/screenshot-xfer.c:122 msgid "Saving file..." Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/th.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/th.gmo differ diff -Nru mate-utils-1.26.0/po/th.po mate-utils-1.26.1/po/th.po --- mate-utils-1.26.0/po/th.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/th.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,26 +2,27 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Jirasinee Tangtitawong , 2018 -# Akom , 2018 -# Rockers , 2019 +# clefebvre , 2021 # Stefano Karapetsas , 2021 +# Rockers , 2021 +# Wolfgang Ulbrich , 2021 +# Akom , 2021 # Aefgh Threenine , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Aefgh Threenine , 2021\n" -"Language-Team: Thai (https://www.transifex.com/mate/teams/13566/th/)\n" -"Language: th\n" +"Language-Team: Thai (https://app.transifex.com/mate/teams/13566/th/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -33,7 +34,8 @@ msgid "Check folder sizes and available disk space" msgstr "ตรวจสอบขนาดของโฟลเดอร์ต่างๆ และเนื้อที่ว่างในดิสก์" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -99,7 +101,7 @@ #: baobab/data/baobab-main-window.ui:101 logview/src/logview-window.c:823 #: mate-dictionary/src/gdict-window.c:1260 msgid "_View" -msgstr "มุม_มอง" +msgstr "มุ_มมอง" #: baobab/data/baobab-main-window.ui:108 msgid "_Toolbar" @@ -116,7 +118,7 @@ #: baobab/data/baobab-main-window.ui:136 logview/src/logview-window.c:851 #: mate-dictionary/src/gdict-window.c:1312 msgid "_Contents" -msgstr "เ_นื้อหา" +msgstr "เนื้อ_หา" #: baobab/data/baobab-main-window.ui:183 baobab/src/baobab.c:1237 #: baobab/src/callbacks.c:103 @@ -217,8 +219,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -313,7 +315,8 @@ #: baobab/src/baobab.c:1257 msgid "Too many arguments. Only one directory can be specified." -msgstr "อาร์กิวเมนต์เยอะเกินไป สามารถระบุไดเรกทอรีได้เพียงไดเรกทอรีเดียวเท่านั้น" +msgstr "" +"อาร์กิวเมนต์เยอะเกินไป สามารถระบุไดเรกทอรีได้เพียงไดเรกทอรีเดียวเท่านั้น" #: baobab/src/baobab.c:1274 msgid "Could not detect any mount point." @@ -491,7 +494,7 @@ #: baobab/src/baobab-treeview.c:244 msgid "Usage" -msgstr "การใช้เนื้อที่" +msgstr "วิธีใช้" #: baobab/src/baobab-treeview.c:258 gsearchtool/src/gsearchtool.c:2466 msgid "Size" @@ -570,8 +573,9 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"โปรแกรมนี้เป็นซอฟต์แวร์เสรี คุณสามารถแจกจ่ายต่อ และ/หรือ แก้ไขโปรแกรมได้ ภายใต้เงื่อนไขของ " -"GNU General Public License ที่เผยแพร่โดยมูลนิธิซอฟต์แวร์เสรี ไม่ว่าจะเป็นสัญญาอนุญาตรุ่นที่ 2 " +"โปรแกรมนี้เป็นซอฟต์แวร์เสรี คุณสามารถแจกจ่ายต่อ และ/หรือ แก้ไขโปรแกรมได้ " +"ภายใต้เงื่อนไขของ GNU General Public License " +"ที่เผยแพร่โดยมูลนิธิซอฟต์แวร์เสรี ไม่ว่าจะเป็นสัญญาอนุญาตรุ่นที่ 2 " "หรือรุ่นถัดมา (ตามแต่คุณจะเลือก)" #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 @@ -582,16 +586,16 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"โปรแกรมนี้เผยแพร่ด้วยความหวังว่าโปรแกรมจะมีประโยชน์ แต่ *ไม่มีการรับประกันใดๆ* " -"ไม่มีแม้การรับประกัน *อรรถประโยชน์เชิงพาณิชย์* หรือ " -"*ความเหมาะสมสำหรับวัตถุประสงค์เฉพาะกิจใดๆ* กรุณาอ่าน GNU General Public License " -"เพื่อดูรายละเอียดเพิ่มเติม" +"โปรแกรมนี้เผยแพร่ด้วยความหวังว่าโปรแกรมจะมีประโยชน์ แต่ " +"*ไม่มีการรับประกันใดๆ* ไม่มีแม้การรับประกัน *อรรถประโยชน์เชิงพาณิชย์* หรือ " +"*ความเหมาะสมสำหรับวัตถุประสงค์เฉพาะกิจใดๆ* กรุณาอ่าน GNU General Public " +"License เพื่อดูรายละเอียดเพิ่มเติม" #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -611,7 +615,7 @@ #: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" -msgstr "Akom Chotiphantawanon , 2016" +msgstr "Akom Chotiphantawanon " #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -635,16 +639,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "ค้นหาเอกสารและโฟลเดอร์ในคอมพิวเตอร์นี้ด้วยชื่อหรือเนื้อหา" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -670,7 +675,9 @@ msgid "" "This key determines if the search tool disables the use of the locate " "command when performing simple file name searches." -msgstr "กำหนดให้เครื่องมือค้นหาปิดการใช้คำสั่ง locate สำหรับการค้นหาชื่อแฟ้มอย่างง่าย" +msgstr "" +"กำหนดให้เครื่องมือค้นหาปิดการใช้คำสั่ง locate " +"สำหรับการค้นหาชื่อแฟ้มอย่างง่าย" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:19 msgid "Quick Search Excluded Paths" @@ -678,12 +685,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." -msgstr "" -"กำหนดพาธที่เครื่องมือค้นหาจะไม่รวมในผลลัพธ์ของการค้นอย่างเร็ว สามารถใช้ wildcard '*' และ " -"'?' ได้ ค่าโดยปริยายคือ /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, และ /var/*" +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +msgstr "" +"กำหนดพาธที่เครื่องมือค้นหาจะไม่รวมในผลลัพธ์ของการค้นอย่างเร็ว สามารถใช้ " +"wildcard '*' และ '?' ได้ ค่าโดยปริยายคือ /mnt/*, /media/*, /dev/*, /tmp/*, " +"/proc/*, และ /var/*" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -693,7 +701,8 @@ msgid "" "This key determines if the search tool disables the use of the find command " "after performing a quick search." -msgstr "กำหนดให้เครื่องมือค้นหาปิดการใช้คำสั่ง find หลังจากค้นหาอย่างเร็วเสร็จแล้ว" +msgstr "" +"กำหนดให้เครื่องมือค้นหาปิดการใช้คำสั่ง find หลังจากค้นหาอย่างเร็วเสร็จแล้ว" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -704,12 +713,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"กำหนดพาธที่เครื่องมือค้นหาจะไม่ค้นในรอบสองของการค้นอย่างเร็ว การค้นรอบสองจะใช้คำสั่ง find " -"ในการค้นหาแฟ้ม มีจุดมุ่งหมายเพื่อค้นหาแฟ้มที่ยังไม่ถูกทำดัชนี สามารถใช้ wildcard '*' และ '?' " -"ได้ ค่าโดยปริยายคือ /" +"กำหนดพาธที่เครื่องมือค้นหาจะไม่ค้นในรอบสองของการค้นอย่างเร็ว " +"การค้นรอบสองจะใช้คำสั่ง find ในการค้นหาแฟ้ม " +"มีจุดมุ่งหมายเพื่อค้นหาแฟ้มที่ยังไม่ถูกทำดัชนี สามารถใช้ wildcard '*' และ " +"'?' ได้ ค่าโดยปริยายคือ /" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -719,7 +729,8 @@ msgid "" "This key defines the order of the columns in the search results. This key " "should not be modified by the user." -msgstr "กำหนดลำดับของคอลัมน์ในการแสดงผลการค้นหา ผู้ใช้ไม่ควรเปลี่ยนแปลงคีย์นี้" +msgstr "" +"กำหนดลำดับของคอลัมน์ในการแสดงผลการค้นหา ผู้ใช้ไม่ควรเปลี่ยนแปลงคีย์นี้" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" @@ -727,12 +738,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -"กำหนดความกว้างของหน้าต่าง และใช้จำขนาดของเครื่องมือค้นหาข้ามวาระ ถ้ากำหนดเป็น -1 " -"จะใช้ความกว้างปริยาย" +"กำหนดความกว้างของหน้าต่าง และใช้จำขนาดของเครื่องมือค้นหาข้ามวาระ " +"ถ้ากำหนดเป็น -1 จะใช้ความกว้างปริยาย" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -741,11 +752,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"กำหนดความสูงของหน้าต่าง และใช้จำขนาดของเครื่องมือค้นหาข้ามวาระ ถ้ากำหนดเป็น -1 " -"จะใช้ความสูงปริยาย" +"กำหนดความสูงของหน้าต่าง และใช้จำขนาดของเครื่องมือค้นหาข้ามวาระ ถ้ากำหนดเป็น " +"-1 จะใช้ความสูงปริยาย" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -774,13 +785,16 @@ msgid "" "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." -msgstr "กำหนดให้เลือกตัวเลือก \"แก้ไขครั้งล่าสุดภายใน\" เมื่อเริ่มเปิดเครื่องมือค้นหา" +msgstr "" +"กำหนดให้เลือกตัวเลือก \"แก้ไขครั้งล่าสุดภายใน\" " +"เมื่อเริ่มเปิดเครื่องมือค้นหา" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." -msgstr "กำหนดให้เลือกตัวเลือก \"แก้ไขครั้งล่าสุดก่อน\" เมื่อเริ่มเปิดเครื่องมือค้นหา" +msgstr "" +"กำหนดให้เลือกตัวเลือก \"แก้ไขครั้งล่าสุดก่อน\" เมื่อเริ่มเปิดเครื่องมือค้นหา" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" @@ -798,7 +812,8 @@ msgid "" "This key determines if the \"File is empty\" search option is selected when " "the search tool is started." -msgstr "กำหนดให้เลือกตัวเลือก \"แฟ้มเปล่าไม่มีข้อมูล\" เมื่อเริ่มเปิดเครื่องมือค้นหา" +msgstr "" +"กำหนดให้เลือกตัวเลือก \"แฟ้มเปล่าไม่มีข้อมูล\" เมื่อเริ่มเปิดเครื่องมือค้นหา" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:86 msgid "" @@ -808,8 +823,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "กำหนดให้เลือกตัวเลือก \"เป็นของกลุ่ม\" เมื่อเริ่มเปิดเครื่องมือค้นหา" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -826,84 +841,90 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." -msgstr "กำหนดให้เลือกตัวเลือก \"ชื่อที่ตรงกับนิพจน์เรกิวลาร์\" เมื่อเริ่มเปิดเครื่องมือค้นหา" +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." +msgstr "" +"กำหนดให้เลือกตัวเลือก \"ชื่อที่ตรงกับนิพจน์เรกิวลาร์\" " +"เมื่อเริ่มเปิดเครื่องมือค้นหา" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 msgid "" "This key determines if the \"Show hidden files and folders\" search option " "is selected when the search tool is started." -msgstr "กำหนดให้เลือกตัวเลือก \"แสดงแฟ้มสำรอง และแฟ้มที่ถูกซ่อน\" เมื่อเริ่มเปิดเครื่องมือค้นหา" +msgstr "" +"กำหนดให้เลือกตัวเลือก \"แสดงแฟ้มสำรอง และแฟ้มที่ถูกซ่อน\" " +"เมื่อเริ่มเปิดเครื่องมือค้นหา" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:110 msgid "" "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." -msgstr "กำหนดให้เลือกตัวเลือก \"ติดตามลิงก์สัญลักษณ์\" เมื่อเริ่มเปิดเครื่องมือค้นหา" +msgstr "" +"กำหนดให้เลือกตัวเลือก \"ติดตามลิงก์สัญลักษณ์\" เมื่อเริ่มเปิดเครื่องมือค้นหา" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" "This key determines if the \"Exclude other filesystems\" search option is " "selected when the search tool is started." -msgstr "กำหนดให้เลือกตัวเลือก \"ไม่รวมระบบแฟ้มอื่น\" เมื่อเริ่มเปิดเครื่องมือค้นหา" +msgstr "" +"กำหนดให้เลือกตัวเลือก \"ไม่รวมระบบแฟ้มอื่น\" เมื่อเริ่มเปิดเครื่องมือค้นหา" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "แฟ้มนี้ไม่ใช่แฟ้ม .desktop ที่ใช้ได้" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "ไม่รู้จักแฟ้มเดสก์ท็อปรุ่น '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "กำลังเริ่ม %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "โปรแกรมไม่รับเอกสารในบรรทัดคำสั่ง" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "ไม่รู้จักตัวเลือกของการเรียกโปรแกรม: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "ไม่สามารถส่ง URI ของเอกสารไปยังรายการเดสก์ท็อปที่มี 'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "ไม่ใช่รายการที่เรียกทำงานได้" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "ปิดใช้การเชื่อมต่อไปยังโปรแกรมจัดการวาระ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "ระบุแฟ้มที่บันทึกค่าตั้งไว้" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FILE" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "ระบุหมายเลขการจัดการวาระ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "ตัวเลือกเกี่ยวกับการจัดการวาระ:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "แสดงตัวเลือกเกี่ยวกับการจัดการวาระ" @@ -1110,7 +1131,9 @@ msgid "" "The search results may be out of date or invalid. Do you want to disable " "the quick search feature?" -msgstr "ผลการค้นหาอาจเป็นข้อมูลเก่าหรือไม่ถูกต้อง คุณต้องการปิดการค้นหาแบบเร็วหรือไม่?" +msgstr "" +"ผลการค้นหาอาจเป็นข้อมูลเก่าหรือไม่ถูกต้อง " +"คุณต้องการปิดการค้นหาแบบเร็วหรือไม่?" #: gsearchtool/src/gsearchtool.c:1818 msgid "Disable _Quick Search" @@ -1505,7 +1528,8 @@ msgid "View or monitor system log files" msgstr "อ่านหรือเฝ้าสังเกตปูมของระบบ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1516,11 +1540,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"กำหนดแฟ้มปูมที่จะแสดงเมื่อเริ่มโปรแกรม ค่าปริยายเป็นได้ทั้ง /var/adm/messages หรือ /var/" -"log/messages ตามแต่ระบบปฏิบัติการที่ใช้" +"กำหนดแฟ้มปูมที่จะแสดงเมื่อเริ่มโปรแกรม ค่าปริยายเป็นได้ทั้ง " +"/var/adm/messages หรือ /var/log/messages ตามแต่ระบบปฏิบัติการที่ใช้" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1559,7 +1583,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"กำหนดรายการแฟ้มปูมที่จะเปิดเมื่อเริ่มโปรแกรม ค่าปริยายของคีย์นี้จะสร้างจาก /etc/syslog.conf" +"กำหนดรายการแฟ้มปูมที่จะเปิดเมื่อเริ่มโปรแกรม ค่าปริยายของคีย์นี้จะสร้างจาก " +"/etc/syslog.conf" #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1920,7 +1945,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "หาความหมายและการสะกดของคำในพจนานุกรมออนไลน์" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1932,8 +1958,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -1963,8 +1989,9 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"ชื่อของฐานข้อมูลเดี่ยวหรือกลุ่มฐานข้อมูลปริยายที่จะใช้จากแหล่งพจนานุกรม การใช้เครื่องหมายอัศเจรีย์ " -"(\"!\") จะหมายถึงให้ค้นทุกฐานข้อมูลที่มีอยู่ในแหล่งนั้น" +"ชื่อของฐานข้อมูลเดี่ยวหรือกลุ่มฐานข้อมูลปริยายที่จะใช้จากแหล่งพจนานุกรม " +"การใช้เครื่องหมายอัศเจรีย์ (\"!\") " +"จะหมายถึงให้ค้นทุกฐานข้อมูลที่มีอยู่ในแหล่งนั้น" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2061,8 +2088,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"ไม่สามารถเชื่อมต่อกับเซิร์ฟเวอร์พจนานุกรมที่ '%s:%d' ได้ คำตอบจากเซิร์ฟเวอร์คือรหัส %d " -"(เซิร์ฟเวอร์ปิดบริการ)" +"ไม่สามารถเชื่อมต่อกับเซิร์ฟเวอร์พจนานุกรมที่ '%s:%d' ได้ " +"คำตอบจากเซิร์ฟเวอร์คือรหัส %d (เซิร์ฟเวอร์ปิดบริการ)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2575,7 +2602,7 @@ #: mate-dictionary/src/gdict-applet.c:1170 msgid "Preferences" -msgstr "การตั้งค่า" +msgstr "การปรับแต่ง" #: mate-dictionary/src/gdict-common.c:77 #, c-format @@ -2714,7 +2741,7 @@ #: mate-dictionary/src/gdict-window.c:1288 msgid "_Preferences" -msgstr "_การกำหนดค่า" +msgstr "_ปรับแต่ง" #: mate-dictionary/src/gdict-window.c:1292 msgid "_Previous Definition" @@ -2962,7 +2989,8 @@ msgid "Save images of your desktop or individual windows" msgstr "บันทึกภาพของเดสก์ท็อปหรือหน้าต่างที่กำหนด" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3020,8 +3048,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"เอฟเฟกต์ที่จะเพิ่มให้กับขอบนอกกรอบหน้าต่าง ค่าที่เป็นไปได้คือ \"shadow\", \"none\", และ " -"\"border\"" +"เอฟเฟกต์ที่จะเพิ่มให้กับขอบนอกกรอบหน้าต่าง ค่าที่เป็นไปได้คือ \"shadow\", " +"\"none\", และ \"border\"" #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3159,8 +3187,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3204,7 +3232,9 @@ msgid "" "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." -msgstr "โพรเซสลูกที่บันทึกแฟ้มหยุดทำงานกระทันหัน จึงไม่สามารถเขียนแฟ้มภาพหน้าจอลงดิสก์ได้" +msgstr "" +"โพรเซสลูกที่บันทึกแฟ้มหยุดทำงานกระทันหัน " +"จึงไม่สามารถเขียนแฟ้มภาพหน้าจอลงดิสก์ได้" #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/tk.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/tk.gmo differ diff -Nru mate-utils-1.26.0/po/tk.po mate-utils-1.26.1/po/tk.po --- mate-utils-1.26.0/po/tk.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/tk.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2019 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2019\n" -"Language-Team: Turkmen (https://www.transifex.com/mate/teams/13566/tk/)\n" -"Language: tk\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Turkmen (https://app.transifex.com/mate/teams/13566/tk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tk\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -623,16 +624,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -666,9 +668,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -690,8 +692,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -710,9 +712,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -722,8 +724,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -787,8 +789,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -805,8 +807,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -827,62 +829,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s başlanýa" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Aýtem sataşarlik dal" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Ötürşük müdire baglançy söndir" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1487,7 +1489,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1498,8 +1501,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1897,7 +1900,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1909,8 +1913,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2924,7 +2928,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3116,8 +3121,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/tr.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/tr.gmo differ diff -Nru mate-utils-1.26.0/po/tr.po mate-utils-1.26.1/po/tr.po --- mate-utils-1.26.0/po/tr.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/tr.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,29 +2,32 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Yasin Uysal , 2018 -# tarakbumba , 2018 -# Emre FIRAT , 2019 -# 0d1bdb3b9a0d4e8f77bc854af8bf3dfc_e6913f4, 2019 -# Mehmet, 2019 -# Butterfly , 2020 +# clefebvre , 2021 +# hilalis , 2021 +# 0d1bdb3b9a0d4e8f77bc854af8bf3dfc_e6913f4, 2021 +# tarakbumba , 2021 # mauron, 2021 # Stefano Karapetsas , 2021 -# +# Emre FIRAT , 2021 +# Butterfly , 2021 +# Yasin Uysal , 2021 +# Mehmet, 2022 +# Sabri Ünal , 2022 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Turkish (https://www.transifex.com/mate/teams/13566/tr/)\n" -"Language: tr\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Sabri Ünal , 2022\n" +"Language-Team: Turkish (https://app.transifex.com/mate/teams/13566/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -36,7 +39,8 @@ msgid "Check folder sizes and available disk space" msgstr "Dizin boyutlarını ve mevcut boş disk alanını kontrol et" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "MATE;kontrol;disk;kullanım;analiz;boyut;alan;" @@ -222,14 +226,14 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" "Adından anlaşılacağı gibi, Disk Kullanım Analizcisi, disk kullanımınızı ve " "dizin yapınızı görüntülemek ve izlemek için kullanabileceğiniz grafik " -"arayüzlü yardımcı bir programdır. Halka veya ağaç harita grafikleri ile özet " -"bilgileri gösterir." +"arayüzlü yardımcı bir programdır. Halka veya ağaç harita grafikleri ile özet" +" bilgileri gösterir." #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 msgid "" @@ -237,7 +241,7 @@ "local or remote. There is also an option to constantly monitor any external " "changes to the home directory and warn the user if a file is added/removed." msgstr "" -"Bir dosya sisteminde, evinizde veya başka bir dizinde (yerel veya uzak) " +"Bir dosya sisteminde, evinizde veya yerel ya da uzak herhangi bir dizinde " "tarama yapabilirsiniz. Ana dizinde yapılan harici değişiklikleri sürekli " "olarak izleme ve bir dosya ekleme/kaldırma olursa kullanıcıyı uyarma " "seçeneği de vardır." @@ -282,8 +286,8 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d unsur" -msgstr[1] "%5d unsur" +msgstr[0] "" +msgstr[1] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -597,15 +601,19 @@ "more details." msgstr "" "Bu program faydalı olacağı umut edilerek dağıtılmaktadır, fakat HİÇBİR " -"GARANTİSİ YOKTUR; hatta ÜRÜN DEĞERİ ya da BİR AMACA UYGUNLUK gibi garantiler " -"de vermez. Lütfen daha fazla detay için GNU Genel Kamu Lisansı'nı inceleyin." +"GARANTİSİ YOKTUR; hatta ÜRÜN DEĞERİ ya da BİR AMACA UYGUNLUK gibi garantiler" +" de vermez. Lütfen daha fazla detay için GNU Genel Kamu Lisansı'nı " +"inceleyin." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" +"Bu programla birlikte, GNU Genel Kamu Lisansı'nın bir kopyasını da edinmiş " +"olmalısınız. Edinmemişseniz, bağlantısına " +"bakın." #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" @@ -613,13 +621,15 @@ #: baobab/src/callbacks.c:106 msgid "Analyze your disk usage through a graphical tool." -msgstr "" +msgstr "Grafiksel araç ile disk kullanımınızı analiz edin." #: baobab/src/callbacks.c:107 msgid "" "Copyright © 2005-2010 Fabio Marzocca\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Telif Hakkı © 2005-2010 Fabio Marzocca\n" +"Telif Hakkı © 2011-2021 MATE geliştiricileri" #: baobab/src/callbacks.c:113 logview/src/logview-about.h:62 #: mate-dictionary/src/gdict-about.c:53 @@ -632,9 +642,10 @@ "Muhammet Kara , 2011.\n" "MATE projesine katkıda bulunanlar:\n" "hsngrms , 2012\n" -"mauron, 2012-2014\n" +"mauron, 2012, 2013, 2014, 2015, 2016, 2017, 2018\n" "Atilla Öntaş , 2014\n" -"Emre FIRAT , 2013, 2014, 2015" +"Emre FIRAT , 2013, 2014, 2015\n" +"Hilalis BIRDS , 2021" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -658,26 +669,28 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." -msgstr "" -"

MATE Arama Aracı takılı bütün dosya sistemlerinde dosya ve klasör " -"aramanıza imkân sağlayan sade ama aynı zamanda güçlü bir programdır. Arayüzü " -"her arama için dosyanın içerdiği metin, sahibi, değiştirilme tarihi, dosya " -"boyutu, klasör dışlaması vs. gibi çok çeşitli parametrelere anında erişim " -"sağlar

" +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." +msgstr "" +"MATE Arama Aracı takılı bütün dosya sistemlerinde dosya ve klasör aramanıza " +"imkân sağlayan sade ama aynı zamanda güçlü bir programdır. Arayüzü her arama" +" için dosyanın içerdiği metin, sahibi, değiştirilme tarihi, dosya boyutu, " +"klasör dışlaması vs. gibi çok çeşitli parametrelere anında erişim sağlar." #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -"Bu bilgisayardaki belgeleri ve dizinleri ismi ya da içeriği ile konumlandırın" +"Bu bilgisayardaki belgeleri ve dizinleri ismi ya da içeriği ile " +"konumlandırın" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" -msgstr "MATE;arama;dosyalar;konum;belgeler;dizinler;bilgisayar;ad;içerik;araç;" +msgstr "" +"MATE;arama;dosyalar;konum;belgeler;dizinler;bilgisayar;ad;içerik;araç;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -709,13 +722,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Bu anahtar arama aracının hızlı aramasından çıkarılacak yolları tanımlar. " -"Maskeleme karakterleri '*' ve '?' desteklenmektedir. Öntanımlı değerler /mnt/" -"*, /media/*, /dev/*, /tmp/*, /proc/*, ve /var/*." +"Maskeleme karakterleri '*' ve '?' desteklenmektedir. Öntanımlı değerler " +"/mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, ve /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -738,13 +751,13 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"Bu anahtar ikinci kez yapılacak hızlı aramadan çıkarılacak yolları tanımlar. " -"İkinci arama dosyaları aramak için bul komutunu kullanır. İkinci aramanın " -"amacı dizinlenmemiş dosyaları bulmaktadır. Maskeleme karakterleri '*' ve '?' " -"desteklenmektedir. Öntanımlı değer /'dir." +"Bu anahtar ikinci kez yapılacak hızlı aramadan çıkarılacak yolları tanımlar." +" İkinci arama dosyaları aramak için bul komutunu kullanır. İkinci aramanın " +"amacı dizinlenmemiş dosyaları bulmaktadır. Maskeleme karakterleri '*' ve '?'" +" desteklenmektedir. Öntanımlı değer /'dir." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -762,12 +775,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -"Bu anahtar pencere genişliğini tanımlar ve oturumlar arasında arama aracının " -"boyutunu hatırlamakta kullanılır. Bunu -1 yapmak arama aracının öntanımlı " +"Bu anahtar pencere genişliğini tanımlar ve oturumlar arasında arama aracının" +" boyutunu hatırlamakta kullanılır. Bunu -1 yapmak arama aracının öntanımlı " "genişliği kullanmasını sağlar." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -777,8 +790,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "Bu anahtar pencere yüksekliğini tanımlar ve oturumlar arası arama aracının " "boyutunu hatırlamak için kullanılır." @@ -800,8 +813,7 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:55 msgid "This key defines the default value of the \"Look in Folder\" widget." -msgstr "" -"Bu anahtar \"Dizin içinde Ara\" parçasının öntanımlı değerini tanımlar." +msgstr "Bu anahtar \"Dizin içinde Ara\" parçasının öntanımlı değerini tanımlar." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:62 msgid "" @@ -861,8 +873,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Bu anahtar arama aracı başladığında \"Ait olduğu grup\" arama seçeneğinin " "seçili olup olmadığını belirler." @@ -885,8 +897,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Bu anahtar arama aracı başladığında \"İsim düzenli deyimlerle uyuşuyor\" " "arama seçeneğinin seçili olup olmadığını belirler." @@ -915,62 +927,62 @@ "Bu anahtar arama aracı başladığında \"Diğer dosya sistemleri hariç\" arama " "seçeneğinin seçili olup olmadığını belirler." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Dosya geçerli bir .desktop dosyası değil" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Tanınmayan desktop dosyası Sürüm '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s başlatılıyor" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Uygulama komut satırında belgeleri kabul etmiyor" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Anımsanamayan başlatma seçeneği: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Belge URI'leri bir 'Tür=Bağ' masaüstü girişine geçilemiyor" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Başlatılabilir bir öğe değil" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Ortam yöneticisiyle bağlantıyı kapat" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Kaydedilen yapılandırmayı içeren dosyayı belirtin" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "DOSYA" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Ortam yönetici ID belirtin" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "No" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Ortam yönetimi seçenekleri:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Ortam yönetimi seçeneklerini göster" @@ -1109,15 +1121,15 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "%'d Dosya Bulundu" -msgstr[1] "%'d Dosya Bulundu" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "%'d dosya bulundu" -msgstr[1] "%'d dosya bulundu" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1346,16 +1358,16 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "%d belgeyi açmak istediğinizden emin misiniz?" -msgstr[1] "%d belgeyi açmak istediğinizden emin misiniz?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Bu %d ayrı pencere açar." -msgstr[1] "Bu %d ayrı pencere açar." +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1379,8 +1391,8 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "%d tane klasörü açmak istediğinizden emin misiniz?" -msgstr[1] "%d tane klasörü açmak istediğinizden emin misiniz?" +msgstr[0] "" +msgstr[1] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1437,7 +1449,7 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1310 msgid "Copy _Path" -msgstr "" +msgstr "_Yolu Kopyala" #: gsearchtool/src/gsearchtool-callbacks.c:1344 msgid "_Save Results As..." @@ -1585,7 +1597,8 @@ msgid "View or monitor system log files" msgstr "Sistem günlük dosyalarını göster ya da izle" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "MATE;izleme;görünüm;sistem;günlük;dosyalar;gösterici;" @@ -1596,8 +1609,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "Başlangıçta açılacak günlük dosyasını belirtir. Öntanımlı değer işletim " "sisteminize bağlı olarak ya /var/adm/messages ya da /var/log/messages " @@ -1631,7 +1644,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:21 msgid "Specifies the width of the log viewer main window in pixels." -msgstr "Benek cinsinden günlük görüntüleyici ana pencere genişliğini belirtir." +msgstr "" +"Benek cinsinden günlük görüntüleyici ana pencere genişliğini belirtir." #: logview/data/org.mate.system-log.gschema.xml.in:25 msgid "Log files to open up on startup" @@ -1642,8 +1656,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"Başlangıçta açılacak günlük dosyalarının listesini belirtir. /etc/syslog." -"conf dosyası okunarak öntanımlı bir liste oluşturulur." +"Başlangıçta açılacak günlük dosyalarının listesini belirtir. " +"/etc/syslog.conf dosyası okunarak öntanımlı bir liste oluşturulur." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1660,7 +1674,7 @@ #: logview/data/logview-filter.ui:48 msgid "_Apply" -msgstr "" +msgstr "_Uygula" #: logview/data/logview-filter.ui:91 #: mate-screenshot/data/mate-screenshot.ui:178 @@ -1789,6 +1803,9 @@ "Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n" "Copyright (C) 2011-2021 MATE developers.\n" msgstr "" +"%s - Version %s\n" +"Telif Hakkı (C) 2004-2008 Vincent Noel, Cosimo Cecchi ve diğerleri.\n" +"Telif Hakkı (C) 2011-2021 MATE geliştiricileri.\n" #: logview/src/logview-main.c:64 msgid "Show the application's version" @@ -1849,10 +1866,13 @@ "Copyright © 1998-2008 Free Software Foundation, Inc.\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Telif Hakkı © 1998-2008 Free Software Foundation, Inc.\n" +"Telif Hakkı © 2011-2021 MATE geliştiricileri" #: logview/src/logview-window.c:778 msgid "View, monitor or analyze your system logs in a gradual manner." msgstr "" +"Sistem günlüklerini kademeli olarak görüntüleyin, izleyin veya analiz edin." #: logview/src/logview-window.c:821 mate-dictionary/src/gdict-window.c:1258 msgid "_File" @@ -1908,7 +1928,7 @@ #: logview/src/logview-window.c:841 msgid "Zoom _In" -msgstr "_Yakınlaş" +msgstr "_Yakınlaştır" #: logview/src/logview-window.c:841 msgid "Bigger text size" @@ -2006,7 +2026,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Sözcük tanımlarını ve yazımlarını çevrimiçi bir sözlükte denetle" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "MATE;sözlük;uygulamacık;eşanlam;yazım;denetim;tanım;çevrimiçi;" @@ -2018,8 +2039,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" "MATE Sözlüğü çevrimiçi sözlüklerde kelime aramanıza imkân sağlar. Öntanımlı " @@ -2152,8 +2173,8 @@ "Unable to connect to the dictionary server at '%s:%d'. The server replied " "with code %d (server down)" msgstr "" -"Sözlük sunucusuna '%s:%d' itibariyle bağlanılamadı. Sunucu %d kodu ile cevap " -"verdi (sunucu çalışmıyor)" +"Sözlük sunucusuna '%s:%d' itibariyle bağlanılamadı. Sunucu %d kodu ile cevap" +" verdi (sunucu çalışmıyor)" #: mate-dictionary/libgdict/gdict-client-context.c:1188 #, c-format @@ -2444,7 +2465,7 @@ #: mate-dictionary/src/gdict-about.c:54 msgid "Look up words or terms in a dictionary source." -msgstr "" +msgstr "Kelimeleri ve terimleri sözlük kaynağında ara." #: mate-dictionary/src/gdict-about.c:82 mate-dictionary/src/gdict-app.c:363 #: mate-dictionary/src/gdict-window.c:580 @@ -2461,6 +2482,8 @@ "Copyright © 2005-2006 Emmanuele Bassi\n" "Copyright © 2011-2021 MATE developers" msgstr "" +"Telif Hakkı © 2005-2006 Emmanuele Bassi\n" +"Telif Hakkı © 2011-2021 MATE geliştiricileri" #. Translators: the first is the word found, the second is the #. * database name and the last is the definition's text; please @@ -2747,8 +2770,8 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "Bir tanım bulundu" -msgstr[1] "%d tanım bulundu" +msgstr[0] "" +msgstr[1] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -2996,7 +3019,7 @@ #: mate-disk-image-mounter/src/main.c:131 msgid "Set up _read-only mount" -msgstr "_Salt-okunur bağlamayı ayarla" +msgstr "_Salt-okunur olarak bağlamayı ayarla" #: mate-disk-image-mounter/src/main.c:132 msgid "" @@ -3045,10 +3068,10 @@ "system clipboard or save them in Portable Network Graphics (.png) image " "format." msgstr "" -"MATE Ekran Fotoğrafı masaüstünüzün ya da uygulama pencerelerinin fotoğrafını " -"çekmenize imkân sağlayan sade bir programdır. Fotoğrafları sistem panosuna " -"kopyalamayı ya da Taşınabilir Ağ Grafiği (Portable Network Graphics, .png) " -"biçiminde kaydetmeyi seçebilirsiniz." +"MATE Ekran Görüntüsü; masaüstünüzün ya da uygulama pencerelerinin " +"görüntülerini almanıza imkân sağlayan basit bir programdır. Görüntüleri, " +"sistem panosuna kopyalamayı ya da Taşınabilir Ağ Grafiği (Portable Network " +"Graphics, .png) biçiminde kaydetmeyi seçebilirsiniz." #: mate-screenshot/data/mate-screenshot.desktop.in:3 #: mate-screenshot/src/mate-screenshot.c:519 @@ -3060,7 +3083,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Masaüstünüze ya da ayrı ayrı pencerelerinize ait görüntüleri kaydet" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "MATE;ekran;görüntü;yakala;masaüstü;pencere;resim;" @@ -3099,7 +3123,8 @@ #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:16 msgid "Include the window manager border along with the screenshot" -msgstr "Ekran görüntüsüyle birlikte pencere yöneticisi kenarlıklarını da kapsa" +msgstr "" +"Ekran görüntüsüyle birlikte pencere yöneticisi kenarlıklarını da kapsa" #: mate-screenshot/data/org.mate.screenshot.gschema.xml.in:20 msgid "Include Pointer" @@ -3118,8 +3143,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Kenarlıkların dışına uygulanacak efekt. Geçerli değerler \"shadow\" (gölge), " -"\"none\" (etki yok), \"border\" (kenarlık)." +"Kenarlıkların dışına uygulanacak efekt. Geçerli değerler \"shadow\" (gölge)," +" \"none\" (etki yok), \"border\" (kenarlık)." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3257,8 +3282,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Çakışan seçenekler: --clipboard ve --interactive aynı zamanda " "kullanılmamalıdır.\n" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/tt.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/tt.gmo differ diff -Nru mate-utils-1.26.0/po/tt.po mate-utils-1.26.1/po/tt.po --- mate-utils-1.26.0/po/tt.po 2021-08-05 19:45:49.000000000 +0000 +++ mate-utils-1.26.1/po/tt.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2018 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Tatar (https://www.transifex.com/mate/teams/13566/tt/)\n" -"Language: tt\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Tatar (https://app.transifex.com/mate/teams/13566/tt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tt\n" "Plural-Forms: nplurals=1; plural=0;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -577,8 +578,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -622,16 +623,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -665,9 +667,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -689,8 +691,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -709,9 +711,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -721,8 +723,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -786,8 +788,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -804,8 +806,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -826,62 +828,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1481,7 +1483,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1492,8 +1495,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1891,7 +1894,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1903,8 +1907,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2917,7 +2921,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3109,8 +3114,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ug.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ug.gmo differ diff -Nru mate-utils-1.26.0/po/ug.po mate-utils-1.26.1/po/ug.po --- mate-utils-1.26.0/po/ug.po 2021-08-05 19:45:50.000000000 +0000 +++ mate-utils-1.26.1/po/ug.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Stefano Karapetsas , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Uyghur (https://www.transifex.com/mate/teams/13566/ug/)\n" -"Language: ug\n" +"Language-Team: Uyghur (https://app.transifex.com/mate/teams/13566/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "قىسقۇچ چوڭلۇقى ۋە ئىشلىتىلىشچان دىسكا بوشلۇقىنى تەكشۈر" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -589,8 +590,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -643,17 +644,19 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -"بۇ كومپيۇتېردىكى پۈتۈك ۋە قىسقۇچلارنى ئاتى ياكى مەزمۇنى بويىچە ئورۇن بېكىتىدۇ" +"بۇ كومپيۇتېردىكى پۈتۈك ۋە قىسقۇچلارنى ئاتى ياكى مەزمۇنى بويىچە ئورۇن " +"بېكىتىدۇ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -689,13 +692,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "بۇ كۇنۇپكا تېز ئىزدەشنى ئىجرا قىلغاندا سىرتتا قالدۇرۇلىدىغان يولنى " -"ئېنىقلايدۇ. قوللايدىغان ئورتاق بەلگە '*' ۋە '?'. كۆڭۈلدىكى قىممىتى /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, /var/*." +"ئېنىقلايدۇ. قوللايدىغان ئورتاق بەلگە '*' ۋە '?'. كۆڭۈلدىكى قىممىتى /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -718,8 +721,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "بۇ كۇنۇپكا تېز ئىزدەشنى ئىجرا قىلغاندا ئىككىنچى قېتىم تەكشۈرگەندە سىرتتا " "قالدۇرۇلىدىغان يولنى ئېنىقلايدۇ. ئىككىنچى قېتىم تەكشۈرگەندە find بۇيرۇقىنى " @@ -744,9 +747,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "بۇ كۇنۇپكا كۆزنەك كەڭلىكىنى ئېنىقلاپ، ئوخشاش بولمىغان ئەڭگىمە ئارىسىدا " "ئىزدەش قورالىنىڭ چوڭلۇقىنى ئەستە تۇتۇشقا ئىشلىتىلىدۇ. ئۇ -1 قىلىپ تەڭشەلسە " @@ -759,8 +762,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" "بۇ كۇنۇپكا كۆزنەك ئېگىزلىكىنى ئېنىقلاپ، ئوخشاش بولمىغان ئەڭگىمە ئارىسىدا " "ئىزدەش قورالىنىڭ چوڭلۇقىنى ئەستە تۇتۇشقا ئىشلىتىلىدۇ. ئۇ -1 قىلىپ تەڭشەلسە " @@ -844,8 +847,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "بۇ كۇنۇپكا ئىزدەش قورالى قوزغالغاندا «گۇرۇپپىغا تەۋە»نى تاللىغان ياكى " "تاللىمىغانلىق ئىزدەش تاللانمىسىنى بەلگىلەيدۇ." @@ -868,8 +871,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "بۇ كۇنۇپكا ئىزدەش قورالى قوزغالغاندا «ئات ماسلاشقان مۇنتىزىم ئىپادە»نى " "تاللىغان تاللىمىغانلىق ئىزدەش تاللانمىسىنى بەلگىلەيدۇ." @@ -887,8 +890,8 @@ "This key determines if the \"Follow symbolic links\" search option is " "selected when the search tool is started." msgstr "" -"بۇ كۇنۇپكا ئىزدەش قورالى قوزغالغاندا «بەلگە ئۇلانمىغا ئەگەش»نى تاللىغان ياكى " -"تاللىمىغانلىق ئىزدەش تاللانمىسىنى بەلگىلەيدۇ." +"بۇ كۇنۇپكا ئىزدەش قورالى قوزغالغاندا «بەلگە ئۇلانمىغا ئەگەش»نى تاللىغان ياكى" +" تاللىمىغانلىق ئىزدەش تاللانمىسىنى بەلگىلەيدۇ." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:114 msgid "" @@ -898,62 +901,62 @@ "بۇ كۇنۇپكا ئىزدەش قورالى قوزغالغاندا «باشقا ھۆججەت سىستېمىسىنى ئۆز ئىچىگە " "ئالمايدۇ»نى تاللىغان ياكى تاللىمىغانلىق ئىزدەش تاللانمىسىنى بەلگىلەيدۇ." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "ھۆججەت ئىناۋەتلىك .desktop ھۆججىتى ئەمەس." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "ئىناۋەتسىز ئۈستەل ئۈستى ھۆججەت نەشرى '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s قوزغىلىۋاتىدۇ" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "قوللىنىشچان پروگرامما بۇيرۇق قۇرىدا پۈتۈككە يول قويمايدۇ" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "تونۇمايدىغان ئىجرا تاللانمىسى: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "پۈتۈك URI نى 'Type=Link' ئۈستەليۈزى تۈرىگە يوللىيالمىدى." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "ئىجراچان تۈر ئەمەس" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "ئەڭگىمە باشقۇرغۇچقا ئۇلىنىشنى چەكلە" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "بەلگىلەنگەن سەپلىمە ساقلانغان ھۆججەت" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ھۆججەت" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "ئەڭگىمە باشقۇرغۇچ كىملىكىنى بەلگىلە" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "ئەڭگىمە باشقۇرغۇچ تاللانمىلىرى:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "ئەڭگىمە باشقۇرغۇچ تاللانمىلىرىنى كۆرسەت" @@ -1157,8 +1160,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"ئىزدەش نەتىجىسى بەلكىم ئىناۋەتسىز. چۈنكى بۇ قېتىملىق ئىزدەشنى ئىجرا قىلغاندا " -"خاتالىق كۆرۈلدى." +"ئىزدەش نەتىجىسى بەلكىم ئىناۋەتسىز. چۈنكى بۇ قېتىملىق ئىزدەشنى ئىجرا قىلغاندا" +" خاتالىق كۆرۈلدى." #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1264,7 +1267,8 @@ #: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 msgid "Enter a filename or partial filename with or without wildcards." msgstr "" -"ھۆججەت ئاتى ياكى قىسمەن ھۆججەت ئاتىنى كىرگۈزۈڭ ئورتاق بەلگە ئىشلىتىشكە بولىدۇ" +"ھۆججەت ئاتى ياكى قىسمەن ھۆججەت ئاتىنى كىرگۈزۈڭ ئورتاق بەلگە ئىشلىتىشكە " +"بولىدۇ" #: gsearchtool/src/gsearchtool.c:2836 msgid "Name contains" @@ -1571,7 +1575,8 @@ msgid "View or monitor system log files" msgstr "سىستېما خاتىرە ھۆججىتى كۆرسەت ياكى كۆزەت" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1582,12 +1587,12 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" "پروگرامما قوزغالغاندا كۆرسىتىدىغان خاتىرە ھۆججەت بەلگىلىنىدۇ. مەشغۇلات " -"سىستېمىڭىزنىڭ ئوخشاش بولماسلىقىغا ئاساسەن، كۆڭۈلدىكى /var/adm/messages ياكى /" -"var/log/messages" +"سىستېمىڭىزنىڭ ئوخشاش بولماسلىقىغا ئاساسەن، كۆڭۈلدىكى /var/adm/messages ياكى " +"/var/log/messages" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1608,7 +1613,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:16 msgid "Specifies the height of the log viewer main window in pixels." -msgstr "خاتىرە كۆرگۈچ ئاساسىي كۆزنىكىنىڭ ئېگىزلىكى بەلگىلىنىدۇ بىرلىكى پىكسېل." +msgstr "" +"خاتىرە كۆرگۈچ ئاساسىي كۆزنىكىنىڭ ئېگىزلىكى بەلگىلىنىدۇ بىرلىكى پىكسېل." #: logview/data/org.mate.system-log.gschema.xml.in:20 msgid "Width of the main window in pixels" @@ -1627,8 +1633,8 @@ "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." msgstr "" -"پروگرامما قوزغالغاندا ئاچىدىغان خاتىرە ھۆججەت. كۆڭۈلدىكى تىزىملىكى /etc/" -"syslog.conf نى ئوقۇپ قۇرۇلىدۇ." +"پروگرامما قوزغالغاندا ئاچىدىغان خاتىرە ھۆججەت. كۆڭۈلدىكى تىزىملىكى " +"/etc/syslog.conf نى ئوقۇپ قۇرۇلىدۇ." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1991,7 +1997,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "توردىكى لۇغەتتىن سۆز ئېنىقلىمىسى ۋە ئىملاسىنى تەكشۈر" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -2003,8 +2010,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -3033,7 +3040,8 @@ msgid "Save images of your desktop or individual windows" msgstr "ئۈستەل ئۈستىڭىز ياكى يەككە كۆزنەكنى سۈرەتكە ساقلايدۇ" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3230,8 +3238,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 @@ -3273,7 +3281,8 @@ "The child save process unexpectedly exited. We are unable to write the " "screenshot to disk." msgstr "" -"بالا جەريان ساقلاش تاسادىپىي چېكىندى. ئېكران كەسمىسىنى دىسكىغا ساقلىيالمايدۇ." +"بالا جەريان ساقلاش تاسادىپىي چېكىندى. ئېكران كەسمىسىنى دىسكىغا " +"ساقلىيالمايدۇ." #: mate-screenshot/src/screenshot-save.c:231 msgid "Unknown error saving screenshot to disk" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/uk.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/uk.gmo differ diff -Nru mate-utils-1.26.0/po/uk.po mate-utils-1.26.1/po/uk.po --- mate-utils-1.26.0/po/uk.po 2021-08-05 19:45:50.000000000 +0000 +++ mate-utils-1.26.1/po/uk.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,33 +2,31 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# 8368efb4263ae7005ba7cc0c0f943bdd_16f29c1, 2018 -# zubr139, 2018 -# Шаповалов Анатолій Романович , 2018 -# ZenWalker , 2019 -# Oleksii Khalikov , 2020 -# Yuri Chornoivan , 2020 +# 8368efb4263ae7005ba7cc0c0f943bdd_16f29c1, 2021 +# Wolfgang Ulbrich , 2021 +# Юрій Яновський , 2021 +# Шаповалов Анатолій Романович , 2021 +# Oleksii Khalikov , 2021 +# Yuri Chornoivan , 2021 # Stefano Karapetsas , 2021 +# zubr139, 2021 # Микола Ткач , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: Микола Ткач , 2021\n" -"Language-Team: Ukrainian (https://www.transifex.com/mate/teams/13566/uk/)\n" -"Language: uk\n" +"Language-Team: Ukrainian (https://app.transifex.com/mate/teams/13566/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != " -"11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % " -"100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || " -"(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:7 @@ -39,12 +37,12 @@ msgid "Check folder sizes and available disk space" msgstr "Перевірте розміри тек і дисковий простір" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" -"MATE;check;disk;usage;analyze;size;space;мате;перевірка;диск;використання;" -"аналіз;вжиток;розмір;простір;місце;" +"MATE;check;disk;usage;analyze;size;space;мате;перевірка;диск;використання;аналіз;вжиток;розмір;простір;місце;" #: baobab/data/baobab-dialog-scan-props.ui:18 msgid "Disk Usage Analyzer Preferences" @@ -225,8 +223,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" "Як можна зрозуміти з назви, «Аналізатор використання диска» — програма з " @@ -287,10 +285,10 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d об'єкт" -msgstr[1] "%5d об'єкти" -msgstr[2] "%5d об'єктів" -msgstr[3] "%5d об'єктів" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -549,7 +547,7 @@ #: baobab/src/baobab-utils.c:349 gsearchtool/src/gsearchtool-callbacks.c:1330 msgid "Mo_ve to Trash" -msgstr "Пере_містити у смітник" +msgstr "Пере_нести у смітник" #: baobab/src/baobab-utils.c:378 #, c-format @@ -612,8 +610,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" "Ви повинні були отримати копію Загальнодоступної ліцензії GNU разом із цією " "програмою. Якщо ні, дивіться ." @@ -640,7 +638,8 @@ msgstr "" "Yarema aka Knedlyk ,\n" "Микола Ткач ,\n" -"Oleh Tsyupka " +"Oleh Tsyupka \n" +"Юрій Яновський " #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -664,9 +663,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" "«Знаряддя пошуку MATE» — проста, але потужна програма, за допомогою якої " "можна шукати файли та теки на будь-якій змонтованій файловій системі. Її " @@ -679,14 +678,13 @@ msgid "Locate documents and folders on this computer by name or content" msgstr "Шукати документи та теки на цьому комп'ютері за назвою, чи вмістом" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" -"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" -"мате;пошук;файли;розташування;документи;теки;комп'ютер;назва;ім'я;вміст;" -"пошук;знайти;інструмент;" +"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;мате;пошук;файли;розташування;документи;теки;комп'ютер;назва;ім'я;вміст;пошук;знайти;інструмент;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -718,13 +716,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Цей ключ визначає шляхи, які буде виключено зі швидкого пошуку. " -"Підтримуються шаблони '*' та '?'. Типові значення /mnt/*, /media/*, /dev/*, /" -"tmp/*, /proc/*, and /var/*." +"Підтримуються шаблони '*' та '?'. Типові значення /mnt/*, /media/*, /dev/*, " +"/tmp/*, /proc/*, and /var/*." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -747,12 +745,12 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Цей ключ визначає шляхи, які програма пошуку буде виключати при другому " -"проході. Другий прохід використовує команду \"find\" для пошуку файлів. Мета " -"другого проходу - знайти файли, які не були проіндексовані. Підтримуються " +"проході. Другий прохід використовує команду \"find\" для пошуку файлів. Мета" +" другого проходу - знайти файли, які не були проіндексовані. Підтримуються " "шаблони '*' и '?'. Типові значення - /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -769,30 +767,30 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:39 msgid "Default Window Width" -msgstr "Типова ширина вікна" +msgstr "Усталена ширина вікна" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" -"Ключ визначає ширину вікна, та використовується для запам'ятовування розміру " -"вікна пошуку між сеансами. Встановлення значення -1 призводить до " +"Ключ визначає ширину вікна, та використовується для запам'ятовування розміру" +" вікна пошуку між сеансами. Встановлення значення -1 призводить до " "використання типової ширини." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" -msgstr "Типова висота вікна" +msgstr "Усталена висота вікна" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"Ключ визначає висоту вікна, та використовується для запам'ятовування розміру " -"вікна пошуку між сеансами. Встановлення значення -1 призводить до " +"Ключ визначає висоту вікна, та використовується для запам'ятовування розміру" +" вікна пошуку між сеансами. Встановлення значення -1 призводить до " "використання типової висоти." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -825,16 +823,16 @@ "This key determines if the \"Date modified less than\" search option is " "selected when the search tool is started." msgstr "" -"Цей ключ визначає чи буде вибрано параметр \"Дата останньої зміни менша за\" " -"при запуску програми пошуку." +"Цей ключ визначає чи буде вибрано параметр \"Дата останньої зміни менша за\"" +" при запуску програми пошуку." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:70 msgid "" "This key determines if the \"Date modified more than\" search option is " "selected when the search tool is started." msgstr "" -"Цей ключ визначає чи буде вибрано параметр \"Дата останньої зміни більша за" -"\" при запуску програми пошуку." +"Цей ключ визначає чи буде вибрано параметр \"Дата останньої зміни більша " +"за\" при запуску програми пошуку." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:74 msgid "" @@ -870,8 +868,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Цей ключ визначає чи буде вибрано параметр \"Належить групі\" при запуску " "програми пошуку." @@ -881,8 +879,8 @@ "This key determines if the \"Owner is unrecognized\" search option is " "selected when the search tool is started." msgstr "" -"Цей ключ визначає чи буде вибрано параметр \"Власник невідомий\" при запуску " -"програми пошуку." +"Цей ключ визначає чи буде вибрано параметр \"Власник невідомий\" при запуску" +" програми пошуку." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:98 msgid "" @@ -894,8 +892,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Цей ключ визначає чи буде вибрано параметр \"Назва відповідає регулярному " "виразу\" при запуску програми пошуку." @@ -924,62 +922,62 @@ "Цей ключ визначає чи буде вибрано параметр \"Не шукати на інших файлових " "системах\" при запуску програми пошуку." -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Файл не є коректним файлом .desktop" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Невідома версія файлу .desktop «%s»" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Запускаю '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Програма не може приймати документи з командного рядка" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Невідомий параметр запуску: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" -msgstr "Неможливо передати URI документа у лейбу типу «Посилання»" +msgstr "Неможливо передати URI документу в лейбу типу «Посилання»" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Елемент не запускається" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Заборонити під’єднання до керівника сеансів" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" -msgstr "Вказати файл, що містить збережені налаштування" +msgstr "Вказати файл, який містить збережені налаштування" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "ФАЙЛ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Визначити ідентифікатор для керівника сеансів" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Параметри керування сеансом" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Показати параметри взаємодії з керівником сеансів" @@ -1118,19 +1116,19 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "%'d Файл знайдено" -msgstr[1] "%'d Файли знайдено" -msgstr[2] "%'d Файлів знайдено" -msgstr[3] "%'d Файлів знайдено" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "%'d файл знайдено" -msgstr[1] "%'d файли знайдено" -msgstr[2] "%'d файлів знайдено" -msgstr[3] "%'d файлів знайдено" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1347,7 +1345,7 @@ #: gsearchtool/src/gsearchtool.c:3072 #, c-format msgid "Failed to parse command line arguments: %s\n" -msgstr "Помилка при розборі аргументів командного рядка: %s\n" +msgstr "Помилка при розборі арґументів командного рядка: %s\n" #: gsearchtool/src/gsearchtool-callbacks.c:192 msgid "Could not open help document." @@ -1357,20 +1355,20 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "Справді бажаєте відкрити %d документ?" -msgstr[1] "Справді бажаєте відкрити %d документи?" -msgstr[2] "Справді бажаєте відкрити %d документів?" -msgstr[3] "Справді бажаєте відкрити %d документів?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "Буде відкрито %d окреме вікно." -msgstr[1] "Буде відкрито %d окремі вікна." -msgstr[2] "Буде відкрито %d окремих вікон." -msgstr[3] "Буде відкрито %d окремих вікон." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1394,10 +1392,10 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "Справді бажаєте відкрити %d теку?" -msgstr[1] "Справді бажаєте відкрити %d теки?" -msgstr[2] "Справді бажаєте відкрити %d тек?" -msgstr[3] "Справді бажаєте відкрити %d тек?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1505,7 +1503,7 @@ #: gsearchtool/src/gsearchtool-support.c:429 msgid "yesterday at %-I:%M %p" -msgstr "вчора о %-H:%M" +msgstr "учора о %-H:%M" #: gsearchtool/src/gsearchtool-support.c:431 msgid "%A, %B %-d %Y at %-I:%M:%S %p" @@ -1601,12 +1599,12 @@ msgid "View or monitor system log files" msgstr "Перегляд і контроль системних журналів" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" -"MATE;monitor;view;system;log;files;logviewer;мате;монітор;спостереження;" -"перегляд;система;журнал;файли;" +"MATE;monitor;view;system;log;files;logviewer;мате;монітор;спостереження;перегляд;система;журнал;файли;" #: logview/data/org.mate.system-log.gschema.xml.in:5 msgid "Log file to open up on startup" @@ -1614,11 +1612,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Визначає файл журналу, який відкриватиметься на початку. Типово, або /var/" -"adm/messages, або /var/log/messages залежно від операційної системи." +"Визначає файл журналу, який відкриватиметься на початку. Типово, або " +"/var/adm/messages, або /var/log/messages залежно від операційної системи." #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1629,9 +1627,9 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"Визначає розмір моноширинного шрифту, що використовується при показі журналу " -"в головному ієрархічному дереві. Типовий шрифт береться з параметру шрифту " -"терміналу." +"Визначає розмір моноширинного шрифту, що використовується при показі журналу" +" в головному ієрархічному дереві. Типовий шрифт береться з параметру шрифту" +" терміналу." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -2026,12 +2024,12 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Пошук слів й їх написання в інтерактивному словнику" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" -"MATE;dictionary;applet;thesaurus;spelling;definitions;online;мате;словник;" -"аплет;тезаурус;правопис;визначення;інтерактивний;" +"MATE;dictionary;applet;thesaurus;spelling;definitions;online;мате;словник;аплет;тезаурус;правопис;визначення;інтерактивний;" #: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 msgid "A dictionary for MATE Desktop" @@ -2040,13 +2038,13 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" -"«Словник MATE» надає вам змогу шукати слова в інтернет-словниках. До складу " -"пакунку з програмою вже включено перелік серверів Dict (RFC 2229), до якого " -"ви можете додати власні джерела. Також можна вибирати певні сервери для " +"«Словник MATE» надає вам змогу шукати слова в інтернет-словниках. До складу" +" пакунку з програмою вже включено перелік серверів Dict (RFC 2229), до якого" +" ви можете додати власні джерела. Також можна вибирати певні сервери для " "виконання вказаних вами запитів." #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 @@ -2075,8 +2073,8 @@ "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" msgstr "" -"Назва типової індивідуальної бази даних, або мета бази даних на словниковому " -"сервері. Знак оклику (\"!\") вказує, що пошук має відбуватися в усіх базах " +"Назва типової індивідуальної бази даних, або мета бази даних на словниковому" +" сервері. Знак оклику (\"!\") вказує, що пошук має відбуватися в усіх базах " "даних сервера" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 @@ -2107,11 +2105,12 @@ msgid "" "The name of the dictionary source used to retrieve the definitions of words." msgstr "" -"Назва словникового сервера, що використовується для отримання визначень слів." +"Назва словникового сервера, що використовується для отримання визначень " +"слів." #: mate-dictionary/data/thai.desktop.in:3 msgid "Thai" -msgstr "Тайське" +msgstr "Тайська" #: mate-dictionary/data/thai.desktop.in:4 msgid "Longdo Thai-English Dictionaries" @@ -2389,7 +2388,8 @@ #, c-format msgid "" "Unable to get the '%s' key inside the dictionary source definition file: %s" -msgstr "У файлі визначення джерел словників не вдається отримати ключ '%s': %s" +msgstr "" +"У файлі визначення джерел словників не вдається отримати ключ '%s': %s" #: mate-dictionary/libgdict/gdict-source.c:736 msgid "Dictionary source does not have name" @@ -2691,7 +2691,7 @@ #: mate-dictionary/src/gdict-applet.c:1170 msgid "Preferences" -msgstr "Налаштування" +msgstr "Параметри" #: mate-dictionary/src/gdict-common.c:77 #, c-format @@ -2772,10 +2772,10 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "%d знайдено визначення" -msgstr[1] "%d знайдено визначення" -msgstr[2] "%d знайдено визначень" -msgstr[3] "%d знайдено визначень" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -2821,7 +2821,7 @@ #: mate-dictionary/src/gdict-window.c:1282 msgid "Find a word or phrase in the document" -msgstr "Знайти слово, чи фразу у документі" +msgstr "Знайти слово, чи фразу в документі" #: mate-dictionary/src/gdict-window.c:1284 msgid "Find Ne_xt" @@ -3087,12 +3087,12 @@ msgid "Save images of your desktop or individual windows" msgstr "Збереження зображень стільниці чи окремих вікон" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" -"MATE;screenshot;snapshot;desktop;window;image;зняток;зняток;мате;стільниця;" -"вікно;зображення;" +"MATE;screenshot;snapshot;desktop;window;image;зняток;зняток;мате;стільниця;вікно;зображення;" #: mate-screenshot/data/mate-screenshot.ui:24 msgid "Save Screenshot" @@ -3287,8 +3287,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" "Параметри суперечливі: --clipboard та --interactive не слід застосовувати " "одночасно.\n" Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/ur.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/ur.gmo differ diff -Nru mate-utils-1.26.0/po/ur.po mate-utils-1.26.1/po/ur.po --- mate-utils-1.26.0/po/ur.po 2021-08-05 19:45:50.000000000 +0000 +++ mate-utils-1.26.1/po/ur.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: # mauron, 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: mauron, 2021\n" -"Language-Team: Urdu (https://www.transifex.com/mate/teams/13566/ur/)\n" -"Language: ur\n" +"Language-Team: Urdu (https://app.transifex.com/mate/teams/13566/ur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "فولڈروں کے حجم اور ہارڈ ڈسک پر دستیاب خالی جگہ کی جانچ کریں" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -581,8 +582,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -632,16 +633,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "نام یا مواد سے اس کمپیوٹر میں دستاویزات اور فولڈر تلاش کریں" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -675,9 +677,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -699,8 +701,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -719,9 +721,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -731,8 +733,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -796,8 +798,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -814,8 +816,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -836,62 +838,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "فائل موزوں .desktop فائل نہیں ہے" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "غیر تسلیم شدہ ڈیسک ٹاپ فائل نسخہ '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "شروع کیا جارہا ہے %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "اطلاقیہ کمانڈ لائن سے دستاویزات قبول نہیں کرتا" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "چلانے کا غیر تسلیم شُدہ اختیار: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "دستاویز کا ربط پاس کرنے سے قاصر تا 'Type=Link' ڈیسک ٹاپ اندراج" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "عنصر چلانے کے قابل نہیں ہے" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "نشست منیجر سے اتصال معطل کریں" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "محفوظ کردہ تشکیل پر مشتمل فائل مُتعین کریں" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "فائل" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "نشست ادارت آئی ڈی متعین کریں" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "آئی ڈی" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "نشست ادارت اختیارات:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "نشست ادارت کے اختیارات دکھائیں" @@ -1091,7 +1093,8 @@ "The search results may be invalid. There were errors while performing this " "search." msgstr "" -"تلاش کے نتائج شاید ناموزوں ہیں. یہ تلاش کرتے ہوئے کوئی غلطیاں واقع ہوئی ہیں." +"تلاش کے نتائج شاید ناموزوں ہیں. یہ تلاش کرتے ہوئے کوئی غلطیاں واقع ہوئی " +"ہیں." #: gsearchtool/src/gsearchtool.c:1763 gsearchtool/src/gsearchtool.c:1807 msgid "Show more _details" @@ -1501,7 +1504,8 @@ msgid "View or monitor system log files" msgstr "نظام کے لاگ کی فائلیں دیکھیں اور ان پر نظر رکھیں" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1512,8 +1516,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1911,7 +1915,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "آن لائن لغت میں الفاظ کی تعریفیں اور ہجوں کی پڑتال کریں" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1923,8 +1928,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2938,7 +2943,8 @@ msgid "Save images of your desktop or individual windows" msgstr "انفرادی دریچوں یا اپنے ڈیسک ٹاپ کی تصاویر محفوظ کریں" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3135,8 +3141,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/uz.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/uz.gmo differ diff -Nru mate-utils-1.26.0/po/uz.po mate-utils-1.26.1/po/uz.po --- mate-utils-1.26.0/po/uz.po 2021-08-05 19:45:50.000000000 +0000 +++ mate-utils-1.26.1/po/uz.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,23 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2019 -# Muzaffar Habibullayev , 2019 -# +# Stefano Karapetsas , 2021 +# Muzaffar Habibullayev , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Muzaffar Habibullayev , 2019\n" -"Language-Team: Uzbek (https://www.transifex.com/mate/teams/13566/uz/)\n" -"Language: uz\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Muzaffar Habibullayev , 2021\n" +"Language-Team: Uzbek (https://app.transifex.com/mate/teams/13566/uz/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -30,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -214,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -623,9 +624,9 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 @@ -634,7 +635,8 @@ "Ushbu kompyuterdagi jildlar va hujjatlarni nomi yoki tarkibi boʻyicha " "joylashtirish" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -668,9 +670,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -692,8 +694,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -712,9 +714,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -724,8 +726,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -789,8 +791,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -807,8 +809,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -829,62 +831,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Fayl yaroqli .desktop fayl emas" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Aniqlanmagan '%s' desktop fayli versiyasi" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "%s boshlanmoqda" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Dastur hujjatlarni buyruq satrida qabul qilmaydi" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Tanilmagan ishga tushirish xossasi: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Element ishga tushiriladigan emas" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Seans boshqaruvchisiga bogʻlanishni o'chirish" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Saqlangan moslamalar mavjud boʻlgan faylni koʻrsating" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "FAYL" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Seans boshqaruvi ID'ni koʻrsating" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Seans boshqaruvi xossalari:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Seans boshqaruvi xossalarini ko'rsatish" @@ -1484,7 +1486,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1495,8 +1498,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1894,7 +1897,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1906,8 +1910,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2920,7 +2924,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3112,8 +3117,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/vi.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/vi.gmo differ diff -Nru mate-utils-1.26.0/po/vi.po mate-utils-1.26.1/po/vi.po --- mate-utils-1.26.0/po/vi.po 2021-08-05 19:45:50.000000000 +0000 +++ mate-utils-1.26.1/po/vi.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,27 +2,27 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Anh Phan , 2018 -# Brian P. Dung , 2018 -# Meongu Ng. , 2018 -# Duy Truong Nguyen , 2018 -# Horazone Detex , 2019 +# Meongu Ng. , 2021 # Stefano Karapetsas , 2021 -# +# Anh Phan , 2021 +# Duy Truong Nguyen , 2021 +# Brian P. Dung , 2021 +# Horazone Detex , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Vietnamese (https://www.transifex.com/mate/teams/13566/vi/)\n" -"Language: vi\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Horazone Detex , 2021\n" +"Language-Team: Vietnamese (https://app.transifex.com/mate/teams/13566/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -34,7 +34,8 @@ msgid "Check folder sizes and available disk space" msgstr "Kiểm tra kích cỡ thư mục và chỗ rảnh trên đĩa" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -218,8 +219,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -571,9 +572,9 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"Chương trình này là phần mềm tự do; bạn có thể phát hành lại và/hoặc sửa đổi " -"nó theo các điều khoản của Giấy Phép Công Cộng GNU như được xuất bản bởi Tổ " -"chức Phần mềm Tự do; hoặc phiên bản 2 của giấy phép này, hoặc bất kì phiên " +"Chương trình này là phần mềm tự do; bạn có thể phát hành lại và/hoặc sửa đổi" +" nó theo các điều khoản của Giấy Phép Công Cộng GNU như được xuất bản bởi Tổ" +" chức Phần mềm Tự do; hoặc phiên bản 2 của giấy phép này, hoặc bất kì phiên " "bản sau nào (tuỳ ý)." #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 @@ -584,16 +585,16 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"Chương trình này được phát hành với mong muốn nó sẽ là một phần mềm có ích," -"nhưng KHÔNG PHẢI CHỊU BẤT KÌ TRÁCH NHIỆM NÀO; thậm chí cả về KHẢ NĂNG BÁN " -"LẠI hoặc PHÙ HỢP VỚI TỪNG MỤC ĐÍCH CỤ THỂ. Xem Giấy phép Công cộng GNU để " -"biết thêm chi tiết." +"Chương trình này được phát hành với mong muốn nó sẽ là một phần mềm có " +"ích,nhưng KHÔNG PHẢI CHỊU BẤT KÌ TRÁCH NHIỆM NÀO; thậm chí cả về KHẢ NĂNG " +"BÁN LẠI hoặc PHÙ HỢP VỚI TỪNG MỤC ĐÍCH CỤ THỂ. Xem Giấy phép Công cộng GNU " +"để biết thêm chi tiết." #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -637,16 +638,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "Trên máy tính này, tìm tài liệu và thư mục theo tên hay nội dung" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -682,14 +684,14 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Khóa này định nghĩa các đường dẫn mà công cụ tìm kiếm sẽ loại trừ ra việc " -"Tìm nhanh. Hỗ trợ hai ký tự đại diện « * » (dấu sao) và « ? » (dấu hỏi). Giá " -"trị mặc định là /mnt/* (gắn), /media/* (môi giới), /dev/* (phát hiện), /tmp/" -"* (tạm thơi), /proc/* (tiến trình), và /var/* (biến)." +"Tìm nhanh. Hỗ trợ hai ký tự đại diện « * » (dấu sao) và « ? » (dấu hỏi). Giá" +" trị mặc định là /mnt/* (gắn), /media/* (môi giới), /dev/* (phát hiện), " +"/tmp/* (tạm thơi), /proc/* (tiến trình), và /var/* (biến)." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -700,8 +702,8 @@ "This key determines if the search tool disables the use of the find command " "after performing a quick search." msgstr "" -"Khóa này định nghĩa nếu công cụ tìm kiếm vô hiệu hóa sử dụng lệnh « Find " -"» (tìm) sau khi Tìm nhanh." +"Khóa này định nghĩa nếu công cụ tìm kiếm vô hiệu hóa sử dụng lệnh « Find » " +"(tìm) sau khi Tìm nhanh." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:29 msgid "Quick Search Second Scan Excluded Paths" @@ -712,14 +714,14 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"Khóa này định nghĩa các đường dẫn mà công cụ tìm kiếm sẽ loại trừ ra lần thứ " -"hai của Tìm nhanh hai lần. Tìm thứ hai sử dụng lệnh « Find » (Tìm) để tim " -"kiếm tập tin; đích của tìm thứ hai này là tìm tập tin chưa trong chỉ mục. Hỗ " -"trợ hai ký tự đại diện « * » (dấu sao) và « ? » (dấu hỏi). Giá trị mặc định " -"là /." +"Khóa này định nghĩa các đường dẫn mà công cụ tìm kiếm sẽ loại trừ ra lần thứ" +" hai của Tìm nhanh hai lần. Tìm thứ hai sử dụng lệnh « Find » (Tìm) để tim " +"kiếm tập tin; đích của tìm thứ hai này là tìm tập tin chưa trong chỉ mục. Hỗ" +" trợ hai ký tự đại diện « * » (dấu sao) và « ? » (dấu hỏi). Giá trị mặc định" +" là /." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -739,13 +741,13 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" "Khóa này định nghĩa độ rộng của cửa sổ, và nó dùng để nhớ kích cỡ của công " -"cụ tìm kiếm giữa hai phiên chạy. Lập nó thành -1 sẽ làm cho công cụ tìm kiếm " -"dùng độ rộng mặc định." +"cụ tìm kiếm giữa hai phiên chạy. Lập nó thành -1 sẽ làm cho công cụ tìm kiếm" +" dùng độ rộng mặc định." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -754,11 +756,11 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" -"Khóa này định nghĩa độ cao của cửa sổ, và nó dùng để nhớ kích cỡ của công cụ " -"tìm kiếm giữa hai phiên chạy. Lập nó thành -1 sẽ làm cho công cụ tìm kiếm " +"Khóa này định nghĩa độ cao của cửa sổ, và nó dùng để nhớ kích cỡ của công cụ" +" tìm kiếm giữa hai phiên chạy. Lập nó thành -1 sẽ làm cho công cụ tìm kiếm " "dùng độ cao mặc định." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -838,8 +840,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Khi công cụ tìm kiếm được khởi chạy, khóa này định nghĩa nếu tùy chọn tìm " "kiếm « Sở hữu bởi nhóm » được chọn chưa." @@ -862,8 +864,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Khi công cụ tìm kiếm được khởi chạy, khóa này định nghĩa nếu tùy chọn tìm " "kiếm « Tên khớp biểu thức chính quy » được chọn chưa." @@ -890,62 +892,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "Tập tin không phải là dạng tập tin .desktop hợp lệ" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "Không nhận ra tập tin màn hình nền phiên bản '%s'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Đang khởi chạy %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "Ứng dụng không chấp nhận tài liệu thông qua dòng lệnh" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "Không nhận ra tùy chọn khởi chạy: %d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "Không thể chuyển URI của tài liệu cho mục desktop 'Type=Link'" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Không phải mục có thể khởi chạy" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Tắt kết nối với trình quản lý phiên chạy" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "Xác định tập tin chứa cấu hình đã lưu" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "TẬP TIN" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Xác định mã số quản lý phiên làm việc" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "Tùy chọn quản lý phiên làm việc:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "Hiển thị các tùy chọn quản lý phiên làm việc" @@ -1251,8 +1253,8 @@ #: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 msgid "Enter a filename or partial filename with or without wildcards." msgstr "" -"Hãy nhập một tên tập tin hay tên tập tin cục bộ, có ký tự đại diện hay không " -"có chúng." +"Hãy nhập một tên tập tin hay tên tập tin cục bộ, có ký tự đại diện hay không" +" có chúng." #: gsearchtool/src/gsearchtool.c:2836 msgid "Name contains" @@ -1554,7 +1556,8 @@ msgid "View or monitor system log files" msgstr "Xem hay theo dõi tập tin bản ghi hệ thống" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1565,11 +1568,11 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"Xác định tập tin bản ghi cần hiển thị vào lúc khởi động. Mặc định hoặc là hay , tùy thuộc vào hệ điều hành của " +"Xác định tập tin bản ghi cần hiển thị vào lúc khởi động. Mặc định hoặc là " +" hay , tùy thuộc vào hệ điều hành của " "bạn." #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1581,8 +1584,8 @@ "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." msgstr "" -"Ghi rõ kích cỡ của phông chữ cỡ cố định dùng để hiển thị bản ghi trong khung " -"xem cây chính. Mặc định dựa vào kích cỡ phông chữ thiết bị cuối mặc định." +"Ghi rõ kích cỡ của phông chữ cỡ cố định dùng để hiển thị bản ghi trong khung" +" xem cây chính. Mặc định dựa vào kích cỡ phông chữ thiết bị cuối mặc định." #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1610,8 +1613,8 @@ "created by reading /etc/syslog.conf." msgstr "" "Xác định danh sách các tập tin bản ghi cần mở vào lúc khởi động. Danh sách " -"mặc định được tạo do việc đọc tập tin cấu hình bản ghi hệ thống ." +"mặc định được tạo do việc đọc tập tin cấu hình bản ghi hệ thống " +"." #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1962,7 +1965,7 @@ #: mate-dictionary/data/default.desktop.in:3 msgid "Default" -msgstr "Mặt định" +msgstr "Mặc định" #: mate-dictionary/data/default.desktop.in:4 msgid "Default Dictionary Server" @@ -1977,7 +1980,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "Tìm từ trong từ điển trực tuyến để kiểm tra chính tả và sự định nghĩa" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1989,8 +1993,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2334,7 +2338,8 @@ #, c-format msgid "" "Unable to get the '%s' key inside the dictionary source definition file: %s" -msgstr "Không thể lấy khóa « %s » ở trong tập tin định nghĩa nguồn từ điển: %s" +msgstr "" +"Không thể lấy khóa « %s » ở trong tập tin định nghĩa nguồn từ điển: %s" #: mate-dictionary/libgdict/gdict-source.c:736 msgid "Dictionary source does not have name" @@ -3021,7 +3026,8 @@ msgid "Save images of your desktop or individual windows" msgstr "Lưu ảnh của màn hình nền hay cửa sổ riêng" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3079,8 +3085,8 @@ "Effect to add to the outside of a border. Possible values are \"shadow\", " "\"none\", and \"border\"." msgstr "" -"Tác dụng cần thêm vào cạnh ở ngoại viền. Giá trị có thể là \"shadow" -"\" (bóng), \"none\" (không), và \"border\" (viền)." +"Tác dụng cần thêm vào cạnh ở ngoại viền. Giá trị có thể là \"shadow\" " +"(bóng), \"none\" (không), và \"border\" (viền)." #: mate-screenshot/src/mate-screenshot.c:138 msgid "Error loading the help page" @@ -3218,8 +3224,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/wa.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/wa.gmo differ diff -Nru mate-utils-1.26.0/po/wa.po mate-utils-1.26.1/po/wa.po --- mate-utils-1.26.0/po/wa.po 2021-08-05 19:45:50.000000000 +0000 +++ mate-utils-1.26.1/po/wa.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2019 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2019\n" -"Language-Team: Walloon (https://www.transifex.com/mate/teams/13566/wa/)\n" -"Language: wa\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Walloon (https://app.transifex.com/mate/teams/13566/wa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: wa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -623,16 +624,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -666,9 +668,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -690,8 +692,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -710,9 +712,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -722,8 +724,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -787,8 +789,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -805,8 +807,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -827,62 +829,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Enondant %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Nén on cayet enondåve" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Essocter l' adjondaedje å manaedjeu di sessions" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Dire l' ID pol manaedjmint del session" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1489,7 +1491,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1500,8 +1503,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1899,7 +1902,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1911,8 +1915,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2926,7 +2930,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3118,8 +3123,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/xh.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/xh.gmo differ diff -Nru mate-utils-1.26.0/po/xh.po mate-utils-1.26.1/po/xh.po --- mate-utils-1.26.0/po/xh.po 2021-08-05 19:45:50.000000000 +0000 +++ mate-utils-1.26.1/po/xh.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2019 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2019\n" -"Language-Team: Xhosa (https://www.transifex.com/mate/teams/13566/xh/)\n" -"Language: xh\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Xhosa (https://app.transifex.com/mate/teams/13566/xh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: xh\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -623,16 +624,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -669,9 +671,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" "Eli qhosha lichaza iindlela eziya kubekelwa bucala sisixhobo sokukhangela " "ekukhangeleni okukhawulezayo. Iikhadi zolu phawu '*' nezi '?' ziyaxhaswa. " @@ -700,8 +702,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" "Eli qhosha lichaza iindlela eziya kubekelwa bucala sisixhobo sokukhangela " "ukusuka kwiskeni sesibini xa sisenza ukukhangela okukhawulezayo. Iskeni " @@ -725,9 +727,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -737,8 +739,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -811,13 +813,13 @@ "This key determines if the \"Owned by user\" search option is selected when " "the search tool is started." msgstr "" -"Eli qhosha limisela ukuba \"Yeyomsebenzisi\" ukhetho lokukhangela lukhethiwe " -"xa isixhobo sokukhangela siqaliswa." +"Eli qhosha limisela ukuba \"Yeyomsebenzisi\" ukhetho lokukhangela lukhethiwe" +" xa isixhobo sokukhangela siqaliswa." #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" "Eli qhosha limisela ukuba \"Yeyeqela\" ukhetho lokukhangela lukhethiwe xa " "isixhobo sokukhangela siqaliswa." @@ -840,8 +842,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" "Eli qhosha limisela ukuba \"Igama lifana nentetho eqhelekileyo\" ukhetho " "lokukhangela lukhethiwe xa isixhobo sokukhangela siqaliswa." @@ -869,62 +871,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Kuqaliswa %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Asilonqaku linokundululwa" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Phelisa uqhagamshelwano kumlawuli weseshoni" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Phawula i-ID yolawulo lweseshoni" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "I-ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1233,8 +1235,8 @@ #: gsearchtool/src/gsearchtool.c:2835 gsearchtool/src/gsearchtool.c:2836 msgid "Enter a filename or partial filename with or without wildcards." msgstr "" -"Faka igama lefayili okanye inxalenye yegama lefayili kunye okanye ngaphandle " -"kweekhadi zokukhetha nje." +"Faka igama lefayili okanye inxalenye yegama lefayili kunye okanye ngaphandle" +" kweekhadi zokukhetha nje." #: gsearchtool/src/gsearchtool.c:2836 msgid "Name contains" @@ -1543,7 +1545,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1554,8 +1557,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1953,7 +1956,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1965,8 +1969,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2980,7 +2984,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3173,8 +3178,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/yi.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/yi.gmo differ diff -Nru mate-utils-1.26.0/po/yi.po mate-utils-1.26.1/po/yi.po --- mate-utils-1.26.0/po/yi.po 2021-08-05 19:45:50.000000000 +0000 +++ mate-utils-1.26.1/po/yi.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2018 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Yiddish (https://www.transifex.com/mate/teams/13566/yi/)\n" -"Language: yi\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Yiddish (https://app.transifex.com/mate/teams/13566/yi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: yi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -623,16 +624,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -666,9 +668,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -690,8 +692,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -710,9 +712,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -722,8 +724,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -787,8 +789,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -805,8 +807,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -827,62 +829,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1487,7 +1489,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1498,8 +1501,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1897,7 +1900,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1909,8 +1913,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2924,7 +2928,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3116,8 +3121,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/yo.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/yo.gmo differ diff -Nru mate-utils-1.26.0/po/yo.po mate-utils-1.26.1/po/yo.po --- mate-utils-1.26.0/po/yo.po 2021-08-05 19:45:50.000000000 +0000 +++ mate-utils-1.26.1/po/yo.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2018 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2018\n" -"Language-Team: Yoruba (https://www.transifex.com/mate/teams/13566/yo/)\n" -"Language: yo\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Yoruba (https://app.transifex.com/mate/teams/13566/yo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: yo\n" "Plural-Forms: nplurals=1; plural=0;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -577,8 +578,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -622,16 +623,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -665,9 +667,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -689,8 +691,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -709,9 +711,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -721,8 +723,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -786,8 +788,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -804,8 +806,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -826,62 +828,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Ìbẹrẹ %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "kìí ṣe irú nkan láti fi bẹrẹ" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1481,7 +1483,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1492,8 +1495,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1891,7 +1894,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1903,8 +1907,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2917,7 +2921,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3109,8 +3114,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/zh_CN.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/zh_CN.gmo differ diff -Nru mate-utils-1.26.0/po/zh_CN.po mate-utils-1.26.1/po/zh_CN.po --- mate-utils-1.26.0/po/zh_CN.po 2021-08-05 19:45:50.000000000 +0000 +++ mate-utils-1.26.1/po/zh_CN.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,38 +2,39 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Christopher M , 2018 -# 775405984, 2018 -# e0c668032ced196bd60f2b6a070d982d_8f72ae0, 2018 -# Dianjin Wang <1132321739qq@gmail.com>, 2018 -# Mingcong Bai , 2018 -# zhangxianwei8 , 2018 -# CNAmira , 2019 -# Wenbin Lv , 2019 -# zhineng404 , 2019 -# clefebvre , 2019 -# shuyu liu , 2019 -# 玉堂白鹤 , 2020 -# liulitchi , 2020 -# Stefano Karapetsas , 2021 +# ᴄʜʀɪsᴛᴏᴘʜᴇʀ ᴍᴇɴɢ, 2021 +# Dianjin Wang <1132321739qq@gmail.com>, 2021 +# 玉堂白鹤 , 2021 +# 775405984, 2021 # Mingye Wang , 2021 +# CNAmira , 2021 +# zhangxianwei8 , 2021 +# zhineng404 , 2021 +# a73a47e368cc011d8f94528bd9d5d3f1_91fccdf <1b07f49e2a323989c85dd26d526f7bb9_871526>, 2021 +# e0c668032ced196bd60f2b6a070d982d_8f72ae0, 2021 +# Stefano Karapetsas , 2021 +# liu lizhi , 2021 +# Mingcong Bai , 2021 +# shuyu liu , 2021 +# Wolfgang Ulbrich , 2021 +# Skylee Ming-Tian Yang , 2021 # OkayPJ <1535253694@qq.com>, 2021 -# +# Wenbin Lv , 2022 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: OkayPJ <1535253694@qq.com>, 2021\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mate/teams/13566/" -"zh_CN/)\n" -"Language: zh_CN\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Wenbin Lv , 2022\n" +"Language-Team: Chinese (China) (https://app.transifex.com/mate/teams/13566/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -45,11 +46,11 @@ msgid "Check folder sizes and available disk space" msgstr "检查文件夹大小和可用磁盘空间" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" -msgstr "" -"MATE;check;disk;usage;analyze;size;space;检查;磁盘;使用;分析;大小;空间;" +msgstr "MATE;check;disk;usage;analyze;size;space;检查;磁盘;使用;分析;大小;空间;" #: baobab/data/baobab-dialog-scan-props.ui:18 msgid "Disk Usage Analyzer Preferences" @@ -230,21 +231,17 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." -msgstr "" -"磁盘占用分析器为一款实用的图形工具,采用环状表或树形图。可显示并监控磁盘用" -"量,以及文件夹结构。" +msgstr "磁盘占用分析器为一款实用的图形工具,采用环状表或树形图。可显示并监控磁盘用量,以及文件夹结构。" #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 msgid "" "You can perform scans on a file system, your home or any other folder - " "local or remote. There is also an option to constantly monitor any external " "changes to the home directory and warn the user if a file is added/removed." -msgstr "" -"可在任意文件系统及文件夹上执行扫描——无论本地或远程条件下。 还可以持续监视主目" -"录的任何外部更改,并在执行添加/删除文件时抛出警告。" +msgstr "可在任意文件系统及文件夹上执行扫描——无论本地或远程条件下。 还可以持续监视主目录的任何外部更改,并在执行添加/删除文件时抛出警告。" #: baobab/src/baobab.c:141 baobab/src/baobab.c:358 msgid "Scanning..." @@ -506,7 +503,7 @@ #: baobab/src/baobab-treeview.c:244 msgid "Usage" -msgstr "用量" +msgstr "用法" #: baobab/src/baobab-treeview.c:258 gsearchtool/src/gsearchtool.c:2466 msgid "Size" @@ -585,8 +582,8 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"本程序是自由软件;您可以在自由软件基金会发布的 GNU 通用公共许可证的条款下重新" -"分发和(或)修改它;您可以选择使用 GPL 第二版,或(按照您的意愿)任何更新的版本。" +"本程序是自由软件;您可以在自由软件基金会发布的 GNU 通用公共许可证的条款下重新分发和(或)修改它;您可以选择使用 GPL " +"第二版,或(按照您的意愿)任何更新的版本。" #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -595,18 +592,15 @@ "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." -msgstr "" -"发行本程序是希望它有所作用,但没有任何担保;没有任何暗示的担保或因某一特别目" -"的而适用。更多细节请参见 GNU 通用公共许可证。" +msgstr "发行本程序是希望它有所作用,但没有任何担保;没有任何暗示的担保或因某一特别目的而适用。更多细节请参见 GNU 通用公共许可证。" #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" -"您应该能够随此软件获得一份 GNU 通用公共许可协议的副本。如果没有,请访问 " -"。 " +"您应该能够随此软件获得一份 GNU 通用公共许可协议的副本。如果没有,请访问 。 " #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" @@ -628,16 +622,18 @@ #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" msgstr "" -"Christopher Meng , 2012-2013\n" -"ravix , 2013\n" +"Christopher Meng , 2012-2013\n" +"ravix , 2013\n" "Dianjin Wang <1132321739qq@gmail.com>, 2012\n" -"Cravix , 2013\n" -"nyanyh , 2013\n" -"liulitchi , 2013\n" -"玉堂白鹤 , 2015\n" -"Mingye Wang , 2015-2016\n" -"白铭骢 , 2015-2016\n" -"刘子兴 , 2015-2016" +"Cravix , 2013\n" +"nyanyh , 2013\n" +"liulitchi , 2013\n" +"玉堂白鹤 , 2015\n" +"Mingye Wang , 2015-2016\n" +"白铭骢 , 2015-2016\n" +"刘子兴 , 2015-2016\n" +"比丘 , 2018-2019\n" +"OkayPJ , 2020" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -661,24 +657,23 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" -"MATE 搜索工具简易实用,可搜索任意已挂载的文件或目录。界面便于快捷配置参数,如" -"文件中的文本、所有者属性、修改日期、文件大小以及排除文件夹等。" +"MATE 搜索工具简易实用,可搜索任意已挂载的文件或目录。界面便于快捷配置参数,如文件中的文本、所有者属性、修改日期、文件大小以及排除文件夹等。" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "按照名称或内容定位此计算机中的文档和文件夹" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" msgstr "" -"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;搜" -"索;文件;定位;文档;文件夹;计算机;名称;内容;查找;工具;" +"MATE;search;files;locate;documents;folders;computer;name;content;find;tool;搜索;文件;定位;文档;文件夹;计算机;名称;内容;查找;工具;" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:5 msgid "Search history" @@ -708,12 +703,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" -"此键定义了执行快速搜索时被排除的路径。支持通配符“*”和“?”。默认值为 /mnt/*、/" -"media/*、/dev/*、/tmp/*、/proc/* 和 /var/*。" +"此键定义了执行快速搜索时被排除的路径。支持通配符“*”和“?”。默认值为 /mnt/*、/media/*、/dev/*、/tmp/*、/proc/* 和" +" /var/*。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -734,12 +729,11 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"此键定义了执行快速搜索时第二遍扫描被排除的路径。第二遍扫描使用 find 命令来搜" -"索文件。第二遍扫描的目的是查找没有加入索引的文件。支持通配符“*”和“?”。默认值" -"为 /。" +"此键定义了执行快速搜索时第二遍扫描被排除的路径。第二遍扫描使用 find " +"命令来搜索文件。第二遍扫描的目的是查找没有加入索引的文件。支持通配符“*”和“?”。默认值为 /。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -757,12 +751,10 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"此键定义了窗口宽度,用于在不同的会话间记忆搜索工具的大小。将其设置为 -1 将使" -"得搜索工具使用默认宽度。" +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "此键定义了窗口宽度,用于在不同的会话间记忆搜索工具的大小。将其设置为 -1 将使得搜索工具使用默认宽度。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -771,11 +763,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." -msgstr "" -"此键定义了窗口高度,用于在不同的会话间记忆搜索工具的大小。将其设置为 -1 将使" -"得搜索工具使用默认高度。" +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." +msgstr "此键定义了窗口高度,用于在不同的会话间记忆搜索工具的大小。将其设置为 -1 将使得搜索工具使用默认高度。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -838,8 +828,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "此键决定了搜索工具启动时是否选中“由组所有”搜索选项。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -856,8 +846,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "此键决定了搜索工具启动时是否选中“名称匹配正则表达式”搜索选项。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -878,62 +868,62 @@ "selected when the search tool is started." msgstr "此键决定了搜索工具启动时是否选中“排除其它文件夹系统”搜索选项。" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "不是一个有效的 .desktop 文件" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "不能识别的桌面文件版本“%s”" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "正在启动 %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "程序在命令行中不接收文档" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "不能识别的启动选项:%d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "无法将文档 URL 传递给“Type=Link”的桌面项" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "非可启动项目" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "禁止连接到会话管理器" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "指定包含有已保存配置的文件" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "文件" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "指定会话管理 ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "会话管理选项:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "显示会话管理选项" @@ -1307,7 +1297,7 @@ #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "这将会打开 %d 个独立的窗口。" +msgstr[0] "这将打开 %d 个独立的窗口。" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1423,7 +1413,7 @@ #: gsearchtool/src/gsearchtool-callbacks.c:1834 #: mate-screenshot/src/screenshot-xfer.c:84 msgid "_Replace" -msgstr "替换 (_R)" +msgstr "替换(_R)" #: gsearchtool/src/gsearchtool-callbacks.c:1883 msgid "The document name you selected is a folder." @@ -1447,7 +1437,7 @@ #: gsearchtool/src/gsearchtool-support.c:478 msgid "link (broken)" -msgstr "链接(已断开)" +msgstr "链接(已断开)" #: gsearchtool/src/gsearchtool-support.c:482 #, c-format @@ -1456,40 +1446,40 @@ #: gsearchtool/src/gsearchtool-support.c:1101 msgid " (copy)" -msgstr " (副本)" +msgstr " (副本)" #: gsearchtool/src/gsearchtool-support.c:1103 msgid " (another copy)" -msgstr " (另一个副本)" +msgstr " (另一个副本)" #: gsearchtool/src/gsearchtool-support.c:1106 #: gsearchtool/src/gsearchtool-support.c:1108 #: gsearchtool/src/gsearchtool-support.c:1110 #: gsearchtool/src/gsearchtool-support.c:1120 msgid "th copy)" -msgstr " 个副本)" +msgstr " 个副本)" #: gsearchtool/src/gsearchtool-support.c:1113 msgid "st copy)" -msgstr " 个副本)" +msgstr " 个副本)" #: gsearchtool/src/gsearchtool-support.c:1115 msgid "nd copy)" -msgstr " 个副本)" +msgstr " 个副本)" #: gsearchtool/src/gsearchtool-support.c:1117 msgid "rd copy)" -msgstr " 个副本)" +msgstr " 个副本)" #: gsearchtool/src/gsearchtool-support.c:1134 #, c-format msgid "%s (copy)%s" -msgstr "%s (副本)%s" +msgstr "%s(副本)%s" #: gsearchtool/src/gsearchtool-support.c:1136 #, c-format msgid "%s (another copy)%s" -msgstr "%s (另一个副本)%s" +msgstr "%s(另一个副本)%s" #: gsearchtool/src/gsearchtool-support.c:1139 #: gsearchtool/src/gsearchtool-support.c:1141 @@ -1516,11 +1506,11 @@ #: gsearchtool/src/gsearchtool-support.c:1197 msgid " (invalid Unicode)" -msgstr " (无效的 Unicode)" +msgstr " (无效的 Unicode)" #: gsearchtool/src/gsearchtool-support.c:1286 msgid " (" -msgstr " (" +msgstr " (" #: gsearchtool/src/gsearchtool-support.c:1294 #, c-format @@ -1535,12 +1525,11 @@ msgid "View or monitor system log files" msgstr "查看或监视系统日志文件" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" -msgstr "" -"MATE;monitor;view;system;log;files;logviewer;监视器;查看;系统;日志;文件;日志" -"查看器;" +msgstr "MATE;monitor;view;system;log;files;logviewer;监视器;查看;系统;日志;文件;日志查看器;" #: logview/data/org.mate.system-log.gschema.xml.in:5 msgid "Log file to open up on startup" @@ -1548,11 +1537,10 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"指定在程序启动时显示的日志文件。根据您的操作系统不同,默认是 /var/adm/" -"messages 或者 /var/log/messages。" +"指定在程序启动时显示的日志文件。根据您的操作系统不同,默认是 /var/adm/messages 或者 /var/log/messages。" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1562,8 +1550,7 @@ msgid "" "Specifies the size of the fixed-width font used to display the log in the " "main tree view. The default is taken from the default terminal font size." -msgstr "" -"指定用于在主树视图中显示日志的等宽字体大小。默认值来自于默认终端字体大小。" +msgstr "指定用于在主树视图中显示日志的等宽字体大小。默认值来自于默认终端字体大小。" #: logview/data/org.mate.system-log.gschema.xml.in:15 msgid "Height of the main window in pixels" @@ -1589,9 +1576,7 @@ msgid "" "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." -msgstr "" -"指定在程序启动时要打开的日志文件。默认列表将会通过读取 /etc/syslog.conf 创" -"建。" +msgstr "指定在程序启动时要打开的日志文件。默认列表将会通过读取 /etc/syslog.conf 创建。" #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1852,7 +1837,7 @@ #: logview/src/logview-window.c:838 msgid "_Find..." -msgstr "查找(_F)..." +msgstr "查找(_F)…" #: logview/src/logview-window.c:838 msgid "Find a word or phrase in the log" @@ -1957,12 +1942,12 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "在在线字典中查阅单词定义和拼写" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" -"MATE;dictionary;applet;thesaurus;spelling;definitions;online;词典;小程序;同义" -"词词典;拼写;释义;在线;" +"MATE;dictionary;applet;thesaurus;spelling;definitions;online;词典;小程序;同义词词典;拼写;释义;在线;" #: mate-dictionary/data/mate-dictionary.appdata.xml.in:8 msgid "A dictionary for MATE Desktop" @@ -1971,12 +1956,10 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." -msgstr "" -"MATE 字典,可在线查阅词汇。它附带了预置好的字典服务器(RFC 2229)。也可以自行" -"添加词源,及选用服务器特定查询。" +msgstr "MATE 字典,可在线查阅词汇。它附带了预置好的字典服务器(RFC 2229)。也可以自行添加词源,及选用服务器特定查询。" #: mate-dictionary/data/org.mate.DictionaryApplet.mate-panel-applet.desktop.in.in:5 msgid "Dictionary Applet Factory" @@ -2003,9 +1986,7 @@ "The name of the default individual database or meta-database to use on a " "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" -msgstr "" -"在字典服务器上使用的独立数据库或元数据库名称。叹号(“!”)表示字典程序应该在给定" -"服务器的所有数据库中搜索" +msgstr "在字典服务器上使用的独立数据库或元数据库名称。叹号(“!”)表示字典程序应该在给定服务器的所有数据库中搜索" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -2989,9 +2970,7 @@ "your desktop or of application windows. You can select to copy them to the " "system clipboard or save them in Portable Network Graphics (.png) image " "format." -msgstr "" -"MATE 截图是一款简易实用的截图小工具,可用来捕捉桌面或窗口。可将截图添加到系统" -"剪贴板,或保存为 png 格式。" +msgstr "MATE 截图是一款简易实用的截图小工具,可用来捕捉桌面或窗口。可将截图添加到系统剪贴板,或保存为 png 格式。" #: mate-screenshot/data/mate-screenshot.desktop.in:3 #: mate-screenshot/src/mate-screenshot.c:519 @@ -3001,13 +2980,13 @@ #: mate-screenshot/data/mate-screenshot.desktop.in:4 msgid "Save images of your desktop or individual windows" -msgstr "保存您桌面还是单个窗口的图像" +msgstr "保存您桌面或者单个窗口的图像" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" -msgstr "" -"MATE;screenshot;snapshot;desktop;window;image;截图;抓图;桌面;窗口;图像;" +msgstr "MATE;screenshot;snapshot;desktop;window;image;截图;抓图;桌面;窗口;图像;" #: mate-screenshot/data/mate-screenshot.ui:24 msgid "Save Screenshot" @@ -3199,8 +3178,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "冲突的选项:-clipboard和--interactive不能同时使用。\n" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/zh_HK.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/zh_HK.gmo differ diff -Nru mate-utils-1.26.0/po/zh_HK.po mate-utils-1.26.1/po/zh_HK.po --- mate-utils-1.26.0/po/zh_HK.po 2021-08-05 19:45:50.000000000 +0000 +++ mate-utils-1.26.1/po/zh_HK.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,24 +2,23 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# tomoe_musashi , 2018 # Stefano Karapetsas , 2021 -# +# tomoe_musashi , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2021\n" -"Language-Team: Chinese (Hong Kong) (https://www.transifex.com/mate/" -"teams/13566/zh_HK/)\n" -"Language: zh_HK\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: tomoe_musashi , 2021\n" +"Language-Team: Chinese (Hong Kong) (https://app.transifex.com/mate/teams/13566/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -31,7 +30,8 @@ msgid "Check folder sizes and available disk space" msgstr "檢查資料夾大小與可用的磁碟空間" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -215,8 +215,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -566,9 +566,8 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"這個程式是自由軟件,你可以遵照自由軟件基金會 (Free Software Foundation) 出版" -"的 GNU 通用公共許可證條款 (GNU General Public License) 第二版來修改和重新發佈" -"這一程式,或者自由選擇使用任何更新的版本。" +"這個程式是自由軟件,你可以遵照自由軟件基金會 (Free Software Foundation) 出版的 GNU 通用公共許可證條款 (GNU " +"General Public License) 第二版來修改和重新發佈這一程式,或者自由選擇使用任何更新的版本。" #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -577,15 +576,13 @@ "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." -msgstr "" -"發佈這一程式的目的是希望它有用,但沒有任何擔保。甚至沒有適合特定目的而隱含的" -"擔保。更詳細的情況請參閱 GNU 通用公共許可證。" +msgstr "發佈這一程式的目的是希望它有用,但沒有任何擔保。甚至沒有適合特定目的而隱含的擔保。更詳細的情況請參閱 GNU 通用公共許可證。" #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -632,16 +629,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "以名稱或內容尋找此電腦中的文件及資料夾" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -675,12 +673,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" -"本設定鍵決定搜尋工具在進行快速搜尋時會忽略的路徑。支援萬用字符‘*’及‘?’。預設" -"的數值是 /mnt/*,/media/*,/dev/*,/tmp/*,/proc/*及/var/*。" +"本設定鍵決定搜尋工具在進行快速搜尋時會忽略的路徑。支援萬用字符‘*’及‘?’。預設的數值是 " +"/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*及/var/*。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -701,12 +699,11 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"本設定鍵決定搜尋工具在進行快速搜尋第二次掃描會忽略的路徑。快速搜尋第二次掃描" -"是做用 find 指令來尋找檔案。第二次掃描的目的是尋找那些沒有建立索引的檔案。支" -"援萬用字符‘*’及‘?’。預設的數值是 ./。" +"本設定鍵決定搜尋工具在進行快速搜尋第二次掃描會忽略的路徑。快速搜尋第二次掃描是做用 find " +"指令來尋找檔案。第二次掃描的目的是尋找那些沒有建立索引的檔案。支援萬用字符‘*’及‘?’。預設的數值是 ./。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -724,12 +721,10 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"本設定鍵定義視窗的闊度,而且用來在不同的執行階段間記住搜尋工具的大小。如果將" -"它的值設為 -1 則會讓搜尋工具使用預設的闊度。" +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "本設定鍵定義視窗的闊度,而且用來在不同的執行階段間記住搜尋工具的大小。如果將它的值設為 -1 則會讓搜尋工具使用預設的闊度。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -738,11 +733,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." -msgstr "" -"本設定鍵定義視窗的高度,而且用來在不同的執行階段間記住搜尋工具的大小。如果將" -"它的值設為 -1 則會讓搜尋工具使用預設的高度。" +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." +msgstr "本設定鍵定義視窗的高度,而且用來在不同的執行階段間記住搜尋工具的大小。如果將它的值設為 -1 則會讓搜尋工具使用預設的高度。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -805,8 +798,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "本設定鍵決定在搜尋工具開始搜尋時已選用了「屬於指定羣組」選項。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -823,8 +816,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "本設定鍵決定在搜尋工具開始搜尋時已選用了「檔名符合正規表示式」選項。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -845,62 +838,62 @@ "selected when the search tool is started." msgstr "本設定鍵決定在搜尋工具開始搜尋時已選用了「排除其他檔案系統」選項。" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "檔案不是有效的 .desktop 檔案" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "無法辨識的桌面檔案版本「%s」" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "準備啟動 %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "應用程式不接受以命令列開啟文件" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "無法辨識的啟動選項:%d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "不能傳送文件 URI 至「Type=Link」桌面項目" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "不是可以啟動的項目" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "停用到作業階段管理程式的連線" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "指定含有已儲存組態的檔案" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "檔案" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "指定作業階段管理 ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "作業階段管理選項:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "顯示作業階段管理選項" @@ -1502,7 +1495,8 @@ msgid "View or monitor system log files" msgstr "顯示或監察系統日誌檔案" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1513,11 +1507,10 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"指定啟動時預設開啟的日誌。預設值可能是 /var/adm/messages 或 /var/log/" -"messages,取決於所使用的作業系統。" +"指定啟動時預設開啟的日誌。預設值可能是 /var/adm/messages 或 /var/log/messages,取決於所使用的作業系統。" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1553,8 +1546,7 @@ msgid "" "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." -msgstr "" -"指定啟動時預設開啟的日誌檔案清單。預設清單會根據 /etc/syslog.conf 來建立。" +msgstr "指定啟動時預設開啟的日誌檔案清單。預設清單會根據 /etc/syslog.conf 來建立。" #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1915,7 +1907,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "在網上字典中查詢字詞的解譯及拼法" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1927,8 +1920,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -1957,9 +1950,7 @@ "The name of the default individual database or meta-database to use on a " "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" -msgstr "" -"指定在字典來源所預設使用的資料庫或後設資料庫名稱。“!”表示 mate-dictionary 會" -"搜尋指字典來源中所有的資料庫。" +msgstr "指定在字典來源所預設使用的資料庫或後設資料庫名稱。“!”表示 mate-dictionary 會搜尋指字典來源中所有的資料庫。" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -1969,9 +1960,7 @@ msgid "" "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." -msgstr "" -"在字典伺服器中所使用的預設的搜尋方式名稱(如果這個名稱存在的話)。預設的搜尋" -"方式是‘exact’,它會完整比對字詞。" +msgstr "在字典伺服器中所使用的預設的搜尋方式名稱(如果這個名稱存在的話)。預設的搜尋方式是‘exact’,它會完整比對字詞。" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2955,7 +2944,8 @@ msgid "Save images of your desktop or individual windows" msgstr "將整個桌面或獨立的視窗儲存為圖片" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3150,8 +3140,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/zh_TW.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/zh_TW.gmo differ diff -Nru mate-utils-1.26.0/po/zh_TW.po mate-utils-1.26.1/po/zh_TW.po --- mate-utils-1.26.0/po/zh_TW.po 2021-08-05 19:45:50.000000000 +0000 +++ mate-utils-1.26.1/po/zh_TW.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,27 +2,26 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Walter Cheuk , 2018 -# 趙惟倫 , 2018 -# byStarTW (pan93412) , 2018 +# Woodman Tuen , 2021 +# pan93412 , 2021 # Stefano Karapetsas , 2021 +# 趙惟倫 , 2021 # 黃柏諺 , 2021 -# +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" "Last-Translator: 黃柏諺 , 2021\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mate/teams/13566/" -"zh_TW/)\n" -"Language: zh_TW\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/mate/teams/13566/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -34,7 +33,8 @@ msgid "Check folder sizes and available disk space" msgstr "檢查資料夾大小與可用的磁碟空間" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "MATE;check;disk;usage;analyze;size;space;" @@ -218,12 +218,10 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." -msgstr "" -"顧名思義,「磁碟用量分析器」是一個讓您可用於檢視並監視您的磁碟使用量與資料夾" -"結構的圖形化實用工具。它可以使用環狀或樹狀圖來顯示資訊。" +msgstr "顧名思義,「磁碟用量分析器」是一個讓您可用於檢視並監視您的磁碟使用量與資料夾結構的圖形化實用工具。它可以使用環狀或樹狀圖來顯示資訊。" #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:15 msgid "" @@ -231,9 +229,8 @@ "local or remote. There is also an option to constantly monitor any external " "changes to the home directory and warn the user if a file is added/removed." msgstr "" -"您可以掃描一個檔案系統、您的家目錄或是任何其它的資料夾 ─ 本機或是遠端。它也有" -"一個選項可以持續監控任何在您家目錄的外部變更,並在有檔案加入或移除時警告使用" -"者。" +"您可以掃描一個檔案系統、您的家目錄或是任何其它的資料夾 ─ " +"本機或是遠端。它也有一個選項可以持續監控任何在您家目錄的外部變更,並在有檔案加入或移除時警告使用者。" #: baobab/src/baobab.c:141 baobab/src/baobab.c:358 msgid "Scanning..." @@ -275,7 +272,7 @@ #, c-format msgid "%5d item" msgid_plural "%5d items" -msgstr[0] "%5d 個項目" +msgstr[0] "" #: baobab/src/baobab.c:593 msgid "Could not initialize monitoring" @@ -574,9 +571,8 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"這個程式是自由軟體,您可以遵照自由軟體基金會 (Free Software Foundation) 出版" -"的 GNU 通用公共許可證條款 (GNU General Public License) 第二版來修改和重新發布" -"這一程式,或者自由選擇使用任何更新的版本。" +"這個程式是自由軟體,您可以遵照自由軟體基金會 (Free Software Foundation) 出版的 GNU 通用公共許可證條款 (GNU " +"General Public License) 第二版來修改和重新發布這一程式,或者自由選擇使用任何更新的版本。" #: baobab/src/callbacks.c:84 logview/src/logview-about.h:53 #: mate-dictionary/src/gdict-about.c:62 @@ -585,18 +581,14 @@ "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." -msgstr "" -"發布這一程式的目的是希望它有用,但沒有任何擔保。甚至沒有適合特定目的而隱含的" -"擔保。更詳細的情況請參閱 GNU 通用公共許可證。" +msgstr "發布這一程式的目的是希望它有用,但沒有任何擔保。甚至沒有適合特定目的而隱含的擔保。更詳細的情況請參閱 GNU 通用公共許可證。" #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." -msgstr "" -"您應能在本程式中取得一份 GNU GPL 的複本。如果沒有的話, 請參照 ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." +msgstr "您應能在本程式中取得一份 GNU GPL 的複本。如果沒有的話, 請參照 ." #: baobab/src/callbacks.c:105 msgid "About Disk Usage Analyzer" @@ -618,7 +610,7 @@ #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" msgstr "" -"黃柏諺 ,2013-14\n" +"Jeff Huang ,2013-2021\n" "Launchpad 貢獻者:\n" " Jose Sun https://launchpad.net/~josesun\n" " Toomore https://launchpad.net/~toomore\n" @@ -647,19 +639,19 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." -msgstr "" -"MATE 搜尋工具是一個簡單但強而有力的小工具,讓您可以在您任何已掛載的檔案系統上" -"搜尋檔案及資料夾。其介面讓您可以立即的存取各式各樣的搜尋參數,像是在檔案中包" -"含特定文字、擁有者、修改日期、檔案大小、資料夾排除等。" +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." +msgstr "" +"MATE " +"搜尋工具是一個簡單但強而有力的小工具,讓您可以在您任何已掛載的檔案系統上搜尋檔案及資料夾。其介面讓您可以立即的存取各式各樣的搜尋參數,像是在檔案中包含特定文字、擁有者、修改日期、檔案大小、資料夾排除等。" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "以名稱或內容尋找此電腦中的文件及資料夾" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -694,12 +686,12 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" -"本設定鍵決定搜尋工具在進行快速搜尋時會忽略的路徑。支援萬用字元‘*’及‘?’。預設" -"的數值是 /mnt/*,/media/*,/dev/*,/tmp/*,/proc/*及/var/*。" +"本設定鍵決定搜尋工具在進行快速搜尋時會忽略的路徑。支援萬用字元‘*’及‘?’。預設的數值是 " +"/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*及/var/*。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 msgid "Disable Quick Search Second Scan" @@ -720,12 +712,11 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" -"本設定鍵決定搜尋工具在進行快速搜尋第二次掃描會忽略的路徑。快速搜尋第二次掃描" -"是做用 find 指令來尋找檔案。第二次掃描的目的是尋找那些沒有建構索引的檔案。支" -"援萬用字元‘*’及‘?’。預設的數值是 ./。" +"本設定鍵決定搜尋工具在進行快速搜尋第二次掃描會忽略的路徑。快速搜尋第二次掃描是做用 find " +"指令來尋找檔案。第二次掃描的目的是尋找那些沒有建構索引的檔案。支援萬用字元‘*’及‘?’。預設的數值是 ./。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 msgid "Search Result Columns Order" @@ -743,12 +734,10 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." -msgstr "" -"本設定鍵定義視窗的寬度,而且用來在不同的執行階段間記住搜尋工具的大小。如果將" -"它的值設為 -1 則會讓搜尋工具使用預設的寬度。" +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." +msgstr "本設定鍵定義視窗的寬度,而且用來在不同的執行階段間記住搜尋工具的大小。如果將它的值設為 -1 則會讓搜尋工具使用預設的寬度。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 msgid "Default Window Height" @@ -757,11 +746,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." -msgstr "" -"本設定鍵定義視窗的高度,而且用來在不同的執行階段間記住搜尋工具的大小。如果將" -"它的值設為 -1 則會讓搜尋工具使用預設的高度。" +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." +msgstr "本設定鍵定義視窗的高度,而且用來在不同的執行階段間記住搜尋工具的大小。如果將它的值設為 -1 則會讓搜尋工具使用預設的高度。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 msgid "Default Window Maximized" @@ -824,8 +811,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "本設定鍵決定在搜尋工具開始搜尋時已選用了「屬於指定群組」選項。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -842,8 +829,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "本設定鍵決定在搜尋工具開始搜尋時已選用了「檔名符合正規表示式」選項。" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -864,62 +851,62 @@ "selected when the search tool is started." msgstr "本設定鍵決定在搜尋工具開始搜尋時已選用了「排除其他檔案系統」選項。" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "檔案不是有效的 .desktop 檔案" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "無法辨識的桌面檔案版本「%s」" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "準備啟動 %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "應用程式不接受以命令列開啟文件" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "無法辨識的啟動選項:%d" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "不能傳送文件 URI 至「Type=Link」桌面項目" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "不是可以啟動的項目" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "停用到作業階段管理程式的連線" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "指定含有已儲存組態的檔案" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "檔案" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "指定作業階段管理 ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "ID" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "作業階段管理選項:" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "顯示作業階段管理選項" @@ -1058,13 +1045,13 @@ #, c-format msgid "%'d File Found" msgid_plural "%'d Files Found" -msgstr[0] "找到 %'d 個檔案" +msgstr[0] "" #: gsearchtool/src/gsearchtool.c:1031 gsearchtool/src/gsearchtool.c:1069 #, c-format msgid "%'d file found" msgid_plural "%'d files found" -msgstr[0] "找到 %'d 個檔案" +msgstr[0] "" #: gsearchtool/src/gsearchtool.c:1160 msgid "Entry changed called for a non entry option!" @@ -1286,14 +1273,14 @@ #, c-format msgid "Are you sure you want to open %d document?" msgid_plural "Are you sure you want to open %d documents?" -msgstr[0] "是否確定要開啟 %d 份文件?" +msgstr[0] "" #: gsearchtool/src/gsearchtool-callbacks.c:348 #: gsearchtool/src/gsearchtool-callbacks.c:548 #, c-format msgid "This will open %d separate window." msgid_plural "This will open %d separate windows." -msgstr[0] "這將開啟 %d 個分隔視窗。" +msgstr[0] "" #: gsearchtool/src/gsearchtool-callbacks.c:393 #, c-format @@ -1317,7 +1304,7 @@ #, c-format msgid "Are you sure you want to open %d folder?" msgid_plural "Are you sure you want to open %d folders?" -msgstr[0] "是否確定要開啟 %d 個資料夾?" +msgstr[0] "" #: gsearchtool/src/gsearchtool-callbacks.c:725 #, c-format @@ -1433,7 +1420,7 @@ #: gsearchtool/src/gsearchtool-support.c:478 msgid "link (broken)" -msgstr "鏈結(目標不存在)" +msgstr "連結(目標不存在)" #: gsearchtool/src/gsearchtool-support.c:482 #, c-format @@ -1521,7 +1508,8 @@ msgid "View or monitor system log files" msgstr "顯示或監察系統日誌檔案" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "MATE;monitor;view;system;log;files;logviewer;" @@ -1532,11 +1520,10 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" -"指定啟動時預設開啟的日誌。預設值可能是 /var/adm/messages 或 /var/log/" -"messages,取決於所使用的作業系統。" +"指定啟動時預設開啟的日誌。預設值可能是 /var/adm/messages 或 /var/log/messages,取決於所使用的作業系統。" #: logview/data/org.mate.system-log.gschema.xml.in:10 msgid "Size of the font used to display the log" @@ -1572,8 +1559,7 @@ msgid "" "Specifies a list of log files to open up at startup. A default list is " "created by reading /etc/syslog.conf." -msgstr "" -"指定啟動時預設開啟的日誌檔案清單。預設清單會根據 /etc/syslog.conf 來建構。" +msgstr "指定啟動時預設開啟的日誌檔案清單。預設清單會根據 /etc/syslog.conf 來建構。" #: logview/data/org.mate.system-log.gschema.xml.in:30 msgid "List of saved filters" @@ -1939,7 +1925,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "在線上字典中查詢字詞的解譯及拼法" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" @@ -1951,8 +1938,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" "MATE 字典讓您可以線上查詢單字。它伴隨著一個預先設定好的字典伺服器清單 (RFC " @@ -1983,9 +1970,7 @@ "The name of the default individual database or meta-database to use on a " "dictionary source. An exclamation mark (\"!\") means that all the databases " "present in a dictionary source should be searched" -msgstr "" -"指定在字典來源所預設使用的資料庫或後設資料庫名稱。“!”表示 mate-dictionary 會" -"搜尋指字典來源中所有的資料庫。" +msgstr "指定在字典來源所預設使用的資料庫或後設資料庫名稱。“!”表示 mate-dictionary 會搜尋指字典來源中所有的資料庫。" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:11 msgid "The default search strategy to use" @@ -1995,9 +1980,7 @@ msgid "" "The name of the default search strategy to use on a dictionary source, if " "available. The default strategy is 'exact', that is match exact words." -msgstr "" -"在字典伺服器中所使用的預設的搜尋方式名稱(如果這個名稱存在的話)。預設的搜尋" -"方式是‘exact’,它會完整比對字詞。" +msgstr "在字典伺服器中所使用的預設的搜尋方式名稱(如果這個名稱存在的話)。預設的搜尋方式是‘exact’,它會完整比對字詞。" #: mate-dictionary/data/org.mate.dictionary.gschema.xml.in:16 msgid "The font to be used when printing" @@ -2677,7 +2660,7 @@ #, c-format msgid "A definition found" msgid_plural "%d definitions found" -msgstr[0] "找到%d 字詞解釋" +msgstr[0] "" #: mate-dictionary/src/gdict-window.c:578 #, c-format @@ -2931,9 +2914,7 @@ msgid "" "If checked, the mount will be read-only. This is useful if you don't want " "the underlying disk image to be modified" -msgstr "" -"如果有勾選,掛載將會使用唯讀方式掛載。如果您不想要修改原本的磁碟映像檔,這可" -"能很有用" +msgstr "如果有勾選,掛載將會使用唯讀方式掛載。如果您不想要修改原本的磁碟映像檔,這可能很有用" #: mate-disk-image-mounter/src/main.c:178 #, c-format @@ -2974,9 +2955,8 @@ "system clipboard or save them in Portable Network Graphics (.png) image " "format." msgstr "" -"MATE 螢幕截圖是一個讓您可以擷取您的桌面或是應用程式視窗截圖的簡單小工具。您可" -"以選取以將它們複製到系統剪貼簿中或是將它們儲存為可攜式網路圖形 (.png) 圖片格" -"式。" +"MATE 螢幕截圖是一個讓您可以擷取您的桌面或是應用程式視窗截圖的簡單小工具。您可以選取以將它們複製到系統剪貼簿中或是將它們儲存為可攜式網路圖形 " +"(.png) 圖片格式。" #: mate-screenshot/data/mate-screenshot.desktop.in:3 #: mate-screenshot/src/mate-screenshot.c:519 @@ -2988,7 +2968,8 @@ msgid "Save images of your desktop or individual windows" msgstr "將整個桌面或獨立的視窗儲存為圖片" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "MATE;screenshot;snapshot;desktop;window;image;" @@ -3183,8 +3164,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "發現衝突選項:--clipboard 與 --interactive 不應該同時使用。\n" #: mate-screenshot/src/mate-screenshot.c:1363 Binary files /tmp/tmpkcpmxivt/7rkO9GLsoz/mate-utils-1.26.0/po/zu.gmo and /tmp/tmpkcpmxivt/ZGocK0Av4c/mate-utils-1.26.1/po/zu.gmo differ diff -Nru mate-utils-1.26.0/po/zu.po mate-utils-1.26.1/po/zu.po --- mate-utils-1.26.0/po/zu.po 2021-08-05 19:45:50.000000000 +0000 +++ mate-utils-1.26.1/po/zu.po 2023-05-09 13:31:58.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR MATE Desktop Environment team # This file is distributed under the same license as the mate-utils package. # FIRST AUTHOR , YEAR. -# +# # Translators: -# Stefano Karapetsas , 2019 -# +# Stefano Karapetsas , 2021 +# msgid "" msgstr "" "Project-Id-Version: mate-utils 1.25.1\n" "Report-Msgid-Bugs-To: https://mate-desktop.org/\n" -"POT-Creation-Date: 2021-08-05 19:45+0000\n" -"PO-Revision-Date: 2018-03-12 09:18+0000\n" -"Last-Translator: Stefano Karapetsas , 2019\n" -"Language-Team: Zulu (https://www.transifex.com/mate/teams/13566/zu/)\n" -"Language: zu\n" +"POT-Creation-Date: 2021-06-25 18:01+0200\n" +"PO-Revision-Date: 2021-09-21 19:03+0000\n" +"Last-Translator: Stefano Karapetsas , 2021\n" +"Language-Team: Zulu (https://app.transifex.com/mate/teams/13566/zu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:3 @@ -29,7 +29,8 @@ msgid "Check folder sizes and available disk space" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: baobab/data/mate-disk-usage-analyzer.desktop.in.in:14 msgid "MATE;check;disk;usage;analyze;size;space;" msgstr "" @@ -213,8 +214,8 @@ #: baobab/data/mate-disk-usage-analyzer.appdata.xml.in:10 msgid "" -"As its name implies, Disk Usage Analyzer is a graphical utility that you can " -"use to view and monitor your disk usage and folder structure. It displays " +"As its name implies, Disk Usage Analyzer is a graphical utility that you can" +" use to view and monitor your disk usage and folder structure. It displays " "summary information in ring or treemap charts." msgstr "" @@ -578,8 +579,8 @@ #: baobab/src/callbacks.c:89 logview/src/logview-about.h:57 #: mate-dictionary/src/gdict-about.c:67 msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see ." +"You should have received a copy of the GNU General Public License along with" +" this program. If not, see ." msgstr "" #: baobab/src/callbacks.c:105 @@ -600,8 +601,8 @@ #: mate-dictionary/src/gdict-about.c:53 msgid "translator-credits" msgstr "" -"Kemi Translations Translate.org.za " +"Kemi Translations Translate.org.za " +"" #: baobab/src/callbacks.c:211 gsearchtool/src/gsearchtool-callbacks.c:506 #: gsearchtool/src/gsearchtool-callbacks.c:879 @@ -625,16 +626,17 @@ msgid "" "MATE Search Tool is a simple but powerful utility that allows you to search " "for files and folders on any mounted file system. Its interface gives you " -"instant access to a wide variety of parameters for each search, such as text " -"contained within a file, ownership, date of modification, file size, folder " -"exclusion, etc.." +"instant access to a wide variety of parameters for each search, such as text" +" contained within a file, ownership, date of modification, file size, folder" +" exclusion, etc.." msgstr "" #: gsearchtool/data/mate-search-tool.desktop.in:4 msgid "Locate documents and folders on this computer by name or content" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: gsearchtool/data/mate-search-tool.desktop.in:13 msgid "" "MATE;search;files;locate;documents;folders;computer;name;content;find;tool;" @@ -668,9 +670,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:20 msgid "" -"This key defines the paths the search tool will exclude from a quick search. " -"The wildcards '*' and '?' are supported. The default values are /mnt/*, /" -"media/*, /dev/*, /tmp/*, /proc/*, and /var/*." +"This key defines the paths the search tool will exclude from a quick search." +" The wildcards '*' and '?' are supported. The default values are /mnt/*, " +"/media/*, /dev/*, /tmp/*, /proc/*, and /var/*." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:24 @@ -692,8 +694,8 @@ "This key defines the paths the search tool will exclude from a second scan " "when performing a quick search. The second scan uses the find command to " "search for files. The purpose of the second scan is to find files that have " -"not been indexed. The wildcards '*' and '?' are supported. The default value " -"is /." +"not been indexed. The wildcards '*' and '?' are supported. The default value" +" is /." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:34 @@ -712,9 +714,9 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:40 msgid "" -"This key defines the window width, and it's used to remember the size of the " -"search tool between sessions. Setting it to -1 will make the search tool use " -"the default width." +"This key defines the window width, and it's used to remember the size of the" +" search tool between sessions. Setting it to -1 will make the search tool " +"use the default width." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:44 @@ -724,8 +726,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:45 msgid "" "This key defines the window height, and it's used to remember the size of " -"the search tool between sessions. Setting it to -1 will make the search tool " -"use the default height." +"the search tool between sessions. Setting it to -1 will make the search tool" +" use the default height." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:49 @@ -789,8 +791,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:90 msgid "" -"This key determines if the \"Owned by group\" search option is selected when " -"the search tool is started." +"This key determines if the \"Owned by group\" search option is selected when" +" the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:94 @@ -807,8 +809,8 @@ #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:102 msgid "" -"This key determines if the \"Name matches regular expression\" search option " -"is selected when the search tool is started." +"This key determines if the \"Name matches regular expression\" search option" +" is selected when the search tool is started." msgstr "" #: gsearchtool/data/org.mate.search-tool.gschema.xml.in:106 @@ -829,62 +831,62 @@ "selected when the search tool is started." msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:168 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:169 msgid "File is not a valid .desktop file" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:193 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:194 #, c-format msgid "Unrecognized desktop file Version '%s'" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:975 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:976 #, c-format msgid "Starting %s" msgstr "Siqala %s" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1117 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1118 msgid "Application does not accept documents on command line" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1185 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1186 #, c-format msgid "Unrecognized launch option: %d" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1401 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1402 msgid "Can't pass document URIs to a 'Type=Link' desktop entry" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1422 +#: gsearchtool/mate-submodules/libegg/eggdesktopfile.c:1423 msgid "Not a launchable item" msgstr "Akusiyona into engathunyelwa" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:233 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:234 msgid "Disable connection to session manager" msgstr "Qamula ukuxhumana kumphathi wesiqephu" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "Specify file containing saved configuration" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:238 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:239 msgid "FILE" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "Specify session management ID" msgstr "Cacisa isiqephu sokulawula ukuzazisa" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:243 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:244 msgid "ID" msgstr "Ukuzazisa" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:269 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 msgid "Session management options:" msgstr "" -#: gsearchtool/mate-submodules/libegg/eggsmclient.c:270 +#: gsearchtool/mate-submodules/libegg/eggsmclient.c:271 msgid "Show session management options" msgstr "" @@ -1489,7 +1491,8 @@ msgid "View or monitor system log files" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: logview/data/mate-system-log.desktop.in.in:13 msgid "MATE;monitor;view;system;log;files;logviewer;" msgstr "" @@ -1500,8 +1503,8 @@ #: logview/data/org.mate.system-log.gschema.xml.in:6 msgid "" -"Specifies the log file displayed at startup. The default is either /var/adm/" -"messages or /var/log/messages, depending on your operating system." +"Specifies the log file displayed at startup. The default is either " +"/var/adm/messages or /var/log/messages, depending on your operating system." msgstr "" #: logview/data/org.mate.system-log.gschema.xml.in:10 @@ -1899,7 +1902,8 @@ msgid "Check word definitions and spellings in an online dictionary" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-dictionary/data/mate-dictionary.desktop.in.in:13 msgid "MATE;dictionary;applet;thesaurus;spelling;definitions;online;" msgstr "" @@ -1911,8 +1915,8 @@ #: mate-dictionary/data/mate-dictionary.appdata.xml.in:10 msgid "" "MATE Dictionary allows you to look up words in on-line dictionaries. It " -"comes preconfigured with a list of Dict servers (RFC 2229), to which you can " -"add your own sources, while you can select specific servers for a specific " +"comes preconfigured with a list of Dict servers (RFC 2229), to which you can" +" add your own sources, while you can select specific servers for a specific " "query." msgstr "" @@ -2926,7 +2930,8 @@ msgid "Save images of your desktop or individual windows" msgstr "" -#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +#. Translators: Search terms to find this application. Do NOT translate or +#. localize the semicolons! The list MUST also end with a semicolon! #: mate-screenshot/data/mate-screenshot.desktop.in:13 msgid "MATE;screenshot;snapshot;desktop;window;image;" msgstr "" @@ -3118,8 +3123,8 @@ #: mate-screenshot/src/mate-screenshot.c:1357 msgid "" -"Conflicting options: --clipboard and --interactive should not be used at the " -"same time.\n" +"Conflicting options: --clipboard and --interactive should not be used at the" +" same time.\n" msgstr "" #: mate-screenshot/src/mate-screenshot.c:1363 diff -Nru mate-utils-1.26.0/.travis.yml mate-utils-1.26.1/.travis.yml --- mate-utils-1.26.0/.travis.yml 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/.travis.yml 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,52 @@ +# vim: set ts=2 sts=2 sw=2 expandtab : +dist: focal +language: shell +os: linux +services: + - docker +addons: + apt: + packages: + - python3-pip + - python3-setuptools + +branches: + except: + - gh-pages + +before_install: + - curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build + - chmod +x docker-build + +install: + - pip3 install PyGithub + - ./docker-build --name ${DISTRO} --config .build.yml --install + +script: + - ./docker-build --name ${DISTRO} --verbose --config .build.yml --build scripts + +notifications: + irc: + if: (tag OR branch = "1.26") AND + repo = "mate-desktop/mate-utils" + channels: + - "irc.libera.chat#mate-dev" + template: + - "[%{repository_name}] %{author}: %{commit_subject}" + - "[%{branch}] %{commit} %{message} %{build_url}" + on_success: never + on_failure: always + +deploy: + - provider: script + edge: true + script: ./docker-build --verbose --config .build.yml --release github + on: + tags: true + condition: "${TRAVIS_TAG} =~ ^v.*$ && ${DISTRO} =~ ^fedora.*$" + +env: +# - DISTRO="archlinux:latest" + - DISTRO="debian:testing" + - DISTRO="fedora:latest" +# - DISTRO="ubuntu:rolling" diff -Nru mate-utils-1.26.0/.tx/config mate-utils-1.26.1/.tx/config --- mate-utils-1.26.0/.tx/config 1970-01-01 00:00:00.000000000 +0000 +++ mate-utils-1.26.1/.tx/config 2023-05-09 13:31:58.000000000 +0000 @@ -0,0 +1,38 @@ +[main] +host = https://www.transifex.com + +[o:mate:p:MATE:r:1-26--mate-dictionary-user-guide] +file_filter = mate-dictionary/help//.po +source_file = mate-dictionary.pot +source_lang = en +type = PO +minimum_perc = 2 + +[o:mate:p:MATE:r:1-26--mate-disk-usage-analyzer-user-guide] +file_filter = baobab/help//.po +source_file = mate-disk-usage-analyzer.pot +source_lang = en +type = PO +minimum_perc = 2 + +[o:mate:p:MATE:r:1-26--mate-search-tool-user-guide] +file_filter = gsearchtool/help//.po +source_file = mate-search-tool.pot +source_lang = en +type = PO +minimum_perc = 2 + +[o:mate:p:MATE:r:1-26--mate-system-log-user-guide] +file_filter = logview/help//.po +source_file = mate-system-log.pot +source_lang = en +type = PO +minimum_perc = 2 + +[o:mate:p:MATE:r:1-26--mate-utils] +file_filter = po/.po +source_file = mate-utils.pot +source_lang = en +type = PO +minimum_perc = 2 + diff -Nru mate-utils-1.26.0/xmldocs.make mate-utils-1.26.1/xmldocs.make --- mate-utils-1.26.0/xmldocs.make 2021-08-05 19:45:14.000000000 +0000 +++ mate-utils-1.26.1/xmldocs.make 1970-01-01 00:00:00.000000000 +0000 @@ -1,101 +0,0 @@ -# -# No modifications of this Makefile should be necessary. -# -# To use this template: -# 1) Define: figdir, docname, lang, omffile, and entities in -# your Makefile.am file for each document directory, -# although figdir, omffile, and entities may be empty -# 2) Make sure the Makefile in (1) also includes -# "include $(top_srcdir)/xmldocs.make" and -# "dist-hook: app-dist-hook". -# 3) Optionally define 'entities' to hold xml entities which -# you would also like installed -# 4) Figures must go under $(figdir)/ and be in PNG format -# 5) You should only have one document per directory -# 6) Note that the figure directory, $(figdir)/, should not have its -# own Makefile since this Makefile installs those figures. -# -# example Makefile.am: -# figdir = figures -# docname = scrollkeeper-manual -# lang = C -# omffile=scrollkeeper-manual-C.omf -# entities = fdl.xml -# include $(top_srcdir)/xmldocs.make -# dist-hook: app-dist-hook -# -# About this file: -# This file was taken from scrollkeeper_example2, a package illustrating -# how to install documentation and OMF files for use with ScrollKeeper -# 0.3.x and 0.4.x. For more information, see: -# http://scrollkeeper.sourceforge.net/ -# Version: 0.1.2 (last updated: March 20, 2002) -# - - -# ********** Begin of section some packagers may need to modify ********** -# This variable (docdir) specifies where the documents should be installed. -# This default value should work for most packages. -docdir = $(datadir)/mate/help/$(docname)/$(lang) - -# ********** You should not have to edit below this line ********** -xml_files = $(entities) $(docname).xml - -EXTRA_DIST = $(xml_files) $(omffile) -CLEANFILES = omf_timestamp - -include $(top_srcdir)/omf.make - -all: omf - -$(docname).xml: $(entities) - -ourdir=`pwd`; \ - cd $(srcdir); \ - cp $(entities) $$ourdir - -app-dist-hook: - if test "$(figdir)"; then \ - $(mkinstalldirs) $(distdir)/$(figdir); \ - for file in $(srcdir)/$(figdir)/*.png; do \ - basefile=`echo $$file | sed -e 's,^.*/,,'`; \ - $(INSTALL_DATA) $$file $(distdir)/$(figdir)/$$basefile; \ - done \ - fi - -install-data-local: omf - $(mkinstalldirs) $(DESTDIR)$(docdir) - for file in $(xml_files); do \ - cp $(srcdir)/$$file $(DESTDIR)$(docdir); \ - done - if test "$(figdir)"; then \ - $(mkinstalldirs) $(DESTDIR)$(docdir)/$(figdir); \ - for file in $(srcdir)/$(figdir)/*.png; do \ - basefile=`echo $$file | sed -e 's,^.*/,,'`; \ - $(INSTALL_DATA) $$file $(DESTDIR)$(docdir)/$(figdir)/$$basefile; \ - done \ - fi - -install-data-hook: install-data-hook-omf - -uninstall-local: uninstall-local-doc uninstall-local-omf - -uninstall-local-doc: - -if test "$(figdir)"; then \ - for file in $(srcdir)/$(figdir)/*.png; do \ - basefile=`echo $$file | sed -e 's,^.*/,,'`; \ - rm -f $(DESTDIR)$(docdir)/$(figdir)/$$basefile; \ - done; \ - rmdir $(DESTDIR)$(docdir)/$(figdir); \ - fi - -for file in $(xml_files); do \ - rm -f $(DESTDIR)$(docdir)/$$file; \ - done - -rmdir $(DESTDIR)$(docdir) - -clean-local: clean-local-doc clean-local-omf - -# for non-srcdir builds, remove the copied entities. -clean-local-doc: - if test $(srcdir) != .; then \ - rm -f $(entities); \ - fi